: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: #1e1b4b;
            --bronze-800: #312e81;
            --bronze-700: #4338ca;
            --bronze-600: #6366f1;
            --bronze-500: #8b5cf6;
            --bronze-400: #a78bfa;
            --bronze-300: #c4b5fd;
            --bronze-200: #ddd6fe;
            --bronze-100: #ede9fe;
            
            --secondary: #64748B;
            --secondary-light: #94A3B8;
            --secondary-dark: #475569;
            --tertiary: #FEFCE8;
            --tertiary-dark: #FEF3C7;
            
            --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-color: #FFFFFF; background-image: url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='28' height='28' rx='3' fill='none' stroke='%231E1E24' stroke-width='0.8' stroke-opacity='0.05'/%3E%3C/svg%3E"); background-size: 38px 38px; background-attachment: fixed; -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: transparent;
            backdrop-filter: none;
            border-bottom: 1px solid transparent;
            transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
        }

        #header.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom-color: var(--gray-100);
            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: 8px;
            font-size: 20px;
            font-weight: 600;
            color: #1D1D1F;
            letter-spacing: -0.02em;
        }

        #header .logo-mark {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #header .logo-mark svg { width: 28px; height: 28px; color: #1D1D1F; }
        #header .logo sup { font-size: 10px; font-weight: 500; color: #86868B; margin-left: 0; }

        /* 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(234, 179, 8, 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(234, 179, 8, 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(234, 179, 8, 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: rgba(0, 0, 0, 0.8);
            line-height: 1.4;
        }

        .mega-menu-section-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(0, 0, 0, 0.8);
            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: rgba(0, 0, 0, 0.8);
            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(234, 179, 8, 0.45);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.10) 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: rgba(0, 0, 0, 0.8); 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(234, 179, 8, 0.16);
            color: rgba(255,255,255,0.92);
            border: 1px solid rgba(234, 179, 8, 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(234, 179, 8, 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(234, 179, 8, 0.22); border-color: rgba(234, 179, 8, 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: rgba(0, 0, 0, 0.8); letter-spacing: -0.01em; }
        .agents-stat span { display: block; font-size: 12px; color: rgba(0, 0, 0, 0.8); 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: rgba(0, 0, 0, 0.8);
            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: rgba(0, 0, 0, 0.8); 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(234,179,8,0.10);
            border: 1px solid rgba(234,179,8,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: rgba(0, 0, 0, 0.8); 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(234,179,8,0.5); stroke-width: 1.2; }
        .flow-node.customer { stroke: rgba(234,179,8,0.8); filter: drop-shadow(0 0 10px rgba(0,0,0,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(234,179,8,0.55); stroke-width: 1.4; stroke-dasharray: 5 7; }
        .flow-particle { fill: rgba(234,179,8,0.95); filter: drop-shadow(0 0 8px rgba(0,0,0,0.45)); }

        @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: rgba(0, 0, 0, 0.8);
        }

        .mega-menu-footer-link {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(0, 0, 0, 0.8);
        }

        .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: 20px;
            overflow-y: auto;
            z-index: 5500;
        }

        .mobile-menu-inner {
            max-width: 1600px;
            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 {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 90px;
            position: relative;
            background: transparent;
        }
        .hero > .container { width: 100%; }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 80% at 40% 50%, rgba(255,255,255,1) 30%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .hero > * {
            position: relative;
            z-index: 2;
        }

        .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: #1E1E24;
            margin-bottom: 24px;
        }

        .hero-title .highlight { color: #1E1E24; }

        .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: 16px; }

        .trust-badges {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            margin-top: 24px;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 6px 14px;
            background: #FFFFFF;
            border: 1px solid #E4E4EC;
            border-radius: 100px;
            font-size: 12.5px;
            font-weight: 500;
            color: #3A3A44;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }

        .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: #18A96A; letter-spacing: -0.02em; }
        .stat-value span { font-size: 18px; }
        .stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

        /* ==========================================
           HERO VISUAL - Browser Mockup Dashboard
           ========================================== */
        .hero-visual {
            position: relative;
            z-index: 2;
        }

        .hb-browser {
            background: #FFFFFF;
            border: 1px solid #E0E0EA;
            border-radius: 14px;
            width: 580px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 20px 60px rgba(0,0,0,0.10), 0 40px 80px rgba(0,0,0,0.06);
            overflow: hidden;
            font-family: var(--font-sans);
        }

        /* Browser top bar */
        .hb-topbar {
            background: #F4F4F8;
            height: 40px;
            padding: 0 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hb-dots { display: flex; gap: 6px; }
        .hb-dot { width: 10px; height: 10px; border-radius: 50%; }
        .hb-dot.red { background: #FF5F56; }
        .hb-dot.yellow { background: #FEBC2E; }
        .hb-dot.green { background: #27C840; }
        .hb-address {
            background: #FFFFFF;
            border: 1px solid #E0E0EA;
            border-radius: 100px;
            padding: 4px 14px;
            font-size: 11.5px;
            color: #9090A0;
            width: 200px;
            text-align: center;
            margin: 0 auto;
        }

        /* Tab bar */
        .hb-tabs {
            background: #FAFAFA;
            border-bottom: 1px solid #E8E8F0;
            height: 34px;
            padding: 0 16px;
            display: flex;
            align-items: flex-end;
            gap: 4px;
        }
        .hb-tab {
            padding: 6px 14px;
            font-size: 11.5px;
            font-weight: 500;
            border-radius: 8px 8px 0 0;
            color: #9090A0;
        }
        .hb-tab.active {
            background: #FFFFFF;
            border: 1px solid #E8E8F0;
            border-bottom: 1px solid #FFFFFF;
            color: #1E1E24;
            margin-bottom: -1px;
        }

        /* Dashboard body */
        .hb-body { background: #F7F7FA; padding: 16px; }

        /* Metric cards row */
        .hb-metrics { display: flex; gap: 10px; }
        .hb-metric {
            flex: 1;
            background: #FFFFFF;
            border: 1px solid #E8E8F0;
            border-radius: 10px;
            padding: 12px 14px;
        }
        .hb-metric-label {
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: #9090A0;
            margin-bottom: 4px;
        }
        .hb-metric-value {
            font-size: 22px;
            font-weight: 600;
            color: #1E1E24;
            line-height: 1.2;
        }
        .hb-metric-delta {
            font-size: 11px;
            color: #18A96A;
            margin-top: 2px;
        }

        /* Middle two-column row */
        .hb-mid { display: flex; gap: 10px; margin-top: 10px; }
        .hb-convos {
            flex: 1;
            background: #FFFFFF;
            border: 1px solid #E8E8F0;
            border-radius: 10px;
            padding: 12px;
        }
        .hb-convos-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .hb-convos-title { font-size: 12px; font-weight: 600; color: #1E1E24; }
        .hb-live-pill {
            font-size: 10px;
            color: #18A96A;
            background: #E6F7F0;
            padding: 2px 8px;
            border-radius: 100px;
        }

        .hb-convo-row { padding: 8px 0; }
        .hb-convo-row + .hb-convo-row { border-top: 1px solid #F0F0F6; }
        .hb-convo-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }
        .hb-convo-agent {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: #6060A0;
        }
        .hb-convo-time { font-size: 10px; color: #9090A0; }
        .hb-cdot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .hb-cdot.purple { background: #A78BFA; }
        .hb-cdot.blue { background: #60A5FA; }
        .hb-cdot.green { background: #34D399; }
        .hb-convo-msg {
            font-size: 11.5px;
            color: #1E1E24;
            margin-bottom: 4px;
        }
        .hb-convo-reply {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11.5px;
            color: #4A4A5A;
        }
        .hb-m-badge {
            width: 16px;
            height: 16px;
            background: #1E1E24;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .hb-convo-confirm {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11.5px;
            color: #18A96A;
        }

        /* Right column — agents */
        .hb-agents {
            width: 160px;
            background: #FFFFFF;
            border: 1px solid #E8E8F0;
            border-radius: 10px;
            padding: 12px;
            flex-shrink: 0;
        }
        .hb-agents-title {
            font-size: 12px;
            font-weight: 600;
            color: #1E1E24;
            margin-bottom: 10px;
        }
        .hb-agent-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 12px;
            color: #4A4A5A;
        }
        .hb-agent-row:last-child { margin-bottom: 0; }
        .hb-status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }
        .hb-status-dot.on { background: #18A96A; }
        .hb-status-dot.off { background: #D0D0DC; }

        /* Bottom status bar */
        .hb-statusbar {
            background: #FFFFFF;
            border-top: 1px solid #E8E8F0;
            padding: 8px 16px;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .hb-pill {
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 100px;
            font-weight: 500;
        }
        .hb-pill.blue { background: #EEF6FF; color: #3B82F6; }
        .hb-pill.green { background: #F0FAF5; color: #18A96A; }
        .hb-pill.purple { background: #F5F0FF; color: #8B5CF6; }

        /* Floating notification card */
        .hb-float-card {
            position: absolute;
            bottom: -16px;
            right: -24px;
            background: #FFFFFF;
            border: 1px solid #E4E4EC;
            border-radius: 12px;
            padding: 12px 16px;
            width: 190px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.10);
            z-index: 5;
        }
        .hb-float-top {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }
        .hb-float-icon {
            width: 20px;
            height: 20px;
            background: #E6F7F0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .hb-float-icon svg { width: 11px; height: 11px; }
        .hb-float-title { font-size: 12px; font-weight: 600; color: #1E1E24; }
        .hb-float-sub { font-size: 11px; color: #72727E; margin-bottom: 8px; }
        .hb-float-pills { display: flex; gap: 6px; }
        .hb-float-pill {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 100px;
            font-weight: 500;
        }
        .hb-float-pill.confirmed { background: #E6F7F0; color: #18A96A; }
        .hb-float-pill.edit { background: #F0F0F6; color: #72727E; }

        /* ==========================================
           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: rgba(247,247,250,0.6);
            padding: 100px 0;
        }

        .products-section .container {
            max-width: 1600px;
            padding-left: 72px;
            padding-right: 72px;
        }

        .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: #0071e3;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 16px;
            display: block;
        }

        .products-section .section-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.08;
            letter-spacing: -0.03em;
            color: #1d1d1f;
            margin-bottom: 14px;
        }

        .products-section .section-subtitle {
            font-family: inherit;
            font-size: 17px;
            color: #86868b;
            line-height: 1.5;
        }

        .pp-slider { width: 100%; }

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

        .pp-tabs {
            display: flex;
            gap: 0;
            align-items: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            position: relative;
            background: rgba(0,0,0,0.03);
            border-radius: 14px;
            padding: 4px;
        }

        .pp-tabs::-webkit-scrollbar { display: none; }

        .pp-tab {
            appearance: none;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: #86868b;
            padding: 10px 20px;
            border-radius: 10px;
            position: relative;
            transition: color 0.3s ease, background 0.3s ease;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

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

        .pp-tab:hover {
            color: #1d1d1f;
        }

        .pp-tab.is-active {
            color: #1d1d1f;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
            font-weight: 600;
        }

        .pp-viewport {
            position: relative;
        }

        .pp-surface {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            background: #FBFBFD;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06);
            padding: 48px 48px;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .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.025);
            z-index: 0;
            pointer-events: none;
            user-select: none;
            line-height: 1;
            letter-spacing: -0.04em;
        }

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

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

        .pp-icon.voice {
            background: linear-gradient(135deg, #1d1d1f, #424245);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        .pp-icon.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
        }
        .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 4px 16px rgba(131, 58, 180, 0.2);
        }

        .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 8px 24px rgba(0, 132, 255, 0.14), 0 8px 24px rgba(225, 48, 108, 0.10);
        }
        .pp-icon.crm {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            box-shadow: 0 4px 16px rgba(29, 78, 216, 0.18);
        }
        .pp-icon.quality {
            background: linear-gradient(135deg, #10B981, #059669);
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.18);
        }
        .pp-icon.reception {
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
            box-shadow: 0 4px 16px rgba(109, 40, 217, 0.18);
        }
        .pp-icon.sms {
            background: linear-gradient(135deg, #0071e3, #005bb5);
            box-shadow: 0 4px 16px rgba(0, 113, 227, 0.18);
        }

        .pp-title {
            font-size: 34px;
            font-weight: 700;
            color: #1d1d1f;
            margin: 0 0 14px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.025em;
        }

        .pp-desc {
            font-size: 16px;
            line-height: 1.65;
            color: #86868b;
            margin: 0 0 28px;
            max-width: 420px;
            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: #1d1d1f;
            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: #1d1d1f;
            margin-bottom: 2px;
        }

        .pp-link {
            margin-top: 28px;
            color: #0071e3;
            font-weight: 500;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

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

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

        .pp-right {
            display: flex;
            justify-content: center;
            min-width: 0;
            overflow: visible;
            padding: 24px 20px;
            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: visible;
            padding: 24px 0;
        }

        .pp-ss-mockup {
            width: min(520px, 100%);
            border-radius: 22px;
            background: radial-gradient(1200px 520px at 40% -10%, rgba(234, 179, 8, 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(234,179,8,0.55), rgba(251,191,36,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(234,179,8,0.18); border-color: rgba(234,179,8,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, #A16207, #FBBF24);
        }

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

        .message.outgoing .message-content {
            background: rgba(234, 179, 8, 0.2);
            border: 1px solid rgba(234, 179, 8, 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: #FBBF24;
        }

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

        .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: #FBBF24; color: #fff; }
        .badge.ai-active { background: rgba(234, 179, 8, 0.2); color: #FBBF24; }
        .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(234, 179, 8, 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: 36px;
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .pp-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0,0,0,0.12);
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pp-dot.is-active {
            background: #1d1d1f;
            width: 28px;
            border-radius: 4px;
        }

        @media (max-width: 980px) {
            .pp-surface { padding: 30px 24px; }
            .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(234, 179, 8, 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(234, 179, 8, 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(234, 179, 8, 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(234, 179, 8, 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(0, 0, 0, 0.15);
        }

        .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 {
            background: transparent;
            border-top: 1px solid #E4E4EC;
            padding: 100px 0;
        }

        .pricing-banner::before,
        .pricing-banner::after {
            display: none;
        }

        .pricing-banner-inner {
            display: flex;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-content {
            flex: 0 0 480px;
        }

        .pricing-kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 13px;
            background: #E6F7F0;
            border: 1px solid rgba(24, 169, 106, 0.18);
            border-radius: 100px;
            font-size: 12.5px;
            font-weight: 600;
            color: #18A96A;
            width: fit-content;
            margin-bottom: 18px;
        }

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

        .pricing-headline {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -1px;
            color: #1E1E24;
            margin: 0 0 0;
        }

        .pricing-headline .price-highlight {
            color: #18A96A;
            display: block;
            background: none;
            -webkit-background-clip: unset;
            -webkit-text-fill-color: unset;
            background-clip: unset;
        }

        .pricing-subtext {
            font-size: 16px;
            line-height: 1.65;
            color: #72727E;
            margin: 20px 0 32px;
            max-width: 400px;
        }

        .pricing-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            border-radius: 8px;
            background: #1E1E24;
            color: #FFFFFF;
            font-size: 14.5px;
            font-weight: 500;
            transition: background 0.2s ease;
            box-shadow: none;
        }

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

        .pricing-cta:hover {
            background: #2E2E36;
            transform: none;
            box-shadow: none;
        }

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

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

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

        .pricing-trust-icon {
            color: #18A96A;
            font-size: 15px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: auto;
            height: auto;
            border-radius: 0;
            background: none;
        }

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

        .pricing-visual {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .pricing-metric-card {
            background: #F7F7FA;
            border: 1px solid #E4E4EC;
            border-radius: 14px;
            padding: 28px;
        }

        .pricing-metric-card.accent {
            background: #1E1E24;
        }

        .pricing-metric-card .value {
            display: block;
            font-size: 36px;
            font-weight: 600;
            color: #1E1E24;
            letter-spacing: -1px;
        }

        .pricing-metric-card.accent .value {
            color: #18A96A;
        }

        .pricing-metric-card .label {
            display: block;
            font-size: 13px;
            color: #72727E;
            margin-top: 6px;
        }

        .pricing-metric-card.accent .label {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Pricing animation styles */
        .pricing-animated {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .pricing-animated.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-animated .pricing-anim-item {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .pricing-animated.is-visible .pricing-anim-item {
            opacity: 1;
            transform: translateX(0);
        }

        .pricing-animated.is-visible .pricing-kicker.pricing-anim-item { transition-delay: 0.1s; }
        .pricing-animated.is-visible .pricing-subtext.pricing-anim-item { transition-delay: 0.4s; }
        .pricing-animated.is-visible .pricing-cta.pricing-anim-item { transition-delay: 0.5s; }
        .pricing-animated.is-visible .pricing-trust.pricing-anim-item { transition-delay: 0.55s; }

        .pricing-animated .pricing-headline > span:first-child {
            display: inline-block;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
        }

        .pricing-animated .pricing-headline .price-highlight {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, color 0.6s ease 0.8s;
        }

        .pricing-animated.is-visible .pricing-headline > span:first-child,
        .pricing-animated.is-visible .pricing-headline .price-highlight {
            opacity: 1;
            transform: translateX(0);
        }

        .pricing-animated.is-visible .pricing-headline .price-highlight {
            animation: pricePulse 0.8s ease 0.9s 1;
        }

        @keyframes pricePulse {
            0% { color: #18A96A; }
            40% { color: #2ED88A; }
            100% { color: #18A96A; }
        }

        .pricing-animated .pricing-trust-item {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .pricing-animated.is-visible .pricing-trust-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.55s; }
        .pricing-animated.is-visible .pricing-trust-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }
        .pricing-animated.is-visible .pricing-trust-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.65s; }

        .pricing-animated .pricing-metric-card {
            opacity: 0;
            transform: translateY(20px) scale(0.97);
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
        }

        .pricing-animated.is-visible .pricing-metric-card:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.2s; }
        .pricing-animated.is-visible .pricing-metric-card:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.35s; }
        .pricing-animated.is-visible .pricing-metric-card:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.5s; }
        .pricing-animated.is-visible .pricing-metric-card:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.65s; }

        .pricing-metric-card:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .pricing-metric-card.accent:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }

        .pricing-cta {
            position: relative;
            overflow: hidden;
        }

        .pricing-cta::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
            background-size: 200% 100%;
            background-position: 100% 0;
            transition: none;
            pointer-events: none;
        }

        .pricing-cta:hover::after {
            animation: ctaShimmer 0.5s ease forwards;
        }

        @keyframes ctaShimmer {
            from { background-position: 100% 0; }
            to { background-position: -100% 0; }
        }

        @media (max-width: 1024px) {
            .pricing-banner-inner {
                flex-direction: column;
                gap: 48px;
                text-align: center;
            }

            .pricing-content {
                flex: none;
                width: 100%;
            }

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

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

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

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

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

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

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

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

        /* ==========================================
           TECHNICAL ARCHITECTURE SECTION (Compact)
           ========================================== */
        .tech-architecture-section {
            padding: 100px 0;
            background: rgba(247,247,250,0.6);
        }

        .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(234, 179, 8, 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(234, 179, 8, 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(234, 179, 8, 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: rgba(247,247,250,0.6);
            color: #1E1E24;
        }

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

        .hybrid-eyebrow {
            font-size: 12px;
            font-weight: 600;
            color: #18A96A;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            display: block;
        }

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

        .hybrid-title span { color: #1E1E24; }

        .hybrid-subtitle {
            font-family: var(--font-serif);
            font-size: 16px;
            color: #72727E;
        }

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

        .hybrid-step {
            flex: 1;
            text-align: center;
            max-width: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hybrid-step-icon {
            width: 64px;
            height: 64px;
            background: #FFFFFF;
            border: 1px solid #E4E4EC;
            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: #F0FAF5;
            border-color: #18A96A;
        }

        .hybrid-step-icon svg { width: 28px; height: 28px; color: #1E1E24; }
        .hybrid-step-title { font-size: 13px; font-weight: 600; color: #1E1E24; margin-bottom: 4px; }
        .hybrid-step-desc { font-size: 11px; color: #72727E; }

        .hybrid-connector {
            width: 40px;
            height: 2px;
            background: #E4E4EC;
            flex-shrink: 0;
            margin-top: 32px;
        }

        .flexible-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            padding-top: 64px;
            border-top: 1px solid #E4E4EC;
        }

        .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: 40px;
            height: 40px;
            background: #1E1E24;
            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: #1E1E24; }
        .flexible-overlay-content p { font-size: 12px; color: #72727E; }

        .flexible-content h3 { font-size: 28px; font-weight: 600; line-height: 1.3; color: #1E1E24; margin-bottom: 16px; }
        .flexible-content > p { font-size: 15px; color: #72727E; 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: #E6F7F0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flexible-benefit-icon svg { width: 12px; height: 12px; color: #18A96A; }
        .flexible-benefit span { font-size: 14px; color: #4A4A5A; }

        /* ==========================================
           SMB SECTION
           ========================================== */
        .smb-section { padding: 100px 0; background: transparent; }

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

        .smb-eyebrow {
            font-size: 12px;
            font-weight: 600;
            color: #18A96A;
            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: #1E1E24;
            margin-bottom: 12px;
        }

        .smb-title span { color: #1E1E24; }

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

        .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: #1E1E24; }

        .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; padding: 24px 0; }

        .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: #18A96A;
            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: #18A96A; }
        .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: rgba(247,247,250,0.6); }

        .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(234, 179, 8, 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: transparent; }

        .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: rgba(247,247,250,0.6); }

        .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(139, 92, 246, 0.18) 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 {
            background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .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(139, 92, 246, 0.22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-feature-icon svg { width: 10px; height: 10px; color: #a78bfa; }
        .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: #8b5cf6; }

        .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: 8px;
            font-size: 22px;
            font-weight: 600;
            color: #FFFFFF;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .footer-logo-mark {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark svg { width: 30px; height: 30px; color: #FFFFFF; }

        .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: 1024px) {
            .hero-content { grid-template-columns: 1fr; gap: 48px; }
            .hero-visual { max-width: 580px; margin: 0 auto; }
            .hb-browser { width: 100%; }
            .hb-float-card { right: -10px; }
            .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 { min-height: 100vh; padding-top: 62px; }
            .hero-title { font-size: 36px; }
            .hero-stats { flex-wrap: wrap; gap: 24px; }
            .hb-browser { width: 100%; }
            .hb-mid { flex-direction: column; }
            .hb-agents { width: 100%; }
            .hb-float-card { position: relative; bottom: auto; right: auto; margin: 16px auto 0; width: auto; }
            .hb-metrics { flex-direction: column; }
            .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;
}


/* ── Hero CTA button: prevent text wrapping ── */
.hero-cta{display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.hero-cta .btn-primary,.hero-cta .btn-outline,.hero .btn-primary,.hero .btn-outline{white-space:nowrap;width:auto;min-width:unset;max-width:100%;}
/* ── Integrations Logo Strip ── */
.integrations-strip{padding:48px 0;background:var(--white,#ffffff);border-top:1px solid var(--gray-100,#F3F4F6);border-bottom:1px solid var(--gray-100,#F3F4F6);}
.integrations-strip-inner{max-width:1600px;margin:0 auto;padding:0 72px;}
.integrations-strip-label{text-align:center;font-size:11px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--gray-400,#9CA3AF);margin:0 0 24px;}
.integrations-strip-logos{display:flex;align-items:center;flex-wrap:nowrap;overflow:hidden;position:relative;}
.integrations-strip-logos::before,
.integrations-strip-logos::after{content:'';position:absolute;top:0;bottom:0;width:200px;pointer-events:none;z-index:2;}
.integrations-strip-logos::before{left:0;background:linear-gradient(to right, white, transparent);}
.integrations-strip-logos::after{right:0;background:linear-gradient(to left, white, transparent);}
.logo-ticker{display:flex;align-items:center;gap:40px;width:max-content;flex-shrink:0;animation:ticker 40s linear infinite;}
.logo-ticker:hover{animation-play-state:paused;}
@keyframes ticker{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.integrations-strip-logos img{opacity:1;filter:none !important;object-fit:contain;flex-shrink:0;cursor:pointer;width:48px;height:48px;padding:4px;background:white;border:1px solid #F3F4F6;border-radius:10px;box-shadow:0 2px 8px rgba(0,0,0,0.08);transition:transform 180ms ease,box-shadow 180ms ease;}
.integrations-strip-logos img:hover{transform:translateY(-2px);box-shadow:0 6px 14px rgba(0,0,0,0.12);}
.integrations-strip-footer{text-align:center;margin:20px 0 0;font-size:12px;color:var(--gray-400,#9CA3AF);}
.integrations-strip-footer a{color:var(--bronze-700,#A16207);font-weight:600;text-decoration:none;transition:color 0.2s;}
.integrations-strip-footer a:hover{color:var(--bronze-600,#A16207);}
@media(max-width:768px){.integrations-strip-logos{gap:32px;overflow-x:auto;justify-content:flex-start;padding-bottom:8px;-webkit-overflow-scrolling:touch;}.integrations-strip-logos img{opacity:1;}}

/* ==========================================
   HERO V2 — Futuristic Animated Background
   ========================================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: #ffffff;
}

.hero-logo-grid { display: none; }

/* Dot pattern overlay over the animated gradient */
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, #111827 1px, transparent 1.5px);
  background-size: 24px 24px;
}

/* BACKGROUND SCENE */
.hero-bg-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* FLOATING PROMPT BUBBLES */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, transparent 35%, rgba(0,0,0,0.5) 60%, black 85%);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, transparent 35%, rgba(0,0,0,0.5) 60%, black 85%);
}

.hero-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  border-radius: 40px;
  color: #111827;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  opacity: 1;
  box-shadow:
    0 8px 24px rgba(99,102,241,0.18),
    0 2px 6px rgba(0,0,0,0.08);
}

.hero-bubble svg {
  width: 15px;
  height: 15px;
  stroke: #6366f1;
  stroke-width: 2.2;
  flex-shrink: 0;
}

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

/* FOREGROUND */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
  text-align: center;
}

.hero-title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  min-height: 40px;
}

.hero-title .underline-word {
  position: relative;
  display: inline-block;
}

.hero-title .underline-word::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.6s ease forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.hero-input-wrap {
  width: 100%;
  /* Glass: lets the hero's dot pattern (and anything behind) show through,
   * while the backdrop blur keeps text and controls comfortably readable. */
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(229,231,235,0.45);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.10),
    0 60px 140px rgba(99,102,241,0.15),
    0 20px 60px rgba(0,0,0,0.14);
  padding: 20px 20px 14px;
  margin-bottom: 20px;
  transition: box-shadow 200ms, border-color 200ms, background 200ms;
}

.hero-input-wrap:focus-within {
  background: rgba(255, 255, 255, 0.50);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.30),
    0 60px 140px rgba(99,102,241,0.22),
    0 20px 60px rgba(0,0,0,0.18);
}

/* Animated conic-gradient border around the chatbox */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.hero-chat-wrapper {
  position: relative;
  width: min(880px, calc(100vw - 32px));
  border-radius: 22px;
  padding: 2px;
  margin-bottom: 20px;
  /* Softer indigo glow + lighter black shadow — the rotating conic border
   * already does heavy visual lifting, so the cast shadow only needs to
   * suggest depth, not dominate. */
  box-shadow:
    0 60px 140px rgba(99,102,241,0.18),
    0 20px 60px rgba(0,0,0,0.14),
    0 0 0 1px rgba(99,102,241,0.10);
  animation: chatGlow 3s ease-in-out infinite;
}

.hero-chat-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    transparent 60deg,
    rgba(99, 102, 241, 0.9) 90deg,
    rgba(139, 92, 246, 0.7) 110deg,
    rgba(236, 72, 153, 0.5) 130deg,
    transparent 160deg,
    transparent 360deg
  );
  /* Mask the conic gradient down to just the 2px border ring so the
   * rotating colors never bleed into the glass chatbox interior. The
   * "linear(#000) content-box XOR linear(#000) border-box" trick paints
   * only the padding area (the ring between content-box and border-box). */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: borderSpin 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}
/* ::after no longer needed — the mask trick above confines the gradient
 * to the border ring, so there's nothing to cover up on the inside. */

.hero-chat-wrapper > * {
  position: relative;
  z-index: 2;
}

/* The inner chatbox already has its own margin-bottom 20px — drop it here
   so the wrapper's own bottom spacing is the single source of truth. */
.hero-chat-wrapper .hero-input-wrap {
  margin-bottom: 0;
}

@keyframes borderSpin {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}

@keyframes chatGlow {
  0%, 100% {
    box-shadow:
      0 60px 140px rgba(99,102,241,0.18),
      0 20px 60px rgba(0,0,0,0.14),
      0 0 0 1px rgba(99,102,241,0.10);
  }
  50% {
    box-shadow:
      0 60px 140px rgba(99,102,241,0.28),
      0 20px 60px rgba(0,0,0,0.18),
      0 0 0 1px rgba(99,102,241,0.16);
  }
}

.hero-textarea-shell {
  position: relative;
  width: 100%;
  text-align: left;
}

.hero-textarea {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 52px;
  max-height: 200px;
  padding: 0 0 0 20px;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-size: 15px;
  font-style: normal;
  text-align: left !important;
  vertical-align: top;
  color: #111827;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

.hero-textarea::placeholder {
  color: #4b5563;
  text-align: left;
}

/* Typewriter overlay sitting on top of the textarea — sized to its content,
   pinned to the top-left of the shell exactly where the textarea's text starts */
.hero-typewriter-overlay {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 0;
  pointer-events: none;
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  color: #374151;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  text-align: left !important;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100% - 20px);
}

.hero-typewriter-overlay.is-hidden { display: none; }

.hero-typewriter-text {
  display: inline;
  text-align: left;
}

.hero-typewriter-cursor {
  display: inline-block;
  margin-left: 1px;
  color: #6366f1;
  font-weight: 300;
  animation: heroCursorBlink 0.6s steps(2, end) infinite;
}

@keyframes heroCursorBlink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* Hero V2 headline */
.hero-v2-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  text-align: center;
  text-shadow: none;
}

/* Templates announcement badge */
.hero-templates-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #0a0a0a);
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 6px 28px rgba(99,102,241,0.5),
    0 0 0 1px rgba(99,102,241,0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-templates-badge:hover {
  transform: scale(1.03);
  box-shadow:
    0 10px 40px rgba(99,102,241,0.62),
    0 0 0 1px rgba(99,102,241,0.28);
}

.hero-templates-badge-icon,
.hero-templates-badge-arrow {
  width: 16px;
  height: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

.hero-templates-badge-arrow {
  transition: transform 180ms ease;
}

.hero-templates-badge:hover .hero-templates-badge-arrow {
  transform: translateX(3px);
}

/* Chatbox bottom bar */
.hero-input-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.hero-input-left {
  position: relative;
  display: flex;
  align-items: center;
}

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

/* + upload trigger */
.hero-input-plus-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  color: #6B7280;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms, color 150ms, transform 150ms;
}

.hero-input-plus-btn:hover { background: #E5E7EB; color: #111827; }
.hero-input-plus-btn[aria-expanded="true"] {
  background: #111827;
  color: white;
  transform: rotate(45deg);
}

.hero-input-plus-btn svg {
  width: 16px;
  height: 16px;
}

/* Upload popup menu */
.hero-upload-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  min-width: 188px;
  background: #ffffff;
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 10;
}

.hero-upload-menu.is-open { display: flex; }

.hero-upload-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-align: left;
  cursor: pointer;
  transition: background 120ms;
}

.hero-upload-item:hover { background: #F3F4F6; }

.hero-upload-item svg {
  width: 16px;
  height: 16px;
  color: #6366f1;
  flex-shrink: 0;
}

/* Mic icon button */
.hero-input-icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  color: #9CA3AF;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms, color 150ms;
}

.hero-input-icon-btn:hover { background: #E5E7EB; color: #6B7280; }

.hero-input-icon-btn svg {
  width: 16px;
  height: 16px;
}

/* Send button */
.hero-send-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 150ms, box-shadow 150ms, background 150ms;
  box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}

.hero-send-btn:disabled {
  background: #E5E7EB; color: #9CA3AF;
  box-shadow: none; cursor: not-allowed;
}

.hero-send-btn:not(:disabled):hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(99,102,241,0.45);
}

.hero-send-btn svg {
  width: 16px;
  height: 16px;
}

/* Action buttons under chatbox */
.hero-action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.hero-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 160ms, border-color 160ms, color 160ms, transform 160ms, box-shadow 160ms;
}

.hero-action-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-action-btn--primary {
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 10px 28px rgba(0,0,0,0.4);
}

.hero-action-btn--primary:hover {
  transform: translateY(-1px);
  background: #1a1a1a;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.7),
    0 14px 36px rgba(0,0,0,0.5);
}

.hero-action-btn--primary svg { color: #ffffff; }

.hero-action-btn--secondary {
  background: #ffffff;
  border: 1.5px solid rgba(17,24,39,0.35);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow:
    0 4px 14px rgba(17,24,39,0.08),
    0 1px 4px rgba(0,0,0,0.04);
}

.hero-action-btn--secondary:hover {
  background: #f3f4f6;
  border-color: rgba(17,24,39,0.55);
  box-shadow:
    0 6px 20px rgba(17,24,39,0.12),
    0 1px 4px rgba(0,0,0,0.04);
}

.hero-action-btn--secondary svg { color: #6366f1; }

/* Template Modal */
#tmOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
}
#tmModal {
    width: 920px;
    max-width: calc(100vw - 40px);
    height: 640px;
    max-height: calc(100vh - 40px);
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 32px 100px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: tmIn 220ms cubic-bezier(0.34,1.2,0.64,1);
}
@keyframes tmIn {
    from { opacity: 0; transform: scale(0.95) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
#tmHeader {
    height: 56px;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    flex-shrink: 0;
}
#tmSearchWrap {
    position: relative;
    flex: 1;
    max-width: 260px;
}
#tmSearchWrap svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}
#tmSearchInput {
    width: 100%;
    padding: 8px 12px 8px 34px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    color: #111827;
    outline: none;
    background: #F9FAFB;
    box-sizing: border-box;
}
#tmSearchInput:focus { border-color: #D1D5DB; background: white; }
#tmSearchInput::placeholder { color: #9CA3AF; }
#tmHeaderTitle {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
}
#tmCloseBtn {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    flex-shrink: 0;
}
#tmCloseBtn:hover { background: #F3F4F6; color: #111827; }
#tmBody {
    display: flex;
    flex: 1;
    overflow: hidden;
}
#tmSidebar {
    width: 196px;
    border-right: 1px solid #F3F4F6;
    overflow-y: auto;
    padding: 12px 8px;
    flex-shrink: 0;
    background: #FAFAFA;
}
#tmSidebar::-webkit-scrollbar { width: 0; }
.tm-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    padding: 4px 10px 8px;
}
.tm-cat-item {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    transition: all 140ms;
}
.tm-cat-item:hover { background: #F3F4F6; }
.tm-cat-item.active { background: #111827; color: white; font-weight: 600; }
.tm-cat-item .tm-cat-ic {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tm-cat-item.active .tm-cat-ic { background: rgba(255,255,255,0.15); }
.tm-cat-item .tm-cat-ic svg { color: #6B7280; }
.tm-cat-item.active .tm-cat-ic svg { color: white; }
#tmContent {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
}
#tmContent::-webkit-scrollbar { width: 6px; }
#tmContent::-webkit-scrollbar-track { background: transparent; }
#tmContent::-webkit-scrollbar-thumb { background: #E5E7EB; border-radius: 3px; }
.tm-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    margin-top: 24px;
}
.tm-section-title:first-child { margin-top: 0; }
.tm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 14px;
    margin-bottom: 8px;
}
.tm-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 180ms ease;
    background: white;
}
.tm-card:hover {
    border-color: #111827;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.tm-card-vis {
    height: 130px;
    position: relative;
    overflow: hidden;
}
.tm-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 180ms;
}
.tm-card:hover .tm-card-overlay { opacity: 1; }
.tm-card-use-btn {
    background: white;
    color: #111827;
    border: none;
    border-radius: 7px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    pointer-events: none;
}
.tm-card-info {
    padding: 10px 12px;
    background: white;
}
.tm-card-title {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 2px;
}
.tm-card-sub {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.35;
}
@media (max-width: 768px) {
    #tmModal { width: 100%; height: 100%; max-width: 100%; max-height: 100%; border-radius: 0; }
    #tmSidebar { width: 160px; }
}
@media (max-width: 600px) {
    #tmSidebar { display: none; }
}


/* Auth Modal */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.auth-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.auth-modal-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    width: 420px;
    max-width: 90vw;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}
.auth-modal-overlay.open .auth-modal-card {
    transform: scale(1);
}
.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}
.auth-modal-close:hover { color: #1D1D1F; }
.auth-modal-logo {
    width: 28px;
    height: 28px;
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 20px;
}
.auth-modal-logo span {
    width: 100%;
    aspect-ratio: 1;
    background: #1D1D1F;
    border-radius: 1px;
}
.auth-modal-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #9CA3AF;
    margin: 0 0 4px;
}
.auth-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1D1D1F;
    margin: 0 0 28px;
}
.auth-modal-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font-sans) !important;
    margin-bottom: 10px;
}
.auth-modal-btn-login:hover { background: #F9FAFB; border-color: #1D1D1F; }
.auth-modal-btn-login svg { width: 16px; height: 16px; flex-shrink: 0; }
.auth-modal-btn-email {
    display: block;
    width: 100%;
    padding: 14px;
    background: #1D1D1F;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    font-family: var(--font-sans) !important;
}
.auth-modal-btn-email:hover { background: #374151; }
.auth-modal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0;
    font-size: 11px;
    font-weight: 500;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.auth-modal-divider::before,
.auth-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}
.auth-modal-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.auth-modal-btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1D1D1F;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}
.auth-modal-btn-social:hover {
    background: #F9FAFB;
    border-color: #1D1D1F;
}
.auth-modal-btn-social svg { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.auth-modal-terms {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 16px;
    line-height: 1.5;
}
.auth-modal-terms a {
    color: #9CA3AF;
    text-decoration: underline;
}
.auth-modal-terms a:hover { color: #374151; }

/* Responsive */
/* Floating prompt bubbles are positioned at percentage offsets across a
 * wide hero with white-space:nowrap labels — under ~1024px they collide
 * and crowd the chatbox. Hide the whole decorative layer on tablets and
 * phones; the title + chatbox + action buttons stand on their own. */
@media (max-width: 1024px) {
    .hero-bubbles { display: none; }
}

@media (max-width: 768px) {
    .hero-v2 { min-height: auto; padding-top: 80px; padding-bottom: 40px; }
    .hero-v2-title { font-size: clamp(32px, 8vw, 48px); }
    .hero-v2-input-bar { padding: 16px 16px 12px 16px; }
    .hero-v2-chips { gap: 6px; }
    .hero-v2-chip { padding: 6px 12px; font-size: 12px; }
    .auth-modal-card { padding: 28px 24px; }
}
