
        /* Base / Design System Tokens */
        :root {
            --bg-page: #030014;
            --text-primary: #f4f0ff;
            --text-secondary: rgba(239, 237, 253, 0.7);
            --text-muted: rgba(239, 237, 253, 0.5);
            --gradient-primary: linear-gradient(90.01deg, #e59cff .01%, #ba9cff 50.01%, #9cb2ff 100%);
            --border-light: rgba(255, 255, 255, 0.08);
            --border-dim: rgba(255, 255, 255, 0.04);
            --glass-bg: rgba(255, 255, 255, 0.01);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        /* Generic Font Faces if local not found */
        @font-face {
            font-family: 'AeonikPro';
            src: local('AeonikPro-Medium'), local('Arial');
            font-weight: 500;
        }

        @font-face {
            font-family: 'Inter V';
            src: local('Inter-Medium'), local('Arial');
            font-weight: 500;
        }

        @font-face {
            font-family: 'Inter V';
            src: local('Inter-Regular'), local('Arial');
            font-weight: 400;
        }

        /* Resets */
        * {
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-page);
            color: var(--text-primary);
            font-family: 'Inter V', 'Inter', system-ui, -apple-system, sans-serif;
            overflow-x: hidden;
            width: 100vw;
            min-height: 100vh;
        }

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

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

        ::selection {
            background: rgba(147, 130, 255, 0.5);
            color: #fff;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'AeonikPro', 'Inter', system-ui, sans-serif;
            font-weight: 500;
        }

        /* Container */
        .container {
            max-width: 1248px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons */
        .button {
            font-size: 14px;
            line-height: 20px;
            font-weight: 500;
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            border-radius: 8px;
            color: var(--text-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            position: relative;
            width: max-content;
            cursor: pointer;
            z-index: 1;
        }

        .button::before,
        .button::after,
        .button-border {
            border-radius: inherit;
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: -1;
        }

        .button::before,
        .button::after {
            content: "";
            display: block;
            transition: .3s opacity cubic-bezier(.6, .6, 0, 1);
        }

        .button::after {
            opacity: 0;
        }

        .button:hover::before {
            opacity: 0;
        }

        .button:hover::after {
            opacity: 1;
        }

        /* Primary Button */
        .button-primary .button-border::before {
            background: linear-gradient(180deg, rgba(207, 184, 255, .24) 0%, rgba(207, 184, 255, 0) 100%),
                linear-gradient(0deg, rgba(207, 184, 255, .32), rgba(207, 184, 255, .32));
            border-radius: inherit;
            content: "";
            inset: 0;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 1px;
            pointer-events: none;
            position: absolute;
        }

        .button-primary::before {
            background: linear-gradient(180deg, rgba(60, 8, 126, 0) 0%, rgba(60, 8, 126, .32) 100%), rgba(113, 47, 255, .12);
            box-shadow: inset 0 0 12px rgba(191, 151, 255, 0.24);
        }

        .button-primary::after {
            background: linear-gradient(180deg, rgba(60, 8, 126, 0) 0%, rgba(60, 8, 126, .42) 100%), rgba(113, 47, 255, .24);
            box-shadow: inset 0 0 12px rgba(191, 151, 255, 0.44);
        }

        /* Secondary Button */
        .button-secondary .button-border {
            border: 1px solid var(--border-light);
        }

        .button-secondary::before {
            background: linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgba(243, 238, 255, .04) 100%), rgba(147, 130, 255, .01);
            box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
        }

        .button-secondary::after {
            box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgba(243, 238, 255, .05) 100%), rgba(147, 130, 255, .04);
        }

        /* Hero Layout & Structure */
        .hero {
            position: relative;
            padding-top: 140px;
            padding-bottom: 80px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        /* Background Effects */
        .hero::before {
            content: "";
            background: radial-gradient(40% 60% at 50% 20%, rgba(113, 47, 255, 0.12) 0%, rgba(3, 0, 20, 0) 100%);
            display: block;
            height: 1000px;
            left: 50%;
            pointer-events: none;
            position: absolute;
            top: -200px;
            transform: translateX(-50%);
            width: 1440px;
            z-index: 0;
            filter: blur(40px);
        }

        /* Particles Layer */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(3, 0, 20, 0.95);
            backdrop-filter: blur(10px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            color: #fff;
            padding: 8px;
            cursor: pointer;
        }

        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 32px;
            text-align: center;
        }

        .mobile-menu-link {
            font-size: 24px;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .mobile-menu-link:hover {
            color: #BA9CFF;
        }

        .mobile-menu-cta {
            margin-top: 40px;
            background: linear-gradient(180deg, rgba(60, 8, 126, 0) 0%, rgba(60, 8, 126, .32) 100%), rgba(113, 47, 255, .12);
            box-shadow: inset 0 0 12px rgba(191, 151, 255, 0.24);
            border: 1px solid rgba(191, 151, 255, 0.44);
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
        }

        /* Eyebrow / Badge */
        .hero-badge {
            isolation: isolate;
            overflow: hidden;
            align-items: center;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            border-radius: 32px;
            box-shadow: inset 0 -7px 11px rgba(164, 143, 255, 0.12);
            display: inline-flex;
            margin: 0 auto 24px;
            padding: 6px 16px 6px 14px;
            position: relative;
            width: max-content;
            transition: .45s cubic-bezier(.6, .6, 0, 1) box-shadow;
            opacity: 0;
            /* JS Will animate */
        }

        .hero-badge::after {
            background: linear-gradient(90.01deg, rgba(229, 156, 255, .24) .01%, rgba(186, 156, 255, .24) 50.01%, rgba(156, 178, 255, .24) 100%);
            border-radius: inherit;
            content: "";
            inset: 0;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 1px;
            pointer-events: none;
            position: absolute;
        }

        .hero-badge-icon {
            margin-right: 8px;
            color: #E59CFF;
            width: 16px;
            height: 16px;
        }

        .hero-badge-text {
            background: linear-gradient(0deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), var(--gradient-primary);
            background-blend-mode: normal, screen;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Headline */
        .hero-headline {
            font-size: 64px;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            opacity: 0;
        }

        .hero-headline span {
            background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        /* Description */
        .hero-description {
            font-size: 18px;
            line-height: 28px;
            color: var(--text-secondary);
            font-weight: 400;
            max-width: 680px;
            margin: 0 auto 32px;
            opacity: 0;
        }

        /* CTAs */
        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 40px;
            opacity: 0;
        }

        /* Micro Proofs */
        .hero-proofs {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 80px;
            flex-wrap: wrap;
            opacity: 0;
        }



        .hero-proof-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .hero-proof-item svg {
            color: #9cb2ff;
            width: 16px;
            height: 16px;
        }

        /* Dashboard Wrapper (3D perspective) */
        .dashboard-wrapper {
            position: relative;
            z-index: 10;
            max-width: 1152px;
            width: 100%;
            margin: 0 auto;
            padding: 0 24px;
            perspective: 1400px;
            opacity: 0;
            /* JS Array */
        }

        /* Dashboard Glowing Backdrop Layer */
        .dashboard-wrapper::before {
            content: "";
            position: absolute;
            top: 20%;
            left: 50%;
            width: 80%;
            height: 80%;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(147, 130, 255, 0.15) 0%, rgba(3, 0, 20, 0) 70%);
            filter: blur(60px);
            z-index: -1;
            pointer-events: none;
        }

        /* Dashboard Container */
        .dashboard-mockup {
            background: rgba(8, 5, 24, 0.6);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            box-shadow:
                0 40px 100px -20px rgba(0, 0, 0, 0.8),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05),
                0 0 40px rgba(113, 47, 255, 0.1);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            transform-style: preserve-3d;
            overflow: hidden;
            position: relative;
            transform-origin: top center;
        }

        /* Top Bar */
        .db-topbar {
            height: 52px;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--border-dim);
            display: flex;
            align-items: center;
            padding: 0 24px;
            position: relative;
        }

        .db-dots {
            display: flex;
            gap: 8px;
        }

        .db-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .db-dot.red {
            background: #FF5F56;
        }

        .db-dot.yellow {
            background: #FFBD2E;
        }

        .db-dot.green {
            background: #27C93F;
        }

        .db-brand {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .db-brand svg {
            width: 14px;
            height: 14px;
            color: #BA9CFF;
        }

        /* Inner Content */
        .db-content {
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Premium Dashboard Stacked Slider */
        .db-slider-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            width: 100%;
            padding: 70px 0 20px 0;
            position: relative;
        }

        .db-slider {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            perspective: 2000px;
            z-index: 10;
        }

        .db-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(8, 5, 24, 0.8);
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 1), 0 -10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform-origin: top center;
            opacity: 0;
            will-change: transform, opacity, filter, z-index;
            cursor: pointer;
        }

        .db-slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 12px;
        }

        .slider-controls {
            display: flex;
            gap: 16px;
            z-index: 20;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }

        .slider-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
            backdrop-filter: blur(12px);
            cursor: pointer;
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 0 20px rgba(186, 156, 255, 0.2);
        }

        .slider-btn svg {
            width: 22px;
            height: 22px;
        }

        /* Mobile Adjustments */
        @media (max-width: 1024px) {
            .hero-headline {
                font-size: 56px !important;
            }
        }

        @media (max-width: 768px) {
            .hero-headline {
                font-size: 32px !important;
            }

            .hero-description {
                font-size: 16px;
                line-height: 24px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }

            .button {
                width: 100%;
            }

            .features-title {
                font-size: 28px !important;
            }

            .hero-proofs {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }

            .hero::before {
                width: 100vw;
            }
        }

        /* Features Section (Second Fold) */
        .features {
            position: relative;
            padding: 120px 24px;
            background-color: var(--bg-page);
            overflow: hidden;
            z-index: 10;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-header {
            max-width: 600px;
            margin-bottom: 64px;
        }

        .features-title {
            font-size: 42px;
            line-height: 1.2;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .features-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s ease, background 0.3s ease;
            cursor: default;
        }

        /* Premium Glow Hover Effect */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(186, 156, 255, 0.15), transparent 40%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            border-color: rgba(186, 156, 255, 0.3);
            background: rgba(255, 255, 255, 0.03);
        }

        .feature-icon-wrapper {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .feature-icon-wrapper svg {
            width: 20px;
            height: 20px;
            color: #BA9CFF;
            /* Purple from design system */
        }

        .feature-content h3 {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .feature-content p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* Clients Marquee Section (Third Fold) */
        .clients-marquee-section {
            padding: 100px 24px;
            background: linear-gradient(180deg, var(--bg-page) 0%, rgba(8, 5, 24, 0.4) 100%);
            position: relative;
            z-index: 10;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .clients-eyebrow {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .clients-headline {
            font-size: 36px;
            font-weight: 500;
            text-align: center;
            color: #fff;
            max-width: 800px;
            margin-bottom: 64px;
            line-height: 1.2;
        }

        .clients-headline span {
            background: linear-gradient(90deg, #E59CFF 0%, #BA9CFF 50%, #9CB2FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (min-width: 768px) {
            .clients-headline {
                font-size: 48px;
            }
        }

        .marquee-container {
            width: 100%;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            overflow: hidden;
            padding: 16px 0;
            max-width: 1400px;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 45s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .marquee-item {
            flex-shrink: 0;
            margin: 0 16px;
            width: 180px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 24px rgba(255, 255, 255, 0.02);
            transition: all 0.3s ease-out;
            cursor: pointer;
        }

        .marquee-item:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(186, 156, 255, 0.1);
        }

        .marquee-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            opacity: 0.7;
            filter: grayscale(100%) brightness(200%);
            transition: all 0.3s ease-out;
        }

        .marquee-item:hover .marquee-logo {
            opacity: 1;
            filter: grayscale(0%) brightness(100%);
            filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
        }

        /* Mobile Adjustments for Clients */
        @media (max-width: 768px) {
            .clients-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* Testimonials Section (Fourth Fold) */
        .testimonials {
            padding: 120px 24px;
            background-color: var(--bg-page);
            position: relative;
            overflow: hidden;
            z-index: 10;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            border-radius: 50%;
            background: #BA9CFF;
            opacity: 0.05;
            filter: blur(100px);
            pointer-events: none;
            z-index: 0;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .testimonials-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 80px;
            opacity: 0;
            /* Animated */
        }

        .testimonials-eyebrow {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .testimonials-title {
            font-size: 42px;
            line-height: 1.2;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .testimonials-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            height: 700px;
            overflow: hidden;
            mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        }

        .testimonial-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
            animation: scroll-vertical 15s linear infinite;
            will-change: transform;
        }

        .testimonial-column:hover {
            animation-play-state: paused;
        }

        .col-slow {
            animation-duration: 18s;
        }

        .col-medium {
            animation-duration: 16s;
        }

        .testimonial-group {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        @keyframes scroll-vertical {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(calc(-50% - 12px));
            }
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            transition: background 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .t-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .t-author {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: auto;
        }

        .t-name {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .t-role {
            font-size: 13px;
            font-weight: 500;
            color: #9cb2ff;
        }

        /* Responsive Testimonials */
        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .t-wrap-3 {
                display: none;
                /* Hide 3rd column on tablet */
            }

            .testimonials-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .t-wrap-2 {
                display: none;
                /* Hide 2nd column on mobile */
            }

            .testimonials-title {
                font-size: 32px;
            }
        }

        /* Process Section (Fifth Fold - Bento Box) */
        .process {
            padding: 120px 24px;
            background-color: var(--bg-page);
            position: relative;
            z-index: 10;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 64px;
            opacity: 0;
            /* Animated */
        }

        .process-title {
            font-size: 42px;
            line-height: 1.2;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .process-subtitle-1 {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .process-subtitle-2 {
            font-size: 19px;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.5;
        }

        /* Bento Grid Layout */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1px;
            background: rgba(255, 255, 255, 0.08);
            /* Inner borders */
            border: 1px solid rgba(255, 255, 255, 0.08);
            /* Outer border */
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
        }

        .bento-card {
            background: var(--bg-page);
            padding: 48px 40px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: background 0.4s ease;
            opacity: 0;
            /* Animated */
        }

        .bento-card:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .bento-span-3 {
            grid-column: span 3;
        }

        .bento-span-2 {
            grid-column: span 2;
        }

        .bento-span-5 {
            grid-column: span 5;
            flex-direction: row;
            align-items: center;
            padding: 40px;
        }

        /* Subtle Glows inside specific cards (like reference) */
        .bg-glow-1::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle at top right, rgba(186, 156, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .bg-glow-2::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle at bottom right, rgba(147, 130, 255, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .bg-glow-3::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 200px;
            background: radial-gradient(ellipse at bottom, rgba(186, 156, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .bento-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: 0.3s ease;
        }

        .bento-card:hover .bento-icon {
            border-color: rgba(186, 156, 255, 0.3);
            background: rgba(186, 156, 255, 0.1);
        }

        .bento-icon svg {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            transition: 0.3s ease;
        }

        .bento-card:hover .bento-icon svg {
            color: #BA9CFF;
        }

        .bento-card h3 {
            font-size: 20px;
            font-weight: 500;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }

        .bento-card p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .bento-content-wide {
            flex: 1;
        }

        @media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bento-span-3,
            .bento-span-2 {
                grid-column: span 1;
            }

            .bento-span-5 {
                grid-column: span 2;
                flex-direction: column;
                align-items: flex-start;
            }

            .process-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-span-3,
            .bento-span-2,
            .bento-span-5 {
                grid-column: span 1;
            }

            .bento-card {
                padding: 32px;
            }

            .process-title {
                font-size: 32px;
            }
        }

        /* Interactive Dashboards Section (Sixth Fold) */
        .dash-section {
            padding: 120px 24px;
            background-color: var(--bg-page);
            position: relative;
            z-index: 10;
        }

        .dash-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
        }

        .dash-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .dash-header h2 {
            font-size: 40px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .dash-header p {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Fixed Dark Card for Active Tab (Left Side) */
        .dash-info-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            min-height: 380px;
        }

        .dash-info-card::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 40px;
            width: 3px;
            height: 48px;
            background: #BA9CFF;
            border-radius: 0 4px 4px 0;
            filter: drop-shadow(0 0 8px rgba(186, 156, 255, 0.6));
        }

        .dash-info-step {
            display: none;
            flex-direction: column;
            gap: 24px;
            animation: fadeIn 0.4s ease forwards;
        }

        .dash-info-step.active {
            display: flex;
        }

        .dash-info-step-header {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(186, 156, 255, 0.15);
            border: 1px solid rgba(186, 156, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #BA9CFF;
        }

        .dash-info-step h3 {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            margin: 0;
        }

        .dash-info-step p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin: 0;
        }

        .dash-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: filter 0.3s;
            margin-top: 8px;
            width: max-content;
        }

        .dash-btn:hover {
            filter: brightness(1.1);
        }

        .dash-idle-tabs {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-left: 16px;
        }

        .dash-idle-tab {
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s, transform 0.3s;
        }

        .dash-idle-tab:hover {
            opacity: 0.9;
            transform: translateX(4px);
        }

        .dash-idle-tab .tab-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--text-muted);
        }

        .dash-idle-tab h3 {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
            margin: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-4px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dash-visuals {
            position: relative;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            /* Minimal border */
            background: rgba(0, 0, 0, 0.6);
            overflow: hidden;
            width: 100%;
            height: 600px;
            box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
        }

        .dash-track {
            display: flex;
            flex-direction: row;
            /* Horizontal Slide */
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform;
        }

        .dash-slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            padding: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dash-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* Stop clipping */
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        }

        /* Carousel Controls */
        .dash-controls {
            position: absolute;
            bottom: 24px;
            right: 24px;
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .dash-control-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(30, 30, 35, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dash-control-btn:hover {
            background: rgba(50, 50, 60, 0.9);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        @media (max-width: 1024px) {
            .dash-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .dash-visuals {
                height: 400px;
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .dash-header h2 {
                font-size: 28px !important;
            }
            .dash-content {
                display: contents;
            }
            .dash-header {
                order: -2;
            }
            .dash-visuals {
                order: -1;
            }
            .dash-info-card {
                order: 0;
            }
            .dash-idle-tabs {
                order: 1;
            }
        }

        /* ─── Differentials Section (Seventh Fold) ──────────────────────── */
        .diff-section {
            padding: 140px 24px;
            background: linear-gradient(180deg, var(--bg-page) 0%, #08080e 100%);
            position: relative;
            overflow: hidden;
        }

        /* Subtle ambient glow in the background */
        .diff-section::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 80%;
            background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .diff-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* ─── LEFT: 3D Symbol Visual ─── */
        .diff-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .diff-symbol-wrap {
            position: relative;
            width: 100%;
            max-width: 440px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Spinning ring behind the symbol */
        .diff-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px solid rgba(186, 156, 255, 0.12);
            animation: diff-spin 30s linear infinite;
        }

        .diff-ring-2 {
            inset: 20px;
            border-color: rgba(186, 156, 255, 0.07);
            animation-duration: 50s;
            animation-direction: reverse;
        }

        @keyframes diff-spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Radial glow beneath the symbol */
        .diff-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
            animation: diff-pulse 4s ease-in-out infinite;
        }

        @keyframes diff-pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        .diff-symbol-img {
            position: relative;
            z-index: 2;
            width: 90%;
            height: 90%;
            object-fit: contain;
            filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.5)) drop-shadow(0 0 80px rgba(186, 156, 255, 0.2));
            animation: diff-float 6s ease-in-out infinite;
        }

        @keyframes diff-float {

            0%,
            100% {
                transform: translateY(0px) rotateY(0deg);
            }

            25% {
                transform: translateY(-12px) rotateY(4deg);
            }

            75% {
                transform: translateY(8px) rotateY(-4deg);
            }
        }

        /* ─── RIGHT: Content ─── */
        .diff-content {
            display: flex;
            flex-direction: column;
            gap: 36px;
            /* slightly tighter to match image height */
        }

        .diff-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .diff-eyebrow {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #BA9CFF;
        }

        .diff-title {
            font-size: 42px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .diff-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 520px;
        }

        /* Feature bullets */
        .diff-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
            /* Standardize vertical spacing */
            position: relative;
            z-index: 10;
        }

        .diff-feature {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            /* Top-aligns the icon with the title for a sharper reading line */
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            background: rgba(255, 255, 255, 0.015);
            transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        /* Mouse glow effect on hover (same as Feature Cards) */
        .diff-feature::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(186, 156, 255, 0.08) 0%, transparent 70%);
            left: var(--mx, -9999px);
            top: var(--my, -9999px);
            transform: translate(-50%, -50%);
            pointer-events: none;
            transition: opacity 0.2s;
            border-radius: 50%;
        }

        .diff-feature:hover {
            border-color: rgba(186, 156, 255, 0.15);
            background: rgba(255, 255, 255, 0.03);
            transform: translateX(4px);
        }

        .diff-feature-icon {
            width: 56px;
            /* Larger icon to match reference */
            height: 56px;
            border-radius: 14px;
            background: rgba(186, 156, 255, 0.05);
            /* Softer background */
            border: 1px solid rgba(186, 156, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #BA9CFF;
            transition: background 0.4s, border-color 0.4s;
        }

        .diff-feature:hover .diff-feature-icon {
            background: rgba(186, 156, 255, 0.18);
            border-color: rgba(186, 156, 255, 0.5);
        }

        .diff-feature-body h4 {
            font-size: 16px;
            /* Slightly larger title */
            font-weight: 600;
            color: #FFFFFF;
            margin: 0 0 6px;
            line-height: 1.4;
        }

        .diff-feature-body p {
            font-size: 14px;
            color: rgba(239, 237, 253, 0.6);
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .diff-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .diff-visual {
                order: -1;
            }

            .diff-symbol-wrap {
                max-width: 280px;
            }

            .diff-glow {
                width: 200px;
                height: 200px;
            }

            .diff-title {
                font-size: 32px;
            }
        }

        /* ─── Pricing Section (Eighth Fold) ──────────────────────── */
        .pricing-section {
            padding: 140px 24px;
            background-color: #030014;
            position: relative;
            overflow: hidden;
        }

        /* Ambient Glow */
        .pricing-section::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: rgba(124, 58, 237, 0.15);
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            transition: background 1s ease;
        }

        .pricing-section:hover::before {
            background: rgba(124, 58, 237, 0.25);
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .pricing-header {
            text-align: center;
            margin-bottom: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .pricing-eyebrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 16px;
            border-radius: 999px;
            border: 1px solid rgba(186, 156, 255, 0.2);
            background: rgba(186, 156, 255, 0.1);
            backdrop-filter: blur(8px);
            color: #BA9CFF;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: inset 0 -7px 11px rgba(164, 143, 255, 0.12);
        }

        .pricing-title {
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.15;
            letter-spacing: -0.02em;
            max-width: 800px;
        }

        .pricing-title span {
            background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .pricing-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.6;
        }

        /* Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: stretch;
        }

        /* Cards */
        .pricing-card {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            /* Ensure the card fills the stretched grid cell */
            padding: 48px;
            /* Roomier padding like reference */
            border-radius: 32px;
            /* Bigger rounded corners */
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease;
        }

        .pricing-card-default {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pricing-card-default:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
        }

        .pricing-card-popular {
            background: linear-gradient(180deg, #130B29 0%, #080514 100%);
            border: 1px solid rgba(186, 156, 255, 0.5);
            box-shadow: 0 0 80px -20px rgba(186, 156, 255, 0.25);
        }

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

        /* Internal Highlight Ring for popular */
        .pricing-card-popular::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            border: 1px solid rgba(186, 156, 255, 0.1);
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #7C3AED 0%, #BA9CFF 100%);
            color: #FFFFFF;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 16px;
            border-radius: 999px;
            white-space: nowrap;
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
            z-index: 10;
        }

        .pricing-card-header {
            margin-bottom: 32px;
        }

        .pricing-card-name {
            font-size: 30px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 8px;
        }

        .pricing-card-category {
            font-size: 18px;
            font-weight: 500;
            color: #BA9CFF;
            margin-bottom: 16px;
        }

        .pricing-card-desc {
            font-size: 14px;
            color: rgba(239, 237, 253, 0.6);
            line-height: 1.6;
            min-height: 44px;
        }

        /* Features List */
        .pricing-features-list {
            /* Remove flex-grow here so the list only takes the height it needs */
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* Flexible Spacer to push footer down identically in all cards */
        .pricing-card-spacer {
            flex-grow: 1;
        }

        .pricing-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-left: -32px;
            /* Hanging checkmarks so text aligns with the card Title */
        }

        .pricing-feature-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(186, 156, 255, 0.1);
            border: 1px solid rgba(186, 156, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #BA9CFF;
            margin-top: 2px;
        }

        .pricing-feature-icon svg {
            width: 12px;
            height: 12px;
        }

        .pricing-feature-text {
            font-size: 14px;
            color: rgba(239, 237, 253, 0.8);
            line-height: 1.6;
        }

        /* Footer inside card */
        .pricing-card-footer {
            /* margin-top: auto is no longer needed here since the spacer pushes it */
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pricing-target {
            font-size: 13px;
            color: rgba(239, 237, 253, 0.6);
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.5;
            min-height: 40px;
            /* Force minimum space so "Quero esse plano" buttons align exactly */
        }

        .pricing-target strong {
            display: block;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            font-style: normal;
            margin-bottom: 4px;
        }

        /* Custom Button for Pricing */
        .pricing-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            color: #FFFFFF;
        }

        .pricing-btn-default {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pricing-btn-default:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .pricing-btn-popular {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.1);
        }

        .pricing-btn-popular:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .pricing-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .pricing-btn:hover::after {
            opacity: 1;
        }

        .pricing-disclaimer {
            text-align: center;
            max-width: 800px;
            margin: 100px auto 0;
            /* Increased margin specifically separating from the cards */
            font-size: 13px;
            color: rgba(239, 237, 253, 0.4);
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .pricing-title {
                font-size: 36px;
            }

            .pricing-title span {
                display: inline;
            }

            .pricing-card-popular {
                transform: translateY(0);
            }

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

        @media (max-width: 768px) {
            .pricing-title {
                font-size: 28px !important;
            }
        }

        /* ─── FAQ Section (Ninth Fold) ───────────────────────── */
        .faq-section {
            padding: 140px 24px;
            background-color: #030014;
            position: relative;
            overflow: hidden;
        }

        /* Subtle Glow */
        .faq-section::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: rgba(186, 156, 255, 0.05);
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

        .faq-container {
            max-width: 800px;
            /* Narrower for better readability */
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .faq-title {
            font-size: 48px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }

        .faq-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .faq-item.active {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            text-align: left;
            background: transparent;
            border: none;
            cursor: pointer;
            color: #efedfd;
            font-size: 18px;
            font-weight: 500;
            font-family: inherit;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-icon svg {
            width: 16px;
            height: 16px;
        }

        .faq-item.active .faq-icon {
            background: rgba(186, 156, 255, 0.2);
            color: #BA9CFF;
            transform: rotate(45deg);
        }

        .faq-answer-wrapper {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer-wrapper {
            grid-template-rows: 1fr;
        }

        .faq-answer-inner {
            overflow: hidden;
        }

        .faq-answer-content {
            padding: 0 24px 24px 24px;
            color: rgba(239, 237, 253, 0.6);
            font-size: 15px;
            line-height: 1.7;
        }

        .faq-answer-content p {
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            white-space: pre-line;
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 36px;
            }

            .faq-question {
                font-size: 16px;
                padding: 20px;
                gap: 16px;
            }

            .faq-answer-content {
                padding: 0 20px 20px 20px;
                font-size: 14px;
            }
        }

        /* ─── Lead Capture Section (Tenth Fold) ──────────────── */
        .lead-section {
            padding: 140px 24px;
            background-color: #030014;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
        }

        .lead-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: flex;
            gap: 48px;
            align-items: stretch;
            justify-content: space-between;
        }

        /* Left Column: Visual Panel */
        .lead-visual-panel {
            width: 45%;
            position: relative;
            border-radius: 32px;
            padding: 56px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lead-panel-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #1A0B2E 0%, #080514 100%);
            border: 1px solid rgba(186, 156, 255, 0.1);
            border-radius: 32px;
            z-index: 0;
        }

        .lead-panel-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
            opacity: 0.6;
            pointer-events: none;
            transition: opacity 0.7s ease;
            z-index: 0;
        }

        .lead-visual-panel:hover .lead-panel-glow {
            opacity: 1;
        }

        .lead-panel-blur {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(186, 156, 255, 0.1);
            filter: blur(100px);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .lead-panel-content {
            position: relative;
            z-index: 10;
        }

        .lead-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 16px;
            border-radius: 999px;
            border: 1px solid rgba(186, 156, 255, 0.2);
            background: rgba(186, 156, 255, 0.1);
            backdrop-filter: blur(8px);
            color: #BA9CFF;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: inset 0 -7px 11px rgba(164, 143, 255, 0.12);
            margin-bottom: 32px;
        }

        .lead-title {
            font-size: 48px;
            font-weight: 500;
            color: #FFFFFF;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }

        .lead-title span {
            background: linear-gradient(90deg, #BA9CFF 0%, #FFFFFF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lead-description {
            font-size: 18px;
            color: rgba(239, 237, 253, 0.6);
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .lead-benefits {
            margin-bottom: 40px;
        }

        .lead-benefits-title {
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .lead-benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .lead-benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(239, 237, 253, 0.8);
            font-size: 15px;
        }

        .lead-benefit-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #BA9CFF;
            box-shadow: 0 0 8px rgba(186, 156, 255, 0.8);
        }

        .lead-flow {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .lead-flow-step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .lead-flow-step:hover {
            opacity: 1;
        }

        .lead-flow-step.active {
            opacity: 1;
        }

        .lead-flow-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: #FFFFFF;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .lead-flow-step.active .lead-flow-number {
            background: rgba(186, 156, 255, 0.1);
            border-color: rgba(186, 156, 255, 0.3);
            color: #BA9CFF;
        }

        .lead-flow-text {
            font-size: 14px;
            color: rgba(239, 237, 253, 0.6);
            padding-top: 6px;
        }

        .lead-flow-step.active .lead-flow-text {
            color: #FFFFFF;
        }

        /* Right Column: Form */
        .lead-form-panel {
            width: 55%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .lead-form-box {
            background: #0A0714;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.5);
        }

        .lead-form-header {
            margin-bottom: 32px;
        }

        .lead-form-title {
            font-size: 24px;
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 8px;
        }

        .lead-form-subtitle {
            font-size: 14px;
            color: rgba(239, 237, 253, 0.6);
            line-height: 1.6;
        }

        .lead-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .lead-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .lead-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .lead-label {
            font-size: 14px;
            font-weight: 500;
            color: rgba(239, 237, 253, 0.8);
        }

        .lead-label span {
            color: #BA9CFF;
        }

        .lead-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 14px 16px;
            color: #FFFFFF;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: all 0.3s ease;
        }

        .lead-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
        }

        .lead-input::placeholder {
            color: rgba(239, 237, 253, 0.3);
        }

        .lead-input:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .lead-input:focus {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(186, 156, 255, 0.5);
            box-shadow: 0 0 0 4px rgba(186, 156, 255, 0.1);
        }

        .lead-input.error {
            border-color: rgba(239, 68, 68, 0.5);
        }

        .lead-input.error:focus {
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
        }

        .lead-error-msg {
            font-size: 12px;
            color: #F87171;
            margin-top: 4px;
            display: none;
        }

        .lead-input.error+.lead-error-msg {
            display: block;
        }

        .lead-form-submit {
            margin-top: 8px;
        }

        .lead-submit-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 12px;
            background: #FFFFFF;
            color: #030014;
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: inherit;
        }

        .lead-submit-btn:hover {
            background: #efedfd;
            transform: scale(1.01);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
        }

        .lead-submit-btn:disabled {
            opacity: 0.7;
            transform: none;
            cursor: not-allowed;
            box-shadow: none;
        }

        .lead-submit-btn .btn-text {
            position: relative;
            z-index: 2;
        }

        .lead-submit-btn .btn-shimmer {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            transform: translateX(-100%);
            z-index: 1;
            pointer-events: none;
        }

        .lead-submit-btn:hover .btn-shimmer {
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }

        .lead-disclaimer {
            text-align: center;
            font-size: 12px;
            color: rgba(239, 237, 253, 0.4);
            margin-top: 16px;
        }

        /* Success Message State */
        .lead-success-overlay {
            position: absolute;
            inset: 0;
            background: #0A0714;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 48px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            z-index: 20;
        }

        .lead-success-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }

        .lead-success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(186, 156, 255, 0.1);
            border: 1px solid rgba(186, 156, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #BA9CFF;
            margin-bottom: 24px;
        }

        .lead-success-icon svg {
            width: 32px;
            height: 32px;
        }

        .lead-success-title {
            font-size: 24px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .lead-success-desc {
            font-size: 15px;
            color: rgba(239, 237, 253, 0.6);
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .lead-container {
                flex-direction: column;
                gap: 56px;
            }

            .lead-visual-panel,
            .lead-form-panel {
                width: 100%;
                max-width: 100%;
            }

            .lead-form-box {
                padding: 40px 32px;
            }
        }

        @media (max-width: 768px) {
            .lead-form-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .lead-title {
                font-size: 36px;
            }

            .lead-visual-panel {
                padding: 40px 32px;
            }
        }

        /* ─── Footer Section ─────────────────────────────────── */
        .footer-section {
            background-color: #030014;
            padding: 80px 24px 32px;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-family: 'Inter', sans-serif;
            overflow: hidden;
        }

        .footer-glow {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 300px;
            background: radial-gradient(ellipse at bottom, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

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

        /* Brand Column */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .footer-logo img {
            height: 24px;
            width: auto;
            display: block;
        }

        .footer-desc {
            color: rgba(239, 237, 253, 0.6);
            font-size: 15px;
            line-height: 1.6;
            max-width: 320px;
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(239, 237, 253, 0.6);
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: rgba(186, 156, 255, 0.1);
            border-color: rgba(186, 156, 255, 0.3);
            color: #BA9CFF;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(186, 156, 255, 0.2);
        }

        .footer-social-link svg {
            width: 18px;
            height: 18px;
        }

        /* Links Columns */
        .footer-nav-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-nav-title {
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .footer-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-nav-list a {
            color: rgba(239, 237, 253, 0.6);
            font-size: 15px;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-flex;
            width: fit-content;
        }

        .footer-nav-list a:hover {
            color: #BA9CFF;
        }

        /* Contact Details */
        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(239, 237, 253, 0.6);
            font-size: 15px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item:hover {
            color: #BA9CFF;
        }

        .footer-contact-item i {
            color: #BA9CFF;
            opacity: 0.8;
        }

        /* Bottom Bar */
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-copyright {
            color: rgba(239, 237, 253, 0.4);
            font-size: 13px;
        }

        .footer-dev {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(239, 237, 253, 0.4);
            font-size: 12px;
        }

        .footer-dev img {
            height: 16px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .footer-dev:hover img {
            opacity: 1;
        }

        .footer-dev-text {
            display: block;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }
        }

        /* ─── Header (Navbar) ─────────────────────────────────── */
        .header-section {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            /* Start hidden for GSAP */
            opacity: 0;
            width: 90%;
            max-width: 960px;
            z-index: 1000;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 7, 20, 0.4);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            padding: 10px 10px 10px 24px;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .header-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .header-logo:hover {
            transform: scale(1.05);
        }

        .header-logo img {
            height: 16px;
            width: auto;
            display: block;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .header-nav-link {
            color: rgba(239, 237, 253, 0.7);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .header-nav-link:hover {
            color: #FFFFFF;
        }

        .header-nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #BA9CFF;
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
            opacity: 0;
        }

        .header-nav-link:hover::after {
            width: 16px;
            opacity: 1;
        }

        .header-cta-btn {
            background: linear-gradient(90deg, #4A25E1 0%, #7C3AED 100%);
            color: #FFFFFF;
            padding: 10px 24px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(186, 156, 255, 0.3);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 0 transparent;
        }

        .header-cta-btn:hover {
            transform: translateY(-1px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 16px rgba(124, 58, 237, 0.4);
            border-color: rgba(186, 156, 255, 0.6);
        }

        .header-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #FFFFFF;
            padding: 8px;
            cursor: pointer;
        }

        @media (max-width: 900px) {
            .header-nav {
                display: none;
            }

            .header-cta-btn {
                display: none;
            }

            .header-mobile-toggle {
                display: flex;
            }

            .header-container {
                padding: 12px 24px;
            }
        }
    