/* BOOM · core design system (shared, cacheable). Mirrors the home stylesheet. */
/* ═══════════════════════════════════════════════════════════
           CSS RESET & VARIABLES
           ═══════════════════════════════════════════════════════════ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Brand Colors */
            --gold: #FFD700;
            --gold-light: #FFE55C;
            --gold-dark: #E5C200;
            --gold-muted: rgba(255, 215, 0, 0.15);
            
            /* Accent Colors */
            --cyan: #00CED1;
            --green: #00FF88;
            --green-muted: rgba(0, 255, 136, 0.15);
            
            /* Neutrals - Refined with subtle warm undertones */
            --black: #030303;
            --void: #060607;
            --surface: #0B0B0C;
            --surface-elevated: #121214;
            --surface-hover: #1A1A1D;
            --surface-card: #0E0E10;
            
            /* Text - Refined hierarchy */
            --text-primary: #FAFAFA;
            --text-secondary: rgba(250, 250, 250, 0.72);
            --text-tertiary: rgba(250, 250, 250, 0.44);
            --text-muted: rgba(250, 250, 250, 0.24);
            
            /* Borders - Subtle definition */
            --border-subtle: rgba(255, 255, 255, 0.04);
            --border-default: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 215, 0, 0.25);
            --border-gold: rgba(255, 215, 0, 0.12);
            
            /* Spacing Scale */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            --space-5xl: 128px;
            
            /* Typography */
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            
            /* Transitions */
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
            
            /* Shadows - Deeper, more organic */
            --shadow-glow: 0 0 80px rgba(255, 215, 0, 0.1);
            --shadow-glow-strong: 0 0 120px rgba(255, 215, 0, 0.18);
            --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
            --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.7);
            --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        html {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--black);
            color: var(--text-primary);
            font-weight: 300;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Subtle noise texture overlay for premium depth */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.012;
            pointer-events: none;
            z-index: 9999;
            background-image: 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");
        }

        /* Tech Background Container */
        .tech-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        /* Animated gradient orbs */
        .tech-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.04;
            animation: orb-float 20s ease-in-out infinite;
        }

        .tech-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }

        .tech-orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #635BFF 0%, transparent 70%);
            bottom: -150px;
            left: -100px;
            animation-delay: -7s;
            opacity: 0.025;
        }

        .tech-orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -14s;
            opacity: 0.02;
        }

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

        /* Subtle grid overlay */
        .tech-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 215, 0, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.015) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
        }

        /* Interactive mouse glow - activated by JS */
        .mouse-glow {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
            transform: translate(-50%, -50%);
        }

        .mouse-glow.active {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .tech-orb-1 { width: 300px; height: 300px; }
            .tech-orb-2 { width: 250px; height: 250px; }
            .tech-orb-3 { display: none; }
            .tech-grid { background-size: 50px 50px; }
            .mouse-glow { display: none; }
        }

        ::selection {
            background: var(--gold);
            color: var(--black);
        }

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

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

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

        @media (min-width: 768px) {
            .container {
                padding: 0 var(--space-2xl);
            }
        }

        .text-gold { color: var(--gold); }
        .text-secondary { color: var(--text-secondary); }
        .text-tertiary { color: var(--text-tertiary); }

        .font-display {
            font-family: var(--font-display);
            font-weight: 300;
            letter-spacing: 0.02em;
        }

        /* ═══════════════════════════════════════════════════════════
           SCROLL PROGRESS
           ═══════════════════════════════════════════════════════════ */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            z-index: 9999;
            transition: width 0.05s linear;
        }

        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            padding: var(--space-lg) 0;
            transition: all 0.4s var(--ease-out);
            background: linear-gradient(180deg, rgba(3, 3, 3, 1) 0%, rgba(3, 3, 3, 0.9) 60%, transparent 100%);
        }

        .nav.scrolled {
            background: rgba(3, 3, 3, 1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            padding: var(--space-md) 0;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            transition: transform 0.3s var(--ease-out);
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-mark {
            width: 80px;
            height: 80px;
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
            transition: filter 0.3s ease;
        }

        .logo:hover .logo-mark {
            filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: var(--space-xl);
        }

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

        .nav-link {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-secondary);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s var(--ease-out);
        }

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

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

        .nav-cta {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.3s var(--ease-out);
        }

        .nav-cta:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* Mobile Menu Toggle */
        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .nav-toggle {
                display: none;
            }
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s 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 */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 380px;
            height: 100vh;
            background: var(--void);
            border-left: 1px solid var(--border-subtle);
            z-index: 999;
            transform: translateX(100%);
            transition: transform 0.4s var(--ease-out);
            padding: 100px var(--space-xl) var(--space-xl);
            overflow-y: auto;
        }

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

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .mobile-menu-link {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            padding: var(--space-md) 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .mobile-menu-link:hover {
            color: var(--gold);
            padding-left: var(--space-md);
        }

        .mobile-menu-cta {
            display: block;
            margin-top: var(--space-xl);
            padding: var(--space-lg);
            background: var(--gold);
            color: var(--black);
            text-align: center;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ═══════════════════════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: var(--space-5xl) 0 var(--space-3xl);
            position: relative;
            overflow: hidden;
        }

        /* Ambient Background */
        .hero-ambient {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-glow {
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.12;
        }

        .hero-glow-1 {
            background: var(--gold);
            top: -300px;
            right: -200px;
            animation: float-slow 20s ease-in-out infinite;
        }

        .hero-glow-2 {
            background: var(--gold);
            bottom: -400px;
            left: -300px;
            animation: float-slow 25s ease-in-out infinite reverse;
            opacity: 0.08;
        }

        @keyframes float-slow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        /* Grid Pattern */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
        }

        /* Radar Animation */
        .radar-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            pointer-events: none;
        }

        /* Corner Accents - Viewport Edge Frame
           Only top-left and bottom-right for diagonal balance
           Gradient fade creates sophistication without visual noise */
        .hero-frame {
            position: absolute;
            inset: 16px;
            pointer-events: none;
            z-index: 1;
        }

        /* Top-left corner */
        .hero-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background: 
                linear-gradient(90deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0) 100%),
                linear-gradient(180deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0) 100%);
            background-size: 100% 1px, 1px 100%;
            background-position: top left, top left;
            background-repeat: no-repeat;
        }

        /* Bottom-right corner */
        .hero-frame::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: 
                linear-gradient(270deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0) 100%),
                linear-gradient(0deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0) 100%);
            background-size: 100% 1px, 1px 100%;
            background-position: bottom right, bottom right;
            background-repeat: no-repeat;
        }

        @media (max-width: 768px) {
            .hero-frame {
                inset: 12px;
            }

            .hero-frame::before,
            .hero-frame::after {
                width: 60px;
                height: 60px;
            }
        }

        .radar-ring {
            position: absolute;
            border: 1px solid var(--gold);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            animation: radar-pulse 6s infinite ease-out;
        }

        .radar-ring:nth-child(1) { animation-delay: 0s; }
        .radar-ring:nth-child(2) { animation-delay: 2s; }
        .radar-ring:nth-child(3) { animation-delay: 4s; }

        @keyframes radar-pulse {
            0% { 
                width: 80px; 
                height: 80px; 
                opacity: 0.6; 
                border-width: 2px; 
            }
            50% { 
                opacity: 0.3; 
            }
            100% { 
                width: 900px; 
                height: 900px; 
                opacity: 0; 
                border-width: 0.5px; 
            }
        }

        .radar-center {
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
            animation: radar-center-pulse 3s infinite ease-in-out;
        }

        @keyframes radar-center-pulse {
            0%, 100% { 
                box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
                transform: translate(-50%, -50%) scale(1);
            }
            50% { 
                box-shadow: 0 0 50px rgba(255, 215, 0, 0.9);
                transform: translate(-50%, -50%) scale(1.3);
            }
        }

        /* Mobile radar adjustments */
        @media (max-width: 768px) {
            @keyframes radar-pulse {
                0% { 
                    width: 60px; 
                    height: 60px; 
                    opacity: 0.5; 
                    border-width: 1.5px; 
                }
                50% { 
                    opacity: 0.25; 
                }
                100% { 
                    width: 500px; 
                    height: 500px; 
                    opacity: 0; 
                    border-width: 0.5px; 
                }
            }

            .radar-center {
                width: 10px;
                height: 10px;
            }
        }

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

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
            animation: fade-up 0.8s var(--ease-out) 0.2s both;
        }

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

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

        .hero-eyebrow-text {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 6vw, 80px);
            font-weight: 200;
            line-height: 1.15;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            margin-bottom: var(--space-lg);
            animation: fade-in 0.8s var(--ease-out) 0.3s both;
        }

        @keyframes fade-in {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-title .highlight {
            color: var(--gold);
            font-weight: 300;
        }

        @keyframes fade-up {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-subtitle {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--text-secondary);
            max-width: 540px;
            margin-bottom: var(--space-2xl);
            animation: fade-up 0.8s var(--ease-out) 0.6s both;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            animation: fade-up 0.8s var(--ease-out) 0.7s both;
        }

        @media (min-width: 480px) {
            .hero-actions {
                flex-direction: row;
                gap: var(--space-lg);
            }
        }

        /* Buttons */
        .btn {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 100px;
            border: 1px solid transparent;
            transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
            cursor: pointer;
            will-change: transform;
        }

        /* Gold light sheen sweeping across on hover */
        .btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45), transparent 70%);
            transform: translateX(-130%);
            transition: transform 0.7s var(--ease-out);
            pointer-events: none;
        }

        .btn:hover::after {
            transform: translateX(130%);
        }

        .btn-primary {
            background: var(--gold);
            color: var(--black);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
        }

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

        .btn-secondary:hover {
            border-color: var(--gold);
            background: rgba(255, 215, 0, 0.05);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-whatsapp:hover {
            background: #20bd5a;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
        }

        /* Hero Stats */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin-top: var(--space-4xl);
            padding-top: var(--space-2xl);
            border-top: 1px solid var(--border-subtle);
            animation: fade-up 0.8s var(--ease-out) 0.9s both;
        }

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

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

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

        .hero-stat-value {
            font-family: var(--font-display);
            font-size: clamp(24px, 5vw, 28px);
            font-weight: 200;
            color: var(--gold);
            letter-spacing: -0.02em;
        }

        .hero-stat-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-tertiary);
            margin-top: var(--space-xs);
        }

        /* ═══════════════════════════════════════════════════════════
           TRUST BAR
           ═══════════════════════════════════════════════════════════ */
        .trust-bar {
            padding: var(--space-lg) 0;
            background: var(--surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .trust-bar-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-md);
        }

        @media (min-width: 640px) {
            .trust-bar-inner {
                flex-direction: row;
                justify-content: center;
                gap: var(--space-2xl);
            }
        }

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

        .trust-google {
            width: 18px;
            height: 18px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M45.12 24.5c0-1.56-.14-3.06-.4-4.5H24v8.51h11.84c-.51 2.75-2.06 5.08-4.39 6.64v5.52h7.11c4.16-3.83 6.56-9.47 6.56-16.17z'/%3E%3Cpath fill='%2334A853' d='M24 46c5.94 0 10.92-1.97 14.56-5.33l-7.11-5.52c-1.97 1.32-4.49 2.1-7.45 2.1-5.73 0-10.58-3.87-12.31-9.07H4.34v5.7C7.96 41.07 15.4 46 24 46z'/%3E%3Cpath fill='%23FBBC05' d='M11.69 28.18C11.25 26.86 11 25.45 11 24s.25-2.86.69-4.18v-5.7H4.34C2.85 17.09 2 20.45 2 24c0 3.55.85 6.91 2.34 9.88l7.35-5.7z'/%3E%3Cpath fill='%23EA4335' d='M24 10.75c3.23 0 6.13 1.11 8.41 3.29l6.31-6.31C34.91 4.18 29.93 2 24 2 15.4 2 7.96 6.93 4.34 14.12l7.35 5.7c1.73-5.2 6.58-9.07 12.31-9.07z'/%3E%3C/svg%3E");
            background-size: contain;
        }

        .trust-stars {
            display: flex;
            gap: 2px;
            color: var(--gold);
            font-size: 12px;
        }

        .trust-text {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .trust-text strong {
            color: var(--gold);
            font-weight: 600;
        }

        .trust-divider {
            display: none;
            width: 1px;
            height: 20px;
            background: var(--border-default);
        }

        @media (min-width: 640px) {
            .trust-divider {
                display: block;
            }
        }

        .trust-link {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            transition: opacity 0.3s ease;
        }

        .trust-link:hover {
            opacity: 0.7;
        }

        /* ═══════════════════════════════════════════════════════════
           PARTNER TRUST MARQUEE
           ═══════════════════════════════════════════════════════════ */
        .partner-marquee {
            background: var(--black);
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
            padding: var(--space-md) 0;
        }

        .partner-marquee-inner {
            overflow: hidden;
            white-space: nowrap;
        }

        .partner-marquee-content {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xl);
            animation: marquee-scroll 60s linear infinite;
        }

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

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

        .partner-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-tertiary);
            margin-right: var(--space-sm);
        }

        .partner-item {
            display: inline-flex;
            align-items: center;
        }

        /* University Logo Wrappers */
        .uni-logo-wrapper {
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .uni-logo-wrapper:hover {
            transform: translateY(-2px);
        }

        .uni-logo {
            height: 28px;
            width: auto;
        }

        .partner-divider {
            width: 1px;
            height: 24px;
            background: linear-gradient(180deg, transparent, var(--border-default), transparent);
            margin: 0 var(--space-lg);
        }

        .partner-secure {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-tertiary);
        }

        .stripe-logo {
            height: 20px;
            width: auto;
        }

        /* ═══════════════════════════════════════════════════════════
           SECTION STYLES
           ═══════════════════════════════════════════════════════════ */
        .section {
            padding: var(--space-4xl) 0;
        }

        @media (min-width: 768px) {
            .section {
                padding: var(--space-5xl) 0;
            }
        }

        .section-dark {
            background: var(--surface);
            position: relative;
        }

        /* Alternating section with subtle gradient */
        .section-gradient {
            background: linear-gradient(180deg, var(--black) 0%, var(--surface) 50%, var(--black) 100%);
        }

        /* Section with top gold accent line */
        .section-accent {
            position: relative;
        }

        .section-accent::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.4;
        }

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

        .section-eyebrow {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: var(--space-md);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 200;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-top: var(--space-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ═══════════════════════════════════════════════════════════
           SERVICES OVERVIEW
           ═══════════════════════════════════════════════════════════ */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
        }

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

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

        .service-card {
            position: relative;
            padding: var(--space-xl);
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            transition: all 0.4s var(--ease-out);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: var(--shadow-inner);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.5s var(--ease-out);
            opacity: 0.8;
        }

        .service-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card), var(--shadow-inner);
            background: var(--surface-hover);
        }

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

        .service-icon {
            font-size: 32px;
            margin-bottom: var(--space-lg);
        }

        .service-name {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: -0.01em;
            margin-bottom: var(--space-sm);
        }

        .service-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            flex-grow: 1;
        }

        .service-price {
            display: flex;
            align-items: baseline;
            gap: var(--space-xs);
            margin-top: var(--space-lg);
            padding-top: var(--space-lg);
            border-top: 1px solid var(--border-subtle);
        }

        .service-price-amount {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 200;
            color: var(--gold);
        }

        .service-price-label {
            font-size: 12px;
            color: var(--text-tertiary);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            margin-top: var(--space-md);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            transition: gap 0.3s var(--ease-out);
        }

        .service-link:hover {
            gap: var(--space-md);
        }

        /* ═══════════════════════════════════════════════════════════
           APARTMENTS GRID
           ═══════════════════════════════════════════════════════════ */
        .apartments-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
        }

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

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

        .apartment-card {
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all 0.4s var(--ease-out);
            display: block;
        }

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

        .apartment-image {
            position: relative;
            height: 200px;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .apartment-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
        }

        .apartment-badge {
            position: absolute;
            top: var(--space-md);
            left: var(--space-md);
            padding: 6px 12px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 1;
        }

        .apartment-info {
            padding: var(--space-xl);
        }

        .apartment-price {
            display: flex;
            align-items: baseline;
            gap: var(--space-xs);
            margin-bottom: var(--space-md);
        }

        .apartment-price-amount {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 300;
            color: var(--gold);
        }

        .apartment-price-period {
            font-size: 13px;
            color: var(--text-tertiary);
        }

        .apartment-name {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: var(--space-md);
        }

        .apartment-features {
            display: flex;
            gap: var(--space-md);
            font-size: 13px;
            color: var(--text-tertiary);
        }

        .apartment-cta {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: var(--space-lg);
            display: inline-block;
        }

        .apartments-footer {
            text-align: center;
            margin-top: var(--space-2xl);
        }

        /* ═══════════════════════════════════════════════════════════
           FEATURE SECTION (PFS, DAS, VV)
           ═══════════════════════════════════════════════════════════ */
        .feature-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-3xl);
            align-items: center;
        }

        @media (min-width: 1024px) {
            .feature-section {
                grid-template-columns: 1fr 1fr;
            }

            .feature-section.reverse {
                direction: rtl;
            }

            .feature-section.reverse > * {
                direction: ltr;
            }
        }

        .feature-content {
            max-width: 560px;
        }

        .feature-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: var(--space-md);
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 200;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: var(--space-lg);
        }

        .feature-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-xl);
        }

        .feature-price {
            display: flex;
            align-items: baseline;
            gap: var(--space-sm);
            margin-bottom: var(--space-xl);
        }

        .feature-price-currency {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 200;
            color: var(--gold);
        }

        .feature-price-amount {
            font-family: var(--font-display);
            font-size: 72px;
            font-weight: 100;
            color: var(--gold);
            line-height: 1;
        }

        .feature-price-label {
            font-size: 13px;
            color: var(--text-tertiary);
            margin-left: var(--space-sm);
        }

        .feature-list {
            list-style: none;
            margin-bottom: var(--space-xl);
        }

        .feature-list li {
            position: relative;
            padding: var(--space-sm) 0;
            padding-left: var(--space-lg);
            font-size: 14px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
        }

        .feature-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            background: var(--gold);
        }

        .feature-stat {
            background: var(--surface);
            padding: var(--space-2xl);
            text-align: center;
        }

        .feature-stat-value {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 100;
            color: var(--gold);
            line-height: 1;
        }

        .feature-stat-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-tertiary);
            margin-top: var(--space-sm);
        }

        /* ═══════════════════════════════════════════════════════════
           DUAL SERVICE CARDS (DAS + VV)
           ═══════════════════════════════════════════════════════════ */
        .dual-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
        }

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

        .dual-card {
            position: relative;
            padding: var(--space-2xl);
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all 0.4s var(--ease-out);
        }

        .dual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }

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

        .dual-card-icon {
            font-size: 40px;
            margin-bottom: var(--space-lg);
        }

        .dual-card-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: var(--space-sm);
        }

        .dual-card-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
        }

        .dual-card-price {
            display: flex;
            align-items: baseline;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
        }

        .dual-card-price-amount {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 100;
            color: var(--gold);
        }

        .dual-card-price-label {
            font-size: 13px;
            color: var(--text-tertiary);
        }

        .dual-card-list {
            list-style: none;
        }

        .dual-card-list li {
            padding: var(--space-sm) 0;
            padding-left: var(--space-lg);
            font-size: 14px;
            color: var(--text-secondary);
            position: relative;
        }

        .dual-card-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-size: 12px;
        }

        .dual-card-cta {
            margin-top: var(--space-xl);
        }

        /* ═══════════════════════════════════════════════════════════
           CONCIERGE GRID
           ═══════════════════════════════════════════════════════════ */
        .concierge-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
        }

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

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

        .concierge-item {
            padding: var(--space-xl);
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: all 0.3s var(--ease-out);
        }

        .concierge-item:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }

        .concierge-icon {
            font-size: 28px;
            margin-bottom: var(--space-md);
        }

        .concierge-name {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: var(--space-xs);
        }

        .concierge-price {
            font-size: 11px;
            color: var(--gold);
            font-weight: 500;
        }

        .concierge-footer {
            text-align: center;
            margin-top: var(--space-2xl);
        }

        .concierge-footer p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
        }

        /* ═══════════════════════════════════════════════════════════
           PROBLEMS SECTION (Reframed)
           ═══════════════════════════════════════════════════════════ */
        .problems-reframe {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .problems-headline {
            font-family: var(--font-display);
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 200;
            letter-spacing: -0.02em;
            line-height: 1.3;
            margin-bottom: var(--space-2xl);
        }

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

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

        .problem-item {
            padding: var(--space-lg);
            background: rgba(255, 59, 59, 0.05);
            border: 1px solid rgba(255, 59, 59, 0.2);
            text-align: center;
        }

        .problem-item-icon {
            font-size: 24px;
            margin-bottom: var(--space-sm);
        }

        .problem-item-text {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .problems-solution {
            margin-top: var(--space-2xl);
            padding: var(--space-2xl);
            background: var(--gold-muted);
            border: 1px solid var(--border-gold);
        }

        .problems-solution-text {
            font-size: 18px;
            font-weight: 400;
        }

        .problems-solution-text strong {
            color: var(--gold);
        }

        /* ═══════════════════════════════════════════════════════════
           ABOUT SECTION
           ═══════════════════════════════════════════════════════════ */
        .about-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
            opacity: 0.4;
        }

        /* Advanced Geometric Background Elements */
        .about-geometry {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .geo-circle {
            position: absolute;
            border: 1px solid var(--gold);
            border-radius: 50%;
            opacity: 0.07;
        }

        .geo-1 {
            width: 500px;
            height: 500px;
            top: -150px;
            right: -150px;
            animation: geo-rotate 80s linear infinite;
        }

        .geo-2 {
            width: 350px;
            height: 350px;
            bottom: -100px;
            left: -100px;
            animation: geo-rotate 60s linear infinite reverse;
        }

        .geo-3 {
            width: 200px;
            height: 200px;
            top: 40%;
            left: 30%;
            border-style: dashed;
            animation: geo-pulse-scale 12s ease-in-out infinite;
        }

        .geo-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0.12;
        }

        .geo-line-1 {
            width: 300px;
            top: 25%;
            left: 0;
            transform: rotate(-15deg);
            animation: geo-line-move 8s ease-in-out infinite;
        }

        .geo-line-2 {
            width: 200px;
            bottom: 30%;
            right: 5%;
            transform: rotate(20deg);
            animation: geo-line-move 8s ease-in-out infinite 2s;
        }

        .geo-line-3 {
            width: 150px;
            top: 60%;
            left: 15%;
            transform: rotate(-45deg);
            animation: geo-line-move 8s ease-in-out infinite 4s;
        }

        .geo-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.4;
            animation: geo-dot-pulse 3s ease-in-out infinite;
        }

        .geo-dot-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .geo-dot-2 { top: 70%; left: 85%; animation-delay: 1s; }
        .geo-dot-3 { top: 45%; left: 50%; animation-delay: 2s; }

        @keyframes geo-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes geo-pulse-scale {
            0%, 100% { transform: scale(1); opacity: 0.05; }
            50% { transform: scale(1.15); opacity: 0.12; }
        }

        @keyframes geo-line-move {
            0%, 100% { opacity: 0.05; transform: translateX(0) rotate(-15deg); }
            50% { opacity: 0.15; transform: translateX(20px) rotate(-15deg); }
        }

        @keyframes geo-dot-pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.6; }
        }

        /* About Grid Layout */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-3xl);
            align-items: start;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1.2fr 1fr;
                gap: var(--space-4xl);
            }
        }

        .about-content {
            position: relative;
            z-index: 1;
        }

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

        .eyebrow-line {
            width: 32px;
            height: 1px;
            background: var(--gold);
            animation: eyebrow-extend 1s var(--ease-out) both;
        }

        @keyframes eyebrow-extend {
            from { width: 0; }
            to { width: 32px; }
        }

        .about-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 200;
            line-height: 1.15;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            margin-bottom: var(--space-xl);
        }

        .about-text-block {
            margin-bottom: var(--space-2xl);
        }

        .about-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: var(--space-md);
        }

        .about-text-highlight {
            color: var(--text-primary);
            font-weight: 400;
            padding-left: var(--space-md);
            border-left: 2px solid var(--gold);
            margin-top: var(--space-lg);
        }

        /* About CTA Button - Clear and Prominent */
        .about-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-md);
            padding: 18px 36px;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out);
        }

        .about-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--gold);
            transition: width 0.5s var(--ease-out);
            z-index: -1;
        }

        .about-cta-btn:hover {
            color: var(--black);
        }

        .about-cta-btn:hover::before {
            width: 100%;
        }

        .about-cta-icon {
            display: flex;
            transition: transform 0.3s var(--ease-out);
        }

        .about-cta-btn:hover .about-cta-icon {
            transform: translateX(6px);
        }

        /* About Right Side */
        .about-right {
            position: relative;
            z-index: 1;
        }

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

        .about-stat-card {
            padding: var(--space-lg);
            background: rgba(255, 215, 0, 0.02);
            border: 1px solid var(--border-subtle);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out);
        }

        .about-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0%;
            height: 2px;
            background: var(--gold);
            transition: width 0.5s var(--ease-out);
        }

        .about-stat-card:hover {
            transform: translateY(-6px);
            border-color: var(--gold);
            background: rgba(255, 215, 0, 0.04);
        }

        .about-stat-card:hover::before {
            width: 80%;
        }

        .about-stat-icon {
            font-size: 24px;
            margin-bottom: var(--space-sm);
        }

        .about-stat-number {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 200;
            color: var(--gold);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: var(--space-xs);
        }

        .about-stat-label {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-tertiary);
            line-height: 1.4;
        }

        /* Founder Quote */
        .about-founder {
            padding: var(--space-xl);
            background: var(--surface-elevated);
            border: 1px solid var(--border-subtle);
            position: relative;
        }

        .about-founder::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
            font-size: 60px;
            color: var(--gold);
            opacity: 0.2;
            line-height: 1;
        }

        .about-founder-quote {
            font-size: 16px;
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-md);
            padding-left: var(--space-md);
        }

        .about-founder-info {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding-left: var(--space-md);
        }

        .about-founder-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
        }

        .about-founder-role {
            font-size: 12px;
            color: var(--text-tertiary);
        }

        .about-founder-role::before {
            content: '—';
            margin-right: var(--space-xs);
        }

        @media (max-width: 768px) {
            .geo-1 { width: 300px; height: 300px; }
            .geo-2 { width: 200px; height: 200px; }
            .geo-3 { display: none; }
            .geo-line-3 { display: none; }
            
            .about-stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-founder {
                padding: var(--space-lg);
            }
        }

        /* ═══════════════════════════════════════════════════════════
           FINAL CTA
           ═══════════════════════════════════════════════════════════ */
        .final-cta {
            text-align: center;
            padding: var(--space-5xl) 0;
            position: relative;
            overflow: hidden;
        }

        .final-cta-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
        }

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

        .final-cta-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 8vw, 80px);
            font-weight: 100;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: var(--space-lg);
        }

        .final-cta-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: var(--space-2xl);
        }

        .final-cta-actions {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            justify-content: center;
            align-items: center;
        }

        @media (min-width: 480px) {
            .final-cta-actions {
                flex-direction: row;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */
        .footer {
            padding: var(--space-4xl) 0 var(--space-2xl);
            border-top: 1px solid var(--border-subtle);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-2xl);
            margin-bottom: var(--space-3xl);
        }

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

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            margin-bottom: var(--space-lg);
        }

        .footer-brand-logo svg {
            width: 80px;
            height: 80px;
            opacity: 0.9;
        }

        .footer-brand-logo span {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 300;
            letter-spacing: 4px;
        }

        .footer-tagline {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-lg);
        }

        .footer-company {
            font-size: 12px;
            color: var(--text-tertiary);
            line-height: 1.8;
        }

        .footer-company strong {
            color: var(--text-secondary);
        }

        .footer-links-title {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: var(--space-lg);
        }

        .footer-links-list {
            list-style: none;
        }

        .footer-links-list a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: var(--space-xs) 0;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            align-items: center;
            padding-top: var(--space-xl);
            border-top: 1px solid var(--border-subtle);
            font-size: 11px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (min-width: 640px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

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

        .footer-status-dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        /* ═══════════════════════════════════════════════════════════
           REVEAL ANIMATIONS
           ═══════════════════════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(34px) scale(0.985);
            filter: blur(6px);
            transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
        }

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

        .reveal-stagger > * {
            opacity: 0;
            transform: translateY(24px);
            filter: blur(5px);
            transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
        }

        .reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
        .reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; }
        .reveal-stagger.active > *:nth-child(3) { transition-delay: 0.2s; }
        .reveal-stagger.active > *:nth-child(4) { transition-delay: 0.25s; }
        .reveal-stagger.active > *:nth-child(5) { transition-delay: 0.3s; }
        .reveal-stagger.active > *:nth-child(6) { transition-delay: 0.35s; }

        .reveal-stagger.active > * {
            opacity: 1;
            transform: none;
            filter: none;
        }

        /* ═══════════════════════════════════════════════════════════
           SMOOTH INERTIA SCROLL (Lenis) — minimal required styles
           ═══════════════════════════════════════════════════════════ */
        html.lenis, html.lenis body { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
        .lenis.lenis-stopped { overflow: hidden; }

        /* ═══════════════════════════════════════════════════════════
           HOW BOOM WORKS — pinned scroll story
           ═══════════════════════════════════════════════════════════ */
        .how-pin-wrap { position: relative; height: 320vh; }
        .how-pin {
            position: sticky;
            top: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .how-pin-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-2xl);
            align-items: center;
            width: 100%;
        }
        @media (min-width: 900px) {
            .how-pin-inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4xl); }
        }
        .how-steps { position: relative; min-height: 240px; }
        .how-step {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(36px);
            filter: blur(6px);
            transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
            pointer-events: none;
        }
        .how-step.on { opacity: 1; transform: none; filter: none; pointer-events: auto; }
        .how-k {
            font-family: var(--font-display);
            font-size: clamp(48px, 9vw, 96px);
            font-weight: 100;
            line-height: 1;
            color: var(--gold);
            letter-spacing: -0.04em;
        }
        .how-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 200;
            letter-spacing: -0.02em;
            margin-top: var(--space-md);
        }
        .how-desc {
            font-size: clamp(15px, 2vw, 18px);
            color: var(--text-secondary);
            max-width: 460px;
            margin-top: var(--space-md);
        }
        .how-track { display: flex; gap: 8px; margin-top: var(--space-2xl); }
        .how-track span {
            flex: 1;
            height: 3px;
            background: var(--border-default);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        .how-track span i {
            position: absolute;
            inset: 0;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out);
        }
        .how-track span.done i { transform: scaleX(1); }
        /* In-device product film (mirrors /how-it-works) */
        .how-visual {
            position: relative;
            aspect-ratio: 4 / 5;
            border-radius: 16px;
            background: var(--surface-elevated);
            border: 1px solid var(--border-default);
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0,0,0,0.55);
            transform-style: preserve-3d;
            transition: transform 0.35s var(--ease-out);
        }
        .how-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 20;
            pointer-events: none;
            background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,0.06) 50%, transparent 62%);
            transform: translateX(-120%);
            animation: howSweep 7s ease-in-out infinite;
        }
        @keyframes howSweep { 0%, 100% { transform: translateX(-120%); } 55% { transform: translateX(120%); } }
        @media (prefers-reduced-motion: reduce) { .how-visual::before { animation: none; } }
        .how-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border-default); }
        .how-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a2a30; }
        .how-url { margin-left: 12px; flex: 1; height: 24px; border-radius: 6px; background: rgba(0,0,0,0.4); display: flex; align-items: center; padding: 0 11px; font-size: 11px; color: var(--text-tertiary); letter-spacing: 0.5px; }
        .how-url::before { content: '🔒'; font-size: 8px; margin-right: 6px; filter: grayscale(1); }
        .how-screen { position: relative; width: 100%; height: calc(100% - 49px); background: linear-gradient(170deg, var(--surface-card), #070708); overflow: hidden; }
        .how-scene { position: absolute; inset: 0; padding: 20px; opacity: 0; transform: translateY(20px) scale(0.98); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); pointer-events: none; }
        .how-scene.on { opacity: 1; transform: none; }
        .how-aptgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
        .how-apt { border-radius: 11px; overflow: hidden; border: 1px solid var(--border-default); background: var(--surface); }
        .how-ph { height: 66px; background: linear-gradient(135deg, #1b1b20, #0e0e12); position: relative; }
        .how-ph::after { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 75% 25%, rgba(255,215,0,0.14), transparent 55%); }
        .how-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .how-scene.on .how-ph img { animation: howKen 9s ease-out both; }
        @keyframes howKen { from { transform: scale(1.12); } to { transform: scale(1.02); } }
        .how-live { position: absolute; top: 7px; left: 7px; z-index: 2; font-size: 8.5px; letter-spacing: 0.5px; color: #fff; background: rgba(0,0,0,0.55); border: 1px solid rgba(0,255,136,0.4); padding: 3px 6px; border-radius: 100px; }
        .how-pr { padding: 8px 10px; font-family: var(--font-display); color: var(--gold); font-size: 13px; }
        .how-apt.feat { border-color: var(--border-gold); box-shadow: 0 0 0 1px var(--border-gold); }
        .how-scene.on .how-apt { animation: howRise 0.55s var(--ease-out) backwards; }
        .how-scene.on .how-apt:nth-child(2) { animation-delay: 0.07s; }
        .how-scene.on .how-apt:nth-child(3) { animation-delay: 0.14s; }
        .how-scene.on .how-apt:nth-child(4) { animation-delay: 0.21s; }
        @keyframes howRise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
        .how-field { margin-bottom: 12px; }
        .how-field label { display: block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 5px; }
        .how-inp { height: 36px; border-radius: 9px; border: 1px solid var(--border-default); background: rgba(0,0,0,0.3); display: flex; align-items: center; padding: 0 12px; font-size: 13px; color: var(--text-primary); }
        .how-inp.focus { border-color: var(--border-gold); box-shadow: 0 0 0 3px var(--gold-muted); }
        .how-caret { display: inline-block; width: 1.5px; height: 15px; background: var(--gold); margin-left: 1px; animation: howBlink 1s steps(1) infinite; }
        @keyframes howBlink { 50% { opacity: 0; } }
        .how-submit { margin-top: 4px; height: 40px; border-radius: 10px; background: var(--gold); color: #000; font-weight: 600; font-size: 12.5px; display: flex; align-items: center; justify-content: center; letter-spacing: 0.5px; opacity: 0.4; transition: opacity 0.4s; }
        .how-submit.ready { opacity: 1; }
        .how-contract { border-radius: 12px; border: 1px solid var(--border-default); background: var(--surface); padding: 16px; }
        .how-ln { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.06); margin-bottom: 8px; }
        .how-ln.s { width: 60%; } .how-ln.m { width: 85%; }
        .how-sig { margin-top: 12px; border-top: 1px dashed var(--border-default); padding-top: 11px; }
        .how-sig svg { display: block; height: 46px; }
        .how-sig path { fill: none; stroke: var(--gold); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 560; stroke-dashoffset: 560; transition: stroke-dashoffset 1.5s var(--ease-out) 0.3s; }
        .how-scene.on .how-sig path { stroke-dashoffset: 0; }
        .how-pay { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; }
        .how-amt { font-family: var(--font-display); font-size: 14px; } .how-amt b { color: var(--gold); font-weight: 500; }
        .how-paybtn { height: 38px; padding: 0 18px; border-radius: 10px; background: #635BFF; color: #fff; font-weight: 600; font-size: 12.5px; display: flex; align-items: center; gap: 7px; transition: all 0.4s; }
        .how-paybtn.paid { background: var(--green); color: #000; }
        .how-pass { margin: 6px auto 0; max-width: 240px; border-radius: 16px; padding: 20px; background: linear-gradient(160deg, #16140a, #0c0b07); border: 1px solid var(--border-gold); position: relative; overflow: hidden; }
        .how-pass::after { content: ''; position: absolute; top: -40%; left: -30%; width: 80%; height: 180%; background: linear-gradient(115deg, transparent, rgba(255,215,0,0.16), transparent); transform: translateX(-120%) rotate(8deg); }
        .how-scene.on .how-pass::after { animation: howSwipe 2.4s var(--ease-out) 1.2s infinite; }
        @keyframes howSwipe { 0% { transform: translateX(-120%) rotate(8deg); } 60%, 100% { transform: translateX(320%) rotate(8deg); } }
        .how-ptop { display: flex; align-items: center; justify-content: space-between; }
        .how-pbrand { font-family: var(--font-display); letter-spacing: 2px; color: var(--gold); font-size: 13px; }
        .how-pbig { font-family: var(--font-display); font-weight: 200; font-size: 26px; margin: 14px 0 4px; }
        .how-pmeta { font-size: 11px; color: var(--text-tertiary); }
        .how-qr { margin-top: 13px; height: 54px; width: 54px; border-radius: 7px; background-color: #fff; background-image: repeating-conic-gradient(#000 0 25%, #1a1a1a 0 50%); background-size: 8px 8px; border: 3px solid #000; }
        .how-wel { text-align: center; margin-top: 13px; font-family: var(--font-display); font-weight: 300; font-size: 16px; opacity: 0; }
        .how-scene.on .how-wel { animation: howSlide 0.6s var(--ease-out) 1s forwards; }
        @keyframes howSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
        /* Mobile: unpin and stack all steps as a normal list */
        /* Mobile: keep the film — device pinned on top, steps cross-fade beneath as you scroll */
        @media (max-width: 899px) {
            .how-pin-wrap { height: 520vh; }
            .how-pin { padding: 70px 0 22px; }
            .how-pin-inner { gap: 16px; }
            .how-pin-text { order: 2; }
            .how-visual { order: 1; max-width: 360px; margin: 0 auto; }
            .how-screen { height: 40vh; }
            .how-scene { padding: 16px; }
            .how-steps { min-height: 22vh; }
            .how-k { font-size: 44px; }
        }
        @media (prefers-reduced-motion: reduce) {
            .how-step { opacity: 1 !important; transform: none !important; filter: none !important; }
            .how-scene { transition: none; }
            .how-pass::after, .how-caret { animation: none !important; }
        }

/* ── Shared FAQ accordion (native <details>, accessible, SEO/AEO-friendly) ── */
.boom-faq{max-width:800px;margin:0 auto}
.boom-faq details{border:1px solid var(--border-default);border-radius:14px;background:var(--surface-card);margin-bottom:12px;overflow:hidden;transition:border-color .3s var(--ease-out)}
.boom-faq details[open]{border-color:var(--border-gold)}
.boom-faq summary{list-style:none;cursor:pointer;padding:20px 22px;font-size:16px;font-weight:400;color:var(--text-primary);display:flex;justify-content:space-between;align-items:center;gap:16px;transition:color .3s}
.boom-faq summary:hover{color:var(--gold)}
.boom-faq summary::-webkit-details-marker{display:none}
.boom-faq summary::after{content:'+';color:var(--gold);font-size:24px;font-weight:200;line-height:1;transition:transform .3s var(--ease-out);flex-shrink:0}
.boom-faq details[open] summary::after{transform:rotate(45deg)}
.boom-faq .faq-a{padding:0 22px 20px;color:var(--text-secondary);font-size:14.5px;line-height:1.7;max-width:680px}
