        /* ========================================
           CSS CUSTOM PROPERTIES
           ======================================== */
        :root {
            /* Colors - Cozy Cabin Warm Palette */
            --color-navy: #5B3A29;
            --color-navy-light: #7a5240;
            --color-ocean: #A76D5D;
            --color-ocean-light: #b8847a;
            --color-sky: #D1B7A0;
            --color-sky-light: #E6D1C1;
            --color-cloud: #F9E8D2;
            --color-ice: #fdf6ef;
            --color-white: #ffffff;
            --color-charcoal: #3d2e28;
            --color-warm-gray: #5a4a42;
            --color-light-gray: #e6ddd6;
            --color-gold: #c9a227;
            --color-gold-light: #faf5e4;

            /* Legacy aliases for compatibility */
            --color-cream: var(--color-cloud);
            --color-rose-light: var(--color-ice);
            --color-sage: var(--color-ocean);
            --color-sage-dark: var(--color-navy-light);

            /* Gradients */
            --gradient-hero: linear-gradient(135deg, #fdf6ef 0%, var(--color-cloud) 50%, var(--color-white) 100%);
            --gradient-card: linear-gradient(180deg, var(--color-white) 0%, var(--color-cloud) 100%);
            --gradient-cta: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-navy-light) 100%);
            --gradient-cta-hover: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
            --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, #a68820 100%);

            /* Typography */
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, sans-serif;

            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --space-3xl: 8rem;

            /* Borders */
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 9999px;

            /* Shadows */
            --shadow-soft: 0 4px 20px rgba(61, 54, 53, 0.06);
            --shadow-medium: 0 8px 40px rgba(61, 54, 53, 0.1);
            --shadow-lifted: 0 20px 60px rgba(61, 54, 53, 0.15);

            /* Transitions */
            --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* ========================================
           RESET & BASE STYLES
           ======================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }

        html::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-charcoal);
            background: var(--color-cream);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Main content fills available space, pushing footer down */
        .main-content {
            flex: 1;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        /* ========================================
           TYPOGRAPHY
           ======================================== */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 500;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 400;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
        }

        h3 {
            font-size: clamp(1.25rem, 2vw, 1.5rem);
        }

        .eyebrow {
            font-family: var(--font-body);
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-charcoal);
        }

        /* ========================================
           UTILITY CLASSES
           ======================================== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* ========================================
           BUTTONS
           ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            padding: 1rem 2rem;
            min-height: 48px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            transition: all 0.3s var(--ease-bounce);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn:hover::before {
            opacity: 1;
        }

        /* Ripple effect */
        .btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
            pointer-events: none;
        }

        .btn:active::after {
            transform: scale(2.5);
            opacity: 1;
            transition: 0s;
        }

        .btn-primary {
            background: var(--gradient-cta);
            color: white;
            box-shadow: 0 4px 20px rgba(167, 109, 93, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            background: var(--gradient-cta-hover);
            box-shadow: 0 8px 30px rgba(167, 109, 93, 0.45);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .btn-secondary {
            background: white;
            color: var(--color-charcoal);
            border: 2px solid var(--color-light-gray);
        }

        .btn-secondary:hover {
            border-color: var(--color-ocean);
            background: var(--color-ice);
        }

        .btn-gold {
            background: var(--gradient-gold);
            color: white;
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* ========================================
           HEADER & NAVIGATION
           ======================================== */
        /* Header styles are in navigation.css */

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-charcoal);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-cta);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
        }

        .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon svg {
            width: 1em;
            height: 1em;
        }

        .icon-inline {
            display: inline;
            vertical-align: -0.125em;
            width: 1em;
            height: 1em;
        }

        .nav {
            display: none;
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .nav {
                display: flex;
            }
        }

        /* Nav link styles moved to navigation.css */

        .header-cta {
            display: none;
        }

        @media (min-width: 768px) {
            .header-cta {
                display: flex;
            }
        }

        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--color-charcoal);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile nav styles consolidated in navigation.css */

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        /* Language Switch */
        .lang-switch {
            position: relative;
        }

        .lang-switch-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: transparent;
            border: 1px solid var(--color-light-gray);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-charcoal);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .lang-switch-btn:hover {
            background: var(--color-cream);
            border-color: var(--color-warm-gray);
        }

        .lang-switch.active .lang-switch-btn {
            background: var(--color-cream);
            border-color: var(--color-sage);
        }

        .lang-icon {
            width: 18px;
            height: 18px;
        }

        .lang-chevron {
            width: 14px;
            height: 14px;
            transition: transform 0.2s ease;
        }

        .lang-switch.active .lang-chevron {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 140px;
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 100;
            overflow: hidden;
        }

        .lang-switch.active .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: block;
            width: 100%;
            padding: 10px 16px;
            text-align: left;
            background: transparent;
            border: none;
            font-size: 0.9375rem;
            color: var(--color-charcoal);
            cursor: pointer;
            transition: background 0.15s ease;
        }

        .lang-option:hover {
            background: var(--color-cream);
        }

        .lang-option.active {
            background: var(--color-sage-light);
            color: var(--color-sage-dark);
            font-weight: 500;
        }

        /* Dashboard Button */
        .btn-ghost {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: transparent;
            border: 1px solid var(--color-light-gray);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-charcoal);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-ghost:hover {
            background: var(--color-cream);
            border-color: var(--color-warm-gray);
        }

        .dashboard-icon {
            width: 18px;
            height: 18px;
        }

        /* Hide on mobile, show on desktop */
        .header-actions .lang-switch,
        .header-actions .header-dashboard {
            display: none;
        }

        @media (min-width: 768px) {
            .header-actions .lang-switch,
            .header-actions .header-dashboard {
                display: flex;
            }
        }

        /* Mobile Language Switch */
        .mobile-lang-switch {
            display: flex;
            gap: var(--space-xs);
            padding: var(--space-sm) 0;
            border-bottom: 1px solid var(--color-light-gray);
        }

        .mobile-lang-btn {
            flex: 1;
            padding: 10px;
            background: var(--color-light-gray);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-warm-gray);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mobile-lang-btn.active {
            background: var(--color-sage);
            color: white;
        }

        .mobile-nav-dashboard {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
            background: var(--gradient-hero);
            overflow: hidden;
        }

        /* Floating organic shapes */
        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
            animation: float 20s ease-in-out infinite;
        }

        .hero-blob-1 {
            width: 400px;
            height: 400px;
            background: var(--color-sky-light);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .hero-blob-2 {
            width: 300px;
            height: 300px;
            background: var(--color-ocean-light);
            bottom: -50px;
            left: -50px;
            animation-delay: -5s;
        }

        .hero-blob-3 {
            width: 200px;
            height: 200px;
            background: var(--color-gold-light);
            top: 30%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(20px, -30px) scale(1.05); }
            50% { transform: translate(-10px, 20px) scale(0.95); }
            75% { transform: translate(30px, 10px) scale(1.02); }
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            gap: var(--space-xl);
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr 1fr;
                min-height: calc(100vh - 160px);
            }
        }

        .hero-content {
            text-align: center;
        }

        @media (min-width: 1024px) {
            .hero-content {
                text-align: left;
            }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            margin-bottom: var(--space-md);
            padding: var(--space-xs) var(--space-sm);
            background: white;
            border-radius: var(--radius-full);
            box-shadow: var(--shadow-soft);
            animation: fadeInUp 0.8s var(--ease-gentle) both;
        }

        .hero-eyebrow-dot {
            width: 8px;
            height: 8px;
            background: var(--color-sage);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .hero-title {
            margin-bottom: var(--space-md);
            animation: fadeInUp 0.8s var(--ease-gentle) 0.1s both;
        }

        .hero-title em {
            font-style: italic;
            color: var(--color-sage-dark);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--color-warm-gray);
            margin-bottom: var(--space-lg);
            max-width: 500px;
            animation: fadeInUp 0.8s var(--ease-gentle) 0.2s both;
        }

        @media (min-width: 1024px) {
            .hero-subtitle {
                font-size: 1.25rem;
            }
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
            animation: fadeInUp 0.8s var(--ease-gentle) 0.3s both;
        }

        @media (min-width: 480px) {
            .hero-cta-group {
                flex-direction: row;
                justify-content: center;
            }
        }

        @media (min-width: 1024px) {
            .hero-cta-group {
                justify-content: flex-start;
            }
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
            justify-content: center;
            animation: fadeInUp 0.8s var(--ease-gentle) 0.4s both;
        }

        @media (min-width: 1024px) {
            .hero-trust {
                justify-content: flex-start;
            }
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.875rem;
            color: var(--color-warm-gray);
        }

        .hero-trust-icon {
            width: 20px;
            height: 20px;
            color: var(--color-sage);
        }

        /* Hero Visual - The Reveal Showcase */
        .hero-visual {
            position: relative;
            animation: fadeInUp 1s var(--ease-gentle) 0.5s both;
        }

        .reveal-showcase {
            position: relative;
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-md);
            box-shadow: var(--shadow-lifted);
        }

        .reveal-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-md);
            padding: 0 var(--space-sm);
        }

        .reveal-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-xs);
            flex: 1;
        }

        .reveal-step-number {
            width: 32px;
            height: 32px;
            background: var(--color-rose-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--color-charcoal);
            transition: all 0.3s;
        }

        .reveal-step.active .reveal-step-number {
            background: var(--gradient-cta);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(167, 109, 93, 0.4);
        }

        .reveal-step-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-warm-gray);
            text-align: center;
        }

        .reveal-step-connector {
            flex: 1;
            height: 2px;
            background: var(--color-light-gray);
            margin: 0 var(--space-xs);
            position: relative;
            top: -16px;
        }

        .reveal-images {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-sm);
        }

        .reveal-image {
            aspect-ratio: 1;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
        }

        .reveal-image-actual {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 0;
            animation: fadeIn 0.6s ease-in-out 0.3s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .reveal-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-warm-gray);
            position: relative;
            z-index: 1;
        }

        .placeholder-shimmer {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            background-size: 200% 100%;
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .reveal-image-placeholder.ultrasound {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            color: rgba(255,255,255,0.7);
        }

        .reveal-image-placeholder.prediction {
            background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-peach) 100%);
        }

        .reveal-image-placeholder.baby {
            background: linear-gradient(135deg, var(--color-sage) 0%, #8BC4A9 100%);
            color: white;
        }

        .reveal-image-icon {
            width: 40px;
            height: 40px;
            opacity: 0.8;
        }

        .reveal-result {
            margin-top: var(--space-md);
            padding: var(--space-md);
            background: var(--gradient-hero);
            border-radius: var(--radius-lg);
            text-align: center;
        }

        .reveal-result-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-warm-gray);
            margin-bottom: var(--space-xs);
        }

        .reveal-result-title {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 500;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           HOW IT WORKS SECTION
           ======================================== */
        .how-it-works {
            padding: var(--space-3xl) 0;
            background: white;
            position: relative;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--color-ice), transparent);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .section-header .eyebrow {
            margin-bottom: var(--space-sm);
        }

        .section-header h2 {
            margin-bottom: var(--space-sm);
        }

        .section-header p {
            color: var(--color-warm-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Steps styles moved to index.css */

        /* ========================================
           REVEAL PACKAGE SECTION
           ======================================== */
        .reveal-package {
            padding: var(--space-3xl) 0;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .reveal-package-blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--color-sage);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.2;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
        }

        .reveal-package-inner {
            position: relative;
            z-index: 1;
        }

        .package-grid {
            display: grid;
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }

        @media (min-width: 768px) {
            .package-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-md);
            }
        }

        @media (min-width: 1024px) {
            .package-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .package-item {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s var(--ease-gentle);
        }

        .package-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-lifted);
        }

        .package-item-image {
            aspect-ratio: 1;
            position: relative;
            overflow: hidden;
        }

        .package-item-image-inner {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-charcoal);
        }

        .package-item-image-inner svg,
        .package-item-image-inner .package-icon {
            width: 48px;
            height: 48px;
        }

        /* Invert package icons on dark backgrounds */
        .package-item-image-inner.ultrasound .package-icon {
            filter: invert(1) opacity(0.6);
        }

        .package-item-image-inner.ultrasound {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            color: rgba(255,255,255,0.6);
        }

        .package-item-image-inner.prediction {
            background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-peach) 100%);
        }

        .package-item-image-inner.real {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
        }

        .package-item-image-inner.comparison {
            background: linear-gradient(135deg, var(--color-gold-light) 0%, #FFE082 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px;
            padding: var(--space-sm);
        }

        .comparison-half {
            background: rgba(255,255,255,0.5);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .comparison-half svg {
            width: 28px;
            height: 28px;
        }

        .package-item-content {
            padding: var(--space-md);
            text-align: center;
        }

        .package-item-content h3 {
            font-size: 1rem;
            margin-bottom: var(--space-xs);
        }

        .package-item-content p {
            font-size: 0.875rem;
            color: var(--color-warm-gray);
        }

        .share-badges {
            display: flex;
            justify-content: center;
            gap: var(--space-md);
            margin-top: var(--space-xl);
            flex-wrap: wrap;
        }

        .share-badge {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-xs) var(--space-md);
            background: white;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
            box-shadow: var(--shadow-soft);
        }

        .share-badge-icon {
            width: 20px;
            height: 20px;
        }

        /* ========================================
           SOCIAL PROOF / TESTIMONIALS
           ======================================== */
        .testimonials {
            padding: var(--space-3xl) 0;
            background: white;
        }

        .testimonials-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
            margin-bottom: var(--space-xl);
        }

        .rating {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .stars {
            display: flex;
            gap: 4px;
        }

        .star {
            width: 24px;
            height: 24px;
            /* Gold tint filter for WebP star icons */
            filter: invert(72%) sepia(46%) saturate(553%) hue-rotate(8deg) brightness(89%) contrast(87%);
        }

        .rating-text {
            font-size: 1.125rem;
            font-weight: 600;
        }

        .rating-count {
            color: var(--color-warm-gray);
            font-weight: 400;
        }

        /* Masonry-style testimonials grid */
        .testimonials-masonry {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-md);
        }

        @media (min-width: 768px) {
            .testimonials-masonry {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .testimonials-masonry {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonial-featured {
                grid-column: span 2;
                grid-row: span 1;
            }
        }

        .testimonials-grid {
            display: grid;
            gap: var(--space-lg);
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial {
            background: var(--gradient-card);
            border: 1px solid var(--color-light-gray);
            border-radius: var(--radius-xl);
            padding: var(--space-lg);
            transition: all 0.4s var(--ease-gentle);
        }

        .testimonial:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-medium);
            border-color: var(--color-rose);
        }

        .testimonial-quote {
            font-size: 1.0625rem;
            line-height: 1.6;
            margin-bottom: var(--space-md);
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-family: var(--font-display);
            font-size: 4rem;
            color: var(--color-rose);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.5;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: white;
            font-size: 1.125rem;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        .testimonial-avatar .avatar-initials {
            position: relative;
            z-index: 1;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.9375rem;
        }

        .testimonial-detail {
            font-size: 0.8125rem;
            color: var(--color-warm-gray);
        }

        /* Featured testimonial (larger) */
        @media (min-width: 1024px) {
            .testimonial.featured {
                grid-column: span 2;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--space-lg);
                align-items: center;
            }

            .testimonial.featured .testimonial-image {
                aspect-ratio: 1;
                background: var(--color-rose-light);
                border-radius: var(--radius-lg);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--color-gold);
            }

            .testimonial.featured .testimonial-image svg {
                width: 64px;
                height: 64px;
            }
        }

        /* Featured testimonial with comparison */
        .testimonial-featured {
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 768px) {
            .testimonial-featured {
                flex-direction: row;
                gap: var(--space-lg);
            }
        }

        .testimonial-media {
            position: relative;
            margin-bottom: var(--space-md);
        }

        @media (min-width: 768px) {
            .testimonial-media {
                flex: 0 0 200px;
                margin-bottom: 0;
            }
        }

        .testimonial-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 2/1;
        }

        @media (min-width: 768px) {
            .testimonial-comparison {
                aspect-ratio: 1;
            }
        }

        .comparison-side {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            padding: var(--space-md);
        }

        .comparison-side svg {
            width: 32px;
            height: 32px;
            opacity: 0.6;
        }

        .comparison-side span {
            font-size: 0.6875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .comparison-side.prediction {
            background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-peach) 100%);
            color: var(--color-charcoal);
        }

        .comparison-side.reality {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
            color: var(--color-charcoal);
        }

        .testimonial-match-badge {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-cta);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            box-shadow: 0 4px 12px rgba(167, 109, 93, 0.4);
            white-space: nowrap;
        }

        .testimonial-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .testimonial-content .testimonial-quote {
            flex: 1;
        }

        /* Social proof cards */
        .testimonial-social {
            position: relative;
        }

        .testimonial-platform {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            margin-bottom: var(--space-md);
            padding: var(--space-xs) var(--space-sm);
            background: var(--color-rose-light);
            border-radius: var(--radius-full);
            width: fit-content;
        }

        .platform-icon {
            width: 20px;
            height: 20px;
        }

        .platform-icon.instagram {
            /* Instagram pink filter */
            filter: invert(27%) sepia(92%) saturate(4266%) hue-rotate(327deg) brightness(92%) contrast(90%);
        }

        .platform-icon.tiktok {
            /* TikTok - keep black (no filter needed) */
        }

        .platform-stat {
            font-size: 0.8125rem;
            font-weight: 700;
            color: var(--color-charcoal);
        }

        .testimonial-viral {
            border-color: var(--color-rose);
            background: linear-gradient(to bottom, white, var(--color-rose-light));
        }

        /* Stat highlight card */
        .testimonial-stat .testimonial-highlight {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: var(--space-md);
            margin: calc(-1 * var(--space-lg));
            margin-bottom: var(--space-md);
            background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-navy-light) 100%);
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            color: white;
        }

        .highlight-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1;
        }

        .highlight-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.9;
        }

        /* Video testimonial card */
        .testimonial-video .video-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-md);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .testimonial-video .video-placeholder:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .testimonial-video .video-placeholder svg {
            width: 48px;
            height: 48px;
            opacity: 0.8;
        }

        .testimonial-video .video-placeholder span {
            font-size: 0.8125rem;
            font-weight: 500;
            opacity: 0.7;
        }

        /* ========================================
           PRICING SECTION
           ======================================== */
        .pricing {
            padding: var(--space-3xl) 0;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A8C5B5' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .pricing-inner {
            position: relative;
            z-index: 1;
        }

        .pricing-grid {
            display: grid;
            gap: var(--space-md);
            margin-top: var(--space-xl);
        }

        @media (min-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                align-items: center;
            }
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-lg);
            box-shadow: var(--shadow-soft);
            transition: all 0.4s var(--ease-gentle), transform 0.2s ease-out;
            position: relative;
            border: 2px solid transparent;
            transform-style: preserve-3d;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lifted);
        }

        .pricing-card.popular {
            border-color: var(--color-sage);
            transform: scale(1.05);
            z-index: 1;
        }

        @media (min-width: 768px) {
            .pricing-card.popular {
                padding: var(--space-xl) var(--space-lg);
            }
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-cta);
            color: white;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: var(--space-xs) var(--space-md);
            border-radius: var(--radius-full);
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(167, 109, 93, 0.35);
        }

        .pricing-header {
            text-align: center;
            padding-bottom: var(--space-md);
            border-bottom: 1px solid var(--color-light-gray);
            margin-bottom: var(--space-md);
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: var(--space-xs);
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
        }

        .pricing-currency {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-warm-gray);
        }

        .pricing-amount {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 600;
            line-height: 1;
        }

        .pricing-period {
            font-size: 0.875rem;
            color: var(--color-warm-gray);
        }

        .pricing-description {
            font-size: 0.875rem;
            color: var(--color-warm-gray);
            text-align: center;
            margin-top: var(--space-xs);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: var(--space-lg);
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-sm);
            padding: var(--space-xs) 0;
            font-size: 0.9375rem;
        }

        .pricing-features li svg {
            width: 20px;
            height: 20px;
            color: var(--color-sage);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-features li.disabled {
            color: var(--color-warm-gray);
            opacity: 0.5;
        }

        .pricing-features li.disabled svg {
            color: var(--color-light-gray);
        }

        .pricing-cta {
            width: 100%;
        }

        /* ========================================
           FAQ SECTION
           ======================================== */
        .faq {
            padding: var(--space-3xl) 0;
            background: white;
        }

        .faq-grid {
            display: grid;
            gap: var(--space-sm);
            max-width: 800px;
            margin: var(--space-xl) auto 0;
        }

        .faq-item {
            background: var(--color-cream);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s var(--ease-gentle);
        }

        .faq-item:hover {
            background: var(--color-rose-light);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            padding: var(--space-md) var(--space-lg);
            font-size: 1rem;
            font-weight: 500;
            text-align: left;
            color: var(--color-charcoal);
            cursor: pointer;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            color: var(--color-sage);
            transition: transform 0.3s var(--ease-gentle);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s var(--ease-gentle);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 var(--space-lg) var(--space-lg);
            color: var(--color-warm-gray);
            line-height: 1.7;
        }

        /* ========================================
           FINAL CTA SECTION
           ======================================== */
        .final-cta {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, var(--color-charcoal) 0%, #4A4341 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
        }

        .final-cta-inner {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            color: white;
            margin-bottom: var(--space-sm);
        }

        .final-cta p {
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto var(--space-lg);
            font-size: 1.125rem;
        }

        .countdown {
            display: inline-flex;
            gap: var(--space-md);
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: var(--space-md) var(--space-lg);
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-lg);
        }

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

        .countdown-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 4px;
        }

        .countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.7;
        }

        .final-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            align-items: center;
            margin-bottom: var(--space-lg);
        }

        @media (min-width: 480px) {
            .final-cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }

        .guarantee-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-lg);
        }

        .guarantee-badge {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .guarantee-badge svg {
            width: 20px;
            height: 20px;
            color: var(--color-sage);
        }

        /* ========================================
           FOOTER
           Footer styles are defined in footer.js component
           ======================================== */

        /* ========================================
           ANIMATIONS & SCROLL EFFECTS
           ======================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--ease-gentle);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger children */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(20px);
        }

        .stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }

        .stagger-children.visible > * {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s var(--ease-gentle);
        }

        /* ========================================
           UPLOAD MODAL
           ======================================== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(61, 54, 53, 0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-md);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s var(--ease-gentle);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: var(--radius-xl);
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            transition: all 0.4s var(--ease-bounce);
        }

        .modal-overlay.active .modal {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            padding: var(--space-lg);
            border-bottom: 1px solid var(--color-light-gray);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
        }

        .modal-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--color-rose-light);
        }

        .modal-close svg {
            width: 24px;
            height: 24px;
        }

        .modal-body {
            padding: var(--space-lg);
        }

        .upload-zone {
            border: 2px dashed var(--color-light-gray);
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s var(--ease-gentle);
        }

        .upload-zone:hover,
        .upload-zone.dragover {
            border-color: var(--color-sage);
            background: var(--color-rose-light);
        }

        .upload-zone-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto var(--space-md);
            background: var(--color-sage);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .upload-zone-icon svg {
            width: 32px;
            height: 32px;
        }

        .upload-zone h3 {
            margin-bottom: var(--space-xs);
        }

        .upload-zone p {
            color: var(--color-warm-gray);
            font-size: 0.875rem;
        }

        .upload-zone input {
            display: none;
        }

        .upload-form {
            margin-top: var(--space-lg);
        }

        .form-group {
            margin-bottom: var(--space-md);
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: var(--space-xs);
        }

        .form-input {
            width: 100%;
            padding: var(--space-sm) var(--space-md);
            border: 2px solid var(--color-light-gray);
            border-radius: var(--radius-md);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--color-sage);
            box-shadow: 0 0 0 4px rgba(168, 197, 181, 0.2);
        }

        .form-input::placeholder {
            color: var(--color-warm-gray);
        }

        /* ========================================
           SAMPLE GALLERY SECTION
           ======================================== */
        .sample-gallery {
            padding: var(--space-3xl) 0;
            background: var(--color-cream);
            position: relative;
            overflow: hidden;
        }

        .sample-gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(244, 196, 192, 0.3) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(168, 197, 181, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-xl);
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--space-lg);
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .gallery-item {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s var(--ease-gentle);
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lifted);
        }

        .gallery-comparison {
            aspect-ratio: 1;
            position: relative;
            overflow: hidden;
        }

        .gallery-comparison img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-comparison img:first-child {
            clip-path: inset(0 50% 0 0);
        }

        .gallery-comparison img:last-child {
            clip-path: inset(0 0 0 50%);
        }

        .gallery-comparison-placeholder {
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .gallery-comparison-placeholder .left {
            background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-peach) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-comparison-placeholder .right {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-comparison-placeholder svg {
            width: 32px;
            height: 32px;
            opacity: 0.5;
        }

        .gallery-comparison-divider {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: white;
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            z-index: 5;
        }

        .gallery-comparison-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .gallery-comparison-divider::after {
            content: '↔';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
            color: var(--color-charcoal);
            z-index: 1;
        }

        .gallery-caption {
            padding: var(--space-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gallery-match {
            background: var(--gradient-cta);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-full);
        }

        .gallery-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-warm-gray);
        }

        /* ========================================
           BEFORE/AFTER COMPARISON SLIDER
           ======================================== */
        .comparison-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            cursor: ew-resize;
            touch-action: none;
        }

        .comparison-slider-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .comparison-slider-overlay {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .comparison-slider-overlay img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comparison-slider-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: white;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            z-index: 10;
            cursor: ew-resize;
        }

        .comparison-slider-handle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 44px;
            height: 44px;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .comparison-slider-handle::after {
            content: '⟷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 18px;
            color: var(--color-charcoal);
            z-index: 1;
        }

        .comparison-labels {
            position: absolute;
            bottom: var(--space-sm);
            left: var(--space-sm);
            right: var(--space-sm);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 5;
        }

        .comparison-label {
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            backdrop-filter: blur(4px);
        }

        /* ========================================
           SKELETON LOADING STATES
           ======================================== */
        .skeleton {
            background: linear-gradient(
                90deg,
                var(--color-light-gray) 0%,
                #f5f2f0 50%,
                var(--color-light-gray) 100%
            );
            background-size: 200% 100%;
            animation: skeleton-shimmer 1.5s ease-in-out infinite;
            border-radius: var(--radius-md);
        }

        @keyframes skeleton-shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .skeleton-text {
            height: 1em;
            margin-bottom: 0.5em;
        }

        .skeleton-text:last-child {
            width: 60%;
        }

        .skeleton-image {
            aspect-ratio: 1;
        }

        .skeleton-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
        }

        /* ========================================
           ENHANCED ANIMATIONS
           ======================================== */
        /* Parallax classes */
        .parallax-slow { will-change: transform; }
        .parallax-medium { will-change: transform; }
        .parallax-fast { will-change: transform; }

        /* Animated counter */
        .counter {
            display: inline-block;
            font-variant-numeric: tabular-nums;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .counter.counting {
            color: var(--color-sage);
            transform: scale(1.05);
        }

        /* Enhanced ripple effect */
        .ripple-effect {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            transform: translate(-50%, -50%) scale(0);
            animation: ripple-expand 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes ripple-expand {
            to {
                transform: translate(-50%, -50%) scale(20);
                opacity: 0;
            }
        }

        /* Staggered grid reveals */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s var(--ease-gentle), transform 0.6s var(--ease-bounce);
        }

        .stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
        .stagger-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
        .stagger-children.visible > *:nth-child(8) { transition-delay: 0.7s; }

        .stagger-children.visible > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* Fade in on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--ease-gentle), transform 0.6s var(--ease-gentle);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================================
           TESTIMONIAL CAROUSEL
           ======================================== */
        .testimonial-carousel {
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s var(--ease-gentle);
        }

        .testimonial-slide {
            flex: 0 0 100%;
            padding: 0 var(--space-sm);
        }

        @media (min-width: 768px) {
            .testimonial-slide {
                flex: 0 0 50%;
            }
        }

        @media (min-width: 1024px) {
            .testimonial-slide {
                flex: 0 0 33.333%;
            }
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: var(--space-md);
            margin-top: var(--space-lg);
        }

        .carousel-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--color-light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--color-charcoal);
        }

        .carousel-btn:hover {
            border-color: var(--color-sage);
            background: var(--color-rose-light);
        }

        .carousel-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
        }

        .carousel-prev,
        .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--color-light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--color-charcoal);
            z-index: 10;
        }

        .carousel-prev {
            left: -22px;
        }

        .carousel-next {
            right: -22px;
        }

        .carousel-prev:hover,
        .carousel-next:hover {
            border-color: var(--color-sage);
            background: var(--color-rose-light);
        }

        .carousel-prev:disabled,
        .carousel-next:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .carousel-prev svg,
        .carousel-next svg {
            width: 20px;
            height: 20px;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: var(--space-lg);
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--color-light-gray);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: var(--gradient-cta);
            transform: scale(1.2);
        }

        /* ========================================
           LIGHTBOX
           ======================================== */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-lg);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            max-width: 90vw;
            max-height: 80vh;
            position: relative;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: var(--radius-lg);
        }

        .lightbox-caption {
            text-align: center;
            color: white;
            margin-top: var(--space-md);
            font-size: 1rem;
        }

        .lightbox-close {
            position: absolute;
            top: var(--space-md);
            right: var(--space-md);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.2);
        }

        .lightbox-prev {
            left: var(--space-md);
        }

        .lightbox-next {
            right: var(--space-md);
        }

        /* ========================================
           MOBILE OPTIMIZATIONS
           ======================================== */
        /* Safe area insets */
        @supports (padding: env(safe-area-inset-top)) {
            body {
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }

            .header {
                padding-top: env(safe-area-inset-top);
            }

            .footer {
                padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom));
            }

            .mobile-nav {
                padding-bottom: env(safe-area-inset-bottom);
            }
        }

        /* Mobile navigation styles are in navigation.css */

        /* Extra small devices */
        @media (max-width: 375px) {
            :root {
                --space-md: 1rem;
                --space-lg: 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

            .countdown-value {
                font-size: 1.5rem;
            }

            .pricing-amount {
                font-size: 2.25rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .hero-cta-group .btn {
                width: 100%;
            }
        }

        /* Tablet adjustments */
        @media (min-width: 768px) and (max-width: 1023px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-card.popular {
                transform: none;
            }

            .pricing-card.popular:hover {
                transform: translateY(-8px);
            }
        }

        /* Touch-friendly targets */
        @media (pointer: coarse) {
            .nav a, .footer-links a {
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .faq-question {
                min-height: 56px;
            }
        }

        /* ========================================
           ARTICLE PAGES (Privacy, Terms, etc.)
           ======================================== */
        .article {
            padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-3xl);
            max-width: 720px;
            margin: 0 auto;
        }

        .article h1 {
            margin-bottom: var(--space-lg);
        }

        .article h2 {
            margin-top: var(--space-xl);
            margin-bottom: var(--space-md);
        }

        .article p {
            margin-bottom: var(--space-md);
            color: var(--color-warm-gray);
        }

        .article ul {
            margin-bottom: var(--space-md);
            padding-left: var(--space-lg);
            color: var(--color-warm-gray);
        }

        .article li {
            margin-bottom: var(--space-xs);
        }

        .article a {
            color: var(--color-sage-dark);
            text-decoration: underline;
        }

        .article a.btn-primary {
            text-decoration: none;
            color: white;
        }
