:root {
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #818CF8;
            --bronze-400: #A5B4FC;
            --bronze-300: #C7D2FE;
            --bronze-200: #E0E7FF;
            --bronze-100: #EEF2FF;
            
            --emerald: #059669;
            --emerald-light: #D1FAE5;
            --blue: #3B82F6;
            --blue-light: #DBEAFE;
            --violet: #7C3AED;
            --violet-light: #EDE9FE;
            --teal: #0D9488;
            --teal-light: #CCFBF1;
            --rose: #E11D48;
            --rose-light: #FFE4E6;
            --cyan: #06B6D4;
            --amber: #F59E0B;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Source Serif 4', Georgia, serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-sans); font-size: 15px; line-height: 1.6; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

        /* ==========================================
           HEADER (Unified across pages)
           ========================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

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

        .logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; color: var(--gray-900); }

        .logo-mark {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900));
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(61, 41, 20, 0.2);
        }

        .logo-mark svg { width: 18px; height: 18px; color: white; }
        .logo sup { font-size: 10px; font-weight: 500; color: var(--bronze-600); margin-left: 2px; }

        /* Main Navigation */
        .nav { display: flex; align-items: center; gap: 4px; }
        
        .nav-item {
            position: relative;
        }

        .nav-link { display: flex; align-items: center; gap: 4px; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--gray-600); border-radius: 6px; transition: all 0.2s; }
        .nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
        .nav-link.active { color: var(--bronze-700); }

        .nav-link svg {
            width: 14px;
            height: 14px;
            transition: transform 0.2s;
        }

        .nav-item:hover .nav-link svg {
            transform: rotate(180deg);
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background:
                radial-gradient(circle at 20% 0%, rgba(99,102,241, 0.10), transparent 45%),
                radial-gradient(circle at 85% 20%, rgba(99,102,241, 0.06), transparent 40%),
                radial-gradient(circle at 85% 85%, rgba(99,102,241, 0.04), transparent 45%),
                linear-gradient(180deg, #FFFFFF 0%, #F8F6F3 100%);
            border-radius: 16px;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.06);
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
            z-index: 100;
            padding: 24px;
            min-width: 560px;
        }

        .mega-menu.wide {
            min-width: 720px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .mega-menu-grid.cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .mega-menu-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px;
            border-radius: 12px;
            transition: all 0.2s;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        }

        .mega-menu-item:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(99,102,241, 0.30);
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.10);
        }

        .mega-menu-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mega-menu-icon svg {
            width: 22px;
            height: 22px;
        }

        .mega-menu-icon.voice { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .mega-menu-icon.whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
        .mega-menu-icon.instagram { background: rgba(225, 48, 108, 0.12); color: #E1306C; }
        .mega-menu-icon.messenger { background: rgba(0, 132, 255, 0.12); color: #0084FF; }
        .mega-menu-icon.analytics { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.integrations { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.auto { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .mega-menu-icon.health { background: rgba(16, 185, 129, 0.12); color: #10B981; }
        .mega-menu-icon.realestate { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.ecommerce { background: rgba(251, 146, 60, 0.12); color: #FB923C; }
        .mega-menu-icon.finance { background: rgba(6, 182, 212, 0.12); color: #06B6D4; }
        .mega-menu-icon.hr { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.blog { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.docs { background: rgba(16, 185, 129, 0.12); color: #10B981; }
        .mega-menu-icon.api { background: rgba(251, 146, 60, 0.12); color: #FB923C; }
        .mega-menu-icon.cases { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }

        .mega-menu-content h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .mega-menu-content p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.4;
        }

        .mega-menu-section-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #4F46E5;
            margin-bottom: 12px;
            padding-left: 14px;
        }

        .mega-menu-divider {
            height: 1px;
            background: rgba(0, 0, 0, 0.06);
            margin: 16px 0;
        }

        .mega-menu-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            margin-top: 8px;
        }

        .mega-menu-footer-text {
            font-size: 13px;
            color: #4a4a4a;
        }

        .mega-menu-footer-link {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: #4F46E5;
        }

        .mega-menu-footer-link svg {
            width: 14px;
            height: 14px;
        }

        /* Social Media AI Mega Menu */
        .mega-menu.social-media {
            min-width: 920px;
            padding: 18px;
            border-radius: 20px;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 0%, rgba(99,102,241, 0.16), transparent 45%),
                radial-gradient(circle at 85% 20%, rgba(225, 48, 108, 0.12), transparent 40%),
                radial-gradient(circle at 85% 85%, rgba(0, 132, 255, 0.10), transparent 45%),
                #ffffff;
        }

        .social-mega-layout {
            display: grid;
            grid-template-columns: 0.4fr 0.6fr;
            gap: 14px;
            align-items: stretch;
        }

        .social-mega-left {
            border-radius: 16px;
            padding: 16px;
            background: linear-gradient(180deg, rgba(15, 20, 30, 0.04), rgba(15, 20, 30, 0.02));
            border: 1px solid rgba(15, 20, 30, 0.06);
        }

        .social-mega-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.10em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .social-mega-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .social-mega-subtitle {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.5;
            margin-bottom: 14px;
        }

        .platform-cards {
            display: grid;
            gap: 10px;
        }

        .platform-card {
            display: flex;
            gap: 12px;
            padding: 14px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(15, 20, 30, 0.06);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .platform-card:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 18px 46px rgba(0, 0, 0, 0.10);
        }

        .platform-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

        .platform-icon svg {
            width: 22px;
            height: 22px;
            position: relative;
            z-index: 1;
        }

        .platform-icon::before {
            content: "";
            position: absolute;
            inset: -10px;
            border-radius: 18px;
            filter: blur(10px);
            opacity: 0.55;
            transition: opacity 0.2s ease;
        }

        .platform-card:hover .platform-icon::before {
            opacity: 0.85;
        }

        .platform-icon.ig {
            background: rgba(225, 48, 108, 0.12);
            color: #E1306C;
            box-shadow: 0 0 0 1px rgba(225, 48, 108, 0.18) inset;
        }

        .platform-icon.ig::before {
            background: radial-gradient(circle at 30% 30%, rgba(225, 48, 108, 0.60), rgba(225, 48, 108, 0.0) 60%);
        }

        .platform-icon.msg {
            background: rgba(0, 132, 255, 0.12);
            color: #0084FF;
            box-shadow: 0 0 0 1px rgba(0, 132, 255, 0.18) inset;
        }

        .platform-icon.msg::before {
            background: radial-gradient(circle at 30% 30%, rgba(0, 132, 255, 0.55), rgba(0, 132, 255, 0.0) 60%);
        }

        .platform-card-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .platform-card-desc {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.45;
        }

        .platform-card-meta {
            margin-top: 10px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .platform-pill {
            font-size: 11px;
            font-weight: 600;
            color: rgba(15, 20, 30, 0.7);
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(15, 20, 30, 0.04);
            border: 1px solid rgba(15, 20, 30, 0.06);
        }

        .social-mega-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border-radius: 16px;
            background: linear-gradient(180deg, rgba(15, 20, 30, 0.06), rgba(15, 20, 30, 0.02));
            border: 1px solid rgba(15, 20, 30, 0.06);
        }

        .inbox-card {
            width: 100%;
            background: rgba(15, 20, 30, 0.95);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 14px;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.40);
            animation: inboxFloat 3s ease-in-out infinite;
        }

        @keyframes inboxFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0); }
        }

        .inbox-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .inbox-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.92);
        }

        .inbox-title .inbox-icon {
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(99,102,241, 0.14);
            border: 1px solid rgba(99,102,241, 0.18);
            color: #A5B4FC;
        }

        .inbox-tabs {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
        }

        .inbox-tab {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.76);
            padding: 7px 10px;
            border-radius: 999px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.12);
            line-height: 1;
        }

        .inbox-tab.active {
            background: #4F46E5;
            border-color: rgba(99,102,241, 0.8);
            color: rgba(255, 255, 255, 0.92);
        }

        .inbox-divider {
            height: 1px;
            background: rgba(255,255,255,0.08);
            margin: 12px 0;
        }

        .inbox-list {
            display: grid;
            gap: 8px;
        }

        .inbox-row {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 12px 16px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 12px;
            align-items: center;
            transition: transform 0.2s ease, background 0.2s ease;
            opacity: 0;
            transform: translateY(10px);
        }

        .inbox-row:hover {
            background: rgba(255,255,255,0.06);
            transform: translateY(-2px);
        }

        .nav-item:hover .mega-menu.social-media .inbox-row {
            animation: inboxRowIn 0.45s ease both;
        }

        .nav-item:hover .mega-menu.social-media .inbox-row:nth-child(1) { animation-delay: 0.05s; }
        .nav-item:hover .mega-menu.social-media .inbox-row:nth-child(2) { animation-delay: 0.12s; }
        .nav-item:hover .mega-menu.social-media .inbox-row:nth-child(3) { animation-delay: 0.19s; }
        .nav-item:hover .mega-menu.social-media .inbox-row:nth-child(4) { animation-delay: 0.26s; }

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

        .inbox-avatar {
            width: 38px;
            height: 38px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            position: relative;
            font-size: 12px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.92);
            background: linear-gradient(135deg, rgba(99,102,241,0.55), rgba(225,48,108,0.45));
            box-shadow: 0 10px 26px rgba(0,0,0,0.35);
        }

        .platform-badge {
            position: absolute;
            right: -2px;
            bottom: -2px;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            border: 2px solid rgba(15, 20, 30, 0.95);
        }

        .platform-badge.ig { background: #E1306C; }
        .platform-badge.msg { background: #0084FF; }

        .inbox-main {
            min-width: 0;
        }

        .inbox-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 4px;
        }

        .inbox-name {
            font-size: 13px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.92);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .inbox-time {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.48);
            white-space: nowrap;
        }

        .inbox-preview {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.60);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.25;
        }

        .inbox-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ai-badge {
            font-size: 11px;
            font-weight: 800;
            color: #A5B4FC;
            background: rgba(99,102,241, 0.14);
            border: 1px solid rgba(99,102,241, 0.24);
            padding: 6px 8px;
            border-radius: 999px;
            line-height: 1;
        }

        .unread-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #A5B4FC;
            box-shadow: 0 0 0 3px rgba(99,102,241, 0.18);
        }

        /* Header Actions */
        .header-actions { display: flex; align-items: center; gap: 12px; }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--gray-600);
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        .header-dark .mobile-menu-toggle {
            color: rgba(255,255,255,0.7);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .btn-sm { padding: 8px 16px; font-size: 13px; }
        .btn-lg { padding: 14px 28px; font-size: 15px; }
        .btn-primary { background: transparent; color: #1E1E24; border: 1.5px solid #1E1E24; }
        .btn-primary:hover { background: #1E1E24; color: #FFFFFF; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10); }
        .btn-outline { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-200); }
        .btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); }
        .btn-outline-light { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
        .btn-outline-light:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); color: white; }
        .btn-ghost { color: rgba(255,255,255,0.7); }
        .btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.06); }
        .btn-white { background: white; color: var(--gray-900); }
        .btn-white:hover { background: var(--gray-100); }

        /* Dark section button overrides */
        .cta-card .btn-primary,
        .api-orchestration-section .btn-primary,
        .hybrid-section .btn-primary {
            background: #FFFFFF;
            color: #1E1E24;
            border: none;
            border-radius: 8px;
            padding: 9px 20px;
            font-weight: 500;
        }
        .cta-card .btn-primary:hover,
        .api-orchestration-section .btn-primary:hover,
        .hybrid-section .btn-primary:hover {
            background: #F0F0F0;
            color: #1E1E24;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .cta-card .btn-outline,
        .api-orchestration-section .btn-outline,
        .hybrid-section .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 8px;
            padding: 9px 20px;
        }
        .cta-card .btn-outline:hover,
        .api-orchestration-section .btn-outline:hover,
        .hybrid-section .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.7);
        }
        .cta-card .btn-primary.btn-lg,
        .api-orchestration-section .btn-primary.btn-lg {
            padding: 14px 28px;
        }
        .btn-icon { width: 16px; height: 16px; transition: transform 0.2s; }
        .btn:hover .btn-icon { transform: translateX(2px); }

        /* ==========================================
           HERO SECTION - Clean Professional Design
           ========================================== */
        .hero-voice {
            padding: 140px 0 100px;
            background: linear-gradient(180deg, #0f1724 0%, #0b1220 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-voice::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99,102,241, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 60% 60% at 20% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
        }

        /* Subtle grid */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
        }

        .hero-voice-content {
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .hero-voice-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 70px;
        }

        .hero-badge-voice {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px 8px 12px;
            background: rgba(99,102,241, 0.1);
            border: 1px solid rgba(99,102,241, 0.2);
            border-radius: 100px;
            margin-bottom: 28px;
        }

        .badge-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--bronze-400), var(--bronze-600));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-icon svg { width: 10px; height: 10px; color: white; }
        .badge-text-voice { font-size: 13px; font-weight: 500; color: var(--bronze-400); }

        .hero-voice-title {
            font-size: 56px;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--white);
            margin-bottom: 24px;
        }

        .hero-voice-title .gradient {
            background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-voice-subtitle {
            font-family: var(--font-serif);
            font-size: 20px;
            line-height: 1.7;
            color: var(--gray-400);
            margin-bottom: 40px;
        }

        .hero-voice-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .hero-voice-cta .btn-primary {
            background: #FFFFFF;
            color: #1E1E24;
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-weight: 500;
            opacity: 1;
        }
        .hero-voice-cta .btn-primary:hover {
            background: rgba(255, 255, 255, 0.88);
            color: #1E1E24;
            box-shadow: none;
            transform: none;
        }
        .hero-voice-cta .btn-outline-light {
            background: transparent;
            color: #FFFFFF;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            border-radius: 8px;
            padding: 10px 22px;
            font-weight: 500;
        }
        .hero-voice-cta .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.6);
            color: #FFFFFF;
        }

        /* Hero badges + metrics */
        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--gray-300);
            font-size: 13px;
            margin-bottom: 20px;
        }

        .pill-dot {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(99,102,241, 0.12);
        }

        .pill-divider {
            width: 10px;
            height: 1px;
            background: rgba(255, 255, 255, 0.18);
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 32px;
        }

        .hero-metric {
            padding: 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            text-align: left;
        }

        .hero-metric .label {
            font-size: 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .hero-metric .value {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
        }

        .hero-metric .value span {
            color: var(--bronze-400);
            font-size: 14px;
            font-weight: 600;
        }

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

        @media (max-width: 768px) {
            .hero-metrics { grid-template-columns: 1fr; }
            .hero-pill { width: 100%; justify-content: center; }
        }

        /* ==========================================
           NEW CLEAN SHOWCASE MOCKUP
           ========================================== */
        .voice-showcase {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 70px;
        }

        .showcase-container {
            display: grid;
            grid-template-columns: 1fr 220px 1fr;
            gap: 32px;
            align-items: center;
        }

        /* Left & Right Columns */
        .showcase-column {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .showcase-column.left {
            align-items: flex-end;
        }

        .showcase-column.right {
            align-items: flex-start;
        }

        .column-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-500);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .column-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: rgba(255,255,255,0.2);
        }

        .showcase-column.left .column-label {
            flex-direction: row-reverse;
        }

        /* Conversation Cards */
        .conv-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 18px 20px;
            width: 100%;
            max-width: 320px;
            transition: all 0.3s ease;
            opacity: 0;
            animation: cardFadeIn 0.5s ease forwards;
        }

        .conv-card:nth-child(2) { animation-delay: 0.1s; }
        .conv-card:nth-child(3) { animation-delay: 0.2s; }
        .conv-card:nth-child(4) { animation-delay: 0.3s; }

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

        .conv-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(99,102,241, 0.2);
            transform: translateY(-2px);
        }

        .conv-card.ai-response {
            background: linear-gradient(135deg, rgba(99,102,241, 0.08), rgba(99,102,241, 0.02));
            border-color: rgba(99,102,241, 0.15);
        }

        .conv-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .conv-card-avatar {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: white;
        }

        .conv-card-avatar.customer { 
            background: linear-gradient(135deg, #374151, #1F2937); 
        }
        .conv-card-avatar.ai { 
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700)); 
        }
        .conv-card-avatar.calendar { background: var(--violet); }
        .conv-card-avatar.transfer { background: var(--blue); }
        .conv-card-avatar.stock { background: var(--emerald); }

        .conv-card-avatar svg { width: 18px; height: 18px; }

        .conv-card-meta {
            flex: 1;
        }

        .conv-card-type {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-300);
            margin-bottom: 2px;
        }

        .conv-card-source {
            font-size: 11px;
            color: var(--gray-500);
        }

        .conv-card-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 6px;
            background: rgba(99,102,241, 0.15);
            color: var(--bronze-400);
            border: 1px solid rgba(99,102,241, 0.2);
        }

        .conv-card-text {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
        }

        .conv-card.ai-response .conv-card-text {
            color: var(--bronze-200);
        }

        /* Center - AI Agent */
        .ai-core {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .ai-avatar {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            border-radius: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 
                0 0 0 1px rgba(99,102,241, 0.3),
                0 24px 60px rgba(99,102,241, 0.25),
                0 0 80px rgba(99,102,241, 0.15);
        }

        .ai-avatar::before {
            content: '';
            position: absolute;
            inset: -20px;
            border: 1px solid rgba(99,102,241, 0.15);
            border-radius: 50px;
            animation: pulse-ring 3s ease-in-out infinite;
        }

        .ai-avatar::after {
            content: '';
            position: absolute;
            inset: -40px;
            border: 1px solid rgba(99,102,241, 0.08);
            border-radius: 64px;
            animation: pulse-ring 3s ease-in-out infinite 0.5s;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.03); opacity: 0.5; }
        }

        .ai-avatar svg {
            width: 56px;
            height: 56px;
            color: white;
        }

        .ai-info {
            margin-top: 28px;
            text-align: center;
        }

        .ai-name {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .ai-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--emerald);
            padding: 6px 14px;
            background: rgba(5, 150, 105, 0.1);
            border: 1px solid rgba(5, 150, 105, 0.2);
            border-radius: 100px;
        }

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

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            padding: 24px 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--bronze-400);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray-500);
        }

        /* Responsive for showcase */
        @media (max-width: 1024px) {
            .showcase-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .showcase-column.left,
            .showcase-column.right {
                align-items: center;
            }

            .ai-core {
                order: -1;
            }

            .conv-card {
                max-width: 100%;
            }

            .stats-bar {
                flex-wrap: wrap;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .stats-bar {
                flex-direction: column;
                gap: 20px;
                padding: 24px;
            }
        }

        /* ==========================================
           VOICE FEATURES SECTION
           ========================================== */
        .voice-features {
            padding: 120px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 64px;
        }

        .section-eyebrow {
            font-size: 12px;
            font-weight: 600;
            color: var(--bronze-700);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            display: block;
        }

        .section-title {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-family: var(--font-serif);
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.7;
        }

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

        .feature-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--gray-200);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--bronze-400), var(--bronze-600));
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

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

        .feature-icon.languages { background: rgba(59, 130, 246, 0.1); color: var(--blue); }
        .feature-icon.voices { background: rgba(124, 58, 237, 0.1); color: var(--violet); }
        .feature-icon.accents { background: rgba(5, 150, 105, 0.1); color: var(--emerald); }
        .feature-icon.human { background: rgba(99,102,241, 0.1); color: var(--bronze-600); }
        .feature-icon.latency { background: rgba(239, 68, 68, 0.1); color: #EF4444; }
        .feature-icon.interruption { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .feature-stat {
            font-size: 32px;
            font-weight: 700;
            color: var(--bronze-600);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ==========================================
           GLOBAL TELEPHONY SECTION
           ========================================== */
        .telephony-section {
            padding: 120px 0;
            background: var(--gray-900);
            position: relative;
            overflow: hidden;
        }

        .telephony-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 60% at 30% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 60% at 80% 70%, rgba(99,102,241, 0.06) 0%, transparent 50%);
        }

        .telephony-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .telephony-text h2 {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--white);
            margin-bottom: 20px;
        }

        .telephony-text h2 .highlight { color: var(--bronze-400); }

        .telephony-text p {
            font-family: var(--font-serif);
            font-size: 18px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .telephony-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .tele-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            transition: all 0.3s;
        }

        .tele-feature:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(99,102,241, 0.2);
        }

        .tele-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .tele-icon svg { width: 22px; height: 22px; }
        .tele-icon.global { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
        .tele-icon.byot { background: rgba(5, 150, 105, 0.15); color: #34D399; }
        .tele-icon.sip { background: rgba(124, 58, 237, 0.15); color: #A78BFA; }

        .tele-content h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .tele-content p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.5;
            margin: 0;
        }

        /* World Map Visual */
        .world-map-visual {
            position: relative;
            height: 450px;
        }

        .map-container {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 100% 100% at 50% 50%, rgba(59, 130, 246, 0.1), transparent 70%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-globe {
            width: 300px;
            height: 300px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            position: relative;
            animation: rotate-globe 30s linear infinite;
        }

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

        .map-globe::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 1px dashed rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .map-globe::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Country pins */
        .country-pin {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: pin-pulse 2s ease-in-out infinite;
        }

        @keyframes pin-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .pin-dot {
            width: 12px;
            height: 12px;
            background: var(--bronze-500);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(99,102,241, 0.5);
            position: relative;
        }

        .pin-dot::after {
            content: '';
            position: absolute;
            inset: -6px;
            border: 2px solid rgba(99,102,241, 0.3);
            border-radius: 50%;
            animation: ping 2s ease-out infinite;
        }

        @keyframes ping {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(2); opacity: 0; }
        }

        .pin-label {
            margin-top: 8px;
            padding: 4px 10px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            color: white;
            white-space: nowrap;
        }

        .pin-usa { top: 35%; left: 15%; animation-delay: 0s; }
        .pin-uk { top: 25%; left: 45%; animation-delay: 0.3s; }
        .pin-germany { top: 28%; left: 52%; animation-delay: 0.6s; }
        .pin-uae { top: 45%; left: 60%; animation-delay: 0.9s; }
        .pin-india { top: 48%; left: 68%; animation-delay: 1.2s; }
        .pin-australia { top: 72%; left: 82%; animation-delay: 1.5s; }
        .pin-brazil { top: 62%; left: 28%; animation-delay: 1.8s; }

        /* ==========================================
           INTELLIGENCE SECTION - Sentiment & Intent
           ========================================== */
        .intelligence-section {
            padding: 120px 0;
            background: var(--white);
        }

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

        .intel-card {
            background: var(--gray-900);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .intel-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(99,102,241, 0.1) 0%, transparent 70%);
        }

        .intel-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .intel-icon svg { width: 30px; height: 30px; }
        .intel-icon.sentiment { background: rgba(239, 68, 68, 0.15); color: #F87171; }
        .intel-icon.intent { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
        .intel-icon.knowledge { background: rgba(251, 191, 36, 0.15); color: #FCD34D; }
        .intel-icon.escalation { background: rgba(5, 150, 105, 0.15); color: #34D399; }

        .intel-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 12px;
        }

        .intel-desc {
            font-size: 15px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        /* Sentiment Visual */
        .sentiment-visual {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 14px;
        }

        .sentiment-meter {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .sentiment-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            border-radius: 4px;
            animation: sentiment-shift 4s ease-in-out infinite;
        }

        @keyframes sentiment-shift {
            0%, 100% { width: 75%; background: linear-gradient(90deg, #34D399, #10B981); }
            33% { width: 45%; background: linear-gradient(90deg, #FBBF24, #F59E0B); }
            66% { width: 85%; background: linear-gradient(90deg, #34D399, #10B981); }
        }

        .sentiment-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 10px;
            color: var(--gray-500);
        }

        .sentiment-emoji {
            font-size: 24px;
            animation: emoji-bounce 2s ease-in-out infinite;
        }

        @keyframes emoji-bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Intent Tags */
        .intent-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .intent-tag {
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }

        .intent-tag:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .intent-tag .confidence {
            padding: 2px 6px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 4px;
            font-size: 10px;
            color: #60A5FA;
        }

        /* Knowledge Gap Visual */
        .knowledge-visual {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .knowledge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
        }

        .knowledge-status {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .knowledge-status svg { width: 16px; height: 16px; }
        .knowledge-status.found { background: rgba(5, 150, 105, 0.15); color: #34D399; }
        .knowledge-status.gap { background: rgba(251, 191, 36, 0.15); color: #FBBF24; }
        .knowledge-status.learning { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }

        .knowledge-text {
            flex: 1;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Escalation Visual */
        .escalation-visual {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .escalation-step {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(99,102,241, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--bronze-400);
        }

        .step-content {
            flex: 1;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
        }

        .step-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 2px;
        }

        .step-desc {
            font-size: 12px;
            color: var(--gray-500);
        }

        .step-connector {
            width: 2px;
            height: 20px;
            background: rgba(99,102,241, 0.3);
            margin-left: 15px;
        }

        /* ==========================================
           IVR RECEPTIONIST SECTION
           ========================================== */
        .ivr-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
        }

        .ivr-content {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .ivr-mockup {
            background: var(--gray-900);
            border-radius: 24px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .ivr-mockup::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
        }

        .ivr-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .ivr-title-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ivr-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--violet), #9333EA);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ivr-icon svg { width: 22px; height: 22px; color: white; }

        .ivr-label {
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
        }

        .ivr-status {
            padding: 6px 12px;
            background: rgba(5, 150, 105, 0.15);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            color: #34D399;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ivr-status::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #34D399;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        .ivr-flow {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            z-index: 10;
        }

        .ivr-node {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            transition: all 0.3s;
        }

        .ivr-node:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(124, 58, 237, 0.3);
        }

        .ivr-node.active {
            background: rgba(124, 58, 237, 0.1);
            border-color: rgba(124, 58, 237, 0.3);
        }

        .node-key {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
        }

        .node-info {
            flex: 1;
        }

        .node-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 2px;
        }

        .node-action {
            font-size: 12px;
            color: var(--gray-500);
        }

        .node-ext {
            padding: 6px 12px;
            background: rgba(124, 58, 237, 0.15);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: #A78BFA;
            font-family: var(--font-mono);
        }

        .ivr-text h2 {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .ivr-text h2 .highlight { color: var(--violet); }

        .ivr-text > p {
            font-family: var(--font-serif);
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .ivr-benefits {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ivr-benefit {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .benefit-check {
            width: 24px;
            height: 24px;
            background: var(--emerald-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .benefit-check svg { width: 12px; height: 12px; color: var(--emerald); }

        .benefit-text {
            font-size: 15px;
            color: var(--gray-700);
            line-height: 1.5;
        }

        /* ==========================================
           EXTERNAL DATA SECTION
           ========================================== */
        .external-data-section {
            padding: 120px 0;
            background: var(--gray-950);
            position: relative;
            overflow: hidden;
        }

        .external-data-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(99,102,241, 0.06) 0%, transparent 50%);
        }

        .external-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: center;
        }

        .external-text h2 {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 20px;
        }

        .external-text h2 .highlight { color: var(--cyan); }

        .external-text > p {
            font-family: var(--font-serif);
            font-size: 18px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .external-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .ext-feature {
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            transition: all 0.3s;
        }

        .ext-feature:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(6, 182, 212, 0.3);
        }

        .ext-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .ext-icon svg { width: 20px; height: 20px; }
        .ext-icon.api { background: rgba(6, 182, 212, 0.15); color: #22D3EE; }
        .ext-icon.crm { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
        .ext-icon.stock { background: rgba(5, 150, 105, 0.15); color: #34D399; }
        .ext-icon.availability { background: rgba(251, 191, 36, 0.15); color: #FBBF24; }

        .ext-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 4px;
        }

        .ext-desc {
            font-size: 12px;
            color: var(--gray-500);
            line-height: 1.5;
        }

        /* Data Flow Visual */
        .data-flow-visual {
            position: relative;
        }

        .flow-mockup {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 32px;
            position: relative;
        }

        .flow-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .flow-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
        }

        .flow-badge {
            padding: 4px 10px;
            background: rgba(6, 182, 212, 0.15);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            color: #22D3EE;
        }

        .flow-conversation {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .flow-message {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .flow-avatar {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .flow-avatar.customer { background: var(--gray-700); }
        .flow-avatar.ai { background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700)); }
        .flow-avatar svg { width: 18px; height: 18px; color: white; }

        .flow-bubble {
            flex: 1;
            padding: 14px 18px;
            border-radius: 14px;
            font-size: 13px;
            line-height: 1.5;
        }

        .flow-bubble.customer {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.9);
        }

        .flow-bubble.ai {
            background: rgba(99,102,241, 0.1);
            border: 1px solid rgba(99,102,241, 0.2);
            color: var(--bronze-200);
        }

        .flow-action {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px dashed rgba(6, 182, 212, 0.3);
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .action-icon {
            width: 40px;
            height: 40px;
            background: rgba(6, 182, 212, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .action-icon svg { width: 20px; height: 20px; color: #22D3EE; }

        .action-info {
            flex: 1;
        }

        .action-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2px;
        }

        .action-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        .action-status {
            padding: 6px 12px;
            background: rgba(5, 150, 105, 0.15);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: #34D399;
        }

        /* ==========================================
           MASS CAMPAIGNS SECTION
           ========================================== */
        .campaigns-section {
            padding: 120px 0;
            background: var(--white);
        }

        .campaigns-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .campaigns-text h2 {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .campaigns-text h2 .highlight { color: var(--bronze-600); }

        .campaigns-text > p {
            font-family: var(--font-serif);
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .campaign-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .campaign-stat {
            text-align: center;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 14px;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--bronze-600);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray-500);
        }

        .campaign-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .camp-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--gray-50);
            border-radius: 10px;
        }

        .camp-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .camp-icon svg { width: 18px; height: 18px; }
        .camp-icon.schedule { background: rgba(59, 130, 246, 0.1); color: var(--blue); }
        .camp-icon.retry { background: rgba(251, 191, 36, 0.1); color: var(--amber); }
        .camp-icon.analytics { background: rgba(5, 150, 105, 0.1); color: var(--emerald); }

        .camp-text {
            font-size: 14px;
            color: var(--gray-700);
        }

        /* API Mockup */
        .api-mockup {
            background: var(--gray-900);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .api-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: var(--gray-800);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .api-dots { display: flex; gap: 6px; }
        .api-dot { width: 10px; height: 10px; border-radius: 50%; }
        .api-dot.red { background: #FF5F57; }
        .api-dot.yellow { background: #FFBD2E; }
        .api-dot.green { background: #28CA42; }

        .api-title {
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-400);
            font-family: var(--font-mono);
        }

        .api-body {
            padding: 24px;
        }

        .api-tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .api-tab {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-500);
            cursor: pointer;
            transition: all 0.2s;
        }

        .api-tab.active {
            background: rgba(99,102,241, 0.15);
            color: var(--bronze-400);
        }

        .api-code {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 20px;
            font-family: var(--font-mono);
            font-size: 12px;
            line-height: 1.8;
            overflow-x: auto;
        }

        .api-code .comment { color: var(--gray-500); }
        .api-code .keyword { color: #C792EA; }
        .api-code .string { color: #C3E88D; }
        .api-code .property { color: #82AAFF; }
        .api-code .number { color: #F78C6C; }
        .api-code .method { color: #82AAFF; }
        .api-code .url { color: #FFCB6B; }

        .api-response {
            margin-top: 16px;
            padding: 16px;
            background: rgba(5, 150, 105, 0.1);
            border: 1px solid rgba(5, 150, 105, 0.2);
            border-radius: 10px;
        }

        .response-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .response-status {
            padding: 4px 8px;
            background: rgba(5, 150, 105, 0.2);
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            color: #34D399;
            font-family: var(--font-mono);
        }

        .response-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ==========================================
           CTA SECTION
           ========================================== */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
        }

        .cta-card {
            background: linear-gradient(135deg, var(--gray-900), var(--gray-950));
            border-radius: 32px;
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 60% 50% at 30% 20%, rgba(99,102,241, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 10;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 44px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-title .highlight { color: var(--bronze-400); }

        .cta-subtitle {
            font-family: var(--font-serif);
            font-size: 18px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        /* ==========================================
           FOOTER
           ========================================== */
        .footer { padding: 80px 0 40px; background: var(--gray-950); }
        .footer .logo { color: white; }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px; margin-bottom: 60px; }
        .footer-brand p { font-family: var(--font-serif); font-size: 14px; line-height: 1.7; color: var(--gray-400); margin-top: 16px; max-width: 280px; }
        .footer-column h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-link { font-size: 14px; color: var(--gray-400); transition: color 0.2s; }
        .footer-link:hover { color: var(--white); }
        .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
        .footer-copyright { font-size: 13px; color: var(--gray-500); }
        .footer-social { display: flex; gap: 16px; }
        .social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--gray-400); }
        .social-link:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }
        .social-link svg { width: 18px; height: 18px; }

        /* ==========================================
           RESPONSIVE
           ========================================== */
        @media (max-width: 1024px) {
            .nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .header-actions .btn-ghost { display: none; }
            
            .hero-voice-title { font-size: 42px; }
            
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .telephony-content,
            .ivr-content,
            .external-content,
            .campaigns-content { grid-template-columns: 1fr; gap: 48px; }
            
            .intelligence-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            
            .hero-voice { padding: 100px 0 60px; }
            .hero-voice-title { font-size: 32px; }
            .hero-voice-subtitle { font-size: 16px; }
            .hero-voice-cta { flex-direction: column; }
            
            .features-grid { grid-template-columns: 1fr; }
            .campaign-stats { grid-template-columns: 1fr; }
            .external-features { grid-template-columns: 1fr; }
            
            .section-title { font-size: 32px; }
            .telephony-text h2,
            .ivr-text h2,
            .external-text h2,
            .campaigns-text h2 { font-size: 32px; }
            
            .cta-card { padding: 48px 24px; }
            .cta-title { font-size: 32px; }
            .cta-buttons { flex-direction: column; width: 100%; }
            .cta-buttons .btn { width: 100%; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
