:root {
    --bg-color: #060913;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #7c3aed; /* vibrant deep purple */
    --primary-hover: #6d28d9;
    --secondary: #1e293b;
    --secondary-hover: #334155;
    --accent: #06b6d4; /* cyan for contrast */
    --accent-hover: #0891b2;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --neon-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .badge, .ticker-item {
    font-family: 'Unbounded', sans-serif;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.relative { position: relative; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Dynamic Backgrounds */
.background-effects {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.5;
    animation: moveBlobs 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 { width: 500px; height: 500px; background: var(--primary); top: -200px; left: -100px; }
.blob-2 { width: 600px; height: 600px; background: var(--accent); opacity: 0.3; bottom: -300px; right: -100px; animation-delay: -5s; }
.blob-3 { width: 400px; height: 400px; background: #db2777; top: 40%; left: 50%; animation-delay: -10s; }

@keyframes moveBlobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.2); }
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.glow-border {
    position: relative;
}
.glow-border::before {
    content: ""; position: absolute; inset: -1px; border-radius: 25px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--accent), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* Typography Details */
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 24px; font-weight: 900;}
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; font-weight: 700;}
h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 700;}

.highlight { color: var(--accent); }
.highlight-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text; color: transparent;
}

.subtitle {
    font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif;
    border-radius: 99px; text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); gap: 10px;
}

.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6); }

.btn-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-large { padding: 18px 48px; font-size: 1.2rem; }

.cta-magic {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    position: relative; z-index: 1; overflow: hidden;
}
.cta-magic::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s; z-index: -1;
}
.cta-magic:hover::after { left: 100%; }

/* Header */
.header {
    padding: 20px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    transition: 0.3s background, 0.3s backdrop-filter;
}
.header.scrolled {
    background: rgba(6, 9, 19, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--glass-border);
}

.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; }
.desktop-nav { display: flex; gap: 32px; }
.desktop-nav a {
    color: var(--text-color); text-decoration: none; font-weight: 500; font-size: 0.95rem;
    position: relative; opacity: 0.8; transition: 0.3s;
}
.desktop-nav a:hover { opacity: 1; color: var(--accent); }

/* Hero */
.hero { padding: 180px 0 100px; min-height: 100vh; display: flex; align-items: center; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124, 58, 237, 0.1); border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 16px; border-radius: 99px; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 30px; color: #a78bfa;
}
.pulse-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: pulse 2s infinite; }

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.guarantee { font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* Floating 3D Elements */
.floating-elements { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; pointer-events: none;}
.float-item {
    position: absolute; padding: 15px 25px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; font-family: 'Unbounded', sans-serif; font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); animation: float 6s ease-in-out infinite;
}
.float-item.vk { top: 10%; right: 10%; color: #0077FF; animation-delay: 0s; transform: rotate(5deg); }
.float-item.ya { top: 45%; right: 40%; color: #FF0000; animation-delay: 1s; transform: rotate(-10deg); }
.float-item.tg { bottom: 10%; right: 15%; color: #229ED9; animation-delay: 2s; transform: rotate(15deg); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 5deg)); }
}

/* Sections padding */
.section-padding { padding: 120px 0; }
.section-head { margin-bottom: 60px; }
.section-desc { font-size: 1.2rem; color: var(--text-muted); margin-top: 16px; max-width: 600px; margin-inline: auto; }

/* Ticker */
.scrolling-ticker { padding: 40px 0; background: rgba(255,255,255,0.02); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.ticker-wrapper { display: flex; width: max-content; }
.ticker-track { display: flex; align-items: center; gap: 40px; animation: ticker 25s linear infinite; }
.ticker-item { font-size: 1.5rem; font-weight: 700; color: rgba(255,255,255,0.7); white-space: nowrap; }
.ticker-item.star { color: var(--accent); }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* Bento Grid Solutions */
.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; auto-rows: 250px;
}
.bento-item { padding: 32px; display: flex; flex-direction: column; justify-content: center; transition: transform 0.3s; }
.bento-item.wide { grid-column: span 2; }
.bento-icon { font-size: 2.5rem; margin-bottom: 16px; }
.bento-item p { color: var(--text-muted); }

/* Audience */
.container-flex { display: flex; align-items: center; gap: 64px; }
.audience-info { flex: 1; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.check-list li {
    display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 12px;
    border-left: 3px solid transparent;
}
.check-list li.active {
    background: rgba(124, 58, 237, 0.08);
    border-left-color: var(--primary);
    transform: translateX(6px);
}
.check-list span { color: var(--accent); font-weight: 800; transition: color 0.3s; }
.check-list li.active span { color: var(--primary); }
.check-list strong { color: white; }

.audience-visual { flex: 1; position: relative; height: 400px; perspective: 1000px; }
.stacked-cards { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.stacked-card {
    position: absolute; width: 80%; padding: 40px; font-size: 1.5rem; font-weight: 700; text-align: center;
    transition: 0.5s; cursor: pointer;
}
.card-1 { top: 0; left: 0; z-index: 3; transform: translateZ(50px); background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(15, 23, 42, 0.8));}
.card-2 { top: 40px; left: 20px; z-index: 2; transform: translateZ(0px) scale(0.95); opacity: 0.8; }
.card-3 { top: 80px; left: 40px; z-index: 1; transform: translateZ(-50px) scale(0.9); opacity: 0.6; }

.stacked-cards:hover .card-1 { transform: translateZ(80px) translateY(-10px); }
.stacked-cards:hover .card-2 { transform: translateZ(40px) translateY(-5px); opacity: 1;}
.stacked-cards:hover .card-3 { transform: translateZ(0px) translateY(0); opacity: 1;}

/* Geography */
.geo-tags-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.geo-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; border-radius: 99px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem; font-weight: 600; transition: 0.3s; cursor: default;
}
.geo-tag:hover { background: var(--primary); transform: scale(1.05); }
.geo-flag {
    display: inline-block;
    width: 24px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    object-fit: cover;
    flex-shrink: 0;
}

/* Timeline Pipeline */
.steps-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-timeline::before {
    content: ''; position: absolute; top: 45px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent)); z-index: 0; opacity: 0.5;
}
@media (max-width: 900px) { .steps-timeline::before { display: none; } }
.time-step { padding: 40px 30px; text-align: center; position: relative; z-index: 1; transition: 0.3s;}
.time-step:hover { transform: translateY(-10px); border-color: var(--accent); }
.step-num { width: 60px; height: 60px; background: var(--bg-color); border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-family: 'Unbounded'; margin: 0 auto 24px; font-weight: 900; }

