        /* ===== RESET & BASE ===== */
        :root {
            --gradient-primary: linear-gradient(135deg, #950740, #C3073F);
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Quicksand', sans-serif;
            background: #1A1A1D; /* Charcoal background */
            color: #E2E2E5; /* Light readable grey text */
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar { width: 8px; height: 8px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #555; }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: #FFFFFF; /* Bright white headings */
            line-height: 1.2;
        }

        /* ===== UTILITIES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding { padding: 120px 0; }
        .section-alt { background: #141416; position: relative; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 100px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 8px;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #950740, #C3073F);
            color: #ffffff;
            /* box-shadow removed */
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            /* box-shadow removed */
            background: linear-gradient(135deg, #C3073F, #950740);
        }

        .btn-outline {
            background: #222226;
            color: #C3073F;
            border: 1px solid #4E4E50;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        .btn-outline:hover {
            background: #2b2b30;
            border-color: #C3073F;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: clamp(32px, 5vw, 44px);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: #9E9EA5;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

        .accent-text {
            color: #C3073F;
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            background: rgba(26, 26, 29, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            border-bottom: 1px solid #38383D;
        }

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

        .nav-logo {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: #E2E2E5;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #C3073F;
        }

        .nav-cta {
            padding: 10px 24px !important;
            font-size: 15px !important;
            box-shadow: 0 4px 10px rgba(195, 7, 63, 0.3) !important;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 15% 50%, rgba(195, 7, 63, 0.08) 0%, #0F0F13 60%);
        }

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

        .hero-text h1 {
            font-size: clamp(40px, 5vw, 64px);
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .hero-text p {
            font-size: 18px;
            color: #9E9EA5;
            margin-bottom: 40px;
            max-width: 480px;
            font-weight: 500;
        }

        .hero-buttons { position: relative; z-index: 1000;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #C3073F;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            color: #9E9EA5;
            font-weight: 600;
        }

        /* ===== MESSENGER DESKTOP MOCKUP (GLASS THEME) ===== */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 100%;
        }

        .messenger-mockup {
            width: 100%;
            max-width: 680px;
            height: 520px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 40px rgba(195, 7, 63, 0.15);
            display: flex;
            overflow: hidden;
            position: relative;
        }

        @keyframes phoneMockupEntrance {
            0% { opacity: 0; transform: scale(0.75); }
            100% { opacity: 1; transform: scale(0.9); }
        }
        
        /* MacBook Style Buttons (Top Right of Mockup) */
        .mac-buttons-global {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 6px;
            z-index: 50;
        }

        /* SIDEBAR (Left) */
        .ms-sidebar {
            width: 38%;
            background: rgba(0, 0, 0, 0.2);
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .ms-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            background: transparent;
            z-index: 10;
        }
        
                        
        .ms-contacts {
            flex: 1;
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            overflow: hidden;
        }

        .ms-contact {
            position: relative;
            display: flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 12px;
            background: transparent;
            height: 44px;
            opacity: 0;
            filter: blur(12px);
            transform: translateY(30px);
        }
        
        .ms-contact:not(:last-child)::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 54px;
            right: 12px;
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
        }
        
        .ms-contact.c-1 { animation: blurCascade1 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        .ms-contact.c-2 { animation: blurCascade2 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        .ms-contact.c-3 { animation: blurCascade3 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        
        /* Skeleton Layer */
        .ms-skeleton {
            position: absolute; left: 12px; top: 6px; right: 12px; bottom: 6px;
            display: flex; align-items: center; gap: 10px;
        }
        
        .c-1 .ms-skeleton { animation: hideSkeleton1 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        .c-2 .ms-skeleton { animation: hideSkeleton2 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        .c-3 .ms-skeleton { animation: hideSkeleton3 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }

        .sk-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); flex-shrink: 0; }
        .sk-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; justify-content: center; }
        .sk-line { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; }
        .sk-line.w-short { width: 40%; }
        .sk-line.w-long { width: 70%; }

        /* Real Content Layer */
        .ms-real {
            position: absolute; left: 12px; top: 6px; right: 12px; bottom: 6px;
            display: flex; align-items: center; gap: 10px;
            opacity: 0;
        }
        
        .c-1 .ms-real { animation: showReal1 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        .c-2 .ms-real { animation: showReal2 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }
        .c-3 .ms-real { animation: showReal3 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1); }

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

        .ms-contact-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ms-name {
            font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 2px;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }

        .ms-status-wrap {
            position: relative;
            height: 16px;
        }

        .ms-status-typing {
            font-size: 11px; color: #b0b0c0; font-style: italic;
            position: absolute; left: 0; top: 0;
            opacity: 1;
        }
        
        .c-1 .ms-status-typing { animation: hideTyping1 12s infinite; }
        .c-2 .ms-status-typing { animation: hideTyping2 12s infinite; }
        .c-3 .ms-status-typing { animation: hideTyping3 12s infinite; }

        .ms-status-replied {
            font-size: 11px; color: var(--text-heading); font-weight: 600;
            position: absolute; left: 0; top: 0;
            display: flex; align-items: center; gap: 4px;
            opacity: 0;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        
        .c-1 .ms-status-replied { animation: showReply1 12s infinite; }
        .c-2 .ms-status-replied { animation: showReply2 12s infinite; }
        .c-3 .ms-status-replied { animation: showReply3 12s infinite; }

        .ms-status-replied svg { stroke: #C3073F; width: 12px; height: 12px; flex-shrink: 0; }
        
        /* CHAT AREA (Right) */
        .ms-chat {
            width: 62%;
            display: flex;
            flex-direction: column;
            background: transparent;
            position: relative;
        }
        
        .ms-chat-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            background: transparent;
        }

        .ms-chat-body {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ms-input {
            padding: 16px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #b0b0c0;
            font-size: 13px;
            display: flex; align-items: center; justify-content: space-between;
        }

        /* Bubbles in Chat */
        .mc-bubble {
            font-size: 13px; padding: 10px 14px; border-radius: 14px;
            line-height: 1.4; font-weight: 500; max-width: 85%;
            animation: fadeInChat 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .mc-client {
            background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.05);
            align-self: flex-start; border-bottom-left-radius: 4px;
        }

        .mc-bot {
            background: var(--gradient-primary); color: #fff;
            align-self: flex-end; border-bottom-right-radius: 4px;
            box-shadow: 0 4px 12px rgba(195, 7, 63, 0.3);
            opacity: 0; transform: scale(0.9) translateY(10px);
            animation: botChatReply 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* Overlay Mass Toast */
        .ms-overlay-toast {
            position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
            background: rgba(195, 7, 63, 0.95); backdrop-filter: blur(8px);
            color: white; font-weight: 600; font-size: 13px;
            padding: 10px 20px; border-radius: 20px;
            box-shadow: 0 8px 24px rgba(195, 7, 63, 0.6);
            opacity: 0; pointer-events: none;
            display: flex; align-items: center; gap: 8px;
            animation: massToast 12s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
            white-space: nowrap;
            z-index: 20;
        }

        
        /* --- JS Demo Chat Styles --- */
        .demo-msg {
            font-size: 13px; padding: 10px 14px; border-radius: 14px;
            line-height: 1.4; font-weight: 500; max-width: 85%;
            opacity: 0;
            transform: translateY(10px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .demo-msg.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .client-msg {
            background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.05);
            align-self: flex-start; border-bottom-left-radius: 4px;
        }
        .bot-msg {
            background: var(--gradient-primary); color: #fff;
            align-self: flex-end; border-bottom-right-radius: 4px;
            box-shadow: 0 4px 12px rgba(195, 7, 63, 0.3);
        }
        .typing-indicator {
            display: flex; align-items: center; gap: 4px; padding: 10px 14px;
            background: rgba(255,255,255,0.08); color: #b0b0c0;
            border-radius: 14px; border-bottom-left-radius: 4px; align-self: flex-start;
        }
        .typing-dot {
            width: 4px; height: 4px; border-radius: 50%; background: #b0b0c0;
            animation: typing 1.4s infinite;
        }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes typing {
            0%, 100% { transform: translateY(0); opacity: 0.5; }
            50% { transform: translateY(-3px); opacity: 1; }
        }

        
        /* Counter Animation */
        @keyframes countUp {
            0%, 13.3% { content: "Повідомлення (1)"; }
            18.3%, 26.6% { content: "Повідомлення (4)"; }
            31.6%, 100% { content: "Повідомлення (10)"; }
        }

        /* ===== 12s TIMELINE KEYFRAMES ===== */
        


        /* Waterfall: C-1 */
        @keyframes blurCascade1 {
            0%, 1.6% { opacity: 0; filter: blur(12px); transform: translateY(30px) scale(0.95); }
            6.6%, 95.8% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
            97.5%, 100% { opacity: 0; filter: blur(8px); transform: translateY(-20px) scale(0.95); }
        }
        @keyframes hideSkeleton1 {
            0%, 6.6% { opacity: 1; transform: scale(1); }
            8.3%, 100% { opacity: 0; transform: scale(0.95); }
        }
        @keyframes showReal1 {
            0%, 6.6% { opacity: 0; transform: scale(0.95); }
            8.3%, 95.8% { opacity: 1; transform: scale(1); }
            97.5%, 100% { opacity: 0; }
        }
        @keyframes hideTyping1 {
            0%, 8.3% { opacity: 1; transform: scale(1); }
            10.0%, 100% { opacity: 0; transform: scale(0.9); }
        }
        @keyframes showReply1 {
            0%, 8.3% { opacity: 0; transform: scale(0.9); }
            10.0%, 95.8% { opacity: 1; transform: scale(1); color: #fff; }
            97.5%, 100% { opacity: 0; }
        }

        /* Waterfall: C-2 */
        @keyframes blurCascade2 {
            0%, 13.3% { opacity: 0; filter: blur(12px); transform: translateY(30px) scale(0.95); }
            18.3%, 95.8% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
            97.5%, 100% { opacity: 0; filter: blur(8px); transform: translateY(-20px) scale(0.95); }
        }
        @keyframes hideSkeleton2 {
            0%, 20.0% { opacity: 1; transform: scale(1); }
            21.6%, 100% { opacity: 0; transform: scale(0.95); }
        }
        @keyframes showReal2 {
            0%, 20.0% { opacity: 0; transform: scale(0.95); }
            21.6%, 95.8% { opacity: 1; transform: scale(1); }
            97.5%, 100% { opacity: 0; }
        }
        @keyframes hideTyping2 {
            0%, 21.6% { opacity: 1; transform: scale(1); }
            23.3%, 100% { opacity: 0; transform: scale(0.9); }
        }
        @keyframes showReply2 {
            0%, 21.6% { opacity: 0; transform: scale(0.9); }
            23.3%, 95.8% { opacity: 1; transform: scale(1); color: #fff; }
            97.5%, 100% { opacity: 0; }
        }

        /* Waterfall: C-3 */
        @keyframes blurCascade3 {
            0%, 26.6% { opacity: 0; filter: blur(12px); transform: translateY(30px) scale(0.95); }
            31.6%, 95.8% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
            97.5%, 100% { opacity: 0; filter: blur(8px); transform: translateY(-20px) scale(0.95); }
        }
        @keyframes hideSkeleton3 {
            0%, 33.3% { opacity: 1; transform: scale(1); }
            35.0%, 100% { opacity: 0; transform: scale(0.95); }
        }
        @keyframes showReal3 {
            0%, 33.3% { opacity: 0; transform: scale(0.95); }
            35.0%, 95.8% { opacity: 1; transform: scale(1); }
            97.5%, 100% { opacity: 0; }
        }
        @keyframes hideTyping3 {
            0%, 35.0% { opacity: 1; transform: scale(1); }
            36.6%, 100% { opacity: 0; transform: scale(0.9); }
        }
        @keyframes showReply3 {
            0%, 35.0% { opacity: 0; transform: scale(0.9); }
            36.6%, 95.8% { opacity: 1; transform: scale(1); color: #fff; }
            97.5%, 100% { opacity: 0; }
        }

        /* Right side chat */
        @keyframes fadeInChat {
            0%, 1.6% { opacity: 0; transform: translateY(15px) scale(0.98); }
            8.3%, 95.8% { opacity: 1; transform: translateY(0) scale(1); }
            97.5%, 100% { opacity: 0; }
        }
        @keyframes botChatReply {
            0%, 10.0% { opacity: 0; transform: scale(0.9) translateY(10px); }
            11.6%, 95.8% { opacity: 1; transform: scale(1) translateY(0); }
            97.5%, 100% { opacity: 0; transform: scale(0.9) translateY(-10px); }
        }
        
        @keyframes massToast {
            0%, 37.5% { opacity: 0; transform: translate(-50%, 20px) scale(0.9); }
            40.8%, 95.8% { opacity: 1; transform: translate(-50%, 0) scale(1); }
            97.5%, 100% { opacity: 0; transform: translate(-50%, -10px) scale(0.9); }
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            background: #222226;
            border: 1px solid #38383D;
            border-radius: 24px;
            padding: 40px 32px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            text-align: center;
        }

        .feature-card:hover {
            border-color: #C3073F;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(195, 7, 63, 0.2);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: rgba(195, 7, 63, 0.12);
            border: 1px solid rgba(195, 7, 63, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 8px 20px rgba(195, 7, 63, 0.15);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: rgba(195, 7, 63, 0.25);
            border-color: #C3073F;
            transform: scale(1.08);
            box-shadow: 0 10px 25px rgba(195, 7, 63, 0.3);
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #FFFFFF;
        }

        .feature-card p {
            font-size: 15px;
            color: #9E9EA5;
            font-weight: 500;
        }

        /* ===== HOW IT WORKS ===== */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .step-card {
            background: #222226;
            border: 1px solid #38383D;
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .step-number {
            width: 48px; height: 48px;
            background: linear-gradient(135deg, #950740, #C3073F);
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; font-weight: 700;
            margin: 0 auto 24px;
            box-shadow: 0 4px 10px rgba(195, 7, 63, 0.4);
        }

        .step-card h3 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .step-card p {
            font-size: 15px;
            color: #9E9EA5;
            font-weight: 500;
        }

        /* ===== PRICING ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .pricing-card {
            background: #222226;
            border: 1px solid #38383D;
            border-radius: 24px;
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .pricing-card:hover { transform: translateY(-4px); }

        .pricing-card.popular {
            border-color: #C3073F;
            background: #25181c;
            position: relative;
            box-shadow: 0 10px 30px rgba(195, 7, 63, 0.2);
        }

        .pricing-card.popular::before {
            content: 'Найпопулярніший';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #C3073F;
            color: white;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-plan-name {
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 700;
            color: #C3073F;
            margin-bottom: 12px;
        }

        .pricing-price span {
            font-size: 16px;
            color: #9E9EA5;
            font-weight: 600;
        }

        .pricing-desc {
            font-size: 15px;
            color: #9E9EA5;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid #38383D;
            font-weight: 500;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
            flex: 1;
        }

        .pricing-features li {
            font-size: 15px;
            color: #E2E2E5;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        .pricing-features li::before {
            content: '✓';
            color: #C3073F;
            font-size: 14px;
            font-weight: bold;
        }

        .pricing-card .btn { width: 100%; margin-top: auto; }

        .pricing-features li.excluded {
            color: #6e6e73;
            opacity: 0.6;
        }
        
        .pricing-features li.excluded::before {
            content: '✕';
            color: #ef4444;
            font-size: 14px;
            font-weight: 700;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #222226;
            border: 1px solid #38383D;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 24px;
            background: none;
            border: none;
            font-family: 'Quicksand', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-icon {
            font-size: 24px;
            color: #C3073F;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 24px;
            font-size: 15px;
            color: #9E9EA5;
            line-height: 1.6;
            font-weight: 500;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #141416;
            border-top: 1px solid #38383D;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 64px;
            margin-bottom: 64px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            color: #9E9EA5;
            text-decoration: none;
            font-size: 15px;
            margin-bottom: 12px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-col a:hover { color: #C3073F; }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid #38383D;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #9E9EA5;
            font-weight: 500;
        }

        /* ===== RESPONSIVE ===== */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }
        .nav-hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #FFFFFF;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        @media (max-width: 992px) {
            .nav-hamburger { display: flex; }
            .nav-links {
                position: fixed;
                top: 0; left: 0; right: 0;
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 100px 24px 40px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                opacity: 0; pointer-events: none;
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1; pointer-events: auto;
            }
            .nav-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            .nav-hamburger.active span:nth-child(2) { opacity: 0; }
            .nav-hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text h1 { font-size: 36px; }
            .hero-text p { margin: 0 auto 40px; font-size: 16px; }
            .hero-buttons { position: relative; z-index: 1000; justify-content: center; }
            .hero-stats { justify-content: center; gap: 20px; }
            .stat-value { font-size: 24px; }
            .section-padding { padding: 60px 0; }
            .features-grid, .pricing-grid, .steps-container { grid-template-columns: 1fr; gap: 24px; }
            .pricing-card.popular { order: -1; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .section-header h2 { font-size: 28px; }
        }
        .demo-page {
            padding-top: 100px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 15% 50%, rgba(195, 7, 63, 0.08) 0%, #0F0F13 60%);
        }
        .demo-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px 24px;
        }
        
        @media (max-width: 992px) {
            .demo-container {
                grid-template-columns: 1fr;
            }
        }

        /* Config Panel */
        .config-panel {
            background: rgba(26, 26, 29, 0.6);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 32px;
            backdrop-filter: blur(20px);
        }
        .config-title {
            font-size: 28px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
        }
        .config-desc {
            color: #9E9EA5;
            font-size: 15px;
            margin-bottom: 32px;
        }
        .form-group {
            margin-bottom: 24px;
        }
        .form-label {
            display: block;
            color: #E2E2E5;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .form-select, .form-input {
            width: 100%;
            background: rgba(10, 10, 15, 0.5);
            border: 1px solid rgba(255,255,255,0.1);
            color: #FFFFFF;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: all 0.2s;
        }
        .form-select:focus, .form-input:focus {
            border-color: #C3073F;
            box-shadow: 0 0 0 2px rgba(195, 7, 63, 0.2);
        }
        .btn-reset {
            width: 100%;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            padding: 14px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 16px;
        }
        .btn-reset:hover {
            background: rgba(255,255,255,0.05);
            border-color: #fff;
        }

        /* Chat Panel */
        .chat-panel {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            position: relative;
        }
        .dm-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            background: transparent;
        }
        .dm-header-info { display: flex; align-items: center; gap: 12px; }
        .dm-avatar { width: 40px; height: 40px; border-radius: 50%; background: #C3073F; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 20px; }
        .dm-body {
            flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px;
        }
        .dm-body::-webkit-scrollbar { width: 4px; }
        .dm-body::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        .dm-input-area {
            padding: 16px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex; align-items: center; justify-content: space-between;
            background: transparent;
        }
        .dm-input {
            flex: 1; background: transparent; border: none;
            color: #b0b0c0; font-family: inherit; font-size: 14px;
            outline: none; padding: 0;
        }
        .dm-input::placeholder { color: #b0b0c0; }
        .dm-send {
            background: transparent; border: none;
            display: flex; align-items: center; justify-content: center; color: #b0b0c0; cursor: pointer;
            transition: color 0.2s; padding: 4px;
        }
        .dm-send:hover { color: #fff; }
        .dm-send:hover { transform: scale(1.05); }
        .dm-send:active { transform: scale(0.95); }
        .dm-msg { max-width: 85%; padding: 14px 18px; border-radius: 18px; font-size: 15px; line-height: 1.4; animation: slideUpMsg 0.3s forwards; }
        .dm-bot { background: rgba(255,255,255,0.1); color: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
        .dm-client { background: #C3073F; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
        @keyframes slideUpMsg { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        
        .typing-indicator { display: flex; gap: 4px; padding: 14px 18px; align-items: center; height: 48px; }
        .typing-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: typing 1.4s infinite ease-in-out; opacity: 0.5; }
        .typing-dot:nth-child(1) { animation-delay: 0s; }
        .typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .typing-dot:nth-child(3) { animation-delay: 0.4s; }
        @keyframes typing { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(-4px); opacity: 1; } }

/* Phone Mode Demo Styles */
.phone-mode.laptop-3d-wrapper {
    max-width: 320px !important;
    margin: 0 auto;
    animation: phoneMockupEntrance 2s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone-mode .laptop-3d-screen {
    padding-top: 195%;
    border-width: 10px;
    border-radius: 40px;
}
.phone-mode .v2-sidebar {
    display: none !important;
}
.phone-mode .messenger-mockup {
    border-radius: 30px;
}
/* Typing dots animation override since we replaced dm-msg with v2-bubble */
.typing-dots {
    display: flex; gap: 4px; padding: 4px 0;
}
.typing-dots .dot {
    width: 6px; height: 6px; border-radius: 50%; background: #C3073F;
    animation: typing 1.4s infinite;
}
.typing-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dots .dot:nth-child(3) { animation-delay: 0.4s; }

/* Make home indicator slightly wider than default tablet, but not too wide */
.phone-mode .laptop-3d-screen::before {
    width: 110px !important;
    background: rgba(255,255,255,0.4) !important;
}




/* NEW DEMO CONFIG STYLES */
.demo-field {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}
.demo-field:focus-within {
    border-color: #C3073F;
}
.demo-field:has(.custom-select-wrapper.open) {
    position: relative;
    z-index: 999;
}
.demo-field-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(195, 7, 63, 0.15);
    color: #C3073F;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.demo-field-icon svg { width: 20px; height: 20px; stroke-width: 2px; }
.demo-field-content {
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
}
.demo-field-label {
    font-size: 12px; color: #9E9EA5; margin-bottom: 2px;
    display: flex; justify-content: space-between; align-items: center;
}
.demo-field-input {
    background: transparent; border: none; color: #fff; font-size: 15px; font-weight: 500;
    width: 100%; outline: none; padding: 0; font-family: inherit;
    appearance: none; -webkit-appearance: none; cursor: pointer;
}
.demo-field select.demo-field-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239E9EA5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}
.demo-field select.demo-field-input option {
    background: #1A1A1D;
    color: #fff;
}
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.demo-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.demo-toggle input { opacity: 0; width: 0; height: 0; }
.demo-toggle .slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1); transition: .3s; border-radius: 24px;
}
.demo-toggle .slider:before {
    position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
    background-color: white; transition: .3s; border-radius: 50%;
}
.demo-toggle input:checked + .slider {
    background: linear-gradient(135deg, #950740, #C3073F);
}
.demo-toggle input:checked + .slider:before {
    transform: translateX(20px);
}

.demo-features-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px auto 40px;
    padding: 24px 32px;
    background: rgba(26, 26, 29, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    width: 100%;
    max-width: 1100px;
}
.df-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.df-icon {
    color: #C3073F;
}
.df-text h4 {
    font-size: 15px; margin-bottom: 2px; color: #fff; font-weight: 700;
}
.df-text p {
    font-size: 13px; color: #9E9EA5; margin: 0; font-weight: 500;
}
@media (max-width: 992px) {
    .demo-features-banner { flex-direction: row; justify-content: space-around; }
}
@media (max-width: 600px) {
    .demo-features-banner { flex-direction: column; align-items: flex-start; }
}

/* Fix button tap highlights and active states */
.btn, .demo-field-input, .demo-toggle {
    -webkit-tap-highlight-color: transparent;
}
.btn:active {
    transform: scale(0.96) !important;
}
.demo-field:active {
    transform: scale(0.99);
}
.demo-field {
    transition: all 0.2s ease;
    user-select: none;
}

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-top: 4px;
    user-select: none;
}
.custom-select-wrapper.open {
    z-index: 999;
}
.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.custom-select-arrow {
    color: #9E9EA5;
    transition: transform 0.3s ease;
}
.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px; /* Offset for padding in demo-field */
    width: calc(100% + 32px); /* Full width of demo-field */
    background: #1A1A1D;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}
.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select-option {
    padding: 12px 16px;
    color: #9E9EA5;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.custom-select-option:hover {
    background: rgba(195, 7, 63, 0.1);
    color: #fff;
}
.custom-select-option.selected {
    background: rgba(195, 7, 63, 0.2);
    color: #C3073F;
}

/* Time Picker Styles */
.time-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.demo-time-input {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
    color-scheme: dark;
}
.demo-time-input:focus {
    border-color: #C3073F;
    background: #1A1A1D;
    color: #fff;
    color-scheme: dark;
}
/* For Webkit to style the time input */
.demo-time-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}
.demo-time-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Time Slots for Demo */
.demo-time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}
.demo-time-slot {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 13px;
    font-weight: 500;
    color: #9E9EA5;
    user-select: none;
}
.demo-time-slot:hover {
    background: rgba(255,255,255,0.1);
}
.demo-time-slot.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
