

/* Text Logo */
.faneros-text-logo{display:flex;flex-direction:column;align-items:center;gap:0}
.faneros-text-name{font-family:'Space Grotesk',sans-serif;font-size:26px;font-weight:800;color:#f97316;letter-spacing:-.5px;line-height:1}
.faneros-text-tag{font-size:9px;font-weight:700;letter-spacing:2.5px;color:#a78bfa;text-transform:uppercase;line-height:1;margin-top:6px}
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --black: #000;
            --gray-950: #0a0a0a;
            --gray-900: #141414;
            --gray-800: #1f1f1f;
            --gray-700: #2e2e2e;
            --gray-600: #404040;
            --gray-500: #6b6b6b;
            --gray-400: #9a9a9a;
            --gray-300: #c4c4c4;
            --white: #fafafa;
            --defense-blue: #3b82f6;
            --defense-blue-light: #60a5fa;
            --defense-blue-glow: rgba(59, 130, 246, 0.15);
            --pi-red: #ef4444;
            --pi-red-light: #f87171;
            --pi-red-glow: rgba(239, 68, 68, 0.15);
            --imm-emerald: #10b981;
            --imm-emerald-light: #34d399;
            --imm-emerald-glow: rgba(16, 185, 129, 0.15);
            --green: #22c55e;
            --green-dark: #16a34a;
            --purple: #8b5cf6;
            --purple-light: #a78bfa;
        }
        
        html, body {
            background: var(--black);
            color: var(--white);
            font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            scroll-behavior: smooth;
        }
        
        a { text-decoration: none; color: inherit; }
        
        /* ========== NAVIGATION ========== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0;
            z-index: 10002;
            text-decoration: none;
        }

        .nav-wordmark {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #38bdf8, #3b82f6, #8b5cf6, #ec4899, #a855f7, #38bdf8);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: nav-gradient-flow 6s ease-in-out infinite;
        }

        @keyframes nav-gradient-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        
        .nav-links > a,
        .nav-dropdown > .nav-dropdown-trigger {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-400);
            transition: color 0.2s;
            cursor: pointer;
        }
        
        .nav-links > a:hover,
        .nav-links > a.active,
        .nav-dropdown:hover > .nav-dropdown-trigger {
            color: var(--white);
        }
        
        /* Dropdown Menus */
        .nav-dropdown {
            position: relative;
        }
        
        .nav-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 4px;
            background: none;
            border: none;
            font-family: inherit;
        }
        
        .nav-dropdown-trigger::after {
            content: '▾';
            font-size: 10px;
            opacity: 0.6;
        }
        
        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 200px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            padding-top: 20px;
            margin-top: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            z-index: 1001;
        }
        
        /* Invisible bridge to maintain hover between trigger and menu */
        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: transparent;
        }
        
        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        
        .nav-dropdown-menu a {
            display: block;
            padding: 12px 16px;
            font-size: 14px;
            color: var(--gray-400);
            border-radius: 8px;
            transition: all 0.15s;
            cursor: pointer;
            text-decoration: none;
        }
        
        .nav-dropdown-menu a:hover {
            background: var(--gray-800);
            color: var(--white);
        }
        
        /* Auth Buttons */

        /* Contact nav link - stands out */
        .nav-contact {
            font-size: 14px;
            font-weight: 600;
            color: #f97316 !important;
            background: none;
            padding: 0;
            border-radius: 0;
            text-decoration: none !important;
            transition: all 0.2s;
            cursor: pointer;
        }
        .nav-contact:hover {
            background: none;
            color: #fb923c !important;
            transform: none;
            box-shadow: none;
        }
        .nav-auth {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 8px;
            padding-left: 24px;
            border-left: 1px solid var(--gray-700);
        }
        
        .nav-login {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-400);
            transition: color 0.2s;
        }
        
        .nav-login:hover {
            color: var(--white);
        }
        
        .nav-cta {
            padding: 10px 20px;
            background: var(--green);
            color: var(--white) !important;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .nav-cta:hover {
            background: var(--green-dark);
            transform: translateY(-1px);
        }
        
        .menu-toggle {
            display: none;
            font-size: 28px;
            color: var(--white);
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10002;
            position: relative;
            padding: 8px 12px;
            min-width: 44px;
            min-height: 44px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        
        /* ========== MOBILE NAV ========== */

        /* Kill backdrop-filter when menu is open — fixes iOS Safari stacking context bug */
        body.mobile-nav-open .nav {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            background: #000 !important;
        }

        /* Lock body scroll when menu is open */
        body.mobile-nav-open {
            overflow: hidden !important;
            position: fixed !important;
            width: 100% !important;
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                background: #000 !important;
                flex-direction: column !important;
                justify-content: flex-start !important;
                align-items: stretch !important;
                gap: 0 !important;
                z-index: 10001 !important;
                padding: 80px 28px 40px !important;
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch;
            }
            
            .nav-links.active { display: flex !important; }
            
            .nav-links > a {
                font-size: 20px !important;
                font-weight: 500 !important;
                color: #e4e4e7 !important;
                padding: 16px 0 !important;
                border-bottom: 1px solid rgba(255,255,255,0.06) !important;
                text-decoration: none !important;
                -webkit-text-fill-color: #e4e4e7 !important;
                background: none !important;
                border-radius: 0 !important;
            }

            .nav-links > a:last-of-type {
                border-bottom: none !important;
            }

            /* Reset the purple contact button to a normal link on mobile */
            .nav-links > a.nav-contact {
                background: none !important;
                padding: 16px 0 !important;
                border-radius: 0 !important;
                color: #e4e4e7 !important;
                font-weight: 500 !important;
                box-shadow: none !important;
            }
            
            .nav-auth {
                flex-direction: column !important;
                margin-left: 0 !important;
                padding-left: 0 !important;
                border-left: none !important;
                margin-top: 32px !important;
                padding-top: 32px !important;
                border-top: 1px solid rgba(255,255,255,0.1) !important;
                gap: 14px !important;
                width: 100% !important;
            }

            .nav-auth .nav-login {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                padding: 14px 0 !important;
                font-size: 16px !important;
                font-weight: 600 !important;
                color: #fff !important;
                border: 1px solid rgba(255,255,255,0.15) !important;
                border-radius: 10px !important;
            }

            .nav-auth .nav-cta {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                padding: 14px 0 !important;
                font-size: 16px !important;
                font-weight: 700 !important;
                border-radius: 10px !important;
            }
            
            .menu-toggle { display: block !important; z-index: 10002 !important; }
        }
        
        /* ========== HERO ========== */
        .powered-by-faneros {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.05));
            border: 1px solid rgba(217, 119, 6, 0.3);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: #D97706;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }
        
        .powered-by-faneros:hover {
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.25), rgba(217, 119, 6, 0.1));
            box-shadow: 0 0 30px rgba(217, 119, 6, 0.2);
        }
        
        .hero {
            padding: 160px 24px 100px;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero h1 {
            font-size: clamp(40px, 8vw, 72px);
            font-weight: 700;
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        
        .hero h1 span {
            background: linear-gradient(135deg, var(--purple-light), var(--defense-blue-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-sub {
            font-size: 20px;
            color: #f0f0f5;
            max-width: 600px;
            margin: 0 auto 32px;
        }
        
        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }
        
        .btn-primary {
            background: var(--purple);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--purple-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }
        
        .btn-secondary {
            background: var(--gray-800);
            color: var(--white);
            border: 1px solid var(--gray-700);
        }
        
        .btn-secondary:hover {
            background: var(--gray-700);
            border-color: var(--gray-600);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--gray-600);
        }
        
        .btn-outline:hover {
            border-color: var(--gray-400);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .btn-large {
            padding: 16px 32px;
            font-size: 16px;
        }
        
        /* ========== PHONE DEMO SECTION ========== */
        .phone-demo-section {
            padding: 80px 24px;
            background: var(--gray-950);
        }
        
        .phone-demo-container {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .phone-demo-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .phone-demo-header h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }
        
        .phone-demo-header p {
            font-size: 18px;
            color: var(--gray-400);
        }
        
        .demo-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .demo-tab {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            color: var(--gray-400);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .demo-tab:hover {
            border-color: var(--gray-600);
            color: var(--white);
        }
        
        .demo-tab.active {
            background: var(--gray-800);
            border-color: var(--purple);
            color: var(--white);
        }
        
        .demo-tab .flags {
            font-size: 16px;
        }
        
        .phone-demo-wrapper {
            position: relative;
        }
        
        .phone-demo-panel {
            display: none;
        }
        
        .phone-demo-panel.active {
            display: block;
        }
        
        .phone-frame {
            background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .phone-screen {
            background: var(--black);
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }
        
        .dynamic-island {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: #000;
            border-radius: 20px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 10;
        }
        
        .call-indicator {
            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.7; transform: scale(1.1); }
        }
        
        .call-time {
            font-size: 12px;
            font-weight: 600;
            color: var(--green);
        }
        
        .call-screen {
            padding: 60px 24px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 500px;
        }
        
        .call-header {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .caller-label {
            font-size: 12px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        
        .firm-name {
            font-size: 22px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }
        
        .phone-number {
            font-size: 14px;
            color: var(--gray-400);
        }
        
        .faneros-orb-container {
            margin: 24px 0;
        }
        
        .faneros-orb {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: conic-gradient(from 180deg, #1a1025 0deg, #2d1f3d 30deg, #5a3d7a 60deg, #8b5aab 90deg, #c084e0 120deg, #e0b0ff 140deg, #c084e0 160deg, #9d5fc2 180deg, #7b4b9e 210deg, #5c3d7a 250deg, #3d2952 290deg, #2a1d3a 320deg, #1a1025 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 0 40px rgba(180, 130, 220, 0.3);
            transition: all 0.3s;
        }
        
        .faneros-orb.speaking {
            animation: orb-pulse 0.5s ease-in-out infinite alternate;
            box-shadow: 0 0 60px rgba(180, 130, 220, 0.5);
        }
        
        @keyframes orb-pulse {
            from { transform: scale(1); }
            to { transform: scale(1.05); }
        }
        
        .faneros-orb .eyes {
            display: flex;
            gap: 16px;
        }
        
        .faneros-orb .eye {
            width: 14px;
            height: 14px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            position: relative;
        }
        
        .faneros-orb .eye::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 4px;
            width: 5px;
            height: 5px;
            background: white;
            border-radius: 50%;
        }
        
        .waveform-container {
            display: flex;
            gap: 4px;
            align-items: center;
            height: 32px;
            margin: 16px 0;
        }
        
        .waveform-container.idle .waveform-bar {
            height: 4px !important;
        }
        
        .waveform-bar {
            width: 4px;
            height: 4px;
            background: var(--purple);
            border-radius: 2px;
            transition: height 0.1s;
        }
        
        .language-badge {
            margin: 16px 0;
            height: 32px;
        }
        
        .language-badge-inner {
            display: none;
            align-items: center;
            gap: 8px;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.4);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--green);
        }
        
        .language-badge-inner.visible {
            display: inline-flex;
        }
        
        .language-badge-inner .dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
        }
        
        .transcript-area {
            width: 100%;
            margin-top: auto;
        }
        
        .transcript-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 12px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .transcript-content {
            background: var(--gray-950);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
            padding: 16px;
            max-height: 150px;
            overflow-y: auto;
            font-size: 13px;
        }
        
        .transcript-line {
            margin-bottom: 12px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s;
        }
        
        .transcript-line.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .transcript-speaker {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }
        
        .transcript-speaker.faneros {
            color: var(--purple-light);
        }
        
        .transcript-speaker.caller {
            color: var(--gray-500);
        }
        
        .transcript-text {
            color: var(--gray-300);
            line-height: 1.5;
        }
        
        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 14px;
            background: var(--purple-light);
            margin-left: 2px;
            animation: blink 1s step-end infinite;
        }
        
        @keyframes blink {
            50% { opacity: 0; }
        }
        
        .audio-controls {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-800);
        }
        
        .play-button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--purple);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        
        .play-button:hover {
            background: var(--purple-light);
            transform: scale(1.05);
        }
        
        .play-button.playing {
            background: var(--green);
        }
        
        .play-button svg {
            width: 20px;
            height: 20px;
            fill: white;
        }
        
        .progress-container {
            flex: 1;
        }
        
        .progress-bar {
            height: 6px;
            background: var(--gray-800);
            border-radius: 3px;
            cursor: pointer;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--purple);
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .time-display {
            display: flex;
            justify-content: space-between;
            margin-top: 6px;
            font-size: 11px;
            color: var(--gray-500);
        }
        
        /* ========== CHAT DEMO SECTION ========== */
        .demo-section {
            padding: 80px 24px;
            background: var(--black);
        }
        
        .demo-container {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .demo-header {
            text-align: center;
            margin-bottom: 32px;
        }
        
        .demo-header h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }
        
        .demo-header p {
            font-size: 18px;
            color: var(--gray-400);
        }
        
        .practice-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .practice-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            color: var(--gray-400);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .practice-tab svg {
            width: 18px;
            height: 18px;
        }
        
        .practice-tab:hover {
            border-color: var(--gray-600);
            color: var(--white);
        }
        
        .practice-tab.defense.active {
            background: var(--defense-blue-glow);
            border-color: var(--defense-blue);
            color: var(--defense-blue-light);
        }
        
        .practice-tab.pi.active {
            background: var(--pi-red-glow);
            border-color: var(--pi-red);
            color: var(--pi-red-light);
        }
        
        .practice-tab.imm.active {
            background: var(--imm-emerald-glow);
            border-color: var(--imm-emerald);
            color: var(--imm-emerald-light);
        }
        
        .chat-demo-panel {
            display: none;
        }
        
        .chat-demo-panel.active {
            display: block;
        }
        
        .chat-content {
            background: var(--gray-900);
            border: 1px solid var(--gray-700);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .chat-header {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--gray-700);
        }
        
        .chat-orb {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .chat-orb.defense-orb {
            background: radial-gradient(circle at 30% 30%, #60a5fa, #3b82f6, #2563eb);
        }
        
        .chat-orb.pi-orb {
            background: radial-gradient(circle at 30% 30%, #f87171, #ef4444, #dc2626);
        }
        
        .chat-orb.imm-orb {
            background: radial-gradient(circle at 30% 30%, #34d399, #10b981, #059669);
        }
        
        .chat-orb .orb-eyes { display: flex; gap: 8px; }
        .chat-orb .orb-eye { 
            width: 8px; 
            height: 8px; 
            background: rgba(0,0,0,0.7); 
            border-radius: 50%; 
            position: relative;
        }
        .chat-orb .orb-eye::after { 
            content: ''; 
            position: absolute; 
            top: 1px; 
            left: 2px; 
            width: 3px; 
            height: 3px; 
            background: white; 
            border-radius: 50%; 
        }
        
        .chat-header-text { flex: 1; }
        
        .chat-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
        }
        
        .chat-status {
            font-size: 12px;
            color: var(--green);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .chat-status::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .chat-messages {
            height: 320px;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .chat-message {
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 16px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .chat-message.ai {
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }
        
        .chat-message.user {
            background: var(--purple);
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }
        
        .chat-message.user.defense-msg { background: var(--defense-blue); }
        .chat-message.user.pi-msg { background: var(--pi-red); }
        .chat-message.user.imm-msg { background: var(--imm-emerald); }
        
        .chat-message .sender {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-400);
            margin-bottom: 4px;
            display: block;
        }
        
        .chat-message.user .sender { color: rgba(255,255,255,0.7); }
        
        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 12px 16px;
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 16px;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }
        
        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: var(--gray-500);
            border-radius: 50%;
            animation: typing-bounce 1.4s ease-in-out infinite;
        }
        
        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes typing-bounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-6px); }
        }
        
        .chat-input-area {
            padding: 16px;
            border-top: 1px solid var(--gray-700);
            background: var(--gray-950);
        }
        
        .chat-input-row {
            display: flex;
            gap: 10px;
        }
        
        .chat-input {
            flex: 1;
            background: var(--gray-800);
            border: 1px solid var(--gray-600);
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 14px;
            color: var(--white);
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        
        .chat-input:focus { border-color: var(--purple); }
        .chat-input::placeholder { color: var(--gray-500); }
        
        .chat-send {
            background: var(--green);
            border: none;
            border-radius: 10px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chat-send:hover { background: var(--green-dark); }
        .chat-send:disabled { opacity: 0.5; cursor: not-allowed; }
        .chat-send svg { width: 18px; height: 18px; stroke: white; fill: none; }
        
        .sample-questions {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        
        .sample-btn {
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 20px;
            padding: 8px 14px;
            font-size: 12px;
            color: var(--gray-300);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .sample-btn:hover {
            border-color: var(--gray-500);
            color: var(--white);
        }
        
        .sample-btn-defense {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.4);
            color: #93c5fd;
        }
        
        .sample-btn-defense:hover {
            background: rgba(59, 130, 246, 0.25);
            border-color: var(--defense-blue);
            color: var(--white);
        }
        
        .sample-btn-pi {
            background: rgba(249, 115, 22, 0.15);
            border-color: rgba(249, 115, 22, 0.4);
            color: #fdba74;
        }
        
        .sample-btn-pi:hover {
            background: rgba(249, 115, 22, 0.25);
            border-color: #f97316;
            color: var(--white);
        }
        
        .sample-btn-imm {
            background: rgba(16, 185, 129, 0.15);
            border-color: rgba(16, 185, 129, 0.4);
            color: #6ee7b7;
        }
        
        .sample-btn-imm:hover {
            background: rgba(16, 185, 129, 0.25);
            border-color: var(--imm-emerald);
            color: var(--white);
        }
        
        /* ========== LEGAL FRAMEWORK SECTION ========== */
        .legal-framework-section {
            padding: 100px 24px;
            background: var(--black);
            border-top: 1px solid var(--gray-800);
        }
        
        .legal-framework-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .legal-framework-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .legal-framework-header .section-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--purple);
            margin-bottom: 16px;
        }
        
        .legal-framework-header h2 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .legal-framework-header p {
            font-size: 18px;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .legal-framework-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        @media (max-width: 1100px) {
            .legal-framework-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }
        
        .legal-framework-column {
            display: flex;
            flex-direction: column;
        }
        
        .legal-framework-column-header {
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--gray-800);
        }
        
        .legal-framework-column-header h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .legal-framework-column-header.defense h3 {
            color: var(--defense-blue-light);
        }
        
        .legal-framework-column-header.pi h3 {
            color: var(--pi-red-light);
        }
        
        .legal-framework-column-header.imm h3 {
            color: var(--imm-emerald-light);
        }
        
        .legal-framework-column-header p {
            font-size: 14px;
            color: var(--gray-500);
        }
        
        .statute-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .statute-card {
            background: var(--gray-950);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
            padding: 16px;
            transition: all 0.2s;
        }
        
        .statute-card:hover {
            border-color: var(--gray-700);
            transform: translateX(4px);
        }
        
        .statute-card.defense:hover { border-color: rgba(59, 130, 246, 0.4); }
        .statute-card.pi:hover { border-color: rgba(239, 68, 68, 0.4); }
        .statute-card.imm:hover { border-color: rgba(16, 185, 129, 0.4); }
        
        .statute-citation {
            font-family: 'SF Mono', 'Fira Code', monospace;
            font-size: 11px;
            color: var(--gray-500);
            margin-bottom: 6px;
        }
        
        .statute-card.defense .statute-citation { color: var(--defense-blue); }
        .statute-card.pi .statute-citation { color: var(--pi-red); }
        .statute-card.imm .statute-citation { color: var(--imm-emerald); }
        
        .statute-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }
        
        .statute-description {
            font-size: 12px;
            color: var(--gray-500);
            line-height: 1.5;
        }
        
        .legal-framework-footer {
            text-align: center;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-800);
        }
        
        .legal-framework-footer p {
            font-size: 14px;
            color: var(--gray-500);
        }
        
        .legal-framework-footer a {
            color: var(--purple-light);
            transition: color 0.2s;
        }
        
        .legal-framework-footer a:hover {
            color: var(--white);
        }
        
        /* ========== PRICING SECTION (matches pricing page) ========== */
        .pricing-section {
            padding: 100px 24px 60px;
            background: var(--gray-950);
        }
        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 16px;
        }
        .pricing-header h2 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }
        .pricing-header p {
            font-size: 18px;
            color: var(--gray-400);
        }

        /* Section sub-headers */
        .pricing-section-header {
            text-align: center;
            margin: 56px auto 28px;
            max-width: 700px;
        }
        .pricing-section-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }
        .pricing-section-header h3 {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }
        .pricing-section-header p {
            color: var(--gray-400);
            font-size: 15px;
            line-height: 1.6;
        }

        /* GEO grid */
        .hp-geo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .hp-geo-card {
            background: rgba(17,17,27,.9);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 20px;
            padding: 28px 24px;
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .hp-geo-card:hover { transform: translateY(-4px); }
        .hp-geo-card.popular {
            border-color: rgba(249,115,22,.5);
            box-shadow: 0 0 60px rgba(249,115,22,.08), 0 0 0 1px rgba(249,115,22,.3);
        }
        .hp-geo-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 100px;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .hp-geo-tier {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: #fb923c;
            margin-bottom: 4px;
        }
        .hp-geo-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .hp-geo-pages {
            font-size: 12px;
            color: var(--gray-500);
            margin-bottom: 16px;
        }
        .hp-geo-price {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1;
            margin-bottom: 4px;
        }
        .hp-geo-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--gray-500);
        }
        .hp-geo-price-label {
            font-size: 12px;
            color: var(--gray-500);
            margin-bottom: 16px;
        }
        .hp-geo-desc {
            font-size: 13px;
            color: var(--gray-400);
            margin-bottom: 16px;
            line-height: 1.5;
            flex: 1;
        }
        .hp-geo-features {
            list-style: none;
            margin-bottom: 20px;
        }
        .hp-geo-features li {
            font-size: 12px;
            color: var(--gray-300);
            padding: 5px 0 5px 20px;
            position: relative;
        }
        .hp-geo-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 700;
            font-size: 11px;
        }
        .hp-geo-features li.premium {
            color: var(--white);
            font-weight: 600;
        }
        .hp-geo-features li.premium::before {
            content: '★';
            color: #f97316;
        }
        .hp-geo-btn {
            display: block;
            width: 100%;
            padding: 13px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            border: 0;
            text-align: center;
            font-family: inherit;
            text-decoration: none;
        }
        .hp-geo-btn-primary {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
        }
        .hp-geo-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(249,115,22,.3);
        }
        .hp-geo-btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,.12);
            color: var(--white);
        }
        .hp-geo-btn-outline:hover {
            border-color: #f97316;
            color: #f97316;
        }

        /* Concierge card */
        .hp-agent-card {
            background: rgba(17,17,27,.9);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            max-width: 520px;
            margin: 0 auto;
        }
        .hp-agent-card:hover { transform: translateY(-4px); }
        .hp-agent-card.chat {
            border: 1px solid rgba(139,92,246,.3);
            box-shadow: 0 0 60px rgba(139,92,246,.08);
        }
        .hp-agent-tier {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 8px;
            color: var(--purple-light);
        }
        .hp-agent-price {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1;
            margin-bottom: 4px;
        }
        .hp-agent-price span {
            font-size: 18px;
            font-weight: 400;
            color: var(--gray-500);
            letter-spacing: 0;
        }
        .hp-agent-desc {
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 24px;
            line-height: 1.5;
        }
        .hp-agent-features {
            list-style: none;
            margin-bottom: 28px;
            flex: 1;
        }
        .hp-agent-features li {
            font-size: 13px;
            color: var(--gray-300);
            padding: 8px 0 8px 24px;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,.04);
        }
        .hp-agent-features li:last-child { border-bottom: 0; }
        .hp-agent-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 700;
            font-size: 12px;
        }
        .hp-agent-btn {
            display: block;
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            border: 0;
            text-align: center;
            font-family: inherit;
            text-decoration: none;
            background: linear-gradient(135deg, var(--purple), #7c3aed);
            color: #fff;
        }
        .hp-agent-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139,92,246,.3);
        }

        /* Compare table */
        .hp-compare-section {
            max-width: 1000px;
            margin: 56px auto 0;
        }
        .hp-compare-table {
            width: 100%;
            border-collapse: collapse;
        }
        .hp-compare-table th {
            text-align: left;
            padding: 14px 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-500);
            background: rgba(17,17,27,.8);
            border-bottom: 1px solid rgba(255,255,255,.06);
        }
        .hp-compare-table th:not(:first-child) {
            text-align: center;
            font-size: 10px;
        }
        .hp-compare-table td {
            padding: 12px;
            font-size: 13px;
            color: var(--gray-300);
            border-bottom: 1px solid rgba(255,255,255,.04);
        }
        .hp-compare-table td:not(:first-child) { text-align: center; }
        .hp-compare-table tr:hover td { background: rgba(249,115,22,.02); }
        .hp-compare-table .section-row td {
            font-weight: 700;
            color: var(--white);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .8px;
            padding-top: 20px;
            background: 0;
            border-bottom: 1px solid rgba(249,115,22,.15);
        }
        .hp-compare-table .check { color: var(--green); font-weight: 700; }
        .hp-compare-table .dash { color: var(--gray-700); }

        /* Enterprise banner */
        .hp-enterprise-card {
            background: linear-gradient(135deg, rgba(139,92,246,.06), rgba(59,130,246,.06));
            border: 1px solid rgba(139,92,246,.3);
            border-radius: 20px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            max-width: 1000px;
            margin: 48px auto 0;
        }
        .hp-enterprise-card h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .hp-enterprise-card p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.6;
            max-width: 600px;
        }
        .hp-enterprise-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .hp-enterprise-tags span {
            padding: 4px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
        }

        /* FAQ */
        .hp-faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .hp-faq-item {
            background: rgba(17,17,27,.9);
            border: 1px solid rgba(255,255,255,.06);
            border-radius: 14px;
            padding: 24px;
        }
        .hp-faq-item h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .hp-faq-item p {
            font-size: 13px;
            color: var(--gray-400);
            line-height: 1.7;
        }

        /* Pricing responsive */
        @media (max-width: 900px) {
            .hp-geo-grid { grid-template-columns: repeat(2, 1fr); }
            .hp-faq-grid { grid-template-columns: 1fr; }
            .hp-enterprise-card { flex-direction: column; text-align: center; }
            .hp-compare-table { font-size: 12px; }
        }
        @media (max-width: 600px) {
            .hp-geo-grid { grid-template-columns: 1fr; }
            .hp-compare-table th, .hp-compare-table td { padding: 10px 8px; font-size: 11px; }
        }
        
        /* ========== ENTERPRISE ADDONS ========== */
        .enterprise-addons {
            padding-top: 48px;
            border-top: 1px solid var(--gray-800);
        }
        
        .enterprise-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .enterprise-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--purple);
            margin-bottom: 12px;
        }
        
        .enterprise-header h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .enterprise-header p {
            font-size: 16px;
            color: var(--gray-400);
        }
        
        .addons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 768px) {
            .addons-grid { grid-template-columns: 1fr; }
        }
        
        .addon-card {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
            padding: 28px;
            display: flex;
            gap: 20px;
        }
        
        .addon-icon {
            width: 48px;
            height: 48px;
            background: rgba(139, 92, 246, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .addon-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--purple-light);
        }
        
        .addon-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--purple);
            background: rgba(139, 92, 246, 0.15);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 8px;
        }
        
        .addon-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .addon-content > p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .addon-features {
            list-style: none;
        }
        
        .addon-features li {
            font-size: 13px;
            color: var(--gray-500);
            padding: 4px 0;
            padding-left: 18px;
            position: relative;
        }
        
        .addon-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--purple);
        }
        
        .enterprise-cta {
            text-align: center;
            margin-top: 40px;
            padding: 32px;
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
        }
        
        .enterprise-cta p {
            font-size: 16px;
            color: var(--gray-400);
            margin-bottom: 20px;
        }
        
        .enterprise-cta strong {
            color: var(--white);
        }
        
        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 80px 24px;
            text-align: center;
            background: var(--black);
            border-top: 1px solid var(--gray-800);
        }
        
        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }
        
        .cta-section p {
            font-size: 16px;
            color: var(--gray-400);
            margin-bottom: 28px;
            max-width: 450px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* ========== FOOTER ========== */
        .footer {
            padding: 32px 24px;
            border-top: 1px solid var(--gray-900);
        }
        
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .footer-copy {
            font-size: 13px;
            color: var(--gray-500);
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            font-size: 13px;
            color: var(--gray-400);
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        @media (max-width: 600px) {
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        
        
        /* ========== ENHANCED ENTERPRISE ADD-ONS ========== */
        
        .enterprise-addons-enhanced {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--gray-800);
        }
        
        .enterprise-addons-enhanced .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .enterprise-addons-enhanced .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--purple);
            margin-bottom: 12px;
        }
        
        .enterprise-addons-enhanced .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }
        
        .enterprise-addons-enhanced .section-subtitle {
            font-size: 16px;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .enterprise-grid-enhanced {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 48px;
        }
        
        @media (max-width: 900px) {
            .enterprise-grid-enhanced { grid-template-columns: 1fr; }
        }
        
        .enterprise-card-enhanced {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }
        
        .enterprise-card-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
        }
        
        .card-header-enhanced { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
        
        .card-icon-enhanced {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            flex-shrink: 0;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        
        .card-icon-enhanced.mcp {
            background: rgba(56, 189, 248, 0.15);
            border: 1px solid rgba(56, 189, 248, 0.3);
        }
        
        .card-badge-enhanced {
            display: inline-block;
            font-family: 'Courier New', monospace;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 6px;
            margin-bottom: 8px;
            background: rgba(139, 92, 246, 0.15);
            color: var(--purple-light);
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        
        .card-badge-enhanced.mcp {
            background: rgba(56, 189, 248, 0.15);
            color: #38bdf8;
            border: 1px solid rgba(56, 189, 248, 0.3);
        }
        
        .card-title-enhanced { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
        .card-description-enhanced { font-size: 14px; color: var(--gray-400); line-height: 1.5; }
        
        .card-pricing-enhanced {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 14px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid var(--gray-800);
        }
        
        .pricing-row-enhanced {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-800);
        }
        
        .pricing-row-enhanced:last-child { border-bottom: none; }
        .pricing-label-enhanced { font-size: 13px; color: var(--gray-400); }
        .pricing-value-enhanced { font-family: 'Courier New', monospace; font-size: 15px; font-weight: 600; color: var(--white); }
        .pricing-value-enhanced.highlight { color: var(--green); }
        .pricing-note-enhanced { font-size: 11px; color: var(--gray-500); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-800); }
        
        .features-section-enhanced { margin-top: 20px; }
        .features-title-enhanced { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 14px; }
        
        .feature-item-enhanced {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray-800);
        }
        
        .feature-item-enhanced:last-child { border-bottom: none; }
        
        .feature-check-enhanced {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 2px;
            background: rgba(139, 92, 246, 0.15);
            color: var(--purple-light);
        }
        
        .feature-check-enhanced.mcp { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
        .feature-name-enhanced { font-size: 13px; color: var(--gray-300); font-weight: 500; margin-bottom: 2px; }
        .feature-desc-enhanced { font-size: 11px; color: var(--gray-500); }
        
        .tech-specs-enhanced {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 16px;
            margin-top: 20px;
            border: 1px solid var(--gray-800);
            font-family: 'Courier New', monospace;
        }
        
        .tech-specs-title-enhanced {
            font-size: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray-500);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .tech-specs-title-enhanced::before { content: '>'; color: var(--green); }
        .tech-spec-row-enhanced { font-size: 11px; color: var(--gray-400); padding: 4px 0; display: flex; gap: 6px; }
        .tech-spec-key-enhanced { color: var(--purple-light); }
        .tech-spec-value-enhanced { color: var(--green); }
        
        .card-cta-enhanced { margin-top: 24px; }
        
        .cta-button-enhanced {
            display: block;
            width: 100%;
            padding: 14px 20px;
            border-radius: 10px;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        
        .cta-button-enhanced:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4); }
        .cta-button-enhanced.mcp { background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%); box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3); }
        .cta-button-enhanced.mcp:hover { box-shadow: 0 6px 25px rgba(56, 189, 248, 0.4); }
        .cta-subtext-enhanced { text-align: center; font-size: 11px; color: var(--gray-500); margin-top: 10px; }
        
        .stack-section-enhanced { margin-top: 48px; text-align: center; }
        .stack-title-enhanced { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-500); margin-bottom: 16px; }
        .stack-badges-enhanced { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .stack-badge-enhanced { font-family: 'Courier New', monospace; font-size: 10px; padding: 8px 12px; background: var(--gray-900); border: 1px solid var(--gray-800); border-radius: 6px; color: var(--gray-400); }
            /* Sticky CTA Bar */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid var(--gray-700);
            padding: 12px 24px;
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .sticky-cta.visible { transform: translateY(0); }
        .sticky-cta-text { font-size: 14px; color: var(--gray-300); }
        .sticky-cta-text strong { color: white; }
        @media (max-width: 600px) {
            .sticky-cta-text { display: none; }
        }
        
        /* Micro CTA Section */
        .micro-cta {
            text-align: center;
            padding: 40px 24px;
            background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 100%);
            border-top: 1px solid var(--gray-800);
        }
        .micro-cta p {
            color: var(--gray-400);
            font-size: 16px;
            margin-bottom: 16px;
        }
        .micro-cta p strong { color: white; }
        
        /* ========== PHONE DEMO SECTION ========== */
        .phone-demo-section {
            padding: 80px 24px;
            background: var(--gray-950);
            border-top: 1px solid var(--gray-800);
        }
        .phone-demo-container { max-width: 700px; margin: 0 auto; }
        .phone-demo-header { text-align: center; margin-bottom: 40px; }
        .phone-demo-header h2 { font-size: 36px; font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; }
        .phone-demo-header p { font-size: 18px; color: var(--gray-400); }
        .demo-tabs { display: flex; gap: 12px; margin-bottom: 24px; justify-content: center; flex-wrap: wrap; }
        .demo-tab { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: var(--gray-900); border: 1px solid var(--gray-700); border-radius: 12px; color: var(--gray-400); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
        .demo-tab:hover { border-color: var(--gray-600); color: var(--white); }
        .demo-tab.active { background: var(--gray-800); border-color: var(--purple); color: var(--white); }
        .demo-tab .flags { font-size: 16px; }
        .phone-demo-wrapper { position: relative; }
        .phone-demo-panel { display: none; }
        .phone-demo-panel.active { display: block; }
        .phone-frame { background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%); border-radius: 40px; padding: 12px; box-shadow: 0 25px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); }
        .phone-screen { background: var(--black); border-radius: 32px; overflow: hidden; position: relative; }
        .dynamic-island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); background: #000; border-radius: 20px; padding: 8px 16px; display: flex; align-items: center; gap: 8px; z-index: 10; }
        .call-indicator { 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.7; transform: scale(1.1); } }
        .call-time { font-size: 12px; font-weight: 600; color: var(--green); }
        .call-screen { padding: 60px 24px 24px; display: flex; flex-direction: column; align-items: center; min-height: 500px; }
        .call-header { text-align: center; margin-bottom: 24px; }
        .caller-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
        .firm-name { font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
        .phone-number { font-size: 14px; color: var(--gray-400); }
        .faneros-orb-container { margin: 24px 0; }
        .faneros-orb { width: 100px; height: 100px; border-radius: 50%; background: conic-gradient(from 180deg, #1a1025 0deg, #2d1f3d 30deg, #5a3d7a 60deg, #8b5aab 90deg, #c084e0 120deg, #e0b0ff 140deg, #c084e0 160deg, #9d5fc2 180deg, #7b4b9e 210deg, #5c3d7a 250deg, #3d2952 290deg, #2a1d3a 320deg, #1a1025 360deg); display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 0 40px rgba(180,130,220,0.3); transition: all 0.3s; }
        .faneros-orb.speaking { animation: orb-pulse 0.5s ease-in-out infinite alternate; box-shadow: 0 0 60px rgba(180,130,220,0.5); }
        @keyframes orb-pulse { from { transform: scale(1); } to { transform: scale(1.05); } }
        .faneros-orb .eyes { display: flex; gap: 16px; }
        .faneros-orb .eye { width: 14px; height: 14px; background: rgba(0,0,0,0.8); border-radius: 50%; position: relative; }
        .faneros-orb .eye::after { content: ''; position: absolute; top: 2px; left: 4px; width: 5px; height: 5px; background: white; border-radius: 50%; }
        .waveform-container { display: flex; gap: 4px; align-items: center; height: 32px; margin: 16px 0; }
        .waveform-container.idle .waveform-bar { height: 4px !important; }
        .waveform-bar { width: 4px; height: 4px; background: var(--purple); border-radius: 2px; transition: height 0.1s; }
        .language-badge { margin: 16px 0; height: 32px; }
        .language-badge-inner { display: none; align-items: center; gap: 8px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--green); }
        .language-badge-inner.visible { display: inline-flex; }
        .language-badge-inner .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
        .transcript-area { width: 100%; margin-top: auto; }
        .transcript-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
        .transcript-content { background: var(--gray-950); border: 1px solid var(--gray-800); border-radius: 12px; padding: 16px; max-height: 150px; overflow-y: auto; font-size: 13px; }
        .transcript-line { margin-bottom: 12px; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
        .transcript-line.visible { opacity: 1; transform: translateY(0); }
        .transcript-speaker { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
        .transcript-speaker.faneros { color: var(--purple-light); }
        .transcript-speaker.caller { color: var(--gray-500); }
        .transcript-text { color: var(--gray-300); line-height: 1.5; }
        .typing-cursor { display: inline-block; width: 2px; height: 14px; background: var(--purple-light); margin-left: 2px; animation: blink 1s step-end infinite; }
        @keyframes blink { 50% { opacity: 0; } }
        .audio-controls { display: flex; align-items: center; gap: 16px; width: 100%; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-800); }
        .play-button { width: 48px; height: 48px; border-radius: 50%; background: var(--purple); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
        .play-button:hover { background: var(--purple-light); transform: scale(1.05); }
        .play-button.playing { background: var(--green); }
        .play-button svg { width: 20px; height: 20px; fill: white; }
        .progress-container { flex: 1; }
        .progress-bar { height: 6px; background: var(--gray-800); border-radius: 3px; cursor: pointer; overflow: hidden; }
        .progress-fill { height: 100%; background: var(--purple); border-radius: 3px; width: 0%; transition: width 0.1s linear; }
        .time-display { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: var(--gray-500); }
    