/* Final CTA */
.mega-glow { box-shadow: 0 0 80px rgba(124, 58, 237, 0.2); border: 1px solid rgba(124, 58, 237, 0.4); padding: 80px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; }
.cta-content { flex: 1.2; min-width: 300px; }
.cta-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; max-width: 500px; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: nowrap; }
.cta-buttons .btn {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 1.05rem;
}
@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons .btn {
        width: 100%;
    }
}
.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    flex: 1.5;
    width: 100%;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}
.stat-num-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.stat-num { font-size: 2.2rem; font-family: 'Unbounded', sans-serif; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; font-weight: 600; }

/* Pulse Animation */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7); } 70% { box-shadow: 0 0 0 20px rgba(124, 58, 237, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); } }
.pulse { animation: pulse 2s infinite; }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 80px 0 40px; margin-top: 50px; background: rgba(0,0,0,0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-col h4 { margin-bottom: 20px; font-size: 1.2rem; }
.foot-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; transition: 0.3s; }
.foot-col a:hover { color: var(--text-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; text-align: center; color: var(--text-muted); }

/* Floating TG Button */
.floating-tg {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; border-radius: 50%;
    background: #229ED9; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.4); z-index: 1000; transition: 0.3s; cursor: pointer;
    animation: bounce 2s infinite;
}
.floating-tg:hover { transform: scale(1.1); background: #1b85b8; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-15px); } 60% { transform: translateY(-7px); } }

/* --- NEW BLOCKS: Demo, Reviews, FAQ --- */

/* Pure CSS Phone Simulator */
.demo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.mock-phone {
    width: 320px;
    height: 650px;
    background: #0b0f19;
    border-radius: 45px;
    border: 12px solid #1e293b;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.1);
}
.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 25px;
    background: #1e293b;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
.phone-screen {
    width: 100%; height: 100%;
    position: relative;
    background: var(--bg-color);
}
.sim-view {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column;
    opacity: 0; transform: translateX(20px);
    transition: 0.5s ease;
    pointer-events: none;
}
.sim-view.active {
    opacity: 1; transform: translateX(0);
    pointer-events: auto;
}
.sim-head {
    padding: 40px 20px 15px;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
}
.sim-body {
    padding: 20px;
    display: flex; flex-direction: column; flex: 1;
}
.sim-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}
.sim-input {
    background: rgba(255,255,255,0.05);
    padding: 15px; border-radius: 12px;
    font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.1);
}
.sim-btn {
    background: var(--primary);
    color: white; padding: 15px;
    border-radius: 12px; font-weight: bold;
    text-align: center;
}
.sim-qr {
    width: 180px; height: 180px;
    background: white; border-radius: 16px;
    margin: 20px 0; position: relative;
    padding: 10px;
}
.qr-pattern {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #000 25%, transparent 25%) -10px 0, linear-gradient(225deg, #000 25%, transparent 25%) -10px 0, linear-gradient(315deg, #000 25%, transparent 25%), linear-gradient(45deg, #000 25%, transparent 25%); background-size: 20px 20px; background-color: #fff;
    opacity: 0.8;
}
.scan-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: #10b981; box-shadow: 0 0 15px #10b981;
    animation: simScan 2s infinite linear;
}
@keyframes simScan {
    0% { top: 10px; }
    50% { top: 170px; }
    100% { top: 10px; }
}
.sim-success-icon {
    width: 80px; height: 80px;
    background: #10b981; color: white; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 40px; margin-bottom: 20px;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Realistic Chat Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.review-card {
    display: flex; justify-content: center;
}
.tg-mockup, .wa-mockup {
    width: 100%; max-width: 360px;
    height: 480px;
    display: flex; flex-direction: column;
    border-radius: 20px; overflow: hidden;
    background: #0f172a; border: 1px solid var(--glass-border);
}
/* TG Style */
.tg-header {
    background: rgba(43, 82, 120, 0.3); padding: 15px;
    display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tg-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: #6366f1;
    display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 1.2rem;
}
.tg-info { flex: 1; }
.tg-name { font-weight: bold; font-size: 1rem; }
.tg-status { font-size: 0.8rem; color: #38bdf8; }
.tg-chat {
    flex: 1; padding: 15px; display: flex; flex-direction: column; gap: 12px;
    overflow-y: hidden;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
}
.tg-msg {
    max-width: 80%; padding: 10px 15px; border-radius: 15px; font-size: 0.95rem; line-height: 1.4;
    position: relative; animation: msgFade 0.3s ease-out;
}
@keyframes msgFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tg-msg.out {
    background: #2b5278; align-self: flex-end; border-bottom-right-radius: 4px;
}
.tg-msg.in {
    background: #1e293b; align-self: flex-start; border-bottom-left-radius: 4px;
}
.tg-reacted::after {
    content: "🔥 1"; position: absolute; bottom: -12px; right: 10px; background: #1e293b; padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; border: 1px solid rgba(255,255,255,0.1);
}

/* WhatsApp Style */
.wa-mockup { background: #111b21; }
.wa-header {
    background: #202c33; padding: 15px; display: flex; align-items: center; gap: 15px;
}
.wa-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: #00a884;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"%3E%3Cpath d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/%3E%3C/svg%3E');
    background-size: 70%; background-position: center; background-repeat: no-repeat;
}
.wa-info { flex: 1; }
.wa-name { font-weight: bold; font-size: 1rem; color: #e9edef; }
.wa-status { font-size: 0.8rem; color: #8696a0; }
.wa-chat {
    flex: 1; padding: 15px; display: flex; flex-direction: column; gap: 8px;
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0l20 20M20 0L0 20" stroke="%23ffffff" stroke-opacity="0.02" stroke-width="1"/%3E%3C/svg%3E');
}
.wa-msg {
    max-width: 80%; padding: 8px 12px; border-radius: 10px; font-size: 0.95rem; color: #e9edef; box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.wa-msg.out {
    background: #005c4b; align-self: flex-end; border-top-right-radius: 0;
}
.wa-msg.in {
    background: #202c33; align-self: flex-start; border-top-left-radius: 0;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}
.faq-item:hover {
    border-color: rgba(255,255,255,0.2);
}
.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-color);
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}
.faq-answer p {
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    opacity: 1;
}

/* ================================================
   NEW FEATURES — All 12 Conversion Blocks
   ================================================ */

/* STICKY BAR */
.sticky-bar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
    background: linear-gradient(90deg, rgba(124,58,237,0.95), rgba(6,182,212,0.95));
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; gap: 16px;
    padding: 10px 20px; font-size: 0.9rem; font-weight: 600;
    transition: transform 0.3s;
}
.sticky-bar-pulse {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    box-shadow: 0 0 10px #10b981; animation: pulse 2s infinite; flex-shrink: 0;
}
.sticky-bar-btn {
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
    padding: 4px 14px; border-radius: 99px; text-decoration: none; color: white;
    font-weight: 700; transition: 0.2s; white-space: nowrap;
}
.sticky-bar-btn:hover { background: rgba(255,255,255,0.35); }
.sticky-bar-close {
    background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer;
    position: absolute; right: 16px; opacity: 0.7; line-height: 1;
}
.sticky-bar-close:hover { opacity: 1; }
/* push header below sticky bar */
.header { top: 40px; }
body { padding-top: 40px; }

/* LIVE FEED */
.live-feed-container {
    position: fixed; bottom: 110px; left: 24px; z-index: 900;
    display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.live-feed-card {
    background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.3); border-radius: 14px;
    padding: 12px 18px; display: flex; align-items: center; gap: 12px;
    font-size: 0.85rem; color: var(--text-color); max-width: 300px;
    animation: feedIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.live-feed-card.fade-out { animation: feedOut 0.4s ease forwards; }
.feed-icon { font-size: 1.4rem; flex-shrink: 0; }
.feed-amount { color: #10b981; font-weight: 700; }
@keyframes feedIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes feedOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-20px); } }

