:root {
            --white: #FFFFFF;
            --cream-50: #FDFCFB;
            --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;
            
            --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) !important; font-size: 15px; line-height: 1.6; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; }
        body * { font-family: var(--font-sans) !important; }
        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; }

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

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

        .section-title {
            font-size: 40px;
            font-weight: 750;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--gray-900);
            margin: 0 0 14px;
        }

        .section-subtitle {
            font-size: 16px;
            line-height: 1.65;
            color: var(--gray-500);
            margin: 0;
        }

        /* ==========================================
           HEADER WITH MEGA MENU
           ========================================== */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 5000;
            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.06);
        }

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

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

        #header .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);
        }

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

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

        #header .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;
        }

        #header .nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
        #header .nav-link.active { color: var(--bronze-700); }

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

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

        /* Mega Menu */
        #header .mega-menu {
            position: fixed;
            top: 76px;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-50) 100%);
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 6000;
            padding: 24px;
            width: min(760px, calc(100vw - 32px));
            max-width: calc(100vw - 32px);
        }

        #header .mega-menu.wide {
            width: min(920px, calc(100vw - 32px));
        }

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

        #header .mega-menu { overflow: visible; }

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

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

        #header .mega-menu-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px;
            border-radius: 12px;
            transition: all 0.2s;
        }

        #header .mega-menu-item:hover {
            background: var(--gray-50);
        }

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

        #header .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.crm-agent { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.quality-agent { background: rgba(16, 185, 129, 0.12); color: #10B981; }
        .mega-menu-icon.receptionist-agent { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .mega-menu-icon.platform { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
        .mega-menu-icon.voip { background: rgba(99,102,241, 0.12); color: var(--bronze-600); }
        .mega-menu-icon.solutions { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
        .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; }

                #header .mega-menu-icon.integrations { background: rgba(139, 92, 246, 0.12) !important; color: #8B5CF6 !important; }
        #header .mega-menu-icon.blog { background: rgba(59, 130, 246, 0.12) !important; color: #3B82F6 !important; }
        #header .mega-menu-icon.api { background: rgba(251, 146, 60, 0.12) !important; color: #FB923C !important; }
        #header .mega-menu-icon.solutions { background: rgba(139, 92, 246, 0.12) !important; color: #8B5CF6 !important; }
        #header .mega-menu-icon.cases { background: rgba(139, 92, 246, 0.12) !important; color: #8B5CF6 !important; }

        .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: var(--bronze-700);
            margin-bottom: 12px;
            padding-left: 14px;
        }

        /* Agents Mega Menu (Two-column with live preview) */
        .mega-menu.agents {
            padding: 0;
            width: min(1120px, calc(100vw - 32px));
        }

        .agents-menu {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 18px;
            padding: 22px;
        }

        .agents-menu-left {
            padding-right: 8px;
        }

        .agents-headline {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .agents-subtext {
            font-size: 13px;
            color: var(--gray-600);
            margin-bottom: 18px;
        }

        .agents-section { margin-top: 14px; }

        .agents-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .agent-card {
            background: rgba(255,255,255,0.8);
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 14px;
            padding: 14px 12px;
            text-align: center;
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
            cursor: pointer;
            user-select: none;
        }

        .agent-card:hover,
        .agent-card.is-active {
            transform: translateY(-2px);
            border-color: rgba(99,102,241, 0.45);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(99,102,241, 0.18) inset;
        }

        .agent-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #fff;
            box-shadow: 0 10px 22px rgba(0,0,0,0.12);
        }

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

        .agent-icon.voice { background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900)); }
        .agent-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
        .agent-icon.instagram { background: linear-gradient(135deg, #E1306C, #833AB4); }
        .agent-icon.crm { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
        .agent-icon.quality { background: linear-gradient(135deg, #10B981, #059669); }
        .agent-icon.receptionist { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }

        .agent-title { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
        .agent-desc { font-size: 12px; color: var(--gray-600); line-height: 1.3; }

        .agents-preview {
            background: linear-gradient(135deg, #1a1f2e, #141820);
            border-radius: 16px;
            padding: 14px;
            box-shadow: 0 18px 50px rgba(0,0,0,0.24);
            border: 1px solid rgba(255,255,255,0.06);
            overflow: hidden;
        }

        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 10px 12px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .preview-title {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            letter-spacing: 0.01em;
        }

        .preview-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(99,102,241, 0.16);
            color: rgba(255,255,255,0.92);
            border: 1px solid rgba(99,102,241, 0.25);
        }

        .preview-body {
            padding: 14px 10px 10px;
            min-height: 304px;
        }

        .preview-screen {
            display: none;
            animation: previewFade 220ms ease-out;
        }

        .preview-screen.is-active { display: block; }

        @keyframes previewFade {
            from { opacity: 0; transform: translateY(-6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .mock-window {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            overflow: hidden;
        }

        .mock-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            background: rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .mock-topbar-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.92); }
        .mock-status { font-size: 11px; font-weight: 700; color: rgba(209, 250, 229, 0.95); background: rgba(5, 150, 105, 0.18); border: 1px solid rgba(5, 150, 105, 0.25); padding: 4px 8px; border-radius: 999px; }
        .mock-content { padding: 12px; }

        .mock-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
        .mock-label { font-size: 11px; color: rgba(255,255,255,0.65); }
        .mock-value { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.92); }

        .mock-bubbles { display: grid; gap: 8px; margin-top: 10px; }
        .mock-bubble { padding: 10px 12px; border-radius: 12px; font-size: 12px; line-height: 1.35; border: 1px solid rgba(255,255,255,0.08); }
        .mock-bubble.ai { background: rgba(99,102,241, 0.16); color: rgba(255,255,255,0.92); }
        .mock-bubble.customer { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); }

        .wave-mini { display: flex; gap: 4px; align-items: flex-end; height: 22px; margin-top: 8px; }
        .wave-mini span { width: 4px; background: linear-gradient(180deg, var(--bronze-400), var(--bronze-700)); border-radius: 6px; animation: waveMini 900ms ease-in-out infinite; }
        .wave-mini span:nth-child(2) { animation-delay: 120ms; }
        .wave-mini span:nth-child(3) { animation-delay: 240ms; }
        .wave-mini span:nth-child(4) { animation-delay: 360ms; }
        .wave-mini span:nth-child(5) { animation-delay: 480ms; }

        @keyframes waveMini {
            0%, 100% { height: 6px; opacity: 0.7; }
            50% { height: 22px; opacity: 1; }
        }

        .mock-actions { display: flex; gap: 8px; margin-top: 12px; }
        .mock-btn { flex: 1; text-align: center; padding: 8px 10px; border-radius: 10px; font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.92); }
        .mock-btn.primary { background: rgba(99,102,241, 0.22); border-color: rgba(99,102,241, 0.26); }

        .agents-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 14px 22px 18px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
            background: linear-gradient(180deg, rgba(253,252,251,0.6), rgba(255,255,255,0.8));
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
        }

        .agents-stat { text-align: center; }
        .agents-stat strong { display: block; font-size: 16px; font-weight: 800; color: var(--bronze-700); letter-spacing: -0.01em; }
        .agents-stat span { display: block; font-size: 12px; color: var(--gray-600); margin-top: 2px; }

        /* Platform Overview Dropdown */
        .mega-menu.platform {
            padding: 14px;
            width: min(980px, calc(100vw - 32px));
        }

        .platform-menu {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 14px;
            align-items: stretch;
        }

        .platform-left {
            padding: 8px;
            height: 400px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            overflow: hidden;
        }

        .platform-kicker {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.10em;
            color: var(--bronze-700);
            margin-bottom: 8px;
        }

        .platform-title { font-size: 18px; font-weight: 850; color: var(--gray-900); letter-spacing: -0.02em; margin-bottom: 6px; }
        .platform-desc { font-size: 13px; color: var(--gray-600); line-height: 1.55; margin-bottom: 8px; }

        .platform-points {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 6px;
            flex: 1;
            align-content: start;
            min-height: auto;
            overflow: hidden;
        }

        .platform-points::-webkit-scrollbar { display: none; }

        .platform-point {
            display: grid;
            grid-template-columns: 18px 1fr;
            gap: 10px;
            padding: 9px 12px;
            border-radius: 12px;
            border: 1px solid rgba(17, 24, 39, 0.08);
            background: rgba(255,255,255,0.70);
        }

        .platform-point-icon {
            width: 18px;
            height: 18px;
            border-radius: 6px;
            background: rgba(99,102,241,0.10);
            border: 1px solid rgba(99,102,241,0.18);
            display: grid;
            place-items: center;
            color: var(--bronze-700);
        }

        .platform-point-icon svg { width: 12px; height: 12px; }

        .platform-point strong { display: block; font-size: 13px; font-weight: 850; color: var(--gray-900); margin-bottom: 1px; }
        .platform-point span { display: block; font-size: 12px; color: var(--gray-600); line-height: 1.4; }

        .platform-cta { margin-top: 8px; flex-shrink: 0; }

        .platform-right {
            border-radius: 16px;
            background: linear-gradient(135deg, #1a1f2e, #141820);
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: 0 18px 50px rgba(0,0,0,0.24);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 400px;
        }

        .platform-right.platform-links {
            background: rgba(255,255,255,0.75);
            border: 1px solid rgba(17, 24, 39, 0.10);
            box-shadow: 0 18px 50px rgba(0,0,0,0.10);
            padding: 10px;
            overflow: hidden !important;
            overflow-x: hidden !important;
            overflow-y: hidden !important;
        }

        .mega-menu.platform .platform-right.platform-links .mega-menu-grid { gap: 2px !important; }

        .mega-menu.platform .platform-right.platform-links .mega-menu-item {
            padding: 6px;
            gap: 8px;
        }

        .mega-menu.platform .platform-right.platform-links .mega-menu-icon {
            width: 32px;
            height: 32px;
            border-radius: 10px;
        }

        .mega-menu.platform .platform-right.platform-links .mega-menu-icon svg {
            width: 16px;
            height: 16px;
        }

        .mega-menu.platform .platform-right.platform-links .mega-menu-content h4 {
            margin-bottom: 2px;
            line-height: 1.2;
        }

        .mega-menu.platform .platform-right.platform-links .mega-menu-content p {
            font-size: 10px;
            line-height: 1.15;
        }

        .flow-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
        }

        .flow-title { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.92); }
        .flow-live { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.86); }
        .flow-live-dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,0.15); animation: livePulse 2.2s ease-in-out infinite; }

        @keyframes livePulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.12); opacity: 1; } }

        .flow-body {
            position: relative;
            padding: 10px 12px 12px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flow-body::before {
            content: "";
            position: absolute;
            inset: 0;
            background: none;
            opacity: 0;
            pointer-events: none;
        }
        .flow-grid {
            position: absolute;
            inset: 0;
            background: none;
            opacity: 0;
            pointer-events: none;
            mask-image: radial-gradient(ellipse 75% 75% at 50% 45%, rgba(0,0,0,1) 45%, rgba(0,0,0,0) 85%);
        }

        .flow-svg {
            position: relative;
            width: min(540px, 100%);
            height: auto;
            aspect-ratio: 560 / 300;
            display: block;
            transform: none;
        }

        .flow-node { fill: rgba(255,255,255,0.06); stroke: rgba(99,102,241,0.5); stroke-width: 1.2; }
        .flow-node.customer { stroke: rgba(99,102,241,0.8); filter: drop-shadow(0 0 10px rgba(99,102,241,0.22)); }
        .flow-node.analytics { stroke: rgba(255,255,255,0.18); }
        .flow-node.agent { stroke: rgba(255,255,255,0.18); }

        .flow-label { font: 700 11px/1 var(--font-sans); fill: rgba(255,255,255,0.9); letter-spacing: 0.01em; }
        .flow-sub { font: 700 10px/1 var(--font-sans); fill: rgba(255,255,255,0.62); }

        .flow-path { fill: none; stroke: rgba(99,102,241,0.55); stroke-width: 1.4; stroke-dasharray: 5 7; }
        .flow-particle { fill: rgba(99,102,241,0.95); filter: drop-shadow(0 0 8px rgba(99,102,241,0.55)); }

        @media (max-width: 1024px) {
            .agents-menu { grid-template-columns: 1fr; }
            .agents-preview { display: none; }
            .agents-stats { grid-template-columns: repeat(2, 1fr); }
            .platform-menu { grid-template-columns: 1fr; }
            .platform-right { display: none; }
        }

        .mega-menu-divider {
            height: 1px;
            background: var(--gray-100);
            margin: 16px 0;
        }

        .mega-menu-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px;
            background: var(--gray-50);
            border-radius: 10px;
            margin-top: 8px;
        }

        .mega-menu-footer-text {
            font-size: 13px;
            color: var(--gray-600);
        }

        .mega-menu-footer-link {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--bronze-700);
        }

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

        /* 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);
        }

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            padding: 24px;
            overflow-y: auto;
            z-index: 5500;
        }

        .mobile-menu-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .mobile-accordion {
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 14px;
            background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-50) 100%);
            overflow: hidden;
        }

        .mobile-accordion-item + .mobile-accordion-item { border-top: 1px solid rgba(17, 24, 39, 0.08); }

        .mobile-accordion-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 14px;
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
        }

        .mobile-accordion-trigger svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
        .mobile-accordion-item.is-open .mobile-accordion-trigger svg { transform: rotate(180deg); }

        .mobile-accordion-panel {
            display: none;
            padding: 0 10px 12px;
        }

        .mobile-accordion-item.is-open .mobile-accordion-panel { display: block; }

        .mobile-accordion-link {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
            padding: 12px;
            border-radius: 12px;
            background: rgba(255,255,255,0.75);
            border: 1px solid rgba(17, 24, 39, 0.08);
            margin: 8px 0;
        }

        .mobile-accordion-link strong { display: block; font-size: 14px; font-weight: 800; color: var(--gray-900); margin-bottom: 2px; }
        .mobile-accordion-link span { display: block; font-size: 12px; color: var(--gray-600); line-height: 1.4; }

        .mobile-menu-actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            margin-top: 16px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-section {
            margin-bottom: 24px;
        }

        .mobile-nav-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--gray-400);
            margin-bottom: 12px;
        }

        .mobile-nav-items {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
            color: var(--gray-700);
        }

        .mobile-nav-item:hover {
            background: var(--gray-50);
        }

        .mobile-nav-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-icon svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 1024px) {
            .nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .header-actions .btn-ghost { display: none; }
        }

        /* Buttons */
        .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-ghost { color: var(--gray-600); }
        .btn-ghost:hover { color: var(--gray-900); background: var(--gray-50); }
        .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 - Dynamic Product Showcase
           ========================================== */
        .hero {
            padding: 140px 0 80px;
            position: relative;
            background: var(--white);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 60% at 75% 30%, rgba(99,102,241, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(61, 41, 20, 0.03) 0%, transparent 50%);
        }

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

        .hero-text { max-width: 520px; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px 6px 10px;
            background: var(--emerald-light);
            border-radius: 100px;
            margin-bottom: 28px;
        }

        .badge-dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; }
        .badge-text { font-size: 13px; font-weight: 500; color: var(--emerald); }

        .hero-title {
            font-size: 52px;
            font-weight: 600;
            line-height: 1.08;
            letter-spacing: -0.025em;
            color: var(--gray-900);
            margin-bottom: 24px;
        }

        .hero-title .highlight { color: var(--bronze-700); }

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

        .hero-cta { display: flex; align-items: center; gap: 14px; margin-bottom: 52px; }

        .hero-stats {
            display: flex;
            gap: 36px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
        }

        .stat-value { font-size: 30px; font-weight: 600; color: var(--bronze-700); letter-spacing: -0.02em; }
        .stat-value span { font-size: 18px; }
        .stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

        /* ==========================================
           HERO VISUAL - Clean Professional Layout
           ========================================== */
        .hero-visual {
            position: relative;
        }

        .hero-visual-inner {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        /* Main Dashboard Window */
        .dashboard-showcase {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 
                0 0 0 1px rgba(0, 0, 0, 0.08),
                0 4px 6px rgba(0, 0, 0, 0.04),
                0 20px 40px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            flex: 1;
            max-width: 520px;
        }

        .dash-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

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

        .dash-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-600);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .dash-title svg { width: 14px; height: 14px; color: var(--bronze-600); }

        .dash-actions { display: flex; gap: 6px; }
        .dash-btn {
            padding: 5px 12px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-600);
        }
        .dash-btn.primary {
            background: var(--bronze-700);
            border-color: var(--bronze-700);
            color: white;
        }

        .dash-body {
            display: flex;
            flex-direction: column;
            min-height: 340px;
        }

        /* Dashboard Content */
        .dash-content {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }

        .dash-content.full-width {
            padding: 18px;
        }

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

        .dash-content-title { font-size: 13px; font-weight: 600; color: var(--gray-900); }

        .dash-tabs {
            display: flex;
            gap: 2px;
            padding: 2px;
            background: var(--gray-100);
            border-radius: 6px;
        }
        .dash-tab {
            padding: 4px 10px;
            font-size: 10px;
            font-weight: 500;
            color: var(--gray-500);
            border-radius: 4px;
        }
        .dash-tab.active {
            background: var(--white);
            color: var(--gray-900);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .stat-box {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 8px;
            padding: 10px;
        }
        .stat-box .stat-label { font-size: 9px; font-weight: 500; color: var(--gray-500); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.03em; }
        .stat-box .stat-num { font-size: 18px; font-weight: 700; color: var(--gray-900); letter-spacing: -0.02em; }
        .stat-box .stat-num.green { color: var(--emerald); }
        .stat-box .stat-num.bronze { color: var(--bronze-600); }
        .stat-box .stat-trend {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            margin-top: 2px;
            font-size: 9px;
            font-weight: 500;
            color: var(--emerald);
        }

        /* Live Conversation Preview */
        .live-preview {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            overflow: hidden;
            flex: 1;
        }

        .live-preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 12px;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
        }

        .live-preview-title {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-800);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 3px 8px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 100px;
            font-size: 9px;
            font-weight: 600;
            color: #DC2626;
        }

        .live-indicator::before {
            content: '';
            width: 5px;
            height: 5px;
            background: #EF4444;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

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

        .live-preview-body {
            padding: 10px;
            max-height: 160px;
            overflow-y: auto;
        }

        .conversation-flow {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .conv-message {
            display: flex;
            gap: 8px;
            align-items: flex-start;
            animation: messageSlide 0.4s ease-out;
        }

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

        .live-preview .conv-avatar {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }
        .live-preview .conv-avatar.customer { background: var(--gray-400); }
        .live-preview .conv-avatar.ai { background: linear-gradient(135deg, var(--bronze-400), var(--bronze-600)); }

        .conv-bubble {
            flex: 1;
            padding: 6px 10px;
            border-radius: 8px;
            font-size: 11px;
            line-height: 1.4;
        }
        .conv-bubble.customer {
            background: var(--white);
            border: 1px solid var(--gray-200);
            color: var(--gray-700);
        }
        .conv-bubble.ai {
            background: var(--bronze-100);
            color: var(--bronze-900);
        }

        .typing-indicator-mini {
            display: flex;
            gap: 3px;
            padding: 6px 10px;
        }

        .typing-dot-mini {
            width: 4px;
            height: 4px;
            background: var(--bronze-400);
            border-radius: 50%;
            animation: typingBounce 1.4s ease-in-out infinite;
        }
        .typing-dot-mini:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot-mini:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typingBounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-3px); }
        }

        /* Side Cards Stack */
        .side-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 200px;
        }

        .side-card {
            background: var(--white);
            border-radius: 12px;
            padding: 14px;
            box-shadow: 
                0 0 0 1px rgba(0, 0, 0, 0.06),
                0 4px 12px rgba(0, 0, 0, 0.08);
        }

        /* Live Call Card */
        .card-live-call .card-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            color: #DC2626;
            margin-bottom: 12px;
            width: fit-content;
        }

        .card-live-call .card-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #EF4444;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

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

        .card-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: white;
        }

        .card-user-info h4 { font-size: 13px; font-weight: 600; color: var(--gray-900); }
        .card-user-info span { font-size: 11px; color: var(--gray-500); }

        .card-wave {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            height: 32px;
            background: var(--gray-50);
            border-radius: 8px;
        }

        .wave-bar {
            width: 3px;
            background: linear-gradient(180deg, var(--bronze-500), var(--bronze-300));
            border-radius: 2px;
            animation: waveAnim 0.8s ease-in-out infinite;
        }

        @keyframes waveAnim {
            0%, 100% { height: 8px; }
            50% { height: 20px; }
        }

        /* Booking Card */
        .card-booking .card-icon {
            width: 40px;
            height: 40px;
            background: var(--emerald-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .card-booking .card-icon svg { width: 20px; height: 20px; color: var(--emerald); }

        .card-booking h4 { font-size: 13px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
        .card-booking p { font-size: 11px; color: var(--gray-500); margin-bottom: 12px; }

        .card-actions {
            display: flex;
            gap: 8px;
        }

        .card-btn {
            flex: 1;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            text-align: center;
        }
        .card-btn.primary { background: var(--emerald); color: white; }
        .card-btn.secondary { background: var(--gray-100); color: var(--gray-600); }

        /* CRM Card */
        .card-crm .card-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .card-crm .card-icon {
            width: 32px;
            height: 32px;
            background: var(--blue-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .card-crm .card-icon svg { width: 16px; height: 16px; color: var(--blue); }

        .card-crm .card-title { font-size: 12px; font-weight: 600; color: var(--gray-900); }

        .card-crm .card-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid var(--gray-100);
        }
        .card-crm .card-row:last-child { border-bottom: none; }

        .card-crm .card-label { font-size: 11px; color: var(--gray-500); }
        .card-crm .card-value { font-size: 11px; font-weight: 600; color: var(--gray-800); }
        .card-crm .card-value.status {
            padding: 3px 8px;
            background: rgba(251, 191, 36, 0.15);
            border-radius: 4px;
            color: #D97706;
            font-size: 10px;
        }

        /* ==========================================
           TRUST SECTION
           ========================================== */
        .trust-section {
            padding: 48px 0;
            border-top: 1px solid var(--gray-100);
            border-bottom: 1px solid var(--gray-100);
        }

        .trust-inner { display: flex; align-items: center; justify-content: center; gap: 64px; }
        .trust-label { font-size: 12px; font-weight: 500; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
        .trust-logos { display: flex; align-items: center; gap: 48px; }
        .trust-logo { font-size: 16px; font-weight: 600; color: var(--gray-300); }

        .trust-logos img.trust-logo {
            max-height: 40px;
            max-width: 160px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) brightness(0.8);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .trust-logos img.trust-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* ==========================================
           PRODUCTS SECTION
           ========================================== */
        .products-section {
            background: #FDFCFB;
            padding: 80px 0;
        }

        .products-section .container {
            max-width: 1200px;
        }

        .products-section .section-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 60px;
        }

        .products-section .section-eyebrow {
            font-size: 12px;
            font-weight: 600;
            color: #4F46E5;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 18px;
            display: block;
        }

        .products-section .section-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #1a1a1a;
            margin-bottom: 14px;
        }

        .products-section .section-subtitle {
            font-family: inherit;
            font-size: 16px;
            color: #6b7280;
            line-height: 1.6;
        }

        .pp-slider { width: 100%; }

        .pp-tabs-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }

        .pp-tabs {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pp-tab {
            appearance: none;
            background: rgba(255,255,255,0.70);
            border: 1px solid rgba(17, 24, 39, 0.10);
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: rgba(17, 24, 39, 0.62);
            padding: 10px 14px;
            border-radius: 999px;
            position: relative;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }

        .pp-tab::after { display: none; }

        .pp-tab:hover {
            color: #4F46E5;
            border-color: rgba(99,102,241, 0.25);
        }

        .pp-tab.is-active {
            color: #4F46E5;
            border-color: rgba(99,102,241, 0.45);
            box-shadow: 0 10px 26px rgba(0,0,0,0.10);
            transform: translateY(-1px);
            background: #fff;
        }

        .pp-viewport {
            position: relative;
        }

        .pp-surface {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: #FFFFFF;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            padding: 60px;
        }

        .pp-track {
            position: relative;
            width: 100%;
        }

        .pp-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(8px);
            pointer-events: none;
            transition: opacity 0.45s ease, transform 0.45s ease;
        }

        .pp-slide.is-active {
            position: relative;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .pp-grid {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 60px;
            align-items: center;
            min-height: 500px;
        }

        .pp-left {
            position: relative;
            z-index: 1;
            min-width: 0;
        }

        .pp-num {
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 180px;
            font-weight: 800;
            color: rgba(0,0,0,0.03);
            z-index: 0;
            pointer-events: none;
            user-select: none;
            line-height: 1;
        }

        .pp-icon {
            width: 72px;
            height: 72px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #fff;
        }

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

        .pp-icon.voice {
            background: linear-gradient(135deg, #4F46E5, #A5B4FC);
            box-shadow: 0 8px 24px rgba(99,102,241, 0.3);
        }
        .pp-icon.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
        }
        .pp-icon.social {
            background: linear-gradient(135deg, #E1306C, #833AB4);
            background-size: 200% 200%;
            background-position: 0% 50%;
            transition: background-position 0.55s ease, transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 8px 24px rgba(131, 58, 180, 0.25);
        }

        .pp-slide:hover .pp-icon.social,
        .pp-slide:focus-within .pp-icon.social {
            background-image: linear-gradient(135deg, #E1306C 0%, #833AB4 45%, #0084FF 100%);
            background-position: 100% 50%;
            transform: translateY(-1px);
            box-shadow: 0 12px 30px rgba(0, 132, 255, 0.18), 0 12px 30px rgba(225, 48, 108, 0.12);
        }
        .pp-icon.crm {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            box-shadow: 0 8px 24px rgba(29, 78, 216, 0.22);
        }
        .pp-icon.quality {
            background: linear-gradient(135deg, #10B981, #059669);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.22);
        }
        .pp-icon.reception {
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
            box-shadow: 0 8px 24px rgba(109, 40, 217, 0.22);
        }

        .pp-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 16px;
            position: relative;
            z-index: 1;
        }

        .pp-desc {
            font-size: 17px;
            line-height: 1.7;
            color: #4a4a4a;
            margin: 0 0 32px;
            max-width: 440px;
            position: relative;
            z-index: 1;
        }

        .pp-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 0;
            padding: 0;
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .pp-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .pp-feature-icon {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: #10B981;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            margin-top: 2px;
        }

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

        .pp-feature-text {
            font-size: 14px;
            line-height: 1.55;
            color: #6b6b6b;
        }

        .pp-feature-text span { display: block; }

        .pp-feature-text strong {
            display: block;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 2px;
        }

        .pp-link {
            margin-top: 32px;
            color: #4F46E5;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }

        .pp-link::after {
            content: '→';
            transition: transform 0.2s ease;
        }

        .pp-link:hover::after { transform: translateX(4px); }

        .pp-right {
            display: flex;
            justify-content: center;
            min-width: 0;
            overflow: hidden;
            padding: 0 24px;
            box-sizing: border-box;
        }

        .pp-mockup {
            width: min(420px, 100%);
            max-width: 420px;
            border-radius: 16px;
            background: #1a1a1a;
            border: 1px solid rgba(255,255,255,0.10);
            box-shadow: 0 25px 80px rgba(0,0,0,0.25);
            padding: 24px;
            position: relative;
            overflow: hidden;
            animation: ppFloat 6s ease-in-out infinite;
        }

        @keyframes ppFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .pp-mockup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 16px;
        }

        .pp-mockup-body {
            position: relative;
        }

        .pp-app-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .pp-app-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 650;
            color: rgba(255,255,255,0.92);
            min-width: 0;
        }

        .pp-verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 650;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.84);
            white-space: nowrap;
        }

        .pp-verified strong { color: #fff; font-weight: 750; }

        .pp-chat { display: grid; gap: 12px; }

        .pp-msg { display: flex; gap: 10px; align-items: flex-start; }

        .pp-msg.is-out {
            justify-content: flex-end;
        }

        .pp-msg.is-out .pp-avatar { order: 2; }
        .pp-msg.is-out .pp-bubble { order: 1; }

        .pp-bubble {
            flex: 0 1 auto;
            max-width: 85%;
            overflow: hidden;
            word-break: break-word;
        }

        .pp-bubble.is-in {
            background: rgba(255,255,255,0.06);
        }

        .pp-bubble.is-out {
            background: rgba(255,255,255,0.10);
            border-color: rgba(255,255,255,0.10);
        }

        .pp-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .pp-meta .pp-check {
            color: rgba(52, 211, 153, 0.92);
            font-weight: 800;
        }

        .pp-template {
            margin-top: 14px;
            padding: 14px;
            border-radius: 14px;
            background: rgba(0,0,0,0.35);
            border: 1px solid rgba(255,255,255,0.10);
            display: grid;
            gap: 10px;
        }

        .pp-template-title {
            font-size: 12px;
            font-weight: 750;
            color: rgba(255,255,255,0.92);
        }

        .pp-template-row {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            font-size: 12px;
            color: rgba(255,255,255,0.70);
        }

        .pp-template-row strong { color: #fff; font-weight: 700; }

        .product-mockup-container {
            position: relative;
            width: 100%;
            max-width: 520px;
            overflow: hidden;
        }

        .pp-ss-mockup {
            width: min(520px, 100%);
            border-radius: 22px;
            background: radial-gradient(1200px 520px at 40% -10%, rgba(99,102,241, 0.18), transparent 60%),
                        radial-gradient(900px 460px at 120% 10%, rgba(59, 130, 246, 0.16), transparent 55%),
                        linear-gradient(180deg, #0f172a 0%, #0b1220 55%, #070b14 100%);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 28px 80px rgba(0,0,0,0.45);
            overflow: hidden;
            padding: 22px;
            box-sizing: border-box;
            transform: translateZ(0);
            animation: ppMockFloat 7s ease-in-out infinite;
        }

        .pp-ss-mockup.pp-ss-wa {
            background: radial-gradient(1200px 520px at 40% -10%, rgba(37, 211, 102, 0.16), transparent 60%),
                        radial-gradient(900px 460px at 120% 10%, rgba(16, 185, 129, 0.12), transparent 55%),
                        linear-gradient(180deg, #0f172a 0%, #0b1220 55%, #070b14 100%);
        }

        .pp-ss-mockup.pp-ss-crm {
            background: radial-gradient(1200px 520px at 40% -10%, rgba(16, 185, 129, 0.12), transparent 60%),
                        radial-gradient(900px 460px at 120% 10%, rgba(139, 92, 246, 0.14), transparent 55%),
                        linear-gradient(180deg, #0f172a 0%, #0b1220 55%, #070b14 100%);
        }

        @keyframes ppMockFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .pp-ss-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .pp-ss-top .pp-ss-title {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .pp-ss-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.82);
            font-size: 11px;
            font-weight: 650;
            white-space: nowrap;
        }

        .pp-ss-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.22);
            color: rgba(248, 113, 113, 0.95);
            font-size: 11px;
            font-weight: 700;
        }

        .pp-ss-pill .pp-ss-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #ef4444;
            box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.16);
        }

        .pp-ss-time {
            color: rgba(255,255,255,0.45);
            font-size: 11px;
            font-variant-numeric: tabular-nums;
        }

        .pp-ss-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 18px;
            padding: 16px;
            box-sizing: border-box;
        }

        .pp-ss-card + .pp-ss-card { margin-top: 14px; }

        .pp-ss-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .pp-ss-row + .pp-ss-row { margin-top: 10px; }

        .pp-ss-muted { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.45; }
        .pp-ss-strong { color: rgba(255,255,255,0.92); font-size: 13px; font-weight: 650; line-height: 1.45; }

        .pp-ss-avatar {
            width: 26px;
            height: 26px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            color: rgba(255,255,255,0.92);
            background: rgba(255,255,255,0.10);
            flex: 0 0 auto;
        }

        .pp-ss-avatar.bronze { background: linear-gradient(135deg, rgba(99,102,241,0.55), rgba(99,102,241,0.45)); }
        .pp-ss-avatar.green { background: linear-gradient(135deg, rgba(37,211,102,0.40), rgba(18,140,126,0.35)); }
        .pp-ss-avatar.blue { background: linear-gradient(135deg, rgba(59,130,246,0.40), rgba(29,78,216,0.35)); }
        .pp-ss-avatar.purple { background: linear-gradient(135deg, rgba(139,92,246,0.40), rgba(109,40,217,0.35)); }

        .pp-ss-flow {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 12px;
        }

        .pp-ss-flow-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 10px;
            text-align: center;
        }

        .pp-ss-flow-icon {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 6px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .pp-ss-flow-icon.bronze { background: rgba(99,102,241,0.18); border-color: rgba(99,102,241,0.22); }
        .pp-ss-flow-icon.blue { background: rgba(59,130,246,0.16); border-color: rgba(59,130,246,0.20); }
        .pp-ss-flow-icon.green { background: rgba(37,211,102,0.16); border-color: rgba(37,211,102,0.22); }

        .pp-ss-flow-label { color: rgba(255,255,255,0.58); font-size: 10px; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; }

        .pp-ss-list {
            margin-top: 12px;
            display: grid;
            gap: 8px;
        }

        .pp-ss-list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(0,0,0,0.20);
            border: 1px solid rgba(255,255,255,0.06);
        }

        .pp-ss-price { color: rgba(52, 211, 153, 0.92); font-weight: 800; font-size: 12px; font-variant-numeric: tabular-nums; }

        .pp-wa-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 14px 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 18px;
            margin-bottom: 14px;
        }

        .pp-wa-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .pp-wa-name { color: rgba(255,255,255,0.92); font-weight: 750; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .pp-wa-sub { color: rgba(255,255,255,0.50); font-size: 11px; margin-top: 2px; }

        .pp-wa-chat {
            background: rgba(0,0,0,0.18);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 18px;
            padding: 14px;
        }

        .pp-wa-msg {
            max-width: 86%;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.90);
            font-size: 12px;
            line-height: 1.45;
        }

        .pp-wa-msg.out {
            margin-left: auto;
            background: rgba(16, 185, 129, 0.18);
            border-color: rgba(16, 185, 129, 0.22);
        }

        .pp-wa-meta {
            margin-top: 6px;
            display: flex;
            justify-content: flex-end;
            gap: 8px;
            color: rgba(255,255,255,0.45);
            font-size: 10px;
        }

        .pp-wa-attachment {
            margin-top: 10px;
            padding: 12px;
            border-radius: 14px;
            background: rgba(0,0,0,0.20);
            border: 1px solid rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .pp-wa-file {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .pp-wa-file-name { color: rgba(255,255,255,0.92); font-weight: 750; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .pp-wa-file-size { color: rgba(255,255,255,0.45); font-size: 10px; margin-top: 2px; }
        .pp-wa-actions {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: grid;
            gap: 10px;
        }

        .pp-wa-action {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(16, 185, 129, 0.10);
            border: 1px solid rgba(16, 185, 129, 0.16);
            color: rgba(167, 243, 208, 0.92);
            font-weight: 700;
            font-size: 12px;
        }

        .pp-crm-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .pp-crm-name { color: rgba(255,255,255,0.94); font-weight: 800; font-size: 14px; }
        .pp-crm-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.18);
            color: rgba(167, 243, 208, 0.92);
            font-size: 11px;
            font-weight: 750;
            white-space: nowrap;
        }

        .pp-crm-item {
            display: flex;
            gap: 12px;
            padding: 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
        }

        .pp-crm-item + .pp-crm-item { margin-top: 12px; }

        .pp-crm-kpis {
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .pp-crm-kpi {
            background: rgba(0,0,0,0.18);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 12px;
            text-align: center;
        }

        .pp-crm-kpi strong { display: block; color: rgba(255,255,255,0.95); font-size: 16px; letter-spacing: -0.01em; }
        .pp-crm-kpi span { display: block; margin-top: 4px; color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

        .chat-mockup,
        .inbox-mockup {
            background: #1a1a1a;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .chat-mockup-header,
        .inbox-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

        .window-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot.red { background: #ff5f57; }
        .dot.yellow { background: #ffbd2e; }
        .dot.green { background: #28c840; }

        .header-title {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .business-name {
            color: #fff;
            font-weight: 600;
            font-size: 14px;
        }

        .verified-badge {
            background: rgba(37, 211, 102, 0.2);
            color: #25D366;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 11px;
        }

        .verified-badge.green {
            background: rgba(37, 211, 102, 0.2);
            color: #25D366;
        }

        .chat-messages {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-height: 280px;
            overflow-y: auto;
        }

        .message {
            display: flex;
            gap: 12px;
        }

        .message.incoming {
            align-self: flex-start;
        }

        .message.outgoing {
            align-self: flex-end;
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .message-avatar.ai {
            background: linear-gradient(135deg, #4F46E5, #A5B4FC);
        }

        .message-content {
            background: rgba(255,255,255,0.08);
            padding: 12px 16px;
            border-radius: 16px;
            max-width: 280px;
        }

        .message.outgoing .message-content {
            background: rgba(99,102,241, 0.2);
            border: 1px solid rgba(99,102,241, 0.3);
        }

        .message-text {
            color: #fff;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        .message-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 6px;
            font-size: 11px;
            color: rgba(255,255,255,0.5);
        }

        .status-check {
            color: #25D366;
        }

        .ai-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 11px;
            color: #A5B4FC;
        }

        .ai-indicator svg {
            width: 12px;
            height: 12px;
            stroke: #A5B4FC;
        }

        .template-card {
            margin: 0 20px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .template-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .template-row:last-child {
            border-bottom: none;
        }

        .template-label {
            font-weight: 600;
            color: #fff;
            font-size: 13px;
        }

        .template-key {
            color: rgba(255,255,255,0.6);
            font-size: 12px;
        }

        .template-value {
            color: #fff;
            font-size: 12px;
        }

        .template-status {
            color: #25D366;
        }

        .chat-input-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            border-top: 1px solid rgba(255,255,255,0.10);
            background: rgba(255,255,255,0.03);
        }

        .chat-input-bar input {
            flex: 1;
            height: 36px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(0,0,0,0.20);
            color: rgba(255,255,255,0.85);
            padding: 0 12px;
            outline: none;
            font-size: 13px;
        }

        .chat-input-bar input::placeholder { color: rgba(255,255,255,0.35); }

        .input-actions {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.75);
        }

        .action-icon { font-size: 14px; }

        .send-btn {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(37, 211, 102, 0.18);
            color: #25D366;
            font-weight: 800;
        }

        .inbox-tabs {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.8);
            font-size: 12px;
            font-weight: 600;
        }

        .inbox-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(0,0,0,0.18);
        }

        .inbox-tab.active {
            background: rgba(255,255,255,0.08);
        }

        .platform-icon { width: 14px; height: 14px; stroke: rgba(255,255,255,0.75); fill: none; }
        .platform-icon.ig { stroke: #E1306C; }
        .platform-icon.fb { stroke: #0084FF; }

        .tab-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            padding: 0 6px;
            border-radius: 999px;
            background: rgba(255,255,255,0.10);
            color: rgba(255,255,255,0.85);
            font-size: 11px;
        }

        .conversation-list {
            padding: 12px;
        }

        .conversation-item {
            display: flex;
            gap: 12px;
            padding: 12px;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .conversation-item:hover,
        .conversation-item.active {
            background: rgba(255,255,255,0.05);
        }

        .conversation-item .conv-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            position: relative;
            flex-shrink: 0;
        }

        .conversation-item .conv-avatar.wa { background: rgba(37, 211, 102, 0.2); color: #25D366; }
        .conversation-item .conv-avatar.ig { background: rgba(225, 48, 108, 0.2); color: #E1306C; }
        .conversation-item .conv-avatar.fb { background: rgba(0, 132, 255, 0.2); color: #0084FF; }

        .platform-badge {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid #1a1a1a;
        }

        .platform-badge.wa { background: #25D366; }
        .platform-badge.ig { background: #E1306C; }
        .platform-badge.fb { background: #0084FF; }

        .conv-content {
            flex: 1;
            min-width: 0;
        }

        .conv-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .conv-name {
            color: #fff;
            font-weight: 600;
            font-size: 14px;
        }

        .conv-time {
            color: rgba(255,255,255,0.4);
            font-size: 11px;
        }

        .conv-preview {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .conv-meta {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 500;
        }

        .badge.unread { background: #A5B4FC; color: #fff; }
        .badge.ai-active { background: rgba(99,102,241, 0.2); color: #A5B4FC; }
        .badge.resolved { background: rgba(37, 211, 102, 0.2); color: #25D366; }

        .badge svg { width: 10px; height: 10px; }

        .pp-mockup-left {
            display: flex;
            flex-direction: column;
            gap: 8px;
            color: rgba(255,255,255,0.92);
        }

        .pp-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.92);
        }

        .pp-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #ef4444;
            box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12);
        }

        .pp-caller {
            font-size: 12px;
            color: rgba(255,255,255,0.75);
        }

        .pp-dotbar {
            display: flex;
            gap: 8px;
        }

        .pp-dotbar span {
            width: 10px;
            height: 10px;
            border-radius: 999px;
        }

        .pp-dotbar span:nth-child(1) { background: rgba(255, 90, 90, 0.9); }
        .pp-dotbar span:nth-child(2) { background: rgba(255, 191, 36, 0.85); }
        .pp-dotbar span:nth-child(3) { background: rgba(52, 211, 153, 0.85); }

        .pp-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .pp-pill {
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.85);
            font-size: 12px;
            font-weight: 600;
        }

        .pp-pill strong { color: #fff; font-weight: 700; }

        .pp-wave {
            height: 120px;
            border-radius: 14px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin: 18px 0;
            overflow: hidden;
        }

        .pp-wave span {
            width: 6px;
            height: 36px;
            border-radius: 4px;
            background: rgba(255,255,255,0.20);
            animation: ppWave 1.1s ease-in-out infinite;
        }

        .pp-wave span:nth-child(3),
        .pp-wave span:nth-child(7),
        .pp-wave span:nth-child(11) {
            background: rgba(99,102,241, 0.65);
        }

        .pp-wave span:nth-child(2) { animation-delay: 0.06s; height: 50px; }
        .pp-wave span:nth-child(3) { animation-delay: 0.12s; height: 70px; }
        .pp-wave span:nth-child(4) { animation-delay: 0.18s; height: 56px; }
        .pp-wave span:nth-child(5) { animation-delay: 0.24s; height: 84px; }
        .pp-wave span:nth-child(6) { animation-delay: 0.30s; height: 60px; }
        .pp-wave span:nth-child(7) { animation-delay: 0.36s; height: 92px; }
        .pp-wave span:nth-child(8) { animation-delay: 0.42s; height: 58px; }
        .pp-wave span:nth-child(9) { animation-delay: 0.48s; height: 78px; }
        .pp-wave span:nth-child(10) { animation-delay: 0.54s; height: 52px; }
        .pp-wave span:nth-child(11) { animation-delay: 0.60s; height: 72px; }
        .pp-wave span:nth-child(12) { animation-delay: 0.66s; height: 46px; }

        @keyframes ppWave {
            0%, 100% { transform: scaleY(0.8); opacity: 0.75; }
            50% { transform: scaleY(1.25); opacity: 1; }
        }

        .pp-chat { display: grid; gap: 12px; }

        .pp-msg { display: flex; gap: 10px; align-items: flex-start; }

        .pp-avatar {
            width: 28px;
            height: 28px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
            color: rgba(255,255,255,0.92);
            background: rgba(255,255,255,0.10);
            flex: 0 0 auto;
        }

        .pp-bubble {
            flex: 1;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 12px;
            color: rgba(255,255,255,0.88);
            font-size: 13px;
            line-height: 1.55;
        }

        .pp-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.55);
            font-size: 11px;
            margin-top: 10px;
        }

        .pp-side {
            margin-top: 18px;
            padding: 14px;
            border-radius: 14px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.06);
        }

        .pp-side-title {
            font-size: 12px;
            font-weight: 700;
            color: rgba(255,255,255,0.92);
            margin-bottom: 10px;
        }

        .pp-side-item {
            display: flex;
            justify-content: space-between;
            color: rgba(255,255,255,0.75);
            font-size: 12px;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .pp-side-item:last-child { border-bottom: none; }
        .pp-side-item strong { color: #fff; font-weight: 700; }

        .pp-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: -60px;
            right: -60px;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        .pp-arrow {
            pointer-events: auto;
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .pp-arrow svg { width: 20px; height: 20px; color: #1a1a1a; }
        .pp-arrow:hover { transform: scale(1.05); box-shadow: 0 10px 22px rgba(0,0,0,0.16); }

        .pp-dots {
            margin-top: 40px;
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .pp-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pp-dot.is-active {
            background: #4F46E5;
            width: 32px;
            border-radius: 5px;
        }

        @media (max-width: 980px) {
            .pp-surface { padding: 34px; }
            .pp-grid { grid-template-columns: 1fr; gap: 34px; min-height: auto; }
            .pp-right { justify-content: center; padding: 0; }
            .pp-num { font-size: 130px; }
            .pp-arrows { left: -18px; right: -18px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .pp-track { transition: none; }
            .pp-mockup { animation: none; }
            .pp-wave span { animation: none; }
            .pp-ss-mockup { animation: none; }
        }

        /* Product Catalog Grid */
        .products-catalog {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .product-card {
            background: var(--gray-900);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
        }

        .product-card-preview {
            padding: 32px;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 380px;
        }

        .product-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .product-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-icon svg { width: 26px; height: 26px; }
        .product-icon.bronze { background: rgba(99,102,241, 0.15); color: var(--bronze-400); }
        .product-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
        .product-icon.emerald { background: rgba(5, 150, 105, 0.15); color: #34D399; }
        .product-icon.violet { background: rgba(124, 58, 237, 0.15); color: #A78BFA; }

        .product-number { font-size: 12px; font-weight: 600; color: var(--gray-600); }

        .product-title { font-size: 24px; font-weight: 600; color: white; margin-bottom: 10px; }
        .product-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 24px; }

        .product-mockup-preview {
            flex: 1;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
        }

        .product-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--bronze-400);
            transition: gap 0.2s;
        }

        .product-link:hover { gap: 10px; }
        .product-link svg { width: 16px; height: 16px; }

        .expand-hint {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--gray-500);
        }

        .expand-hint svg { width: 14px; height: 14px; }

        /* Product Mockups */
        .voice-mockup {
            height: 100%;
            padding: 16px;
            display: flex;
            flex-direction: column;
        }

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

        .mockup-tabs {
            display: flex;
            gap: 4px;
            padding: 3px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
        }

        .mockup-tab {
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            border-radius: 4px;
        }

        .mockup-tab.active { background: rgba(255, 255, 255, 0.1); color: white; }

        .mockup-badge {
            padding: 4px 10px;
            background: rgba(5, 150, 105, 0.2);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            color: #34D399;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .mockup-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #34D399;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .voice-wave-container {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            margin-bottom: 12px;
        }

        .wave-bar-lg {
            width: 4px;
            background: linear-gradient(180deg, var(--bronze-400), var(--bronze-600));
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
        }

        .voice-transcript {
            flex: 1;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 14px;
            overflow: hidden;
        }

        .transcript-line {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInLine 0.5s ease forwards;
        }

        .transcript-line:nth-child(1) { animation-delay: 0.5s; }
        .transcript-line:nth-child(2) { animation-delay: 2s; }
        .transcript-line:nth-child(3) { animation-delay: 3.5s; }

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

        .transcript-speaker {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            min-width: 36px;
        }

        .transcript-speaker.user { color: var(--gray-500); }
        .transcript-speaker.ai { color: var(--bronze-400); }

        .transcript-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 8px 12px;
            background: rgba(99,102,241, 0.1);
            border-radius: 8px;
            width: fit-content;
            margin-top: 8px;
            opacity: 0;
            animation: fadeInLine 0.3s ease forwards 4.5s;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: var(--bronze-400);
            border-radius: 50%;
            animation: typingBounce 1.4s ease-in-out infinite;
        }

        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typingBounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-6px); }
        }

        /* Messaging Mockup */
        .messaging-mockup { height: 100%; display: flex; flex-direction: column; }

        .messaging-header {
            background: #25D366;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .msg-avatar {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .msg-avatar svg { width: 16px; height: 16px; color: white; }
        .msg-header-info h4 { font-size: 13px; font-weight: 600; color: white; }
        .msg-header-info span { font-size: 10px; color: rgba(255, 255, 255, 0.8); }

        .messaging-body {
            flex: 1;
            background: #ECE5DD;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .chat-bubble {
            max-width: 85%;
            padding: 10px 14px;
            border-radius: 12px;
            font-size: 12px;
            line-height: 1.5;
            opacity: 0;
            animation: bubbleIn 0.3s ease forwards;
        }

        .chat-bubble:nth-child(1) { animation-delay: 0.5s; }
        .chat-bubble:nth-child(2) { animation-delay: 1.5s; }
        .chat-bubble:nth-child(3) { animation-delay: 2.5s; }
        .chat-bubble:nth-child(4) { animation-delay: 3.5s; }

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

        .chat-bubble.incoming {
            background: white;
            color: var(--gray-800);
            border-bottom-left-radius: 4px;
            align-self: flex-start;
        }

        .chat-bubble.outgoing {
            background: #DCF8C6;
            color: var(--gray-800);
            border-bottom-right-radius: 4px;
            align-self: flex-end;
        }

        .chat-bubble .check { display: inline-flex; margin-left: 6px; color: #53BDEB; }
        .chat-bubble .check svg { width: 14px; height: 14px; }

        /* CRM Mockup */
        .crm-mockup {
            height: 100%;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .crm-toolbar { display: flex; align-items: center; gap: 8px; }

        .crm-search {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            font-size: 11px;
            color: var(--gray-500);
        }

        .crm-search svg { width: 12px; height: 12px; }

        .crm-btn {
            padding: 8px 12px;
            background: var(--bronze-500);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            color: white;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .crm-btn svg { width: 12px; height: 12px; }

        .crm-contact-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 16px;
            opacity: 0;
            animation: slideIn 0.4s ease forwards 0.8s;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .crm-contact-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .crm-avatar {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--bronze-400), var(--bronze-600));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .crm-name { font-size: 14px; font-weight: 600; color: white; }
        .crm-email { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

        .crm-tags { display: flex; gap: 6px; margin-top: 8px; }

        .crm-tag {
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            opacity: 0;
            animation: tagPop 0.3s ease forwards;
        }

        .crm-tag:nth-child(1) { animation-delay: 1.5s; }
        .crm-tag:nth-child(2) { animation-delay: 1.8s; }

        @keyframes tagPop {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }

        .crm-tag.premium { background: rgba(5, 150, 105, 0.2); color: #34D399; }
        .crm-tag.lead { background: rgba(99,102,241, 0.2); color: var(--bronze-400); }

        .crm-timeline { display: flex; flex-direction: column; gap: 10px; }

        .crm-event {
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: fadeInLine 0.4s ease forwards;
        }

        .crm-event:nth-child(1) { animation-delay: 2.2s; }
        .crm-event:nth-child(2) { animation-delay: 2.8s; }

        .crm-event-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .crm-event-icon svg { width: 12px; height: 12px; }
        .crm-event-icon.call { background: rgba(99,102,241, 0.15); color: var(--bronze-400); }
        .crm-event-icon.email { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }

        .crm-event-text { font-size: 12px; color: rgba(255, 255, 255, 0.8); }
        .crm-event-time { font-size: 10px; color: var(--gray-600); margin-left: auto; }

        /* Scheduling Mockup */
        .scheduling-mockup {
            height: 100%;
            padding: 16px;
            display: flex;
            flex-direction: column;
        }

        .scheduling-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .scheduling-title { font-size: 13px; font-weight: 600; color: white; }

        .scheduling-badge {
            padding: 4px 10px;
            background: rgba(13, 148, 136, 0.2);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            color: #5EEAD4;
        }

        .mini-calendar {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 14px;
        }

        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 8px;
        }

        .cal-day-name {
            font-size: 9px;
            font-weight: 600;
            color: var(--gray-500);
            text-align: center;
            padding: 4px;
        }

        .calendar-dates {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }

        .cal-date {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .cal-date:hover { background: rgba(255, 255, 255, 0.06); }
        .cal-date.today { background: var(--bronze-500); color: white; }
        .cal-date.booked::after {
            content: '';
            position: absolute;
            bottom: 3px;
            width: 4px;
            height: 4px;
            background: var(--bronze-400);
            border-radius: 50%;
        }

        .time-slots-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
        }

        .time-slot {
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.2s;
        }

        .time-slot:hover { background: rgba(255, 255, 255, 0.08); }
        .time-slot.booked { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }
        .time-slot.selected { background: var(--bronze-500); color: white; }

        .confirm-toast {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: rgba(5, 150, 105, 0.15);
            border: 1px solid rgba(5, 150, 105, 0.3);
            border-radius: 10px;
            opacity: 0;
            transform: translateY(10px);
            animation: toastIn 0.4s ease forwards 3s;
        }

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

        .confirm-icon {
            width: 28px;
            height: 28px;
            background: rgba(5, 150, 105, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .confirm-icon svg { width: 14px; height: 14px; color: #34D399; }
        .confirm-text { font-size: 12px; font-weight: 500; color: #34D399; }

        /* WhatsApp Icon Color */
        .product-icon.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25D366; }

        /* ==========================================
           VOICE AI KNOWLEDGE BASE MOCKUP
           ========================================== */
        .voice-kb-mockup {
            height: 100%;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .kb-query-section {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 12px;
        }

        .kb-query-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .kb-live-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            background: rgba(239, 68, 68, 0.15);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            color: #F87171;
        }

        .kb-pulse {
            width: 6px;
            height: 6px;
            background: #EF4444;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .kb-duration {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--gray-400);
        }

        .kb-query-bubble {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .kb-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
            color: white;
            flex-shrink: 0;
        }

        .kb-avatar.customer { background: var(--gray-600); }
        .kb-avatar.ai { background: linear-gradient(135deg, var(--bronze-400), var(--bronze-600)); }

        .kb-message {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
            font-style: italic;
        }

        /* Knowledge Flow Diagram */
        .kb-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 12px 8px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
        }

        .kb-flow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .kb-node {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .kb-node:hover { transform: scale(1.1); }

        .kb-node svg { width: 18px; height: 18px; }

        .kb-node.ai-node {
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            color: white;
            box-shadow: 0 4px 12px rgba(99,102,241, 0.3);
        }

        .kb-node.db-node {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            color: white;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .kb-node.response-node {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .kb-node-label {
            font-size: 9px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .kb-connector {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
        }

        .kb-connector-line {
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, var(--bronze-500), #3B82F6);
            border-radius: 1px;
            position: relative;
        }

        .kb-connector-line::after {
            content: '';
            position: absolute;
            right: -3px;
            top: -2px;
            border: 3px solid transparent;
            border-left-color: #3B82F6;
        }

        .kb-connector-line.reverse {
            background: linear-gradient(90deg, #3B82F6, #10B981);
        }

        .kb-connector-line.reverse::after {
            border-left-color: #10B981;
        }

        .kb-connector-text {
            font-size: 8px;
            font-weight: 600;
            color: var(--gray-500);
        }

        /* AI Response Section */
        .kb-response-section {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 12px;
        }

        .kb-response-bubble {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .kb-response-content {
            flex: 1;
        }

        .kb-response-content p {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
        }

        .kb-results {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .kb-result-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 10px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 6px;
            border-left: 2px solid #10B981;
        }

        .kb-car {
            font-size: 11px;
            font-weight: 500;
            color: white;
        }

        .kb-price {
            font-size: 11px;
            font-weight: 600;
            color: #34D399;
        }

        /* ==========================================
           WHATSAPP PROFESSIONAL MOCKUP
           ========================================== */
        .wa-mockup {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #111B21;
            border-radius: 8px;
            overflow: hidden;
        }

        .wa-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            background: #202C33;
        }

        .wa-header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .wa-back svg {
            width: 18px;
            height: 18px;
            color: #8696A0;
        }

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

        .wa-avatar svg {
            width: 18px;
            height: 18px;
            color: white;
        }

        .wa-contact h4 {
            font-size: 14px;
            font-weight: 500;
            color: #E9EDEF;
        }

        .wa-contact span {
            font-size: 11px;
            color: #8696A0;
        }

        .wa-header-actions svg {
            width: 20px;
            height: 20px;
            color: #8696A0;
        }

        .wa-body {
            flex: 1;
            padding: 12px;
            background: #0B141A;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            display: flex;
            flex-direction: column;
            gap: 6px;
            overflow-y: auto;
        }

        .wa-msg {
            max-width: 85%;
            padding: 8px 10px;
            border-radius: 8px;
            font-size: 12px;
            line-height: 1.4;
            position: relative;
        }

        .wa-msg.incoming {
            background: #202C33;
            color: #E9EDEF;
            align-self: flex-start;
            border-top-left-radius: 0;
        }

        .wa-msg.outgoing {
            background: #005C4B;
            color: #E9EDEF;
            align-self: flex-end;
            border-top-right-radius: 0;
        }

        .wa-msg.template {
            background: #005C4B;
        }

        .wa-time {
            display: flex;
            align-items: center;
            gap: 3px;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
            justify-content: flex-end;
        }

        .wa-time svg {
            width: 14px;
            height: 14px;
            color: #53BDEB;
        }

        /* Document Attachment */
        .wa-document {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            margin-bottom: 6px;
        }

        .wa-doc-icon {
            width: 36px;
            height: 36px;
            background: #DC3545;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wa-doc-icon svg {
            width: 18px;
            height: 18px;
            color: white;
        }

        .wa-doc-info {
            flex: 1;
        }

        .wa-doc-name {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #E9EDEF;
        }

        .wa-doc-size {
            display: block;
            font-size: 10px;
            color: #8696A0;
        }

        .wa-doc-download {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wa-doc-download svg {
            width: 16px;
            height: 16px;
            color: #8696A0;
        }

        /* Interactive Buttons */
        .wa-buttons {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 8px;
        }

        .wa-btn {
            padding: 10px;
            background: transparent;
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 12px;
            font-weight: 500;
            color: #53BDEB;
            cursor: pointer;
            transition: background 0.2s;
        }

        .wa-btn:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .wa-btn.primary {
            color: #25D366;
        }

        /* ==========================================
           CRM PIPELINE MOCKUP
           ========================================== */
        .crm-pipeline-mockup {
            height: 100%;
            padding: 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

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

        .crm-pipeline-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: white;
        }

        .crm-pipeline-title svg {
            width: 16px;
            height: 16px;
            color: var(--bronze-400);
        }

        .crm-auto-badge {
            padding: 4px 10px;
            background: rgba(16, 185, 129, 0.15);
            border-radius: 100px;
            font-size: 9px;
            font-weight: 600;
            color: #34D399;
        }

        .crm-update-card {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border-left: 2px solid transparent;
            transition: all 0.2s;
        }

        .crm-update-card:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .crm-update-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .crm-update-icon svg {
            width: 14px;
            height: 14px;
        }

        .crm-update-icon.stage {
            background: rgba(139, 92, 246, 0.15);
            color: #A78BFA;
        }

        .crm-update-icon.callback {
            background: rgba(59, 130, 246, 0.15);
            color: #60A5FA;
        }

        .crm-update-icon.campaign {
            background: rgba(251, 191, 36, 0.15);
            color: #FBBF24;
        }

        .crm-update-content {
            flex: 1;
            min-width: 0;
        }

        .crm-update-label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 3px;
        }

        .crm-update-value {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: white;
        }

        .crm-update-note {
            display: block;
            font-size: 10px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .crm-update-time {
            font-size: 10px;
            color: var(--gray-600);
            white-space: nowrap;
        }

        .crm-stage-change {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .crm-stage-change svg {
            width: 12px;
            height: 12px;
            color: var(--gray-500);
        }

        .crm-stage {
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
        }

        .crm-stage.old {
            background: rgba(255, 255, 255, 0.06);
            color: var(--gray-500);
            text-decoration: line-through;
        }

        .crm-stage.new {
            background: rgba(139, 92, 246, 0.2);
            color: #A78BFA;
        }

        .crm-tags-row {
            display: flex;
            gap: 4px;
            margin-top: 4px;
        }

        .crm-mini-tag {
            padding: 2px 6px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 3px;
            font-size: 9px;
            font-weight: 500;
            color: var(--gray-400);
        }

        .crm-mini-tag.interested {
            background: rgba(16, 185, 129, 0.15);
            color: #34D399;
        }

        .crm-activity-summary {
            display: flex;
            gap: 12px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            margin-top: auto;
        }

        .crm-activity-item {
            flex: 1;
            text-align: center;
        }

        .crm-activity-num {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: white;
        }

        .crm-activity-label {
            display: block;
            font-size: 9px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .pricing-banner {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
            overflow: hidden;
        }

        .pricing-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(99,102,241, 0.08) 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 1;
            pointer-events: none;
        }

        .pricing-banner::after {
            content: '';
            position: absolute;
            top: -220px;
            right: -220px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99,102,241, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .pricing-banner-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pricing-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: rgba(99,102,241, 0.15);
            border: 1px solid rgba(99,102,241, 0.3);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #A5B4FC;
            width: fit-content;
            margin-bottom: 18px;
        }

        .pricing-kicker i {
            width: 16px;
            height: 16px;
        }

        .pricing-headline {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #ffffff;
            margin: 0 0 18px;
        }

        .pricing-headline .price-highlight {
            background: linear-gradient(135deg, #A5B4FC 0%, #C7D2FE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-subtext {
            font-size: 18px;
            line-height: 1.7;
            color: #9CA3AF;
            margin: 0 0 32px;
            max-width: 520px;
        }

        .pricing-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 12px;
            background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(99,102,241, 0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .pricing-cta i {
            width: 18px;
            height: 18px;
            transition: transform 0.2s ease;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99,102,241, 0.4);
        }

        .pricing-cta:hover i {
            transform: translateX(4px);
        }

        .pricing-trust {
            display: flex;
            gap: 24px;
            margin-top: 22px;
            flex-wrap: wrap;
        }

        .pricing-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #D1D5DB;
        }

        .pricing-trust-icon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(16, 185, 129, 0.2);
            color: #10B981;
            flex-shrink: 0;
        }

        .pricing-trust-icon i {
            width: 14px;
            height: 14px;
        }

        .pricing-visual {
            position: relative;
            min-height: 360px;
            display: grid;
            place-items: center;
        }

        .waveform {
            width: 100%;
            max-width: 400px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .wave-bar {
            width: 8px;
            height: var(--h);
            border-radius: 100px;
            background: linear-gradient(180deg, #A5B4FC 0%, #4F46E5 100%);
            box-shadow: 0 0 20px rgba(99,102,241, 0.3);
            transform-origin: center;
            animation: waveAnimation 1.2s ease-in-out infinite;
            animation-delay: var(--d);
        }

        @keyframes waveAnimation {
            0%, 100% {
                transform: scaleY(0.5);
                opacity: 0.7;
            }
            50% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .pricing-center-badge {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 999px;
            background: linear-gradient(135deg, #4F46E5 0%, #312E81 100%);
            box-shadow: 0 0 60px rgba(99,102,241, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            color: #ffffff;
            text-align: center;
            padding: 8px;
            overflow: hidden;
        }

        .pricing-center-badge i {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .pricing-center-badge span {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.3;
            text-align: center;
            word-break: break-word;
            max-width: 80px;
        }

        .pricing-stat {
            position: absolute;
            width: 210px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 20px 24px;
            animation: floatAnimation 4s ease-in-out infinite;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }

        .pricing-stat .value {
            display: block;
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .pricing-stat .value.is-highlight {
            background: linear-gradient(135deg, #A5B4FC 0%, #C7D2FE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-stat .label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: #9CA3AF;
        }

        .pricing-stat.is-top-left { top: 18px; left: 0; animation-delay: 0s; }
        .pricing-stat.is-top-right { top: 10px; right: 0; animation-delay: 1s; }
        .pricing-stat.is-bottom-left { bottom: 10px; left: 10px; animation-delay: 2s; }
        .pricing-stat.is-bottom-right { bottom: 18px; right: 0; animation-delay: 0.5s; }

        @media (max-width: 1024px) {
            .pricing-banner-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .pricing-kicker {
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-subtext {
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-headline {
                font-size: 42px;
            }

            .pricing-visual {
                min-height: 320px;
            }

            .pricing-trust {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .pricing-banner {
                padding: 48px 0;
            }

            .pricing-headline {
                font-size: 32px;
            }

            .pricing-subtext {
                font-size: 16px;
            }

            .waveform {
                max-width: 280px;
            }

            .wave-bar {
                width: 6px;
            }

            .pricing-stat {
                width: 170px;
                padding: 14px 18px;
            }

            .pricing-stat .value {
                font-size: 22px;
            }

            .pricing-trust {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
        }

        /* ==========================================
           TECHNICAL ARCHITECTURE SECTION (Compact)
           ========================================== */
        .tech-architecture-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .architecture-compact {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .arch-diagram-compact {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .arch-flow-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .arch-channel-group,
        .arch-integration-group {
            display: flex;
            gap: 12px;
        }

        .arch-channel-item,
        .arch-int-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .arch-ch-icon,
        .arch-int-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .arch-ch-icon:hover,
        .arch-int-icon:hover {
            transform: scale(1.1);
        }

        .arch-ch-icon svg,
        .arch-int-icon svg {
            width: 22px;
            height: 22px;
        }

        .arch-ch-icon.voice-ch { background: rgba(99,102,241, 0.15); color: var(--bronze-600); }
        .arch-ch-icon.wa-ch { background: rgba(37, 211, 102, 0.15); color: #25D366; }
        .arch-ch-icon.ig-ch { background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15)); color: #C13584; }
        .arch-ch-icon.fb-ch { background: rgba(24, 119, 242, 0.15); color: #1877F2; }

        .arch-int-icon { background: var(--gray-100); color: var(--gray-600); }

        .arch-channel-item span,
        .arch-int-item span {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-600);
        }

        .arch-arrow-connector {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--bronze-400);
        }

        .arch-arrow-line {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--bronze-300), var(--bronze-500));
        }

        .arch-arrow-connector svg {
            width: 20px;
            height: 20px;
        }

        .arch-core-compact {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px 28px;
            background: var(--gray-900);
            border-radius: 14px;
        }

        .arch-core-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .arch-core-badge svg {
            width: 20px;
            height: 20px;
            color: var(--bronze-400);
        }

        .arch-core-chips {
            display: flex;
            gap: 6px;
        }

        .arch-core-chips span {
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-300);
        }

        .arch-stats-compact {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .arch-stat-card {
            text-align: center;
            padding: 20px 32px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .arch-stat-num {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: var(--bronze-700);
            letter-spacing: -0.02em;
        }

        .arch-stat-txt {
            display: block;
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 4px;
        }

        /* ==========================================
           DATA RETRIEVAL SECTION
           ========================================== */
        .data-retrieval-section {
            padding: 120px 0;
            background: var(--white);
        }

        .data-retrieval-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
        }

        .data-retrieval-content .section-title {
            text-align: left;
            margin-bottom: 16px;
        }

        .data-retrieval-content .section-subtitle {
            text-align: left;
            margin-bottom: 40px;
        }

        .data-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .data-feature {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .data-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bronze-100);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .data-feature-icon svg {
            width: 22px;
            height: 22px;
            color: var(--bronze-700);
        }

        .data-feature h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

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

        .data-flow-mockup {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 
                0 0 0 1px rgba(0, 0, 0, 0.08),
                0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .data-flow-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

        .data-flow-dots {
            display: flex;
            gap: 6px;
        }

        .data-flow-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-300);
        }

        .data-flow-dots span:first-child { background: #FF5F57; }
        .data-flow-dots span:nth-child(2) { background: #FFBD2E; }
        .data-flow-dots span:last-child { background: #28CA42; }

        .data-flow-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-600);
        }

        .data-flow-body {
            padding: 24px;
        }

        .data-flow-step {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .data-flow-step-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bronze-500);
            color: white;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .data-flow-step-content {
            flex: 1;
        }

        .data-flow-step-label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--gray-500);
            margin-bottom: 6px;
        }

        .data-flow-query {
            padding: 12px 16px;
            background: var(--gray-100);
            border-radius: 10px;
            font-size: 13px;
            color: var(--gray-800);
            font-style: italic;
        }

        .data-flow-code {
            padding: 12px 16px;
            background: var(--gray-900);
            border-radius: 10px;
            overflow-x: auto;
        }

        .data-flow-code code {
            font-family: var(--font-mono);
            font-size: 11px;
            color: #10B981;
        }

        .data-flow-json {
            padding: 12px 16px;
            background: var(--gray-900);
            border-radius: 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            line-height: 1.6;
        }

        .json-key { color: #60A5FA; }
        .json-value { color: #34D399; }
        .json-array { color: #FBBF24; }

        .data-flow-response {
            padding: 12px 16px;
            background: var(--bronze-100);
            border-radius: 10px;
            border-left: 3px solid var(--bronze-500);
            font-size: 13px;
            color: var(--bronze-900);
            line-height: 1.5;
        }

        .data-flow-connector {
            display: flex;
            justify-content: flex-start;
            padding: 8px 0 8px 12px;
        }

        .data-flow-line {
            width: 2px;
            height: 24px;
            background: var(--gray-300);
            margin-left: 12px;
        }

        .data-flow-latency {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding: 12px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 10px;
            font-size: 13px;
            color: var(--gray-700);
        }

        .data-flow-latency svg {
            width: 18px;
            height: 18px;
            color: #10B981;
        }

        .data-flow-latency strong {
            color: #059669;
        }

        /* ==========================================
           API ORCHESTRATION SECTION
           ========================================== */
        .api-orchestration-section {
            padding: 100px 0;
            background: var(--gray-900);
        }

        .api-orchestration-section .section-header {
            margin-bottom: 48px;
        }

        .api-orchestration-section .section-title {
            color: white;
        }

        .api-orchestration-section .section-subtitle {
            color: var(--gray-400);
        }

        .api-showcase {
            max-width: 1000px;
            margin: 0 auto;
        }

        .api-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .api-tab {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--gray-400);
            cursor: pointer;
            transition: all 0.2s;
        }

        .api-tab:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .api-tab.active {
            background: var(--bronze-600);
            border-color: var(--bronze-500);
            color: white;
        }

        .api-content {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 24px;
        }

        .api-panel {
            background: #0D1117;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .api-panel-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .api-method {
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .api-method.post { background: #238636; color: white; }
        .api-method.get { background: #1F6FEB; color: white; }
        .api-method.webhook { background: #9333EA; color: white; }

        .api-endpoint {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--gray-300);
        }

        .api-panel-body {
            padding: 16px;
        }

        .api-code-full {
            margin: 0;
            padding: 16px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 10px;
            font-family: var(--font-mono);
            font-size: 11px;
            line-height: 1.6;
            color: #8B949E;
            overflow-x: auto;
            white-space: pre-wrap;
            word-break: break-word;
        }

        .api-code-full code {
            color: #8B949E;
        }

        .api-desc {
            margin-top: 14px;
            padding: 12px 14px;
            background: rgba(99,102,241, 0.1);
            border-radius: 8px;
            font-size: 12px;
            color: var(--gray-300);
            line-height: 1.5;
        }

        .api-desc strong {
            color: var(--bronze-400);
        }

        .api-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .api-feature-card {
            padding: 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            transition: all 0.2s;
        }

        .api-feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .api-feature-card .api-feature-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(99,102,241, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .api-feature-card .api-feature-icon svg {
            width: 18px;
            height: 18px;
            color: var(--bronze-400);
        }

        .api-feature-card h4 {
            font-size: 13px;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .api-feature-card p {
            font-size: 11px;
            color: var(--gray-400);
            line-height: 1.4;
        }

        .api-cta {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 48px;
        }

        .api-orchestration-section .btn-outline {
            border-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .api-orchestration-section .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* ==========================================
           ANALYTICS & INTELLIGENCE SECTION
           ========================================== */
        .analytics-section {
            padding: 100px 0;
            background: var(--white);
        }

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

        .analytics-card {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            overflow: hidden;
        }

        .analytics-card.full-width {
            grid-column: span 2;
        }

        .analytics-card-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            border-bottom: 1px solid var(--gray-100);
        }

        .analytics-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

        .analytics-icon.intent-icon { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
        .analytics-icon.knowledge-icon { background: rgba(251, 191, 36, 0.1); color: #F59E0B; }
        .analytics-icon.escalation-icon { background: rgba(239, 68, 68, 0.1); color: #EF4444; }

        .analytics-card-header h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .analytics-card-header p {
            font-size: 13px;
            color: var(--gray-500);
        }

        .analytics-mockup {
            padding: 24px;
        }

        /* Intent & Sentiment Analysis */
        .intent-analysis-box {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .intent-conversation {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .intent-msg {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .intent-msg-text {
            padding: 12px 16px;
            background: var(--gray-50);
            border-radius: 10px;
            font-size: 13px;
            color: var(--gray-700);
            font-style: italic;
        }

        .intent-tags {
            display: flex;
            gap: 8px;
            padding-left: 8px;
        }

        .intent-tag {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 500;
        }

        .intent-tag.sentiment.negative { background: rgba(239, 68, 68, 0.1); color: #DC2626; }
        .intent-tag.sentiment.neutral { background: rgba(107, 114, 128, 0.1); color: #6B7280; }
        .intent-tag.sentiment.positive { background: rgba(16, 185, 129, 0.1); color: #059669; }
        .intent-tag.intent { background: rgba(59, 130, 246, 0.1); color: #2563EB; }

        .sentiment-meter {
            padding: 16px;
            background: var(--gray-50);
            border-radius: 10px;
        }

        .sentiment-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .sentiment-bar {
            height: 8px;
            background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #10B981 100%);
            border-radius: 4px;
            position: relative;
        }

        .sentiment-fill {
            position: absolute;
            left: 78%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 18px;
            height: 18px;
            background: white;
            border: 3px solid #10B981;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

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

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

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

        .gap-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .gap-count {
            padding: 4px 10px;
            background: rgba(251, 191, 36, 0.1);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            color: #D97706;
        }

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

        .gap-item {
            padding: 12px 14px;
            background: var(--gray-50);
            border-radius: 10px;
            border-left: 3px solid #F59E0B;
        }

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

        .gap-question {
            font-size: 12px;
            color: var(--gray-800);
            font-style: italic;
        }

        .gap-freq {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-500);
            white-space: nowrap;
        }

        .gap-item-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .gap-category {
            font-size: 10px;
            color: var(--gray-500);
        }

        .gap-action {
            padding: 4px 10px;
            background: var(--bronze-100);
            border: none;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            color: var(--bronze-700);
            cursor: pointer;
            transition: all 0.2s;
        }

        .gap-action:hover {
            background: var(--bronze-200);
        }

        .gap-footer {
            padding: 12px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 8px;
        }

        .gap-insight {
            font-size: 12px;
            color: #059669;
        }

        /* Human Escalation */
        .escalation-flow-mockup {
            padding: 24px;
        }

        .escalation-timeline {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .escalation-stage {
            flex: 1;
            min-width: 240px;
        }

        .stage-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

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

        .stage-icon svg {
            width: 18px;
            height: 18px;
        }

        .stage-icon.ai {
            background: linear-gradient(135deg, var(--bronze-400), var(--bronze-600));
            color: white;
        }

        .stage-icon.human {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            color: white;
        }

        .stage-indicator span {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .stage-content {
            background: var(--gray-50);
            border-radius: 12px;
            padding: 16px;
        }

        .escalation-msg {
            padding: 10px 14px;
            border-radius: 10px;
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .escalation-msg:last-child { margin-bottom: 0; }

        .escalation-msg.customer {
            background: var(--white);
            border: 1px solid var(--gray-200);
            color: var(--gray-700);
        }

        .escalation-msg.ai {
            background: var(--bronze-100);
            color: var(--bronze-900);
        }

        .escalation-trigger {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
        }

        .trigger-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #DC2626;
            margin-bottom: 12px;
        }

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

        .trigger-reasons {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }

        .trigger-reason {
            padding: 4px 10px;
            background: rgba(239, 68, 68, 0.08);
            border-radius: 4px;
            font-size: 10px;
            color: #B91C1C;
        }

        .handoff-summary {
            background: var(--white);
            border-radius: 10px;
            border: 1px solid var(--gray-200);
            overflow: hidden;
        }

        .handoff-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

        .handoff-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .handoff-time {
            font-size: 10px;
            color: #059669;
        }

        .handoff-details {
            padding: 12px 14px;
        }

        .handoff-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        .handoff-row:last-child { border-bottom: none; }

        .handoff-key {
            font-size: 11px;
            color: var(--gray-500);
        }

        .handoff-val {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray-800);
        }

        .sentiment-badge {
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .sentiment-badge.negative {
            background: rgba(239, 68, 68, 0.1);
            color: #DC2626;
        }

        .priority-badge {
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .priority-badge.high {
            background: rgba(239, 68, 68, 0.1);
            color: #DC2626;
        }

        .handoff-transcript {
            padding: 10px 14px;
            background: var(--gray-50);
            font-size: 11px;
            color: var(--gray-600);
        }

        .escalation-stats {
            display: flex;
            justify-content: center;
            gap: 32px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 12px;
        }

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

        .esc-stat-num {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: var(--bronze-700);
        }

        .esc-stat-label {
            display: block;
            font-size: 11px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        /* Responsive for new sections */
        @media (max-width: 1024px) {
            .data-retrieval-grid { grid-template-columns: 1fr; gap: 48px; }
            .api-content { grid-template-columns: 1fr; }
            .analytics-grid { grid-template-columns: 1fr; }
            .analytics-card.full-width { grid-column: span 1; }
            .arch-flow-row { flex-direction: column; gap: 20px; }
            .arch-arrow-connector { transform: rotate(90deg); }
        }

        @media (max-width: 768px) {
            .api-features-grid { grid-template-columns: 1fr; }
            .api-tabs { gap: 6px; }
            .api-tab { padding: 8px 14px; font-size: 12px; }
            .escalation-timeline { flex-direction: column; }
            .escalation-trigger { padding: 16px 0; }
            .escalation-stats { flex-wrap: wrap; gap: 20px; }
            .arch-channel-group, .arch-integration-group { flex-wrap: wrap; justify-content: center; }
        }

        /* ==========================================
           HYBRID SECTION
           ========================================== */
        .hybrid-section {
            padding: 100px 0;
            background: var(--gray-900);
            color: white;
        }

        .hybrid-header {
            text-align: center;
            max-width: 500px;
            margin: 0 auto 56px;
        }

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

        .hybrid-title {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .hybrid-title span { color: var(--bronze-400); }

        .hybrid-subtitle {
            font-family: var(--font-serif);
            font-size: 16px;
            color: var(--gray-400);
        }

        .hybrid-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 64px;
        }

        .hybrid-step { text-align: center; max-width: 140px; }

        .hybrid-step-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: all 0.3s;
        }

        .hybrid-step:hover .hybrid-step-icon {
            background: rgba(99,102,241, 0.15);
            border-color: var(--bronze-500);
        }

        .hybrid-step-icon svg { width: 28px; height: 28px; color: var(--bronze-400); }
        .hybrid-step-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
        .hybrid-step-desc { font-size: 11px; color: var(--gray-500); }

        .hybrid-connector {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--bronze-500), transparent);
        }

        .flexible-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            padding-top: 64px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .flexible-visual {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }

        .flexible-image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 16px;
        }

        .flexible-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-radius: 12px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

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

        .flexible-overlay-icon svg { width: 20px; height: 20px; color: white; }
        .flexible-overlay-content h4 { font-size: 14px; font-weight: 600; color: var(--gray-900); }
        .flexible-overlay-content p { font-size: 12px; color: var(--gray-600); }

        .flexible-content h3 { font-size: 28px; font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
        .flexible-content > p { font-size: 15px; color: var(--gray-400); line-height: 1.7; margin-bottom: 24px; }

        .flexible-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
        .flexible-benefit { display: flex; align-items: center; gap: 12px; }

        .flexible-benefit-icon {
            width: 24px;
            height: 24px;
            background: rgba(99,102,241, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flexible-benefit-icon svg { width: 12px; height: 12px; color: var(--bronze-400); }
        .flexible-benefit span { font-size: 14px; color: rgba(255, 255, 255, 0.85); }

        /* ==========================================
           SMB SECTION
           ========================================== */
        .smb-section { padding: 100px 0; background: var(--white); }

        .smb-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
        }

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

        .smb-title {
            font-size: 36px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .smb-title span { color: var(--bronze-700); }

        .smb-subtitle {
            font-family: var(--font-serif);
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 24px;
        }

        .smb-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

        .smb-feature {
            display: flex;
            gap: 14px;
            padding: 16px;
            background: var(--gray-50);
            border-radius: 12px;
            transition: background 0.2s;
        }

        .smb-feature:hover { background: var(--bronze-100); }

        .smb-feature-icon {
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        }

        .smb-feature-icon svg { width: 18px; height: 18px; color: var(--bronze-600); }

        .smb-feature-content h4 { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
        .smb-feature-content p { font-size: 13px; color: var(--gray-500); }

        .smb-visual { position: relative; }

        .smb-mockup {
            background: white;
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid var(--gray-200);
        }

        .smb-mockup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

        .smb-mockup-title { font-size: 14px; font-weight: 600; color: var(--gray-900); }

        .smb-mockup-badge {
            padding: 4px 10px;
            background: var(--teal-light);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            color: var(--teal);
        }

        .smb-mockup-body { padding: 20px; }

        .calendar-grid-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 8px;
        }

        .calendar-day-name {
            font-size: 10px;
            font-weight: 600;
            color: var(--gray-400);
            text-align: center;
            padding: 4px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 16px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 8px;
            cursor: pointer;
            position: relative;
        }

        .calendar-day:hover { background: var(--gray-100); }
        .calendar-day.today { background: var(--gray-900); color: white; }
        .calendar-day.booked::after {
            content: '';
            position: absolute;
            bottom: 4px;
            width: 4px;
            height: 4px;
            background: var(--bronze-500);
            border-radius: 50%;
        }

        .time-slots {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .time-slot-light {
            padding: 8px 14px;
            background: var(--gray-100);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--gray-600);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .time-slot-light:hover { border-color: var(--bronze-400); }
        .time-slot-light.selected { background: var(--gray-900); color: white; }
        .time-slot-light.booked { opacity: 0.4; text-decoration: line-through; }

        .smb-float {
            position: absolute;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            padding: 14px 16px;
            border: 1px solid var(--gray-100);
            z-index: 10;
        }

        .smb-float-1 { top: -20px; right: -30px; animation: floatUp 6s ease-in-out infinite; }
        .smb-float-2 { bottom: 40px; left: -40px; animation: floatUp 6s ease-in-out infinite 2s; }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .smb-float-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }

        .smb-float-icon {
            width: 32px;
            height: 32px;
            background: var(--emerald-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .smb-float-icon svg { width: 16px; height: 16px; color: var(--emerald); }
        .smb-float-title { font-size: 12px; font-weight: 600; color: var(--gray-900); }
        .smb-float-time { font-size: 10px; color: var(--gray-500); }
        .smb-float-body { font-size: 12px; color: var(--gray-600); }

        /* ==========================================
           INDUSTRIES
           ========================================== */
        .industries-section { padding: 100px 0; background: var(--gray-50); }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .industry-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            border-color: var(--bronze-300);
            box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .industry-card.featured {
            grid-column: span 2;
            grid-row: span 2;
            background: var(--gray-900);
            border-color: var(--gray-900);
            padding: 36px;
        }

        .industry-card.featured:hover { border-color: var(--bronze-600); }

        .industry-icon {
            width: 44px;
            height: 44px;
            background: var(--gray-100);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .industry-icon svg { width: 22px; height: 22px; color: var(--bronze-700); }

        .industry-card.featured .industry-icon { background: rgba(99,102,241, 0.15); }
        .industry-card.featured .industry-icon svg { color: var(--bronze-400); }

        .industry-name { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
        .industry-card.featured .industry-name { color: white; font-size: 22px; }

        .industry-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
        .industry-card.featured .industry-desc { color: var(--gray-400); font-size: 15px; margin-bottom: 24px; }

        .industry-stats {
            display: flex;
            gap: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .industry-stat-value { font-size: 24px; font-weight: 600; color: var(--bronze-400); }
        .industry-stat-label { font-size: 11px; color: var(--gray-500); }

        .industry-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--bronze-700);
        }

        .industry-link svg { width: 14px; height: 14px; }
        .industry-card.featured .industry-link { color: var(--bronze-400); }

        /* ==========================================
           TESTIMONIALS
           ========================================== */
        .testimonials-section { padding: 100px 0; background: white; }

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

        .testimonial-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 28px;
        }

        .testimonial-card:hover {
            border-color: var(--gray-300);
            box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
        }

        .testimonial-rating { display: flex; gap: 2px; margin-bottom: 16px; }
        .star { width: 16px; height: 16px; color: var(--bronze-500); }

        .testimonial-quote {
            font-family: var(--font-serif);
            font-size: 16px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 20px;
        }

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

        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--bronze-400), var(--bronze-700));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .author-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
        .author-role { font-size: 13px; color: var(--gray-500); }

        /* ==========================================
           CTA
           ========================================== */
        .cta-section { padding: 100px 0; background: var(--gray-50); }

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

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

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

        .cta-text h2 {
            font-size: 40px;
            font-weight: 600;
            line-height: 1.15;
            color: white;
            margin-bottom: 16px;
        }

        .cta-text h2 span { color: var(--bronze-400); }

        .cta-text p {
            font-family: var(--font-serif);
            font-size: 17px;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 420px;
        }

        .cta-features { display: flex; gap: 24px; margin-bottom: 32px; }
        .cta-feature { display: flex; align-items: center; gap: 8px; }

        .cta-feature-icon {
            width: 20px;
            height: 20px;
            background: rgba(99,102,241, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-feature-icon svg { width: 10px; height: 10px; color: var(--bronze-400); }
        .cta-feature span { font-size: 13px; color: var(--gray-400); }

        .cta-form {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 28px;
        }

        .cta-form h3 { font-size: 18px; font-weight: 600; color: white; margin-bottom: 6px; }
        .cta-form > p { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

        .form-group { margin-bottom: 12px; }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-family: inherit;
            font-size: 14px;
            color: white;
        }

        .form-input::placeholder { color: var(--gray-500); }
        .form-input:focus { outline: none; border-color: var(--bronze-500); }

        .form-submit { width: 100%; margin-top: 8px; }

        /* ==========================================
           FOOTER
           ========================================== */
        .footer {
            background: var(--gray-950);
            color: white;
            padding: 80px 0 32px;
        }

        .footer .container { max-width: 1600px; }

        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 2fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

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

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark svg { width: 18px; height: 18px; color: white; }

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

        .footer-newsletter {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 28px;
        }

        .footer-newsletter-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-bottom: 12px;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 8px;
        }

        .footer-newsletter-input {
            flex: 1;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            font-size: 14px;
            color: white;
            outline: none;
            transition: all 0.2s;
        }

        .footer-newsletter-input::placeholder {
            color: var(--gray-500);
        }

        .footer-newsletter-input:focus {
            border-color: var(--bronze-500);
            background: rgba(255, 255, 255, 0.08);
        }

        .footer-newsletter-btn {
            padding: 10px 18px;
            background: var(--bronze-700);
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: white;
            cursor: pointer;
            transition: all 0.2s;
        }

        .footer-newsletter-btn:hover {
            background: var(--bronze-600);
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .social-link:hover { 
            background: var(--bronze-700); 
            border-color: var(--bronze-600);
        }
        .social-link svg { width: 18px; height: 18px; color: var(--gray-400); }
        .social-link:hover svg { color: white; }

        .footer-links-grid {
            display: grid;
            grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr);
            gap: 20px;
        }

        .footer-column h4 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: white;
            margin-bottom: 20px;
            white-space:nowrap;
        }

        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        
        .footer-link { 
            font-size: 14px; 
            color: var(--gray-400); 
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .footer-link:hover { 
            color: white; 
            transform: translateX(2px);
        }

        .footer-link-badge {
            padding: 2px 6px;
            background: var(--emerald);
            border-radius: 4px;
            font-size: 9px;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright { font-size: 14px; color: var(--gray-500); }
        
        .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-legal a { 
            font-size: 14px; 
            color: var(--gray-500); 
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: white; }

        .footer-badges {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .footer-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 6px;
            font-size: 12px;
            color: var(--gray-400);
        }

        .footer-badge svg {
            width: 14px;
            height: 14px;
        }

        /* ==========================================
           RESPONSIVE
           ========================================== */
        @media (max-width: 1200px) {
            .side-cards { width: 180px; }
        }

        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; gap: 48px; }
            .hero-visual { max-width: 700px; margin: 0 auto; }
            .hero-visual-inner { justify-content: center; }
            .products-catalog { grid-template-columns: 1fr; }
            .industries-grid { grid-template-columns: 1fr 1fr; }
            .industry-card.featured { grid-column: span 2; grid-row: span 1; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .cta-content { grid-template-columns: 1fr; gap: 40px; }
            .hybrid-flow { flex-wrap: wrap; }
            .flexible-block { grid-template-columns: 1fr; }
            .smb-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .nav { display: none; }
            .hero { padding: 120px 0 80px; }
            .hero-title { font-size: 36px; }
            .hero-stats { flex-wrap: wrap; gap: 24px; }
            .hero-visual-inner { flex-direction: column; }
            .dashboard-showcase { max-width: 100%; }
            .side-cards { 
                flex-direction: row; 
                width: 100%; 
                overflow-x: auto;
                gap: 12px;
                padding-bottom: 8px;
            }
            .side-card { min-width: 180px; flex-shrink: 0; }
            .industries-grid { grid-template-columns: 1fr; }
            .industry-card.featured { grid-column: span 1; }
            .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
            .footer-brand { grid-column: span 2; }
            .cta-card { padding: 40px 24px; }
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-text > * { animation: fadeInUp 0.6s ease-out both; }
        .hero-badge { animation-delay: 0.1s; }
        .hero-title { animation-delay: 0.2s; }
        .hero-subtitle { animation-delay: 0.3s; }
        .hero-cta { animation-delay: 0.4s; }
        .hero-stats { animation-delay: 0.5s; }
        .hero-visual { animation: fadeInUp 0.8s ease-out 0.3s both; }
    
/* ── 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;
}
