*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #e74c3c;
    --color-primary-dark: #c0392b;
    --color-secondary: #2c3e50;
    --color-secondary-light: #34495e;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #1a252f;
    --color-border: #ecf0f1;
    --color-success: #2ecc71;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

img, svg {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.logo:hover {
    color: var(--color-primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline-dark:hover {
    background: var(--color-secondary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary-dark);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 400px;
}

.hero-illustration {
    width: 100%;
    height: auto;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.intro-block {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
    text-align: center;
}

.intro-inner {
    max-width: 700px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.intro-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.features-split {
    padding: 5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 0 0 200px;
}

.feature-visual svg {
    width: 100%;
    height: auto;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.feature-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-primary);
}

.link-arrow::after {
    content: ' →';
    margin-left: 0.5rem;
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.services-home {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.services-header p {
    color: var(--color-text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card.featured {
    border: 2px solid var(--color-primary);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-secondary);
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.testimonial-item p {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.testimonial-item footer {
    display: flex;
    flex-direction: column;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-secondary);
}

.testimonial-item footer span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.process-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.process-content {
    flex: 2;
}

.process-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.step-details p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.process-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.process-visual svg {
    max-width: 150px;
}

.form-section {
    background: var(--color-secondary);
    padding: 5rem 1.5rem;
}

.form-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-info {
    flex: 1;
    color: #fff;
}

.form-info h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-info p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.contact-form {
    flex: 1;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-banner {
    background: var(--color-primary);
    padding: 4rem 1.5rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-col address {
    font-style: normal;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: #fff;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
}

.page-hero-compact {
    padding: 7rem 1.5rem 3rem;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.section-label {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.about-story {
    padding: 5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1;
}

.story-visual svg {
    width: 100%;
    max-width: 400px;
}

.about-values {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-secondary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.value-card {
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.team-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-secondary);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-secondary);
}

.team-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.stats-section {
    background: var(--color-primary);
    padding: 4rem 1.5rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.stat-block {
    text-align: center;
    flex: 1 1 150px;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.stat-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
}

.about-studio {
    display: flex;
    gap: 4rem;
    padding: 5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.studio-content {
    flex: 1;
}

.studio-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.studio-content p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.studio-features {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.studio-features li {
    padding: 0.25rem 0;
    color: var(--color-text);
}

.studio-visual {
    flex: 1;
}

.studio-visual svg {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
}

.services-intro {
    padding: 5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.intro-visual {
    flex: 0 0 300px;
}

.services-full {
    padding: 3rem 1.5rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.service-item.featured {
    border-color: var(--color-primary);
    border-width: 2px;
}

.service-item.premium {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: #fff;
}

.service-item.premium .service-info h3,
.service-item.premium .service-price {
    color: #fff;
}

.service-item.premium .service-info p,
.service-item.premium .service-includes h4,
.service-item.premium .service-ideal h4,
.service-item.premium .service-includes li,
.service-item.premium .service-ideal li {
    color: rgba(255,255,255,0.85);
}

.service-badge-corner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-info {
    flex: 1;
}

.service-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-item.premium .service-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.service-info p {
    color: var(--color-text-light);
}

.service-pricing {
    text-align: right;
    flex-shrink: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.service-unit {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.service-details {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-includes,
.service-ideal {
    flex: 1 1 200px;
}

.service-includes h4,
.service-ideal h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.service-includes ul,
.service-ideal ul {
    list-style: none;
}

.service-includes li,
.service-ideal li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
}

.service-ideal li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.services-comparison {
    background: var(--color-bg-alt);
    padding: 5rem 1.5rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-secondary);
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-secondary);
    color: #fff;
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table .price-row td {
    font-weight: 700;
    color: var(--color-primary);
}

.faq-section {
    padding: 5rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-secondary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: var(--color-text-light);
}

.contact-main {
    padding: 5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-secondary);
}

.contact-details p,
.contact-details address {
    color: var(--color-text-light);
    font-style: normal;
}

.contact-note {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-item strong {
    color: var(--color-secondary);
}

.transport-item p {
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.contact-visual {
    flex: 1;
}

.map-placeholder {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-note {
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
}

.contact-cta {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
}

.cta-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.cta-text p {
    color: var(--color-text-light);
}

.faq-contact {
    padding: 5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.faq-card {
    flex: 1 1 250px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.faq-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.faq-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.thanks-service p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.thanks-service strong {
    font-size: 1.125rem;
    color: var(--color-secondary);
}

.thanks-next {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-contact {
    background: var(--color-bg-alt);
    padding: 2rem 1.5rem;
    text-align: center;
}

.contact-mini p {
    color: var(--color-text-light);
}

.contact-mini a {
    font-weight: 600;
}

.legal-hero {
    background: var(--color-secondary);
    color: #fff;
    padding: 7rem 1.5rem 3rem;
    text-align: center;
}

.legal-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-hero p {
    opacity: 0.8;
}

.legal-content {
    padding: 4rem 1.5rem;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--color-secondary);
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-secondary);
}

.legal-article p {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-article ul,
.legal-article ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-article li {
    padding: 0.25rem 0;
    color: var(--color-text);
}

.legal-address {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    font-style: normal;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookies-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero-split,
    .story-split,
    .about-studio,
    .intro-split,
    .process-section {
        flex-direction: column;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-visual {
        flex: 0 0 150px;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .service-header-row {
        flex-direction: column;
    }

    .service-pricing {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        box-shadow: var(--shadow-md);
        padding: 1rem;
    }

    .nav-main.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        padding-top: 5rem;
        min-height: auto;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .service-details {
        flex-direction: column;
        gap: 1.5rem;
    }
}