/* CURRENCY SWITCHER */
.currency-switcher {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.currency-label { color: var(--text-muted); font-size: 0.9rem; }
.currency-tabs {
    display: flex; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 99px; padding: 4px;
}
.currency-tab {
    padding: 6px 16px; border-radius: 99px; background: none; border: none;
    color: var(--text-muted); font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: 0.25s;
}
.currency-tab.active {
    background: var(--primary); color: white;
    box-shadow: 0 2px 10px rgba(124,58,237,0.4);
}

/* CALCULATOR */
.calc-card {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; border-radius: 24px; overflow: hidden;
}
.calc-left { padding: 48px; border-right: 1px solid var(--glass-border); }
.calc-right { padding: 48px; background: rgba(124,58,237,0.05); display: flex; align-items: center; }
.calc-label { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; font-weight: 600; }
.calc-row { margin-bottom: 28px; }
.calc-platform-tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.platform-tab {
    padding: 8px 18px; border-radius: 99px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted);
    font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: 0.25s;
}
.platform-tab.active { background: var(--primary); color: white; border-color: var(--primary); }
.calc-input-wrap { display: flex; flex-direction: column; gap: 12px; }
.calc-slider {
    -webkit-appearance: none; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px; outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 22px; height: 22px;
    background: white; border-radius: 50%; cursor: pointer;
    box-shadow: 0 0 0 4px rgba(124,58,237,0.3);
}
.calc-amount-display { display: flex; align-items: center; gap: 10px; }
.calc-number-input {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 12px 16px; color: white; font-size: 1.3rem;
    font-weight: 700; width: 100%; outline: none; font-family: 'Unbounded', sans-serif;
}
.calc-number-input:focus { border-color: var(--primary); }
.calc-currency { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.calc-select {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 12px 16px; color: white; font-size: 1rem;
    outline: none; cursor: pointer;
}
.calc-select option,
.form-control option {
    background-color: #0f172a;
    color: #f8fafc;
}
.calc-result-block { width: 100%; }
.calc-result-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.calc-result-amount {
    font-family: 'Unbounded', sans-serif; font-size: 2.8rem; font-weight: 900;
    color: var(--accent); margin-bottom: 28px; line-height: 1;
}
.calc-result-breakdown { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: rgba(0,0,0,0.2); border-radius: 16px; }
.calc-breakdown-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-muted); }
.calc-breakdown-row.total { color: white; font-weight: 700; font-size: 1rem; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }

