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

        .ad-policy-disclosures {
            padding: 48px 0 24px;
            background: var(--bg-body, #f4f6f8);
        }

        .ad-policy-panel {
            background: #fff;
            border: 1px solid rgba(10, 17, 40, 0.08);
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: var(--shadow-bento, 0 8px 24px rgba(10, 17, 40, 0.06));
        }

        .ad-policy-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ink, #0a1128);
            margin: 0 0 12px;
        }

        .ad-policy-lead,
        .ad-policy-text,
        .ad-policy-nap {
            color: var(--muted, #64748b);
            line-height: 1.65;
            margin: 0 0 10px;
            font-size: 0.9375rem;
        }

        .ad-policy-lead {
            color: var(--ink, #0a1128);
            font-weight: 600;
        }

        .ad-policy-links {
            margin: 14px 0 0;
            font-size: 0.875rem;
        }

        .ad-policy-links a {
            color: #1d4ed8;
            font-weight: 600;
            text-decoration: none;
        }

        .ad-policy-links a:hover {
            text-decoration: underline;
        }

        /* PREESH Design System */
        :root {
            --bg-deep: #0a1128;
            --bg-deep-2: #0f1733;
            --bg-body: #f4f6f8;
            --bg-dark: #0B1220;
            --bg-card: #151B2E;
            --bg-hover: #1A2338;
            --surface: #ffffff;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --accent-primary: #4F46E5;
            --accent-secondary: #7C3AED;
            --accent-success: #10B981;
            --accent-warning: #F59E0B;
            --border-color: #2D3748;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-bento: 0 20px 40px -4px rgba(10, 17, 40, 0.08), 0 8px 16px -4px rgba(10, 17, 40, 0.04);
            --radius-lg: 24px;
            --ink: #0a1128;
            --muted: #64748b;
            --ease: cubic-bezier(.2,.8,.2,1);
        }

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

        html,
        body {
            font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        }

        body {
            margin: 0;
            color: var(--text, #344055);
            background: var(--bg-body, #f4f6f8);
            font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--accent-primary);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Navigation */
        .site-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,.92);
            border-bottom: 1px solid var(--border, #e2e8f0);
            backdrop-filter: blur(12px);
            overflow: visible;
        }
        
        [data-theme="dark"] .site-nav,
        body.dark-theme .site-nav,
        body.safeness-design .site-nav {
            background: rgba(15,23,42,.95);
            border-bottom: 1px solid rgba(148,163,184,0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        @media (max-width: 1024px) {
            .site-nav {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(255, 255, 255, 0.98) !important;
            }

            [data-theme="dark"] .site-nav,
            body.dark-theme .site-nav,
            body.safeness-design .site-nav {
                background: rgba(15, 23, 42, 0.98) !important;
            }
        }

        .wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Do not add vertical padding here: header uses a fixed nav height + box-sizing border-box;
           extra top/bottom padding collapses the inner area and pushes the logo upward / clips glyphs. */
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
        }

        .icon-btn {
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-btn {
            display: none;
        }



        .nav-dd-panel {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 8px;
            min-width: 280px;
            box-shadow: var(--shadow-xl);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s;
            z-index: 1000;
        }

        .nav-dd[aria-expanded="true"] .nav-dd-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dd-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            text-decoration: none;
            color: var(--text-primary);
            border-radius: 8px;
            transition: background 0.2s;
        }

        .dd-item:hover {
            background: var(--bg-hover);
        }

        .dd-item.is-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .dd-ico {
            font-size: 1rem;
            margin-top: 2px;
        }

        .dd-text {
            flex: 1;
        }

        .dd-title {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 0.9375rem;
        }

        .dd-sub {
            display: block;
            font-size: 0.8125rem;
            color: var(--text-secondary);
        }

        .dd-divider {
            height: 1px;
            background: var(--border-color);
            margin: 8px 0;
        }

        .dd-group-label {
            padding: 8px 12px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }


        .btn {
            padding: 10px 20px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 0.9375rem;
        }

        .btn-primary {
            background: #4F46E5;
            color: white;
            font-weight: 600;
        }

        .btn-primary:hover {
            background: #4338CA;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }


        /* Trust Bar */
        .combined-trust-bar {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: #fff;
            padding: 12px 0;
            box-shadow: 0 2px 12px rgba(91, 33, 182, 0.15);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .combined-trust-bar::-webkit-scrollbar {
            display: none;
        }

        .combined-trust-bar-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: nowrap;
        }

        .trust-badge-compact {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #fff;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            flex-shrink: 0;
        }

        .trust-badge-icon-sm {
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .trust-badge-text {
            font-weight: 500;
            font-size: 12px;
            white-space: nowrap;
        }
        
        .trust-badge-text strong {
            font-weight: 700;
            color: #fff;
        }

        .trust-divider {
            width: 1px;
            height: 24px;
            background: rgba(255,255,255,0.25);
            margin: 0 4px;
            flex-shrink: 0;
        }

        .urgency-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.95);
            color: #3b82f6;
            padding: 6px 8px 6px 12px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            flex-shrink: 0;
        }

        .urgency-badge-text {
            font-weight: 600;
            white-space: nowrap;
        }

        .urgency-badge-highlight {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #fff;
            padding: 4px 8px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .urgency-cta-compact {
            background: #fff;
            color: #3b82f6;
            padding: 6px 14px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            flex-shrink: 0;
            white-space: nowrap;
        }
        
        .urgency-cta-compact:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 1100px) {
            .combined-trust-bar .wrap {
                max-width: 100%;
                padding: 0 12px;
            }
            .combined-trust-bar-inner {
                justify-content: flex-start;
            }
        }
        
        @media (max-width: 768px) {
            .trust-divider {
                display: none;
            }
            .trust-badge-compact {
                padding: 5px 10px;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 0px 0 120px;
            overflow: hidden;
            background-color: var(--bg-deep, #0a1128);
            color: var(--text-inverse, #ffffff);
            background-position: center;
            background-repeat: no-repeat;
            color: #FFFFFF;
        }

        /* Animated wave behind hero photo (matching reference site) */
        .hero-wave-bg {
            position: absolute;
            left: 0;
            right: 0;
            top: auto;
            bottom: 0;
            width: 100%;
            height: 320px;
            pointer-events: none;
            opacity: .34;
            z-index: 0;
            mix-blend-mode: screen;
            background: linear-gradient(90deg,
                rgba(59,130,246,.95) 0%,
                rgba(139,92,246,.92) 44%,
                rgba(22,184,166,.70) 76%,
                rgba(59,130,246,.95) 100%
            );
            background-size: 260% 100%;
            filter: saturate(1.06) brightness(1.03);
            transform: none;
            /* mask to wave shapes */
            -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='260' viewBox='0 0 1200 260'%3E%3Cpath d='M0 160 C 75 120 225 120 300 160 C 375 200 525 200 600 160 C 675 120 825 120 900 160 C 975 200 1125 200 1200 160 L 1200 260 L 0 260 Z' fill='white'/%3E%3Cpath d='M0 120 C 75 90 225 90 300 120 C 375 150 525 150 600 120 C 675 90 825 90 900 120 C 975 150 1125 150 1200 120 L 1200 260 L 0 260 Z' fill='white' opacity='.52'/%3E%3C/svg%3E");
            -webkit-mask-repeat: repeat-x;
            -webkit-mask-size: 1200px 260px;
            -webkit-mask-position: 0 100%;
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='260' viewBox='0 0 1200 260'%3E%3Cpath d='M0 160 C 75 120 225 120 300 160 C 375 200 525 200 600 160 C 675 120 825 120 900 160 C 975 200 1125 200 1200 160 L 1200 260 L 0 260 Z' fill='white'/%3E%3Cpath d='M0 120 C 75 90 225 90 300 120 C 375 150 525 150 600 120 C 675 90 825 90 900 120 C 975 150 1125 150 1200 120 L 1200 260 L 0 260 Z' fill='white' opacity='.52'/%3E%3C/svg%3E");
            mask-repeat: repeat-x;
            mask-size: 1200px 260px;
            mask-position: 0 100%;
            animation: heroWaveMove 18s linear infinite, heroWaveHue 18s cubic-bezier(.2,.8,.2,1) infinite;
        }
        
        @keyframes heroWaveMove {
            from {
                background-position: 0% 50%;
                -webkit-mask-position: 0 100%;
                mask-position: 0 100%;
            }
            to {
                background-position: 100% 50%;
                -webkit-mask-position: 1200px 100%;
                mask-position: 1200px 100%;
            }
        }
        
        @keyframes heroWaveHue {
            0%, 100% { filter: saturate(1.06) brightness(1.03); }
            50% { filter: saturate(1.14) brightness(1.06); }
        }

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

        .hero .kicker {
            color: #8b5cf6 !important;
            font-weight: 900 !important;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .hero .u-sweep {
            color: #FFFFFF;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero .lead {
            color: #A0AEC0;
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .hero .panel {
            background: transparent;
            border: none;
        }

        .hero .input {
            background: #151B2E;
            border-color: #2D3748;
            color: #FFFFFF;
        }

        .hero .input::placeholder {
            color: #718096;
        }

        .hero .pill {
            background: rgba(255, 255, 255, 0.1);
            color: #A0AEC0;
            border: 1px solid #2D3748;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        
        .hero .grid-2 {
            grid-template-columns: .82fr 1.18fr;
            gap: 30px;
        }
        
        .hero .grid-2 > div:first-child {
            text-align: center;
        }
        
        .hero .kicker,
        .hero .u-sweep,
        .hero .lead,
        .hero .address-bar,
        .hero .hero-cta-row,
        .hero .pill-row {
            text-align: center;
            justify-content: center;
        }

        .kicker {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .u-sweep {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            position: relative;
        }
        
        .u-sweep::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            height: 10px;
            bottom: -10px;
            border-radius: 999px;
            background: var(--primary-gradient, linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%));
            transform: scaleX(0);
            transform-origin: left;
            opacity: .35;
        }

        .accent {
            color: #a78bfa;
            font-style: italic;
        }

        .lead {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .address-bar {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .hero .address-bar {
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.20);
            padding: 8px;
            border-radius: 99px;
            max-width: 520px;
            margin: 32px auto;
            gap: 8px;
            justify-content: center;
        }

        .ac-wrap {
            flex: 1;
        }
        
        .hero .address-bar .input {
            background: transparent;
            border: none;
            color: #fff;
        }
        
        .hero .address-bar .input::placeholder {
            color: rgba(255,255,255,0.60);
        }
        
        .hero .address-bar .input:focus {
            box-shadow: none;
        }
        
        .hero .address-bar .btn {
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .hero .hero-cta-row {
            justify-content: center;
            margin-bottom: 32px;
        }

        .input {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .input:focus {
            outline: none;
            border-color: var(--accent-primary);
        }

        .hero-cta-row {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
        }

        .pill-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--bg-card);
            border-radius: 20px;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .pill-ico {
            width: 20px;
            height: 20px;
        }

        .hero-art {
            position: relative;
            min-height: 520px;
            border-radius: var(--radius-lg, 24px);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.16);
            background: transparent;
        }

        .hero-photo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 55%;
            filter: saturate(1.03);
            transform: translateY(var(--parallaxY, 0px)) scale(1.03);
            will-change: transform;
            border-radius: 16px;
            overflow: hidden;
        }
        
        .hero-art::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(900px 400px at 100% 30%, rgba(22,184,166,.18) 0%, rgba(22,184,166,0) 60%),
                radial-gradient(800px 480px at 95% 20%, rgba(31,111,235,.18) 0%, rgba(31,111,235,0) 65%),
                linear-gradient(135deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.10) 55%, rgba(255,255,255,.18) 100%);
        }
        
        .hero-orb {
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 999px;
            filter: blur(18px);
            opacity: .65;
            transform: translateZ(0);
            pointer-events: none;
        }
        
        .hero-orb-1 {
            left: -40px;
            top: 40px;
            background: radial-gradient(circle at 30% 30%, rgba(59,130,246,.70), rgba(139,92,246,0));
            animation: floatA 7s var(--ease, cubic-bezier(.2,.8,.2,1)) infinite;
        }
        
        .hero-orb-2 {
            right: -50px;
            bottom: 30px;
            background: radial-gradient(circle at 30% 30%, rgba(167,139,250,.70), rgba(59,130,246,0));
            animation: floatB 8.5s var(--ease, cubic-bezier(.2,.8,.2,1)) infinite;
        }
        
        @keyframes floatA {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-14px) translateX(10px); }
        }
        
        @keyframes floatB {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(12px) translateX(-8px); }
        }

        /* Partnered with section */
        .partners-section {
            position: relative;
            padding: 80px 24px 120px;
            background: var(--bg-deep, #0a1128);
            color: #ffffff;
            text-align: center;
        }
        .partners-section .partners-title {
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: lowercase;
            color: rgba(255,255,255,0.85);
            margin-bottom: 40px;
        }
        .partners-section .partners-logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 56px 80px;
            overflow: visible;
        }
        .partners-section .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            flex: 0 1 auto;
            overflow: visible;
        }
        .partners-section .partner-logo img {
            width: auto;
            object-fit: contain;
            object-position: center center;
            opacity: 0.98;
            display: block;
        }
        .partners-section .partner-logo.partner-logo-bbb {
            height: 48px;
            overflow: visible;
        }
        .partners-section .partner-logo.partner-logo-bbb img {
            height: 48px;
            width: auto;
            max-height: none;
            max-width: none;
            filter: none;
        }
        .partners-section .partner-logo-link {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            line-height: 0;
        }
        .partners-section .partner-logo-link--bbb {
            min-width: 0;
        }
        .partners-section .partner-logo-img--bbb {
            height: 48px;
            width: auto;
        }
        .partners-section .partner-logo.partner-logo-white img {
            filter: brightness(0) invert(1);
        }
        .partners-wave {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 120px;
            line-height: 0;
            overflow: hidden;
        }
        .partners-wave svg {
            display: block;
            width: calc(100% + 2px);
            height: 120px;
        }
        .partners-wave .wave-fill {
            fill: #ffffff;
        }
        @media (max-width: 768px) {
            .partners-section {
                padding: 56px 16px 88px;
            }
            .partners-section .partners-title {
                margin-bottom: 32px;
            }
            .partners-section .partners-logos {
                flex-wrap: nowrap;
                gap: 24px 32px;
                align-items: center;
            }
            .partners-section .partner-logo {
                height: 40px;
                flex-shrink: 0;
                min-width: 0;
            }
            .partners-section .partner-logo.partner-logo-bbb {
                height: 40px;
            }
            .partners-section .partner-logo.partner-logo-bbb img,
            .partners-section .partner-logo-img--bbb {
                height: 36px;
                width: auto;
            }
            .partners-section .partner-logo-link--bbb {
                min-width: 0;
            }
            .partners-wave {
                height: 90px;
            }
            .partners-wave svg {
                height: 90px;
            }
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-light {
            background: #FFFFFF;
            color: #1A2338;
        }

        .section-light h2,
        .section-light .kicker,
        .section-light .lead {
            color: #1A2338;
        }

        .section-light .card {
            background: #F8FAFB;
            border-color: #E2E8F0;
        }

        .section-light .card h3 {
            color: #1A2338;
        }

        .section-light .card p {
            color: #4A5568;
        }
        
        .section-light .card {
            background: #FFFFFF;
            border-color: #E2E8F0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        .section-light .card h3 {
            color: #1A2338;
        }
        
        .section-light .stat .amount {
            background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-light .stat .desc {
            color: #4A5568;
        }
        
        .section-light .featured h4 {
            color: #1A2338;
        }
        
        .section-light .panel-stats {
            background: #FFFFFF;
        }

        .section-tight {
            padding: 48px 0;
            background: #FFFFFF;
            color: #1A2338;
        }
        
        .section-tight .card {
            background: #FFFFFF;
            border-color: #E2E8F0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        .section-tight .card h3 {
            color: #1A2338;
        }
        
        .section-tight .card p {
            color: #4A5568;
        }
        
        .section-tight .card-ico {
            background: rgba(79, 70, 229, 0.1);
            color: #4F46E5;
        }

        .section-tight-light {
            background: #FFFFFF;
            color: #1A2338;
        }

        .section-tight-light .kicker {
            color: #718096;
        }

        .section-tight-light .card {
            background: #F8FAFB;
            border-color: #E2E8F0;
        }

        .section-tight-light .card h3 {
            color: #1A2338;
        }

        .section-tight-light .card p {
            color: #4A5568;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .card {
            background: var(--bg-card);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            color: var(--text-primary);
        }

        .card h3 {
            color: var(--text-primary);
        }

        .card p {
            color: var(--text-secondary);
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-primary);
            box-shadow: var(--shadow-lg);
        }

        .card-light {
            background: #FFFFFF;
            border-color: #E2E8F0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .card-light:hover {
            border-color: var(--accent-primary);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
        }

        .card-ico {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(79, 70, 229, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #4F46E5;
            margin-bottom: 16px;
            font-size: 1.5rem;
            line-height: 1;
        }
        
        .card-ico-number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.15);
            color: #10B981;
            font-size: 2rem;
            font-weight: 700;
        }
        
        .card-ico-check {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.15);
            color: #10B981;
            font-size: 2rem;
            font-weight: 700;
        }
        
        .card-ico-clock {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.15);
            color: #10B981;
            font-size: 2rem;
            font-weight: 700;
        }
        
        .card-ico svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
        }

        .card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            text-align: center;
        }
        
        #how h2 {
            text-align: left;
        }
        
        /* Timeline section header stays centered (overrides #how h2) */
        #how.timeline-section h2 {
            text-align: center;
        }
        
        /* Add shadows to cards in How section */
        #how .card {
            background: #FFFFFF;
            border-color: #E2E8F0;
            box-shadow: var(--shadow-bento, 0 20px 40px -4px rgba(10, 17, 40, 0.08), 0 8px 16px -4px rgba(10, 17, 40, 0.04));
        }
        
        #how .card h3 {
            color: #1A2338;
        }
        
        #how .card p {
            color: #4A5568;
        }

        /* Stats Section */
        .panel {
            background: var(--surface, #ffffff);
            padding: 48px;
            border-radius: var(--radius-lg, 24px);
            border: 1px solid #f0f0f0;
            box-shadow: var(--shadow-bento);
            overflow: hidden;
            transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
        }
        
        .panel:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 30px 60px -10px rgba(10, 17, 40, 0.12);
        }

        .panel-light {
            background: #FFFFFF;
            border-color: #E2E8F0;
        }

        .panel-stats {
            display: flex;
            flex-direction: column;
            gap: 48px;
            overflow: visible !important;
        }

        .stats {
            display: grid;
            grid-template-columns: 1fr 280px 1fr;
            gap: 18px;
            align-items: center;
            padding: 24px;
            border-bottom: 1px solid rgba(230,232,238,.9);
            overflow: visible;
        }

        .stat {
            text-align: center;
        }

        .stat .amount {
            font-size: clamp(2.8rem, 4vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #4F46E5 0%, #8B5CF6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .stat .desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            font-weight: 500;
            line-height: 1.4;
        }

        .stat-icon {
            position: relative;
            height: 270px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: visible;
        }
        
        .hand-svg {
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            height: 190px;
            filter: drop-shadow(0 12px 22px rgba(12,32,58,.14));
            pointer-events: none;
        }
        
        .money-svg {
            position: absolute;
            left: 50%;
            bottom: 10px;
            height: 150px;
            transform: translateX(-50%);
            pointer-events: none;
        }
        
        /* Before animation: position at top, ready to fall */
        .stats:not(.in) .money-svg {
            bottom: 160px;
        }
        
        /* Triggered when parent section has .in class */
        .stats.in .money-svg {
            animation: moneyFall 2.8s ease-in-out forwards;
        }
        
        @keyframes moneyFall {
            0%   { bottom: 160px; transform: translateX(-50%) rotate(-2deg); }
            5%   { bottom: 152px; transform: translateX(calc(-50% + 3px)) rotate(-1deg); }
            10%  { bottom: 143px; transform: translateX(calc(-50% + 5px)) rotate(1deg); }
            15%  { bottom: 133px; transform: translateX(calc(-50% + 4px)) rotate(2deg); }
            20%  { bottom: 122px; transform: translateX(calc(-50% + 1px)) rotate(1deg); }
            25%  { bottom: 111px; transform: translateX(calc(-50% - 3px)) rotate(-1deg); }
            30%  { bottom: 100px; transform: translateX(calc(-50% - 5px)) rotate(-2deg); }
            35%  { bottom: 90px; transform: translateX(calc(-50% - 4px)) rotate(-1deg); }
            40%  { bottom: 80px; transform: translateX(calc(-50% - 1px)) rotate(0deg); }
            45%  { bottom: 70px; transform: translateX(calc(-50% + 2px)) rotate(1deg); }
            50%  { bottom: 61px; transform: translateX(calc(-50% + 4px)) rotate(1.5deg); }
            55%  { bottom: 53px; transform: translateX(calc(-50% + 3px)) rotate(1deg); }
            60%  { bottom: 45px; transform: translateX(calc(-50% + 1px)) rotate(0deg); }
            65%  { bottom: 38px; transform: translateX(calc(-50% - 2px)) rotate(-0.8deg); }
            70%  { bottom: 31px; transform: translateX(calc(-50% - 3px)) rotate(-1deg); }
            75%  { bottom: 25px; transform: translateX(calc(-50% - 2px)) rotate(-0.5deg); }
            80%  { bottom: 20px; transform: translateX(calc(-50% - 0.5px)) rotate(0deg); }
            85%  { bottom: 16px; transform: translateX(calc(-50% + 1px)) rotate(0.3deg); }
            90%  { bottom: 13px; transform: translateX(calc(-50% + 1px)) rotate(0.2deg); }
            95%  { bottom: 11px; transform: translateX(calc(-50% + 0.3px)) rotate(0.1deg); }
            100% { bottom: 10px; transform: translateX(-50%) rotate(0deg); }
        }
        
        /* Skip animation for reduced motion */
        .stats.no-anim .money-svg {
            animation: none !important;
            bottom: 10px;
        }

        .featured {
            padding: 18px 18px 22px;
            text-align: center;
        }

        .featured h4 {
            margin: 0 0 14px;
            color: var(--ink, #0a1128);
            font-weight: 900;
            font-size: 16px;
            font-family: Sora, Inter, system-ui, sans-serif;
        }

        .featured-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .featured-pill {
            border: 1px solid rgba(230,232,238,.9);
            background: rgba(31,111,235,.06);
            color: var(--muted, #64748b);
            font-weight: 900;
            border-radius: 999px;
            padding: 10px 14px;
            font-size: 13px;
            line-height: 1.1;
        }
        
        /* Stagger micro-motion on scroll */
        [data-stagger].in .featured-pill {
            animation: popIn .55s var(--ease) both;
        }
        
        [data-stagger].in .featured-pill:nth-child(1) { animation-delay: .02s; }
        [data-stagger].in .featured-pill:nth-child(2) { animation-delay: .06s; }
        [data-stagger].in .featured-pill:nth-child(3) { animation-delay: .10s; }
        [data-stagger].in .featured-pill:nth-child(4) { animation-delay: .14s; }
        [data-stagger].in .featured-pill:nth-child(5) { animation-delay: .18s; }
        [data-stagger].in .featured-pill:nth-child(6) { animation-delay: .22s; }
        
        @keyframes popIn {
            0% { transform: translateY(10px) scale(.98); opacity: 0; }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }
        
        [data-reveal].in .u-sweep::after {
            animation: sweepIn .8s var(--ease) both;
        }
        
        @keyframes sweepIn {
            from { transform: scaleX(0); opacity: .18; }
            to { transform: scaleX(1); opacity: .35; }
        }

        .stat {
            text-align: center;
        }

        .amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-primary);
            margin-bottom: 8px;
        }

        .stat .desc {
            color: var(--text-secondary);
            font-size: 0.9375rem;
        }

        /* Calculator Section - Matching reference site */
        .calc-section {
            background: linear-gradient(180deg, #f8fafc 0%, #f4f6f8 100%);
            padding: 80px 0;
        }
        
        .calc-section .kicker {
            color: #8b5cf6;
        }
        
        .calc-section h2 {
            color: #0a1128 !important;
            font-weight: 900 !important;
        }
        
        .calc-section .lead {
            color: #64748b;
        }
        
        .calc-panel {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 24px;
            box-shadow: 0 20px 40px -4px rgba(10, 17, 40, 0.08), 0 8px 16px -4px rgba(10, 17, 40, 0.04);
            overflow: hidden;
        }
        
        .calc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 420px;
        }
        
        .calc-form {
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .calc-result {
            background: #0a1128;
            color: #ffffff;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .calc-result::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 600px 400px at 80% 20%, rgba(59,130,246,0.15) 0%, transparent 70%),
                        radial-gradient(ellipse 500px 300px at 20% 80%, rgba(139,92,246,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .calc-result-inner {
            position: relative;
            z-index: 1;
        }
        
        .calc-label {
            font-size: 13px;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }
        
        .calc-result .calc-label {
            color: rgba(255,255,255,0.7);
        }
        
        .calc-slider-wrap {
            position: relative;
            padding: 8px 0;
        }
        
        .calc-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
            outline: none;
            cursor: pointer;
            touch-action: manipulation;
        }
        
        .calc-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #ffffff;
            border: 3px solid #3b82f6;
            box-shadow: 0 4px 12px rgba(59,130,246,0.3);
            cursor: grab;
            transition: transform 0.15s cubic-bezier(.2,.8,.2,1), box-shadow 0.15s ease;
        }
        
        .calc-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(59,130,246,0.4);
        }
        
        .calc-slider::-webkit-slider-thumb:active {
            cursor: grabbing;
            transform: scale(1.05);
        }
        
        .calc-slider::-moz-range-thumb {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #ffffff;
            border: 3px solid #3b82f6;
            box-shadow: 0 4px 12px rgba(59,130,246,0.3);
            cursor: grab;
        }
        
        .calc-slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 12px;
            color: #64748b;
            font-weight: 600;
        }
        
        .calc-value-display {
            text-align: center;
            padding: 16px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        
        .calc-value-display .amount {
            font-size: 32px;
            color: #3b82f6;
            font-weight: 700;
        }
        
        .calc-estimate {
            font-family: "Playfair Display", Georgia, serif;
            font-weight: 700;
            font-size: clamp(48px, 6vw, 72px);
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.1;
            margin: 16px 0;
            transition: transform 0.1s ease-out;
        }
        
        .calc-estimate-note {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            margin-top: 8px;
        }
        
        .calc-benefits {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
            text-align: left;
            width: 100%;
            max-width: 280px;
        }
        
        .calc-benefit {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            font-weight: 500;
        }
        
        .calc-benefit-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(52,211,153,0.2);
            color: #34d399;
            display: grid;
            place-items: center;
            font-size: 12px;
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: #FFFFFF;
            color: #1A2338;
        }

        .testimonials-section .kicker {
            color: #718096;
        }

        .testimonials-section h2 {
            color: #000000 !important;
            font-weight: 900 !important;
        }

        .testimonials-section .lead {
            color: #4A5568;
        }

        .testimonial-card {
            background: #F8FAFB;
            border-color: #E2E8F0;
        }

        .testimonial-text {
            color: #4A5568;
        }

        .testimonial-name {
            color: #1A2338;
        }

        .testimonial-location {
            color: #718096;
        }
        
        /* Ensure testimonial names are visible on white background */
        .testimonials-section .testimonial-name {
            color: #1A2338 !important;
            font-weight: 600;
        }
        
        .testimonials-section .testimonial-location {
            color: #718096 !important;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        
        /* Mobile: horizontal scroll for testimonials */
        @media (max-width: 768px) {
            .testimonials-grid {
                display: flex;
                grid-template-columns: none;
                gap: 16px;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: thin;
                margin-left: -16px;
                margin-right: -16px;
                padding-left: 16px;
                padding-right: 16px;
            }
            
            .testimonials-grid::-webkit-scrollbar {
                height: 4px;
            }
            
            .testimonials-grid::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 2px;
            }
            
            .testimonials-grid::-webkit-scrollbar-thumb {
                background: #888;
                border-radius: 2px;
            }
            
            .testimonials-grid::-webkit-scrollbar-thumb:hover {
                background: #555;
            }
            
            .testimonials-grid .testimonial-card {
                flex: 0 0 calc(100% - 32px);
                min-width: calc(100% - 32px);
                max-width: calc(100% - 32px);
                scroll-snap-align: start;
            }
        }

        .testimonials-section .btn-ghost {
            background: transparent;
            color: #1A2338;
            border: 1px solid #4F46E5;
            color: #4F46E5;
        }

        .testimonials-section .btn-ghost:hover {
            background: #4F46E5;
            color: #FFFFFF;
            border-color: #4F46E5;
        }

        .testimonial-card {
            background: #FFFFFF;
            padding: 32px;
            border-radius: 16px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .testimonial-stars {
            color: #F59E0B;
            margin-bottom: 16px;
            font-size: 1.125rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: #4A5568;
            margin-bottom: 24px;
            line-height: 1.7;
            font-size: 0.9375rem;
        }

        .testimonial-author {
            display: flex;
            gap: 14px;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid #E2E8F0;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-weight: 600;
            margin-bottom: 4px;
            color: #1A2338 !important;
            font-size: 0.9375rem;
        }

        .testimonial-location {
            font-size: 0.8125rem;
            color: #718096 !important;
            margin-bottom: 6px;
        }
        
        .testimonial-verified {
            font-size: 0.75rem;
            color: #10B981 !important;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        /* Override for testimonials section to ensure visibility */
        .testimonials-section .testimonial-card {
            background: #FFFFFF;
            border-color: #E2E8F0;
        }
        
        .testimonials-section .testimonial-name {
            color: #1A2338 !important;
        }
        
        .testimonials-section .testimonial-location {
            color: #718096 !important;
        }
        
        .testimonials-section .testimonial-text {
            color: #4A5568 !important;
        }

        /* Comparison Table - Matching reference site */
        .comparison-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f4f6f8 0%, #f8fafc 100%);
        }
        
        .comparison-section .kicker {
            color: #8b5cf6;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        
        .comparison-section h2 {
            color: #0a1128;
            font-family: "Playfair Display", Georgia, serif;
            font-weight: 700;
            font-size: clamp(24px, 3vw, 38px);
            line-height: 1.1;
        }
        
        .comparison-section .lead {
            color: #64748b;
            font-size: 18px;
            max-width: 60ch;
        }
        
        .comparison-table-wrap {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 24px;
            box-shadow: 0 20px 40px -4px rgba(10, 17, 40, 0.08), 0 8px 16px -4px rgba(10, 17, 40, 0.04);
            overflow: hidden;
            margin-top: 40px;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 20px 24px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
            white-space: nowrap;
        }
        
        .comparison-table th {
            background: #f8fafc;
            font-weight: 700;
            color: #0a1128;
            font-size: 14px;
        }
        
        .comparison-table th:first-child {
            width: 30%;
            text-align: left;
        }
        
        .comparison-table td {
            font-size: 14px;
            color: #344055;
            font-weight: 500;
        }
        
        .comparison-table td:first-child {
            text-align: left;
        }
        
        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tbody tr:hover {
            background: rgba(59,130,246,0.02);
        }
        
        .comparison-highlight {
            background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(139,92,246,0.05) 100%);
        }
        
        .comparison-highlight th,
        .comparison-highlight td {
            border-left: 3px solid #3b82f6;
        }
        
        .comparison-table th.comparison-safenest,
        .comparison-table td.comparison-highlight {
            text-align: center !important;
            background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, rgba(139,92,246,0.03) 100%) !important;
            border-left: 3px solid #3b82f6 !important;
        }
        
        .comparison-table th.comparison-safenest {
            font-size: 18px !important;
            font-weight: 900 !important;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }
        
        .comparison-check {
            color: #059669;
            font-size: 18px;
            margin-right: 8px;
        }
        
        .comparison-x {
            color: #dc2626;
            font-size: 18px;
            margin-right: 8px;
        }

        /* Timeline */
        .timeline-section {
            padding: 80px 0;
            background: #f4f6f8;
        }
        
        .timeline-section .kicker {
            color: #8b5cf6;
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        
        .timeline-section h2 {
            color: #0a1128;
            font-family: "Playfair Display", Georgia, serif;
            font-weight: 700;
            font-size: clamp(24px, 3vw, 38px);
            line-height: 1.1;
            text-align: center;
        }
        
        .timeline-section .lead {
            color: #64748b;
            font-size: 18px;
            max-width: 60ch;
        }

        .timeline {
            display: flex;
            justify-content: center;
            gap: 24px;
            position: relative;
            margin-top: 48px;
            padding: 0 40px;
            flex-wrap: wrap;
        }

        .timeline::before {
            content: "";
            position: absolute;
            top: 32px;
            left: 80px;
            right: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
            border-radius: 2px;
        }

        .timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            max-width: 200px;
            transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
        }
        
        .timeline-step:hover {
            transform: translateX(8px);
        }
        
        .timeline-step:hover .timeline-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(59,130,246,0.3);
        }

        .timeline-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #ffffff;
            border: 4px solid #3b82f6;
            box-shadow: 0 8px 24px rgba(59,130,246,0.2);
            display: grid;
            place-items: center;
            font-size: 24px;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 20px;
            transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
        }

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

        .timeline-title {
            font-weight: 700;
            color: #0a1128;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .timeline-desc {
            color: #64748b;
            font-size: 14px;
            line-height: 1.5;
            font-weight: 500;
        }

        .timeline-time {
            margin-top: 12px;
            background: #f0fdf4;
            color: #059669;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 999px;
        }

        /* FAQ Accordion */
        .accordion {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .acc-item {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(230, 232, 238, 0.9);
            border-radius: 18px;
            overflow: hidden;
        }

        .acc-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px;
            background: transparent;
            border: 0;
            cursor: pointer;
            text-align: left;
            font-weight: 900;
            color: #0a1128;
            font-size: 1rem;
            transition: color 0.2s;
        }

        .acc-btn:hover {
            color: #4F46E5;
        }

        .acc-panel {
            padding: 0 14px 14px;
            color: #64748b;
            font-weight: 600;
            line-height: 1.6;
            display: none;
            font-size: 0.9375rem;
        }

        .acc-item.open .acc-panel {
            display: block;
        }
        
        .acc-item[aria-expanded="true"] .acc-panel {
            display: block;
        }

        .acc-chevron {
            opacity: 0.55;
            transition: transform 0.18s cubic-bezier(.2,.8,.2,1);
            display: inline-block;
        }

        .acc-item.open .acc-chevron,
        .acc-item[aria-expanded="true"] .acc-chevron {
            transform: rotate(180deg);
        }
        
        #faq .btn-ghost {
            color: #0a1128;
            border-color: #e2e8f0;
        }
        
        #faq .btn-ghost:hover {
            background: #ffffff;
            border-color: #4F46E5;
            color: #4F46E5;
        }
        
        #faq h2 {
            color: #0a1128;
            text-align: left;
        }
        
        #faq .lead {
            color: #64748b;
        }
        

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 16px 0;
            z-index: 999;
            display: none;
        }
        
        .sticky-cta-title {
            font-weight: 900 !important;
        }

        .sticky-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 80px 0 32px;
        }

        .footer-hero {
            margin-bottom: 64px;
        }

        .footer-hero-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 48px;
        }

        .footer-kicker {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .footer-hero-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .footer-hero-sub {
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .footer-hero-cta {
            display: flex;
            gap: 12px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--text-primary);
        }

        .footer-muted {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Help FAB */
        .help-fab {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1000;
        }

        .help-fab-btn {
            width: 64px;
            height: 64px;
            background: var(--accent-primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s;
        }

        .help-fab-btn:hover {
            transform: scale(1.1);
        }

        .help-fab-menu {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 8px;
            min-width: 280px;
            box-shadow: var(--shadow-xl);
        }

        .help-fab-header {
            padding: 12px 16px;
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 8px;
        }

        .help-fab-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--text-primary);
            border-radius: 8px;
            transition: background 0.2s;
        }

        .help-fab-item:hover {
            background: var(--bg-hover);
        }

        /* Address Autocomplete Styles */
        .address-input-container {
            position: relative;
        }

        .address-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 8px 8px;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            max-height: 300px;
            overflow-y: auto;
            margin-top: 2px;
        }

        .address-suggestion-item {
            padding: 12px 16px;
            cursor: pointer;
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.2s ease;
        }

        .address-suggestion-item:hover,
        .address-suggestion-item.selected {
            background-color: var(--bg-hover);
        }

        .address-suggestion-item:last-child {
            border-bottom: none;
        }

        .address-suggestion-main {
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .address-suggestion-secondary {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .grid-2,
            .grid-3,
            .grid-4 {
                grid-template-columns: 1fr;
            }
            
            .hero .grid-2 {
                display: block !important;
            }
            
            .hero .grid-2 > div:first-child {
                text-align: center !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
            }

            .menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
            }

            .nav-cta .btn-ghost {
                display: none;
            }
            
            .nav-cta {
                display: flex !important;
            }
            
            .nav-cta .lang-toggle {
                display: inline-flex !important;
            }
            
            /* 3-column grid: no transform on .brand (fixes iOS Safari clipping SVG <img> descenders) */
            .nav-inner {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
                align-content: center;
                gap: 10px;
                min-height: 80px;
                height: auto;
                padding-top: 14px;
                padding-bottom: 14px;
            }

            .menu-btn {
                grid-column: 1;
                justify-self: start;
                align-self: center;
            }

            .brand {
                grid-column: 2;
                justify-self: center;
                align-self: center;
                position: static;
                left: auto;
                top: auto;
                transform: none;
                overflow: visible;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav-cta {
                grid-column: 3;
                justify-self: end;
                align-self: center;
            }

            .u-sweep {
                font-size: 2.5rem;
            }

            .timeline {
                flex-direction: column;
                gap: 32px;
                padding: 0;
            }

            .timeline::before {
                top: 0;
                bottom: 0;
                left: 32px;
                right: auto;
                width: 4px;
                height: auto;
            }

            .timeline-step {
                flex-direction: row;
                text-align: left;
                max-width: none;
                gap: 20px;
            }
            
            .timeline-step:hover {
                transform: none;
            }

            .timeline-icon {
                flex-shrink: 0;
                margin-bottom: 0;
            }

            .timeline-content {
                flex: 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .comparison-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .comparison-table {
                min-width: 600px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 16px;
                font-size: 13px;
            }
            
            /* Mobile PREESH column styling */
            .comparison-table th.comparison-safenest,
            .comparison-table td.comparison-highlight {
                text-align: center !important;
                background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, rgba(139,92,246,0.03) 100%) !important;
                border-left: 3px solid #3b82f6 !important;
            }
            
            .comparison-table th.comparison-safenest {
                font-size: 15px !important;
                font-weight: 900 !important;
                background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
                -webkit-background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
                background-clip: text !important;
            }

            .panel-stats {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stat {
                min-height: auto;
                padding: 10px 0;
            }

            .stat-icon {
                height: 300px;
            }

            /* Mobile money animation - same smooth fall, adjusted for smaller screen */
            .stats:not(.in) .money-svg {
                bottom: 140px;
            }

            .money-svg {
                height: 120px;
            }

            .stats.in .money-svg {
                animation: moneyFallMobile 2.8s ease-in-out forwards;
            }

            @keyframes moneyFallMobile {
                0%   { bottom: 140px; transform: translateX(-50%) rotate(-2deg); }
                5%   { bottom: 133px; transform: translateX(calc(-50% + 2px)) rotate(-1deg); }
                10%  { bottom: 126px; transform: translateX(calc(-50% + 3px)) rotate(1deg); }
                15%  { bottom: 118px; transform: translateX(calc(-50% + 2px)) rotate(2deg); }
                20%  { bottom: 110px; transform: translateX(calc(-50% + 1px)) rotate(1deg); }
                25%  { bottom: 102px; transform: translateX(calc(-50% - 2px)) rotate(-1deg); }
                30%  { bottom: 94px; transform: translateX(calc(-50% - 3px)) rotate(-2deg); }
                35%  { bottom: 86px; transform: translateX(calc(-50% - 2px)) rotate(-1deg); }
                40%  { bottom: 78px; transform: translateX(calc(-50% - 0.5px)) rotate(0deg); }
                45%  { bottom: 70px; transform: translateX(calc(-50% + 1px)) rotate(1deg); }
                50%  { bottom: 63px; transform: translateX(calc(-50% + 2px)) rotate(1.5deg); }
                55%  { bottom: 56px; transform: translateX(calc(-50% + 1.5px)) rotate(1deg); }
                60%  { bottom: 49px; transform: translateX(calc(-50% + 0.5px)) rotate(0deg); }
                65%  { bottom: 42px; transform: translateX(calc(-50% - 1px)) rotate(-0.8deg); }
                70%  { bottom: 35px; transform: translateX(calc(-50% - 1.5px)) rotate(-1deg); }
                75%  { bottom: 28px; transform: translateX(calc(-50% - 1px)) rotate(-0.5deg); }
                80%  { bottom: 22px; transform: translateX(calc(-50% - 0.3px)) rotate(0deg); }
                85%  { bottom: 17px; transform: translateX(calc(-50% + 0.5px)) rotate(0.3deg); }
                90%  { bottom: 13px; transform: translateX(calc(-50% + 0.5px)) rotate(0.2deg); }
                95%  { bottom: 11px; transform: translateX(calc(-50% + 0.2px)) rotate(0.1deg); }
                100% { bottom: 10px; transform: translateX(-50%) rotate(0deg); }
            }

            .address-bar {
                flex-direction: column;
            }

            .hero-cta-row {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta-row .btn {
                width: 100%;
                justify-content: center;
            }

            .pill-row {
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: flex-start;
                gap: 12px;
            }
            
            .pill {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            
            .pill-ico {
                width: 16px;
                height: 16px;
            }

            .calc-grid {
                grid-template-columns: 1fr;
            }
            
            .calc-form {
                padding: 24px;
            }
            
            .calc-result {
                padding: 32px 24px;
            }
        }

        @media (max-width: 768px) {
            .hero-art {
                display: none !important;
            }
            
            .comparison-table-wrap {
                margin-left: -16px;
                margin-right: -16px;
                padding: 0;
                border-radius: 24px;
            }
            
            .comparison-table {
                min-width: 500px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 12px 10px;
                font-size: 12px;
            }

            .wrap {
                padding: 0 16px;
            }

            .hero {
                padding: 0px 0 80px;
            }

            .hero-inner {
                padding: 0;
            }

            .hero .address-bar {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 10px;
                background: transparent;
                border: none;
                padding: 0;
                width: 100%;
                max-width: 100%;
                align-items: center;
            }
            
            .hero .address-bar .ac-wrap {
                width: 100%;
            }
            
            .hero .address-bar .input {
                width: 100%;
                padding: 16px 18px;
                font-size: 16px;
                border-radius: 14px;
                background: rgba(255,255,255,0.08);
                border: 1px solid rgba(255,255,255,0.18);
                text-align: center;
            }
            
            .hero .address-bar .input::placeholder {
                text-align: center;
            }
            
            .hero .address-bar .btn {
                width: 100%;
                padding: 16px 24px;
                font-size: 16px;
                font-weight: 700;
            }
            
            .address-bar {
                flex-direction: column;
                gap: 12px;
            }

            .address-bar .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-cta-row {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }

            .hero-cta-row .btn {
                width: 100%;
                justify-content: center;
            }

            .panel {
                padding: 32px 24px;
            }

            .panel-stats {
                padding: 32px 24px;
            }

            .stat .amount {
                font-size: clamp(2rem, 5vw, 2.8rem);
            }
            
            .calc-form {
                padding: 20px;
            }
            
            .calc-result {
                padding: 24px 20px;
            }
            
        }

        /* Social Proof Toast */

        /* Exit Intent Popup */
        .exit-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 17, 40, 0.7);
            backdrop-filter: blur(4px);
            z-index: 200;
            display: none;
            place-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .exit-popup-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }
        
        .exit-popup-overlay:not([hidden]) {
            display: grid;
        }
        
        .exit-popup {
            background: var(--surface, #ffffff);
            border-radius: 20px;
            max-width: 420px;
            width: 100%;
            position: relative;
            box-shadow: 0 24px 64px rgba(0,0,0,0.2);
            transform: scale(0.9) translateY(20px);
            transition: transform 0.35s var(--ease, cubic-bezier(.2,.8,.2,1));
        }
        
        .exit-popup-overlay.show .exit-popup {
            transform: scale(1) translateY(0);
        }
        
        .exit-popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: none;
            background: #f1f5f9;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            color: var(--muted, #64748b);
            transition: background 0.15s ease, color 0.15s ease;
        }
        
        .exit-popup-close:hover {
            background: #e2e8f0;
            color: var(--ink, #0a1128);
        }
        
        .exit-popup-content {
            padding: 40px 32px 32px;
            text-align: center;
        }
        
        .exit-popup-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .exit-popup-title {
            font-size: 24px;
            color: var(--ink, #0a1128);
            margin-bottom: 12px;
        }
        
        .exit-popup-text {
            font-size: 15px;
            color: var(--text, #344055);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        
        .exit-popup-dismiss {
            margin-top: 16px;
            background: transparent;
            border: none;
            color: var(--muted, #64748b);
            font-size: 13px;
            cursor: pointer;
            text-decoration: underline;
            transition: color 0.15s ease;
        }
        
        .exit-popup-dismiss:hover {
            color: var(--text, #344055);
        }
        
        @media (max-width: 700px) {
            .exit-popup-content {
                padding: 32px 24px 24px;
            }
            .exit-popup-title {
                font-size: 20px;
            }
        }

        /* Mobile Menu Drawer */
        .scrim {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .scrim.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* Ensure scrim is hidden on desktop */
        @media (min-width: 1025px) {
            .scrim {
                display: none !important;
            }
        }

        .drawer {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 320px;
            max-width: 90vw;
            background: rgba(255,255,255,.98) !important;
            border-right: 1px solid rgba(230,232,238,.9);
            z-index: 1000;
            transform: translateX(-100%);
            transition: transform 0.3s;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        /* Force drawer to always have light background */
        body.dark-theme .drawer,
        body.safeness-design .drawer,
        [data-theme="dark"] .drawer {
            background: rgba(255,255,255,.98) !important;
        }

        .drawer.open {
            transform: translateX(0);
        }
        
        /* Ensure drawer is hidden on desktop */
        @media (min-width: 1025px) {
            .drawer {
                display: none !important;
            }
        }

        /* Animations */
        [data-reveal] {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s;
        }

        [data-reveal].revealed {
            opacity: 1;
            transform: translateY(0);
        }
