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

        :root {
            /* ===== COLORS ===== */
            --bg-primary: #0a0e17;
            --bg-secondary: #0f1520;
            --bg-card: rgba(15, 21, 32, 0.6);
            --bg-elevated: rgba(255, 255, 255, 0.03);
            --bg-hover: rgba(255, 255, 255, 0.05);
            --bg-active: rgba(255, 255, 255, 0.08);
            --border-color: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.15);
            --border-active: rgba(255, 255, 255, 0.2);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
            --text-faint: rgba(255, 255, 255, 0.3);
            --accent-cyan: #00d4aa;
            --accent-teal: #00b894;
            --accent-blue: #0984e3;
            --accent-lime: #a7d400;
            --accent-lime-dark: #8fb800;
            --color-success: #27ca3f;
            --color-error: #ef4444;
            --color-error-light: #ff5f56;
            --color-warning: #ffbd2e;
            --color-star: #fbbf24;
            --gradient-text: linear-gradient(135deg, #00d4aa 0%, #00b894 50%, #0984e3 100%);
            --gradient-accent: linear-gradient(135deg, #00d4aa, #00b894, #0984e3);
            --gradient-lime: linear-gradient(135deg, var(--accent-lime), var(--accent-lime-dark));
            --glass-bg: rgba(15, 21, 32, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);

            /* ===== TYPOGRAPHY ===== */
            --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Space Grotesk', var(--font-sans);

            --text-xs: 12px;
            --text-sm: 14px;
            --text-base: 16px;
            --text-lg: 18px;
            --text-xl: 20px;
            --text-2xl: 24px;
            --text-3xl: 32px;
            --text-4xl: 48px;
            --leading-tight: 1.1;
            --leading-snug: 1.3;
            --leading-normal: 1.6;
            --leading-relaxed: 1.8;

            /* ===== SPACING (8px base) ===== */
            --space-1: 4px;
            --space-2: 8px;
            --space-3: 12px;
            --space-4: 16px;
            --space-5: 20px;
            --space-6: 24px;
            --space-8: 32px;
            --space-10: 40px;
            --space-12: 48px;
            --space-16: 64px;
            --space-20: 80px;
            --space-24: 96px;
            --space-32: 128px;
            --section-padding: 140px 0;
            --section-padding-tablet: 80px 0;
            --section-padding-mobile: 60px 0;

            /* ===== BORDER RADIUS ===== */
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --radius-full: 100px;

            /* ===== SHADOWS ===== */
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
            --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
            --shadow-glow-strong: 0 0 60px rgba(0, 212, 170, 0.3);

            /* ===== ANIMATION ===== */
            --duration-fast: 0.2s;
            --duration-base: 0.4s;
            --duration-slow: 0.8s;
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: var(--leading-normal);
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* ===== UTILITIES ===== */
        .text-gradient {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            /* Ensures gradient applies correctly on some browsers */
        }

        /* ===== PREMIUM BACKGROUND EFFECTS ===== */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 170, 0.15), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(9, 132, 227, 0.1), transparent),
                radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 184, 148, 0.08), transparent);
            pointer-events: none;
            z-index: 0;
        }

        /* Animated grain texture overlay */
        .grain-overlay {
            position: fixed;
            top: -50%;
            left: -50%;
            right: -50%;
            bottom: -50%;
            width: 200%;
            height: 200%;
            background: transparent url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E") repeat;
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
            animation: grain 8s steps(10) infinite;
        }

        @keyframes grain {

            0%,
            100% {
                transform: translate(0, 0);
            }

            10% {
                transform: translate(-5%, -10%);
            }

            20% {
                transform: translate(-15%, 5%);
            }

            30% {
                transform: translate(7%, -25%);
            }

            40% {
                transform: translate(-5%, 25%);
            }

            50% {
                transform: translate(-15%, 10%);
            }

            60% {
                transform: translate(15%, 0%);
            }

            70% {
                transform: translate(0%, 15%);
            }

            80% {
                transform: translate(3%, 35%);
            }

            90% {
                transform: translate(-10%, 10%);
            }
        }

        /* Floating orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            z-index: 0;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(9, 132, 227, 0.12) 0%, transparent 70%);
            bottom: -100px;
            right: -150px;
            animation-delay: -7s;
            animation-duration: 25s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 184, 148, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -14s;
            animation-duration: 30s;
        }

        @keyframes float {

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

            25% {
                transform: translate(30px, -30px) scale(1.05);
            }

            50% {
                transform: translate(-20px, 20px) scale(0.95);
            }

            75% {
                transform: translate(20px, 30px) scale(1.02);
            }
        }

        /* Grid pattern overlay */
        .grid-pattern {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 1;
            mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
            -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
        }

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

        /* ===== SCROLL-TRIGGERED ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all var(--duration-slow) var(--ease-out);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        .reveal-delay-6 {
            transition-delay: 0.6s;
        }

        /* ===== NAVIGATION ===== */
        header {
            position: relative;
            z-index: 1100;
        }

        main {
            position: relative;
            z-index: 1;
        }

        .nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 48px);
            max-width: 900px;
            opacity: 1;
            transition: top var(--duration-fast) var(--ease-out);
        }

        @keyframes navSlideDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 6px 6px 16px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-full);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            transition: all var(--duration-fast) ease;
        }

        .nav-inner:hover {
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--duration-fast) ease;
        }

        .nav-logo:hover .nav-logo-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: var(--text-2xl);
            letter-spacing: -0.02em;
            color: var(--text-primary);
            font-style: italic;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-link {
            padding: 8px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: var(--text-sm);
            font-weight: 500;
            border-radius: var(--radius-full);
            transition: all var(--duration-fast) var(--ease-out);
            border: 1px solid transparent;
            position: relative;
            background: transparent;
        }

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

        .nav-link.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--glass-border);
        }

        .nav-login {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: var(--text-sm);
            font-weight: 500;
            padding: 8px 12px;
            transition: color var(--duration-fast) ease;
        }

        .nav-login:hover {
            color: var(--text-primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-cta {
            padding: 8px 20px;
            background: var(--text-primary);
            color: var(--bg-primary);
            text-decoration: none;
            font-size: var(--text-sm);
            font-weight: 600;
            border-radius: var(--radius-full);
            transition: all var(--duration-fast) var(--ease-out);
            margin-left: 0;
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left var(--duration-base) ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        .nav-cta:hover::before {
            left: 100%;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 140px 24px 80px;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.3);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--accent-cyan);
            margin-bottom: 32px;
            opacity: 1;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.2), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-cyan);
            border-radius: 50%;
            animation: pulse 2s infinite;
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        @keyframes pulse {

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

            50% {
                opacity: 0.5;
                transform: scale(0.9);
            }
        }

        .hero-title {
            font-size: clamp(44px, 9vw, 80px);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .hero-title-white {
            color: var(--text-primary);
            opacity: 1;
            display: block;
        }

        .hero-title-gradient {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: italic;
            opacity: 1;
            display: block;
            position: relative;
        }

        /* Animated gradient text */
        .hero-title-gradient {
            background: linear-gradient(135deg, #00d4aa, #00b894, #0984e3, #00d4aa);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 8s ease-in-out infinite;
            padding-bottom: 0.1em;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .hero-subtitle {
            font-size: clamp(16px, 2.5vw, 20px);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
            opacity: 1;
        }

        .hero-ctas {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 1;
            position: relative;
            z-index: 2;
            pointer-events: auto;
        }

        .hero-quote {
            margin-top: 32px;
            text-align: center;
            opacity: 1;
        }

        .hero-quote-text {
            font-size: var(--text-base);
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 12px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .hero-quote-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: var(--text-sm);
        }

        .hero-quote-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
        }

        .hero-quote-name {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .hero-quote-info {
            color: var(--text-muted);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: var(--gradient-text);
            background-size: 200% 200%;
            color: var(--bg-primary);
            text-decoration: none;
            font-size: var(--text-base);
            font-weight: 700;
            letter-spacing: -0.01em;
            border-radius: 10px;
            transition: all var(--duration-base) var(--ease-out);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow:
                0 12px 40px rgba(0, 212, 170, 0.35),
                0 4px 12px rgba(0, 212, 170, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform var(--duration-fast) var(--ease-out);
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-primary);
            text-decoration: none;
            font-size: var(--text-base);
            font-weight: 600;
            letter-spacing: -0.01em;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all var(--duration-base) var(--ease-out);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.04);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--duration-base) var(--ease-out);
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary:hover::before {
            transform: scaleX(1);
        }

        .btn-secondary:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .hero-features {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-top: 48px;
            flex-wrap: wrap;
            justify-content: center;
            opacity: 1;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: var(--text-sm);
            transition: all var(--duration-fast) ease;
        }

        .hero-feature:hover {
            color: var(--text-primary);
        }

        .hero-feature:hover svg {
            transform: scale(1.2);
        }

        .hero-feature svg {
            width: 16px;
            height: 16px;
            color: var(--accent-cyan);
            transition: transform var(--duration-fast) ease;
        }

        /* Hero App Preview */
        .hero-preview {
            margin-top: 80px;
            width: 100%;
            max-width: 1245px;
            opacity: 1;
            perspective: 1000px;
            position: relative;
            isolation: isolate;
        }

        .hero-preview::before {
            content: '';
            position: absolute;
            inset: -120px -80px -80px;
            background:
                radial-gradient(ellipse at 50% 35%, rgba(118, 162, 255, 0.35), rgba(118, 162, 255, 0.08) 45%, transparent 65%),
                radial-gradient(ellipse at 18% 65%, rgba(0, 232, 208, 0.25), rgba(0, 232, 208, 0.05) 45%, transparent 65%),
                radial-gradient(ellipse at 82% 65%, rgba(156, 85, 255, 0.28), rgba(156, 85, 255, 0.06) 45%, transparent 65%);
            filter: blur(70px);
            z-index: -1;
            opacity: 0.95;
            animation: heroGlowPulse 9s ease-in-out infinite;
        }

        @keyframes heroGlowPulse {
            0% {
                transform: scale(0.98);
                opacity: 0.85;
            }

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

            100% {
                transform: scale(0.98);
                opacity: 0.85;
            }
        }

        .hero-preview-window {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 25px 80px rgba(0, 0, 0, 0.5),
                0 0 120px rgba(0, 212, 170, 0.16),
                0 0 180px rgba(118, 162, 255, 0.18);
            transition: all var(--duration-base) var(--ease-out);
            transform-style: preserve-3d;
            animation: heroFloat 6s ease-in-out infinite;
        }

        @keyframes heroFloat {

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

            50% {
                transform: translateY(-10px) rotateX(1deg);
            }
        }

        .hero-preview-window:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 40px 100px rgba(0, 0, 0, 0.6),
                0 0 150px rgba(0, 212, 170, 0.15);
        }

        .hero-preview-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }

        .hero-preview-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: transform var(--duration-fast) ease;
        }

        .hero-preview-window:hover .hero-preview-dot {
            transform: scale(1.2);
        }

        .hero-preview-dot.red {
            background: var(--color-error-light);
        }

        .hero-preview-dot.yellow {
            background: var(--color-warning);
        }

        .hero-preview-dot.green {
            background: var(--color-success);
        }

        .hero-preview-content {
            padding: 0;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-card);
            position: relative;
            overflow: hidden;
        }

        /* Animated lines in preview */
        .hero-preview-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(40px, 40px);
            }
        }

        .hero-preview-placeholder {
            text-align: center;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        .hero-preview-placeholder svg {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
            opacity: 0.4;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {

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

            50% {
                transform: scale(1.05);
                opacity: 0.6;
            }
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            padding: 50px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .trust-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.03), transparent);
            animation: trustShimmer 5s ease-in-out infinite;
        }

        @keyframes trustShimmer {

            0%,
            100% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }
        }

        .trust-bar-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            position: relative;
        }

        .trust-bar-label {
            font-size: var(--text-sm);
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }

        .trust-bar-logos {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .trust-bar-logo {
            font-size: var(--text-xl);
            font-weight: 600;
            color: var(--text-secondary);
            opacity: 0.7;
            transition: opacity var(--duration-fast) ease;
        }

        .trust-bar-logo:hover {
            opacity: 1;
        }

        .trust-bar-stats {
            display: flex;
            align-items: center;
            gap: 80px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .trust-stat {
            text-align: center;
            transition: transform var(--duration-fast) ease;
        }

        .trust-stat:hover {
            transform: translateY(-5px);
        }

        .trust-stat-number {
            font-size: var(--text-4xl);
            font-weight: 800;
            background: var(--gradient-text);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease-in-out infinite;
        }

        .trust-stat-label {
            font-size: var(--text-sm);
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ===== INLINE QUOTE ===== */
        .inline-quote {
            padding: 60px 0;
            text-align: center;
            position: relative;
        }

        .inline-quote-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .inline-quote-text {
            font-size: var(--text-2xl);
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
            position: relative;
        }

        .inline-quote-text::before {
            content: '"';
            font-size: 60px;
            font-weight: 800;
            color: rgba(0, 212, 170, 0.2);
            position: absolute;
            top: -20px;
            left: -10px;
            font-style: normal;
        }

        .inline-quote-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .inline-quote-avatar {
            width: 56px;
            height: 56px;
            background: var(--gradient-text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: var(--text-xl);
            color: var(--bg-primary);
        }

        .inline-quote-info {
            text-align: left;
        }

        .inline-quote-name {
            font-weight: 600;
            font-size: var(--text-lg);
            color: var(--text-primary);
        }

        .inline-quote-role {
            font-size: var(--text-sm);
            color: var(--text-muted);
        }

        .inline-quote-highlight {
            font-size: var(--text-sm);
            color: var(--accent-cyan);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .inline-quote-text {
                font-size: 18px;
            }

            .inline-quote-text::before {
                font-size: 40px;
                top: -10px;
                left: 0;
            }
        }

        /* ===== ENTERPRISE LOGOS ===== */
        .logo-section {
            padding: 80px 0;
        }

        .logo-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 40px;
        }

        .logo-eyebrow {
            font-size: var(--text-sm);
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .logo-eyebrow::before,
        .logo-eyebrow::after {
            content: '';
            width: 28px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.4));
        }

        .logo-title {
            font-size: var(--text-3xl);
            margin: 16px 0 10px;
            line-height: 1.2;
        }

        .logo-subtitle {
            color: var(--text-secondary);
            font-size: var(--text-base);
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            align-items: center;
        }

        .logo-pill {
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.02);
            padding: 16px 18px;
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.2px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .logo-pill::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(9, 132, 227, 0.08));
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

        .logo-pill span {
            position: relative;
            z-index: 1;
        }

        .logo-pill:hover::after {
            opacity: 1;
        }

        .logo-pill.muted {
            color: var(--text-muted);
            border-style: dashed;
        }

        /* ===== CREDIBILITY STACK ===== */
        .cred-section {
            padding: 120px 0;
            position: relative;
        }

        .cred-header {
            max-width: 780px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .cred-title {
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .cred-subtitle {
            color: var(--text-secondary);
            font-size: var(--text-base);
            line-height: 1.7;
        }

        .cred-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
            margin-bottom: 32px;
        }

        .cred-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px;
            position: relative;
            overflow: hidden;
        }

        .cred-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(9, 132, 227, 0.06));
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

        .cred-card:hover::after {
            opacity: 1;
        }

        .cred-metric {
            font-size: var(--text-3xl);
            font-weight: 800;
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .cred-label {
            color: var(--text-secondary);
            margin-top: 6px;
            position: relative;
            z-index: 1;
        }

        .badge-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin-bottom: 32px;
        }

        .badge-pill {
            border: 1px dashed var(--border-color);
            background: rgba(255, 255, 255, 0.02);
            padding: 14px 16px;
            border-radius: var(--radius-md);
            text-align: center;
            color: var(--text-primary);
            font-weight: 600;
            letter-spacing: 0.2px;
        }

        .press-strip {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .press-pill {
            padding: 10px 14px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* ===== CUSTOMERS & PROOF ===== */
        .customers-section {
            padding: 140px 0 80px;
        }

        .customers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .customers-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .customers-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.06), rgba(9, 132, 227, 0.05));
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

        .customers-card:hover::after {
            opacity: 1;
        }

        .customers-title {
            font-size: var(--text-lg);
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .customers-text {
            color: var(--text-secondary);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .customers-metric {
            font-size: var(--text-2xl);
            font-weight: 800;
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        /* ===== STORY ===== */
        .story-section {
            padding: 140px 0;
            position: relative;
        }

        /* Temp hide Story section/nav until we re-enable it */
        .story-section,
        .nav-link[href="#story"] {
            display: none;
        }

        /* Temp hide Features section */
        .features-section {
            display: none;
        }

        .story-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            align-items: start;
            margin-top: 40px;
        }

        .story-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .story-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 212, 170, 0.06), rgba(9, 132, 227, 0.05));
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

        .story-card:hover::after {
            opacity: 1;
        }

        .story-heading {
            font-size: var(--text-2xl);
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .story-text {
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .quote-section {
            padding: 40px 0 0;
        }

        .quote-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-top: 32px;
            justify-items: stretch;
        }

        @media (max-width: 900px) {
            .quote-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

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

        .quote-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px 28px 28px;
            position: relative;
            transition: all var(--duration-base) var(--ease-out);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .quote-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
            opacity: 0;
            transition: opacity var(--duration-base) var(--ease-out);
        }

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

        .quote-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 212, 170, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 212, 170, 0.04);
        }

        .quote-mark {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            opacity: 0.6;
        }

        .quote-text {
            font-family: var(--font-sans);
            font-size: var(--text-base);
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 0;
            font-weight: 400;
            font-style: italic;
            flex: 1;
        }

        .quote-author {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 15px;
        }

        .quote-role {
            color: var(--text-muted);
            font-size: var(--text-sm);
            line-height: 1.4;
        }

        .quote-author-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .quote-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--bg-secondary);
            border: 2px solid rgba(0, 212, 170, 0.2);
            transition: border-color var(--duration-base) var(--ease-out);
        }

        .quote-card:hover .quote-avatar {
            border-color: rgba(0, 212, 170, 0.5);
        }

        .quote-author-info {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        /* ===== FEATURE SHOWCASE ===== */
        .feature-showcase {
            padding: 120px 0;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .feature-showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .feature-showcase-content {
            max-width: 540px;
        }

        .feature-showcase-title {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .feature-showcase-title .gradient {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-showcase-subtitle {
            font-size: var(--text-lg);
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .feature-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .feature-pill {
            padding: 10px 20px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.2);
            border-radius: var(--radius-xl);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--accent-cyan);
            transition: all var(--duration-fast) ease;
        }

        .feature-pill:hover {
            background: rgba(0, 212, 170, 0.15);
            border-color: rgba(0, 212, 170, 0.3);
            transform: translateY(-2px);
        }

        .feature-showcase-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: var(--accent-cyan);
            color: var(--bg-primary);
            font-weight: 600;
            font-size: var(--text-base);
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all var(--duration-fast) ease;
        }

        .feature-showcase-cta:hover {
            background: var(--accent-teal);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
        }

        .feature-showcase-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
            background: var(--bg-secondary);
        }

        .feature-showcase-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (max-width: 968px) {
            .feature-showcase-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .feature-showcase-title {
                font-size: 42px;
            }
        }

        /* ===== FEATURES GRID ===== */
        .features-grid-section {
            padding: 140px 0;
            background: var(--bg-primary);
        }

        .features-grid-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .features-grid-title {
            font-size: var(--text-4xl);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .features-grid-title .gradient {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-grid-subtitle {
            font-size: var(--text-lg);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

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

        .feature-grid-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all var(--duration-fast) ease;
            position: relative;
            overflow: hidden;
        }

        .feature-grid-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-text);
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

        .feature-grid-card:hover {
            border-color: rgba(0, 212, 170, 0.3);
            transform: translateY(-4px);
        }

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

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(0, 212, 170, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--accent-cyan);
            font-size: var(--text-2xl);
            font-weight: 700;
        }

        .feature-grid-card-title {
            font-size: var(--text-xl);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .feature-grid-card-desc {
            font-size: var(--text-sm);
            line-height: 1.6;
            color: var(--text-secondary);
        }

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

            .features-grid-title {
                font-size: 38px;
            }
        }

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

        /* ===== STACKED TABS FEATURES ===== */
        .stacked-features-section {
            padding: 140px 0;
            background: var(--bg-primary);
        }

        .stacked-features-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .stacked-features-title {
            font-size: var(--text-4xl);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .stacked-features-title .gradient {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stacked-features-subtitle {
            font-size: var(--text-lg);
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .stacked-features-content {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-tabs {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-tab {
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--duration-fast) ease;
            position: relative;
        }

        .feature-tab::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-text);
            opacity: 0;
            border-radius: 16px 0 0 16px;
            transition: opacity var(--duration-fast) ease;
        }

        .feature-tab:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(0, 212, 170, 0.3);
        }

        .feature-tab.active {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 212, 170, 0.4);
        }

        .feature-tab.active::before {
            opacity: 1;
        }

        .feature-tab-icon {
            font-size: var(--text-3xl);
            margin-bottom: 12px;
            display: block;
        }

        .feature-tab-title {
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .feature-tab-toggle {
            font-size: var(--text-xl);
            color: var(--text-secondary);
            transition: transform var(--duration-fast) ease;
        }

        .feature-tab.expanded .feature-tab-toggle {
            transform: rotate(45deg);
        }

        .feature-tab-desc {
            font-size: var(--text-sm);
            line-height: 1.5;
            color: var(--text-secondary);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all var(--duration-fast) ease;
            margin: 0;
            padding-top: 0;
        }

        .feature-tab.expanded .feature-tab-desc {
            max-height: 200px;
            opacity: 1;
            padding-top: 12px;
        }

        .feature-display {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
            background: var(--bg-secondary);
            height: 500px;
        }

        .feature-display img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

        .feature-display img.active {
            opacity: 1;
        }

        @media (max-width: 968px) {
            .stacked-features-content {
                grid-template-columns: 1fr;
            }

            .stacked-features-title {
                font-size: 38px;
            }
        }

        /* ===== HERO CONTENT ===== */
        .hero-content-section {
            padding: 140px 0;
            background: var(--bg-primary);
        }

        .hero-content-section .container {
            max-width: 1293px;
        }

        .hero-content-wrapper {
            max-width: 1293px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-content-title {
            font-size: var(--text-4xl);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 60px;
            color: var(--text-primary);
        }

        .hero-content-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
            background: var(--bg-secondary);
            margin-bottom: 32px;
        }

        .hero-content-image img {
            width: 1245px !important;
            max-width: 100%;
            height: auto;
            display: none;
            margin: 0 auto;
        }

        .hero-content-image img.active {
            display: block;
        }

        .hero-content-image video {
            width: 1245px !important;
            max-width: 100%;
            height: auto;
            display: none;
            margin: 0 auto;
            border-radius: var(--radius-md);
        }

        .hero-content-image video.active {
            display: block;
        }

        .hero-content-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .hero-content-tabs {
            position: relative;
            display: inline-flex;
            gap: 0;
            justify-content: center;
            margin-top: 40px;
            padding: 8px;
            background: rgba(13, 17, 23, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
            backdrop-filter: blur(10px);
        }

        .hero-tab-slider {
            position: absolute;
            top: 8px;
            left: 8px;
            height: calc(100% - 16px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-full);
            transition: all var(--duration-fast) var(--ease-smooth);
            z-index: 0;
        }

        .hero-content-tab {
            position: relative;
            padding: 16px 28px;
            background: transparent;
            border: none;
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color var(--duration-fast) ease;
            font-family: inherit;
            z-index: 1;
            white-space: nowrap;
        }

        .hero-content-tab:hover {
            color: var(--text-primary);
        }

        .hero-content-tab.active {
            color: var(--text-primary);
            font-weight: 600;
        }

        @media (max-width: 900px) {
            .hero-content-tabs {
                flex-wrap: wrap;
                border-radius: var(--radius-md);
                gap: 4px;
            }

            .hero-content-tab {
                padding: 12px 18px;
                font-size: var(--text-sm);
                border-radius: var(--radius-md);
            }

            .hero-tab-slider {
                display: none;
            }

            .hero-content-tab.active {
                background: rgba(255, 255, 255, 0.1);
            }
        }

        /* Legacy badge styles for backwards compatibility */
        .hero-content-badges {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 32px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-full);
        }

        .hero-content-badge {
            padding: 12px 28px;
            background: transparent;
            border: 1px solid transparent;
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--duration-fast) ease;
        }

        .hero-content-badge:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
        }

        .hero-content-badge.active {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.15);
            color: var(--text-primary);
        }

        .hero-content-description {
            font-size: var(--text-lg);
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .hero-content-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin: 12px 0 8px;
            max-width: 900px;
        }

        .hero-content-category {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 12px 14px;
            color: var(--text-primary);
            font-size: var(--text-sm);
        }

        .hero-content-category-icon {
            font-size: var(--text-base);
            line-height: 1;
        }

        .hero-content-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: var(--text-base);
            text-decoration: none;
            transition: all var(--duration-fast) ease;
        }

        .hero-content-link:hover {
            gap: 12px;
            color: var(--accent-teal);
        }

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

        /* ===== FEATURED QUOTE ===== */
        .featured-quote-section {
            padding: 140px 0;
            background: var(--bg-primary);
        }

        .featured-quote-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            gap: 60px;
        }

        .featured-quote-icon {
            font-size: 120px;
            line-height: 1;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }

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

        .featured-quote-text {
            font-size: var(--text-3xl);
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 40px;
        }

        .featured-quote-attribution {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .featured-quote-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
        }

        .featured-quote-author-info {
            display: flex;
            flex-direction: column;
        }

        .featured-quote-author {
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--text-primary);
        }

        .featured-quote-role {
            font-size: var(--text-sm);
            color: var(--text-secondary);
        }

        @media (max-width: 968px) {
            .featured-quote-wrapper {
                flex-direction: column;
                gap: 32px;
            }

            .featured-quote-icon {
                font-size: 80px;
            }

            .featured-quote-text {
                font-size: 28px;
            }
        }

        /* ===== PROBLEM/SOLUTION ===== */
        .problem-section {
            padding: 140px 0;
            position: relative;
        }

        .section-label {
            display: inline-block;
            font-size: var(--text-xl);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-cyan);
            margin-bottom: 20px;
            position: relative;
        }

        .section-label::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient-text);
        }

        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: var(--text-lg);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .problem-rows {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 70px;
        }

        .problem-row {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            align-items: stretch;
        }

        .problem-row-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            color: var(--text-muted);
            font-size: 20px;
            opacity: 0.3;
        }

        .problem-card {
            padding: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            transition: all var(--duration-base) var(--ease-out);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 56px 1fr;
            grid-template-rows: auto auto;
            align-items: center;
            gap: 8px 18px;
        }

        .problem-card:not(.solution) {
            background: rgba(239, 68, 68, 0.02);
            border-color: rgba(239, 68, 68, 0.08);
        }

        .problem-card:not(.solution) .problem-card-title {
            color: var(--text-secondary);
        }

        .problem-card:not(.solution) .problem-card-text {
            color: var(--text-muted);
        }

        .problem-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        }

        .problem-card:not(.solution):hover {
            border-color: rgba(239, 68, 68, 0.15);
        }

        .problem-card.solution {
            border-color: rgba(0, 212, 170, 0.2);
            background: rgba(0, 212, 170, 0.04);
        }

        .problem-card.solution:hover {
            border-color: rgba(0, 212, 170, 0.35);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(0, 212, 170, 0.06);
        }

        .problem-card.solution::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        @media (max-width: 1024px) {
            .problem-row {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .problem-row-arrow {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .problem-section {
                padding: 80px 0;
            }
            .problem-rows {
                margin-top: 36px;
                gap: 12px;
            }
            .problem-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .problem-card {
                padding: 20px 18px;
                grid-template-columns: 40px 1fr;
                gap: 4px 12px;
            }
            .problem-card-icon {
                width: 40px;
                height: 40px;
            }
            .problem-card-icon svg {
                width: 18px;
                height: 18px;
            }
            .problem-card-title {
                font-size: 15px;
            }
            .problem-card-text {
                font-size: 13px;
                line-height: 1.5;
            }
        }

        .problem-card-icon {
            grid-row: 1 / span 2;
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform var(--duration-fast) ease;
        }

        .problem-card:hover .problem-card-icon {
            transform: scale(1.05);
        }

        .problem-card-icon.red {
            background: rgba(255, 95, 86, 0.1);
            color: var(--color-error-light);
        }

        .problem-card-icon.green {
            background: rgba(0, 212, 170, 0.12);
            color: var(--accent-cyan);
            box-shadow: 0 0 24px rgba(0, 212, 170, 0.15);
        }

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

        .problem-card-title {
            font-size: var(--text-lg);
            font-weight: 700;
            margin-bottom: 4px;
        }

        .problem-card-text {
            color: var(--text-secondary);
            font-size: var(--text-sm);
            line-height: 1.7;
        }

        /* ===== FEATURES ===== */
        .features-section {
            padding: 140px 0;
            position: relative;
        }

        .features-header {
            text-align: center;
            margin-bottom: 80px;
        }

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

        .feature-card {
            padding: 44px 36px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            transition: all var(--duration-base) var(--ease-out);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-text);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--duration-base) var(--ease-out);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top, rgba(0, 212, 170, 0.05), transparent 70%);
            opacity: 0;
            transition: opacity var(--duration-base) ease;
            pointer-events: none;
        }

        .feature-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-12px);
            box-shadow:
                0 25px 70px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 212, 170, 0.1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

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

        .feature-icon {
            width: 64px;
            height: 64px;
            background: rgba(0, 212, 170, 0.1);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            color: var(--accent-cyan);
            transition: all var(--duration-base) var(--ease-out);
            position: relative;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: var(--radius-lg);
            background: var(--gradient-text);
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
            z-index: -1;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background: rgba(0, 212, 170, 0.15);
            box-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
        }

        .feature-card:hover .feature-icon::before {
            opacity: 0.3;
        }

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

        .feature-title {
            font-size: var(--text-xl);
            font-weight: 700;
            margin-bottom: 14px;
        }

        .feature-text {
            color: var(--text-secondary);
            font-size: var(--text-sm);
            line-height: 1.8;
        }

        /* ===== HOW IT WORKS ===== */
        .how-section {
            padding: 140px 0;
            background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.02), transparent);
            position: relative;
        }

        .how-header {
            text-align: center;
            margin-bottom: 100px;
        }

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

        .how-steps::before {
            content: '';
            position: absolute;
            top: 44px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border-color), var(--border-color), transparent);
            z-index: 0;
        }

        /* Animated gradient progress line */
        .how-steps::after {
            content: '';
            position: absolute;
            top: 44px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: var(--gradient-accent);
            z-index: 0;
            transform-origin: left;
            transform: scaleX(0);
            opacity: 0;
            transition: transform 1.5s var(--ease-out), opacity 0.5s ease;
        }

        .how-steps.line-active::after {
            transform: scaleX(1);
            opacity: 1;
        }

        .how-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: var(--space-6);
            border-radius: var(--radius-lg);
            border: 1px solid transparent;
            transition: all var(--duration-base) var(--ease-out);
        }

        .how-step:hover {
            background: #131a28;
            border: 1px solid rgba(0, 212, 170, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 170, 0.05);
        }

        .how-step-circle {
            width: 88px;
            height: 88px;
            margin: 0 auto var(--space-5);
            position: relative;
            z-index: 1;
        }

        .how-step-icon {
            width: 88px;
            height: 88px;
            background: var(--bg-primary);
            border: 2px solid rgba(0, 212, 170, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--duration-base) var(--ease-out);
            box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
            position: relative;
        }

        .how-step-icon svg {
            width: 32px;
            height: 32px;
            color: var(--accent-cyan);
            transition: transform var(--duration-base) var(--ease-out);
        }

        .how-step-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 26px;
            height: 26px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            color: var(--bg-primary);
            border: 2px solid var(--bg-primary);
        }

        .how-step:hover .how-step-icon {
            border-color: var(--accent-cyan);
            background: rgba(0, 212, 170, 0.06);
            box-shadow: 0 0 50px rgba(0, 212, 170, 0.2);
            transform: translateY(-4px);
        }

        .how-step:hover .how-step-icon svg {
            transform: scale(1.1);
        }

        .how-step-title {
            font-size: var(--text-lg);
            font-weight: 700;
            margin-bottom: var(--space-2);
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .how-step-text {
            color: var(--text-muted);
            font-size: var(--text-sm);
            line-height: var(--leading-relaxed);
            max-width: 260px;
            margin: 0 auto;
        }

        /* Legacy support */
        .how-step-number {
            display: none;
        }

        /* ===== PRICING ===== */
        .pricing-section {
            padding: 140px 0;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            padding: 48px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            position: relative;
            transition: all var(--duration-base) var(--ease-out);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.02), transparent 70%);
            pointer-events: none;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured {
            border-color: var(--accent-cyan);
            background: rgba(0, 212, 170, 0.03);
        }

        .pricing-card.featured::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at top, rgba(0, 212, 170, 0.1), transparent 60%);
            pointer-events: none;
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(0, 212, 170, 0.2);
        }

        .pricing-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 20px;
            background: var(--gradient-text);
            color: var(--bg-primary);
            font-size: var(--text-xs);
            font-weight: 700;
            border-radius: 0 0 12px 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-name {
            font-size: var(--text-2xl);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pricing-desc {
            color: var(--text-muted);
            font-size: var(--text-sm);
            margin-bottom: 28px;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 36px;
        }

        .pricing-currency {
            font-size: var(--text-2xl);
            font-weight: 600;
            color: var(--text-secondary);
        }

        .pricing-amount {
            font-size: 64px;
            font-weight: 800;
            line-height: 1;
            background: var(--text-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-card.featured .pricing-amount {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-period {
            font-size: var(--text-base);
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 36px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: var(--text-sm);
            color: var(--text-secondary);
            transition: all var(--duration-fast) ease;
        }

        .pricing-features li:hover {
            color: var(--text-primary);
            padding-left: 8px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li svg {
            width: 22px;
            height: 22px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }

        .pricing-cta {
            width: 100%;
            padding: 18px;
            border-radius: var(--radius-md);
            font-size: var(--text-base);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--duration-base) var(--ease-out);
            text-align: center;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }

        .pricing-cta.primary {
            background: var(--gradient-text);
            color: var(--bg-primary);
            border: none;
        }

        .pricing-cta.primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left var(--duration-base) ease;
        }

        .pricing-cta.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
        }

        .pricing-cta.primary:hover::before {
            left: 100%;
        }

        .pricing-cta.secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .pricing-cta.secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* ===== WAITLIST OVERLAY ===== */
        .pricing-cards-wrapper {
            position: relative;
        }

        .pricing-cards.blurred {
            filter: blur(8px);
            pointer-events: none;
            user-select: none;
        }

        .waitlist-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 100;
            width: 100%;
            max-width: 520px;
            padding: 48px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(13, 13, 26, 0.98) 100%);
            border: 1px solid rgba(167, 212, 0, 0.3);
            border-radius: var(--radius-xl);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(167, 212, 0, 0.1);
            text-align: center;
        }

        .waitlist-overlay::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(135deg, rgba(167, 212, 0, 0.2), transparent, rgba(0, 212, 170, 0.2));
            border-radius: var(--radius-xl);
            z-index: -1;
        }

        .waitlist-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(167, 212, 0, 0.1);
            border: 1px solid rgba(167, 212, 0, 0.3);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: 600;
            color: var(--accent-lime);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }

        .waitlist-badge svg {
            width: 16px;
            height: 16px;
        }

        .waitlist-title {
            font-size: var(--text-3xl);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .waitlist-subtitle {
            font-size: var(--text-base);
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .waitlist-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .waitlist-input-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .waitlist-input {
            flex: 1;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            font-size: var(--text-sm);
            transition: all var(--duration-fast) ease;
        }

        .waitlist-input:focus {
            outline: none;
            border-color: var(--accent-lime);
            background: rgba(255, 255, 255, 0.08);
        }

        .waitlist-input::placeholder {
            color: var(--text-muted);
        }

        .waitlist-btn {
            padding: 14px 32px;
            background: var(--text-primary);
            color: var(--bg-primary);
            font-size: var(--text-sm);
            font-weight: 600;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--duration-fast) ease;
            position: relative;
            overflow: hidden;
        }

        .waitlist-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left var(--duration-base) ease;
        }

        .waitlist-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        .waitlist-btn:hover::before {
            left: 100%;
        }

        .waitlist-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .waitlist-note {
            margin-top: 16px;
            font-size: var(--text-sm);
            color: var(--text-muted);
        }

        .waitlist-benefits {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }

        .waitlist-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: var(--text-sm);
            color: var(--text-secondary);
        }

        .waitlist-benefit svg {
            width: 16px;
            height: 16px;
            color: var(--accent-lime);
        }

        .waitlist-success {
            text-align: center;
            padding: 20px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity var(--duration-base) ease, transform var(--duration-base) var(--ease-out);
            display: none;
        }

        .waitlist-success.show {
            display: block;
            animation: successReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes successReveal {
            from {
                opacity: 0;
                transform: translateY(10px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .waitlist-success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: rgba(167, 212, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .waitlist-success-icon svg {
            width: 32px;
            height: 32px;
            color: var(--accent-lime);
        }

        .waitlist-form.hidden {
            display: none;
        }

        /* Waitlist overlay - tablet */
        @media (max-width: 1024px) {
            .waitlist-overlay {
                max-width: 460px;
                padding: 36px 28px;
            }

            .waitlist-title {
                font-size: 26px;
            }

            .waitlist-subtitle {
                font-size: 15px;
                margin-bottom: 24px;
            }
        }

        /* Waitlist overlay - mobile: switch to relative positioning */
        @media (max-width: 768px) {
            .pricing-cards.blurred {
                display: none;
            }

            .waitlist-overlay {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                max-width: 100%;
                width: 100%;
                padding: 32px 24px;
                border-radius: var(--radius-lg);
            }

            .waitlist-title {
                font-size: var(--text-2xl);
            }

            .waitlist-subtitle {
                font-size: var(--text-sm);
                margin-bottom: 24px;
            }

            .waitlist-badge {
                margin-bottom: 16px;
            }

            .waitlist-benefits {
                flex-direction: column;
                gap: 12px;
            }

            .waitlist-input {
                padding: 14px 16px;
                font-size: var(--text-sm);
            }

            .waitlist-btn {
                padding: 14px 24px;
            }

            .waitlist-note {
                margin-top: 12px;
            }

            .waitlist-benefits {
                margin-top: 16px;
                padding-top: 16px;
            }
        }

        /* Waitlist overlay - small mobile */
        @media (max-width: 480px) {
            .waitlist-overlay {
                padding: 24px 18px;
                border-radius: var(--radius-md);
            }

            .waitlist-title {
                font-size: var(--text-xl);
            }

            .waitlist-subtitle {
                font-size: var(--text-sm);
                margin-bottom: 20px;
            }

            .waitlist-success-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 16px;
            }

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

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            padding: 140px 0;
            background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.02), transparent);
            position: relative;
            overflow: hidden;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 70px;
        }

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

        .testimonial-card {
            padding: 36px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            transition: all var(--duration-base) var(--ease-out);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 80px;
            font-weight: 800;
            color: rgba(0, 212, 170, 0.1);
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 24px;
            color: var(--color-star);
        }

        .testimonial-stars svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform var(--duration-fast) ease;
        }

        .testimonial-card:hover .testimonial-stars svg {
            animation: starPop 0.4s ease forwards;
        }

        .testimonial-card:hover .testimonial-stars svg:nth-child(1) {
            animation-delay: 0s;
        }

        .testimonial-card:hover .testimonial-stars svg:nth-child(2) {
            animation-delay: 0.05s;
        }

        .testimonial-card:hover .testimonial-stars svg:nth-child(3) {
            animation-delay: 0.1s;
        }

        .testimonial-card:hover .testimonial-stars svg:nth-child(4) {
            animation-delay: 0.15s;
        }

        .testimonial-card:hover .testimonial-stars svg:nth-child(5) {
            animation-delay: 0.2s;
        }

        @keyframes starPop {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3);
            }

            100% {
                transform: scale(1);
            }
        }



        .testimonial-text {
            font-size: var(--text-base);
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 28px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: var(--text-lg);
            color: var(--bg-primary);
            transition: transform var(--duration-fast) ease;
        }

        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.1);
        }

        .testimonial-name {
            font-weight: 600;
            font-size: var(--text-base);
        }

        .testimonial-role {
            font-size: var(--text-sm);
            color: var(--text-muted);
        }

        /* ===== FINAL CTA ===== */
        .final-cta-section {
            padding: 140px 0;
        }

        .final-cta-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-full);
            padding: 100px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.1), transparent 50%);
            animation: rotateBg 20s linear infinite;
        }

        @keyframes rotateBg {
            from {
                transform: rotate(0deg);
            }

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

        .final-cta-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-card);
            border-radius: var(--radius-full);
            z-index: 0;
        }

        .final-cta-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }

        .final-cta-subtitle {
            font-size: var(--text-lg);
            color: var(--text-secondary);
            margin-bottom: 48px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER ===== */
        .footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-color);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            align-items: start;
            margin-bottom: 48px;
        }

        .footer-brand {
            max-width: 320px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-logo-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .footer-logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: var(--text-base);
        }

        .footer-brand-desc {
            color: var(--text-muted);
            font-size: var(--text-sm);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            transition: all var(--duration-fast) ease;
            text-decoration: none;
            font-size: 13px;
        }

        .footer-social a:hover {
            color: var(--accent-cyan);
            border-color: rgba(0, 212, 170, 0.3);
            background: rgba(0, 212, 170, 0.06);
            transform: translateY(-2px);
        }

        .footer-heading {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 16px;
            font-size: var(--text-sm);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: var(--text-sm);
            transition: color var(--duration-fast) ease;
        }

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

        .footer-newsletter {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            padding: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            margin-bottom: 48px;
        }

        .footer-newsletter-text {
            flex-shrink: 0;
        }

        .footer-newsletter-text .footer-heading {
            margin-bottom: 4px;
        }

        .footer-newsletter-text p {
            color: var(--text-muted);
            font-size: var(--text-sm);
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            min-width: 0;
            max-width: 420px;
            width: 100%;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 0;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.04);
            color: white;
            font-size: 14px;
            outline: none;
            transition: border-color var(--duration-fast) ease;
        }

        .newsletter-form input:focus {
            border-color: var(--accent-cyan);
        }

        .newsletter-form button {
            padding: 12px 24px;
            border-radius: 10px;
            background: var(--gradient-text);
            color: var(--bg-primary);
            font-weight: 700;
            border: none;
            cursor: pointer;
            font-size: 14px;
            white-space: nowrap;
            transition: all var(--duration-fast) ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0, 212, 170, 0.25);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
            color: var(--text-muted);
            font-size: 13px;
        }

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

        @media (max-width: 900px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .footer-newsletter {
                flex-direction: column;
                align-items: flex-start;
            }
            .newsletter-form {
                max-width: 100%;
            }
        }

        @media (max-width: 600px) {
            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: auto;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

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

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

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== MOBILE NAVIGATION ===== */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--duration-fast) ease;
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--duration-fast) ease;
        }

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

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

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

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-primary);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--duration-fast) ease, visibility var(--duration-fast) ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu .mobile-menu-links {
            transform: translateY(20px);
            transition: transform var(--duration-base) var(--ease-out) 0.1s;
        }

        .mobile-menu.active .mobile-menu-links {
            transform: translateY(0);
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .mobile-menu-link {
            font-size: var(--text-2xl);
            font-weight: 600;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--duration-fast) ease;
        }

        .mobile-menu-link:hover {
            color: var(--text-primary);
        }

        .mobile-menu-cta {
            margin-top: 24px;
            padding: 16px 40px;
            background: var(--gradient-text);
            color: var(--bg-primary);
            text-decoration: none;
            font-size: var(--text-lg);
            font-weight: 600;
            border-radius: var(--radius-md);
            transition: all var(--duration-fast) ease;
        }

        .mobile-menu-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
        }

        @media (max-width: 1100px) {
            .how-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

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

            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-inner {
                padding: 8px 8px 8px 16px;
            }

            .hero {
                padding: 120px 20px 60px;
            }

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

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-features {
                gap: 16px;
            }

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

            .how-steps {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .how-steps::before,
            .how-steps::after {
                display: none;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
            }

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

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .pricing-includes > div {
                grid-template-columns: repeat(2, 1fr) !important;
            }

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

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

            .final-cta-box {
                padding: 60px 24px;
                border-radius: var(--radius-xl);
            }

            .final-cta-buttons {
                flex-direction: column;
            }

            .orb {
                display: none;
            }

            /* Pricing section - reduce padding on mobile */
            .pricing-section {
                padding: 60px 0;
            }

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

            /* All Pro Plans Include - 2 cols on mobile */
            .pricing-includes > div {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
            }

            .pricing-includes {
                padding: 24px !important;
                margin-top: 32px !important;
            }

            /* Testimonials - reduce padding */
            .testimonials-section {
                padding: 60px 0;
            }

            .testimonials-header {
                margin-bottom: 40px;
            }

            /* Features grid - reduce padding */
            .features-grid-section {
                padding: 60px 0;
            }

            .features-grid-header {
                margin-bottom: 40px;
            }

            /* Hero content section */
            .hero-content-section {
                padding: 60px 0;
            }

            .hero-content-title {
                margin-bottom: 32px;
            }

            /* Featured quote */
            .featured-quote-section {
                padding: 60px 0;
            }

            .featured-quote-text {
                font-size: 22px;
            }

            /* Logo section */
            .logo-section {
                padding: 40px 0;
            }

            .logo-title {
                font-size: 28px;
            }

            .logo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* How section */
            .how-section {
                padding: 60px 0;
            }

            .how-header {
                margin-bottom: 40px;
            }

            /* Quote section */
            .quote-section {
                padding: 20px 0 0;
            }
        }

        /* ===== TABLET (iPad) BREAKPOINT ===== */
        @media (max-width: 1024px) and (min-width: 769px) {
            .container {
                padding: 0 32px;
            }

            .hero-title {
                font-size: 52px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            /* Hero tabs - horizontal scroll on tablet */
            .hero-content-tabs {
                max-width: 100%;
                overflow-x: auto;
                justify-content: flex-start;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .hero-content-tabs::-webkit-scrollbar {
                display: none;
            }

            .hero-content-tab {
                padding: 14px 20px;
                font-size: var(--text-sm);
                flex-shrink: 0;
            }

            /* Feature display smaller on tablet */
            .feature-display {
                height: 400px;
            }

            .stacked-features-content {
                gap: 32px;
            }

            /* Pricing - 2 columns on tablet */
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .pricing-card.featured {
                transform: scale(1.02);
            }

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

            .section-subtitle {
                font-size: 16px;
            }

            /* Reduce section padding on tablet */
            .featured-quote-section {
                padding: 80px 0;
            }

            .testimonials-section {
                padding: 80px 0;
            }

            .testimonials-header {
                margin-bottom: 48px;
            }

            .features-grid-section {
                padding: 80px 0;
            }

            .features-grid-header {
                margin-bottom: 48px;
            }

            .how-section {
                padding: 80px 0;
            }

            .how-header {
                margin-bottom: 60px;
            }

            /* Hide connecting line on 2x2 grid - doesn't make sense */
            .how-steps::before,
            .how-steps::after {
                display: none;
            }

            /* Orphan cards - center last odd item */
            .testimonials-grid {
                justify-items: center;
            }

            .testimonials-grid > :last-child:nth-child(odd) {
                grid-column: 1 / -1;
                max-width: 50%;
            }

            .features-grid .feature-grid-card:last-child:nth-child(odd) {
                grid-column: 1 / -1;
                max-width: 50%;
                justify-self: center;
            }
        }

        /* ===== MOBILE SMALL (under 480px) ===== */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero {
                padding: 100px 16px 40px;
            }

            .hero-title {
                font-size: 32px;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 14px;
            }

            /* Hero tabs - vertical stack on small mobile */
            .hero-content-tabs {
                flex-direction: column;
                border-radius: var(--radius-md);
                width: 100%;
                padding: 8px;
            }

            .hero-content-tab {
                width: 100%;
                text-align: center;
                padding: 14px 16px;
                font-size: var(--text-sm);
            }

            .hero-tab-slider {
                display: none;
            }

            .hero-content-tab.active {
                background: rgba(255, 255, 255, 0.1);
                border-radius: var(--radius-md);
            }

            /* Hero video container on small mobile */
            .hero-content-image {
                border-radius: var(--radius-md);
                min-height: 250px;
                max-width: 100%;
                overflow: hidden;
            }

            .hero-content-image video {
                min-height: 250px;
                max-width: 100%;
                width: 100% !important;
            }

            /* Feature display */
            .feature-display {
                height: 250px;
            }

            .feature-tab {
                padding: 16px;
            }

            .feature-tab-title {
                font-size: var(--text-base);
            }

            .feature-tab-desc {
                font-size: var(--text-sm);
            }

            /* Pricing cards */
            .pricing-card {
                padding: 24px 20px;
            }

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

            .pricing-card-title {
                font-size: var(--text-xl);
            }

            /* How section steps */
            .how-step-circle,
            .how-step-icon {
                width: 64px;
                height: 64px;
            }

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

            .how-step-badge {
                width: 22px;
                height: 22px;
                font-size: 10px;
            }

            .how-step-title {
                font-size: var(--text-base);
            }

            .how-step-text {
                font-size: var(--text-xs);
            }

            /* Final CTA */
            .final-cta-box {
                padding: 40px 20px;
                border-radius: var(--radius-lg);
            }

            .final-cta-title {
                font-size: var(--text-2xl);
            }

            /* ---- GLOBAL MOBILE COMPRESSION ---- */

            /* Reduce all section padding */
            .problem-section,
            .features-section,
            .feature-showcase,
            .comparison-section,
            .hero-content-section {
                padding: 60px 0;
            }

            .testimonials-section {
                padding: 48px 0;
            }

            /* Tighten section headers */
            .section-label {
                font-size: 13px;
                letter-spacing: 2px;
                margin-bottom: 12px;
            }

            .section-title {
                margin-bottom: 16px;
            }

            .section-subtitle {
                line-height: 1.6;
            }

            /* ---- HERO ---- */
            .hero-features {
                gap: 12px;
                margin-top: 24px;
            }

            .hero-quote {
                margin-top: 20px;
            }

            /* ---- SOCIAL PROOF TICKER ---- */
            .social-proof-ticker {
                padding: 24px 0;
            }

            .ticker-item {
                padding: 10px 16px;
                font-size: 13px;
            }

            .ticker-item .ticker-text {
                font-size: 13px;
            }

            /* ---- COMPARISON SECTION ---- */
            .comparison-card {
                padding: 24px 20px;
            }

            .comparison-title {
                font-size: var(--text-lg);
            }

            /* ---- HOW IT WORKS ---- */
            .how-steps {
                gap: 32px;
            }

            /* ---- QUOTE SECTION ---- */
            .quote-section {
                padding: 48px 0 0;
            }

            .quote-grid {
                gap: 12px;
                margin-top: 20px;
            }

            .quote-card {
                padding: 20px 18px 18px;
            }

            .quote-mark {
                font-size: 36px;
                margin-bottom: 8px;
            }

            .quote-text {
                font-size: 14px;
                line-height: 1.6;
            }

            .quote-author-row {
                margin-top: 16px;
                padding-top: 14px;
            }

            .quote-avatar {
                width: 36px;
                height: 36px;
            }

            .quote-author {
                font-size: 13px;
            }

            .quote-role {
                font-size: 12px;
            }

            /* ---- TESTIMONIALS ---- */
            .testimonials-header {
                margin-bottom: 28px;
            }

            .testimonial-card {
                padding: 24px 20px;
            }

            .testimonial-card::before {
                font-size: 56px;
                top: 12px;
                right: 20px;
            }

            .testimonial-text {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            /* ---- BENTO GRID ---- */
            .bento-grid {
                gap: 12px;
            }

            .bento-card {
                padding: 20px;
            }

            .bento-card-title {
                font-size: 15px;
            }

            .bento-card-desc {
                font-size: 13px;
            }

            /* ---- FEATURES GRID ---- */
            .features-grid-header {
                margin-bottom: 28px;
            }

            .feature-grid-card {
                padding: 20px;
            }

            /* ---- PRICING ---- */
            .pricing-header {
                margin-bottom: 24px;
            }

            .pricing-features {
                gap: 10px;
            }

            .pricing-features li {
                font-size: 13px;
            }

            /* ---- FOOTER ---- */
            .footer {
                padding: 48px 0 32px;
            }

            .footer-newsletter {
                padding: 24px 20px;
                gap: 16px;
                margin-bottom: 32px;
            }

            .footer-top {
                gap: 28px;
                margin-bottom: 32px;
            }

            .footer-brand-desc {
                font-size: var(--text-sm);
            }

            /* ---- BUTTONS ---- */
            .btn-primary,
            .btn-secondary {
                padding: 14px 24px;
                font-size: var(--text-sm);
            }

            /* ---- PRICING INCLUDES ---- */
            .pricing-includes > div {
                grid-template-columns: 1fr !important;
            }

            .pricing-includes {
                padding: 20px !important;
            }
        }

        /* ===== ADDITIONAL MOBILE FIXES ===== */
        @media (max-width: 768px) {

            /* Ensure hero content wrapper has proper padding */
            .hero-content-wrapper {
                padding: 0;
            }

            /* Hero video container on mobile */
            .hero-content-image {
                min-height: 280px;
                max-width: 100%;
                overflow: hidden;
            }

            .hero-content-image video {
                min-height: 280px;
                max-width: 100%;
                width: 100% !important;
            }

            /* Hide hero preview on mobile */
            .hero-preview {
                display: none;
            }

            /* Hide trust bar on mobile */
            .trust-bar {
                display: none;
            }

            /* Hide feature display image on mobile - just show tabs */
            .feature-display {
                display: none;
            }

            /* Stacked features section */
            .stacked-features-content {
                gap: 24px;
            }

            .stacked-features-title {
                font-size: 32px;
                text-align: center;
            }

            /* Feature display on mobile - show below tabs */
            .feature-display {
                height: 280px;
                margin-top: 24px;
            }

            /* Problem cards */
            .problem-card {
                padding: 24px;
            }

            .problem-card-title {
                font-size: var(--text-lg);
            }

            /* Testimonials */
            .testimonial-card {
                padding: 24px;
            }

            .testimonial-text {
                font-size: var(--text-sm);
            }

            /* Logo badges - wrap on mobile */
            .logo-badges {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }

            /* Section spacing */
            section {
                padding: 60px 0;
            }

            .hero-content-section {
                padding: 60px 0;
            }
        }

        /* ===== REDUCED MOTION ===== */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }

            .grain-overlay,
            .orb {
                display: none;
            }
        }

        /* ===== LANDSCAPE MOBILE ===== */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                padding: 80px 20px 40px;
            }

            .hero-title {
                font-size: 28px;
            }

            .mobile-menu {
                padding-top: 60px;
            }

            .mobile-menu-link {
                font-size: var(--text-lg);
            }
        }
        /* ===== GRADIENT MESH BACKGROUND ===== */
        .gradient-mesh {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .gradient-mesh-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.12;
            animation: meshFloat 20s ease-in-out infinite;
        }

        .gradient-mesh-blob:nth-child(1) {
            width: 800px;
            height: 800px;
            background: var(--accent-cyan);
            top: -20%;
            left: -10%;
            animation-duration: 25s;
        }

        .gradient-mesh-blob:nth-child(2) {
            width: 600px;
            height: 600px;
            background: var(--accent-blue);
            top: 30%;
            right: -15%;
            animation-duration: 30s;
            animation-delay: -8s;
        }

        .gradient-mesh-blob:nth-child(3) {
            width: 500px;
            height: 500px;
            background: var(--accent-teal);
            bottom: -10%;
            left: 30%;
            animation-duration: 22s;
            animation-delay: -14s;
        }

        .gradient-mesh-blob:nth-child(4) {
            width: 400px;
            height: 400px;
            background: #6c5ce7;
            top: 60%;
            left: -5%;
            animation-duration: 28s;
            animation-delay: -5s;
            opacity: 0.06;
        }

        @keyframes meshFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(60px, -40px) scale(1.1); }
            50% { transform: translate(-30px, 50px) scale(0.9); }
            75% { transform: translate(40px, 20px) scale(1.05); }
        }

        /* ===== SOCIAL PROOF TICKER ===== */
        .social-proof-ticker {
            padding: var(--space-12) 0;
            overflow: hidden;
            overflow: clip;
            position: relative;
            z-index: 10;
            isolation: isolate;
        }

        .ticker-viewport {
            width: 100%;
            overflow: hidden;
            overflow: clip;
            contain: paint;
        }

        .social-proof-ticker::before,
        .social-proof-ticker::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .social-proof-ticker::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary), transparent);
        }

        .social-proof-ticker::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary), transparent);
        }

        .ticker-label {
            text-align: center;
            font-size: var(--text-xs);
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-faint);
            margin-bottom: var(--space-6);
            font-weight: 600;
        }

        .ticker-track {
            display: flex;
            animation: tickerScroll 40s linear infinite;
            width: max-content;
        }

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

        .ticker-item {
            flex-shrink: 0;
            padding: var(--space-4) var(--space-8);
            margin: 0 var(--space-3);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            gap: var(--space-3);
            white-space: nowrap;
            transition: border-color var(--duration-fast) ease;
        }

        .ticker-item:hover {
            border-color: var(--border-hover);
        }

        .ticker-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(0, 212, 170, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-xs);
            font-weight: 700;
            color: var(--accent-cyan);
        }

        .ticker-text {
            font-size: var(--text-sm);
            color: var(--text-secondary);
        }

        .ticker-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .ticker-stars {
            display: flex;
            gap: 1px;
        }

        .ticker-stars svg {
            width: 12px;
            height: 12px;
            fill: var(--color-star);
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ===== ANIMATED STATS COUNTER ===== */
        .stats-section {
            padding: var(--space-20) 0;
            position: relative;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-6);
        }

        .stat-card {
            text-align: center;
            padding: var(--space-10) var(--space-6);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
            transition: all var(--duration-fast) ease;
        }

        .stat-card:hover {
            border-color: rgba(0, 212, 170, 0.2);
            transform: translateY(-2px);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 1px;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity var(--duration-fast) ease;
        }

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

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 700;
            line-height: 1;
            margin-bottom: var(--space-2);
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: var(--text-sm);
            color: var(--text-muted);
            font-weight: 500;
        }

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

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-3);
            }

            .stat-card {
                padding: var(--space-6) var(--space-4);
            }
        }

        /* ===== BEFORE/AFTER COMPARISON ===== */
        .comparison-section {
            padding: var(--section-padding);
            position: relative;
            z-index: 10;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: var(--space-8);
            align-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
        }

        .comparison-card {
            padding: var(--space-10);
            border-radius: var(--radius-xl);
            position: relative;
        }

        .comparison-card.before {
            background: rgba(239, 68, 68, 0.04);
            border: 1px solid rgba(239, 68, 68, 0.15);
        }

        .comparison-card.after {
            background: rgba(0, 212, 170, 0.04);
            border: 1px solid rgba(0, 212, 170, 0.2);
        }

        .comparison-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-6);
        }

        .comparison-card.before .comparison-badge {
            background: rgba(239, 68, 68, 0.1);
            color: var(--color-error-light);
        }

        .comparison-card.after .comparison-badge {
            background: rgba(0, 212, 170, 0.1);
            color: var(--accent-cyan);
        }

        .comparison-title {
            font-size: var(--text-2xl);
            font-weight: 700;
            margin-bottom: var(--space-6);
            color: var(--text-primary);
        }

        .comparison-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-4);
        }

        .comparison-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-3);
            font-size: var(--text-sm);
            line-height: var(--leading-normal);
            color: var(--text-secondary);
        }

        .comparison-list li svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .comparison-card.before .comparison-list li svg {
            color: var(--color-error-light);
        }

        .comparison-card.after .comparison-list li svg {
            color: var(--accent-cyan);
        }

        .comparison-divider {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .comparison-vs {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-sm);
            font-weight: 800;
            color: var(--text-muted);
            font-family: var(--font-display);
        }

        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: var(--space-4);
            }

            .comparison-divider {
                padding: var(--space-2) 0;
            }
        }

        /* ===== BENTO FEATURE GRID ===== */
        .bento-section {
            padding: var(--section-padding);
            position: relative;
            z-index: 10;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: var(--space-5);
        }

        .bento-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            position: relative;
            overflow: hidden;
            transition: all var(--duration-base) var(--ease-out);
            display: flex;
            flex-direction: column;
        }

        .bento-card:hover {
            border-color: rgba(0, 212, 170, 0.2);
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow);
        }

        .bento-card.large {
            grid-column: span 2;
            grid-row: span 1;
        }

        .bento-card.tall {
            grid-row: span 2;
        }

        .bento-card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-5);
            font-size: var(--text-xl);
        }

        .bento-card-icon.cyan {
            background: rgba(0, 212, 170, 0.1);
            color: var(--accent-cyan);
        }

        .bento-card-icon.blue {
            background: rgba(9, 132, 227, 0.1);
            color: var(--accent-blue);
        }

        .bento-card-icon.lime {
            background: rgba(167, 212, 0, 0.1);
            color: var(--accent-lime);
        }

        .bento-card-icon.purple {
            background: rgba(108, 92, 231, 0.1);
            color: #6c5ce7;
        }

        .bento-card-title {
            font-size: var(--text-lg);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--space-2);
        }

        .bento-card-desc {
            font-size: var(--text-sm);
            color: var(--text-muted);
            line-height: var(--leading-normal);
            flex: 1;
        }

        .bento-card-visual {
            margin-top: var(--space-6);
            padding: var(--space-4);
            background: rgba(0, 0, 0, 0.2);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        /* Mini visual elements inside bento cards */
        .bento-mini-tags {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-2);
        }

        .bento-mini-tag {
            padding: 4px 10px;
            background: rgba(0, 212, 170, 0.08);
            border: 1px solid rgba(0, 212, 170, 0.15);
            border-radius: var(--radius-full);
            font-size: 11px;
            color: var(--accent-cyan);
            font-weight: 500;
        }

        .bento-mini-tag.alt {
            background: rgba(9, 132, 227, 0.08);
            border-color: rgba(9, 132, 227, 0.15);
            color: var(--accent-blue);
        }

        .bento-mini-tag.lime {
            background: rgba(167, 212, 0, 0.08);
            border-color: rgba(167, 212, 0, 0.15);
            color: var(--accent-lime);
        }

        .bento-mini-chart {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 40px;
        }

        .bento-mini-chart-bar {
            flex: 1;
            background: var(--accent-cyan);
            border-radius: 2px 2px 0 0;
            opacity: 0.3;
            transition: opacity var(--duration-fast) ease;
        }

        .bento-card:hover .bento-mini-chart-bar {
            opacity: 0.6;
        }

        .bento-mini-rating {
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .bento-mini-rating svg {
            width: 16px;
            height: 16px;
            fill: var(--color-star);
        }

        .bento-mini-rating .empty {
            fill: none;
            stroke: var(--text-faint);
            stroke-width: 2;
        }

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

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

            .bento-card.tall {
                grid-row: span 1;
            }
        }

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

            .bento-card.large {
                grid-column: span 1;
            }
        }

        /* ===== STICKY NAV (compact on scroll) ===== */
        .nav.scrolled {
            top: 12px;
        }

        .nav.scrolled .nav-inner {
            padding: 4px 4px 4px 14px;
            background: rgba(10, 14, 23, 0.97);
            border-color: rgba(255, 255, 255, 0.06);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
        }

        .nav.scrolled .nav-link {
            font-size: 13px;
        }

        .nav.scrolled .nav-cta {
            padding: 7px 16px;
            font-size: 13px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
        }

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

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: var(--text-base);
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            gap: 16px;
        }

        .faq-question:hover {
            color: var(--accent-cyan);
        }

        .faq-chevron {
            flex-shrink: 0;
            transition: transform 0.3s ease;
            color: var(--text-muted);
        }

        .faq-item.open .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 800px;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            color: var(--text-secondary);
            font-size: var(--text-sm);
            line-height: var(--leading-relaxed);
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .faq-header {
                margin-bottom: 40px;
            }

            .faq-question {
                padding: 16px 20px;
                font-size: var(--text-sm);
            }

            .faq-answer p {
                padding: 0 20px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 48px 0;
            }

            .faq-header {
                margin-bottom: 28px;
            }

            .faq-question {
                padding: 14px 16px;
                font-size: 13px;
                gap: 12px;
            }

            .faq-answer p {
                padding: 0 16px 14px;
                font-size: 13px;
                line-height: 1.7;
            }
        }