/* TRUST BARS */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.trust-item {
    padding: 32px; border-radius: 20px; display: flex; flex-direction: column; gap: 12px;
}
.trust-icon { font-size: 2rem; }
.trust-text h4 { font-size: 1.1rem; margin-bottom: 4px; }
.trust-text p { color: var(--text-muted); font-size: 0.9rem; }
.trust-bar-wrap { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.trust-bar-wrap { position: relative; }
.trust-bar-bg { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.trust-bar-fill {
    height: 6px; width: 0; border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.trust-bar-pct { font-size: 0.9rem; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* WORLD MAP */
.world-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
}

.stat-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.stat-card-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-card-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.world-map-wrapper {
    margin: 40px auto 0;
    max-width: 920px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(124,58,237,0.25);
    background: rgba(6,9,19,0.75);
    backdrop-filter: blur(10px);
    padding: 24px 20px 16px;
}
.world-map-svg { width: 100%; height: auto; display: block; }

/* Ping rings scale from center using transform-box */
.ping-ring {
    animation: pingRing 2.8s infinite ease-out;
    animation-delay: var(--delay, 0s);
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes pingRing {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2.2); }
}

/* Traveling money-flow dashes */
.travel-line {
    animation: travelLine var(--dur, 3s) linear infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes travelLine {
    from { stroke-dashoffset:  700; }
    to   { stroke-dashoffset: -700; }
}

/* Map legend */
.map-legend {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px 28px; margin-top: 20px; padding: 0 8px;
}
.map-legend-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
}
.legend-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}
.legend-line {
    width: 24px; height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, var(--c, #7c3aed), transparent);
    display: inline-block;
}

/* COMPARISON TABLE */
.compare-table-wrap { overflow-x: auto; border-radius: 20px; }
.compare-table {
    width: 100%; border-collapse: collapse; border-radius: 20px; overflow: hidden;
}
.compare-table th, .compare-table td {
    padding: 18px 24px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table th {
    background: rgba(124,58,237,0.1); font-family: 'Unbounded', sans-serif;
    font-size: 0.9rem; color: var(--text-muted);
}
.compare-table th.us-col { background: rgba(124,58,237,0.25); color: var(--accent); }
.compare-table td:first-child { text-align: left; color: var(--text-muted); font-weight: 600; }
.compare-table td.us-col { background: rgba(124,58,237,0.08); font-weight: 700; }
.compare-table td.good { color: #10b981; }
.compare-table td.bad { color: #ef4444; }
.compare-table td.neutral { color: var(--text-muted); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* QUICK FORM */
.quick-form-card { padding: 56px; max-width: 860px; margin: 0 auto; }
.quick-form .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.form-control {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 14px 16px; color: white; font-size: 1rem;
    outline: none; transition: border-color 0.25s; font-family: 'Inter', sans-serif;
    -webkit-appearance: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.form-success { text-align: center; padding: 40px; }
.form-success .success-icon {
    width: 80px; height: 80px; background: #10b981; color: white;
    border-radius: 50%; font-size: 2.5rem; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(16,185,129,0.4);
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* URGENCY TIMER */
.urgency-timer {
    background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
    border-radius: 12px; padding: 12px 20px; display: inline-flex;
    align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap;
}
.timer-label { font-size: 0.9rem; color: var(--text-muted); }
.timer-count {
    font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 900;
    color: #ef4444; letter-spacing: 2px;
}

/* FLOATING TG ONLINE INDICATOR */
.floating-tg { position: relative; }
.floating-tg-online {
    position: absolute; top: 0; right: 0;
    width: 14px; height: 14px; background: #10b981; border-radius: 50%;
    border: 2px solid var(--bg-color); box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}
.floating-tg-label {
    position: fixed; bottom: 98px; right: 30px;
    background: rgba(15,23,42,0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(16,185,129,0.3); border-radius: 99px;
    padding: 6px 14px; font-size: 0.8rem; font-weight: 600; color: #10b981;
    white-space: nowrap; pointer-events: none; z-index: 999;
    animation: fadeInUp 0.5s 2s both;
}
@keyframes fadeInUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

@media (max-width: 768px) {
    .video-container { aspect-ratio: 4/3; }
    .chat-mock, .review-image-wrapper { height: 250px; }
    .calc-card { grid-template-columns: 1fr; }
    .calc-left { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .trust-grid { grid-template-columns: 1fr; }
    .quick-form .form-row { grid-template-columns: 1fr; }
    .sticky-bar { font-size: 0.78rem; gap: 8px; flex-wrap: wrap; justify-content: flex-start; padding: 8px 16px; }
    .world-map-wrapper { display: none; }
    .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.85rem; }
    .calc-result-amount { font-size: 2rem; }
    .quick-form-card { padding: 28px 20px; }
    .live-feed-container { display: none; }
}

/* Reveal Animations */
.reveal-left, .reveal-right, .reveal-up { opacity: 0; transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(50px); }
.revealed { opacity: 1; transform: translate(0, 0); }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); auto-rows: minmax(200px, auto); }
    .bento-item.wide { grid-column: span 2; }
    .container-flex { flex-direction: column; gap: 40px; }
    .audience-visual { width: 100%; height: 300px; }
}
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hero { text-align: center; padding: 120px 0 60px; }
    h1 { font-size: 2.2rem; }
    .hero-actions { justify-content: center; }
    .hidden-mobile { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.wide { grid-column: span 1; }
    .steps-timeline { grid-template-columns: 1fr; gap: 20px; }
    .mega-glow { flex-direction: column; text-align: center; padding: 40px 20px; }
    .cta-buttons { justify-content: center; }
    .cta-stats { grid-template-columns: 1fr; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .scrolling-ticker { padding: 20px 0; }
    .ticker-item { font-size: 1.2rem; }
}
