/* ═══════════════════════════════════════════════════════════════════════════
   SPECTRUMER — Music-Style Landing Page
   Palette: Cyan (#00e5ff), Magenta (#ff00e5), Electric Purple (#7c5cbf)
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
    --bg-deepest:    #030308;
    --bg-dark:       #08081a;
    --bg-panel:      #0a0a1e;
    --bg-widget:     #12122a;
    --bg-hover:      #1a1a3a;
    --cyan:          #00e5ff;
    --cyan-dim:      #00b8cc;
    --magenta:       #ff00e5;
    --magenta-dim:   #cc00b8;
    --purple:        #7c5cbf;
    --purple-light:  #9370db;
    --gold:          #ffaa00;
    --gold-dark:     #cc8800;
    --text-primary:  #e8e8f8;
    --text-secondary:#b0b0d0;
    --text-muted:    #6060a0;
    --border:        #1a1a3a;
    --border-input:  #2a2a5a;
    --danger:        #ff3366;
    --success:       #00ff88;
    --radius:        12px;
    --radius-sm:     8px;
    --radius-xs:     6px;
    --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', 'Segoe UI', -apple-system, sans-serif;
    background: var(--bg-deepest);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ── EQ Background Animation ──────────────────────────────────────────── */
.eq-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 0 10%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.eq-bar {
    width: 3px;
    background: linear-gradient(to top, var(--cyan), var(--magenta));
    border-radius: 2px 2px 0 0;
    animation: eqBounce 1.2s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1)  { height: 40%; animation-delay: 0.0s; }
.eq-bar:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.eq-bar:nth-child(3)  { height: 35%; animation-delay: 0.2s; }
.eq-bar:nth-child(4)  { height: 75%; animation-delay: 0.15s; }
.eq-bar:nth-child(5)  { height: 50%; animation-delay: 0.3s; }
.eq-bar:nth-child(6)  { height: 85%; animation-delay: 0.05s; }
.eq-bar:nth-child(7)  { height: 45%; animation-delay: 0.25s; }
.eq-bar:nth-child(8)  { height: 70%; animation-delay: 0.35s; }
.eq-bar:nth-child(9)  { height: 55%; animation-delay: 0.12s; }
.eq-bar:nth-child(10) { height: 80%; animation-delay: 0.22s; }
.eq-bar:nth-child(11) { height: 40%; animation-delay: 0.28s; }
.eq-bar:nth-child(12) { height: 65%; animation-delay: 0.08s; }

@keyframes eqBounce {
    0%   { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

/* ── Typography ────────────────────────────────────────────────────────── */
.section-title {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--cyan-dim), var(--purple));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--magenta-dim));
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 170, 0, 0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
}

/* ── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(3, 3, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 58, 0.5);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img { transform: scale(1.08); }

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-accent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--cyan); }

.nav-cta {
    background: linear-gradient(135deg, var(--cyan-dim), var(--purple));
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    transform: translateY(-1px);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle,
        rgba(0, 229, 255, 0.08) 0%,
        rgba(124, 92, 191, 0.05) 40%,
        transparent 70%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-deepest), transparent);
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--cyan);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 229, 255, 0); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Problem Section ───────────────────────────────────────────────────── */
.problem {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.problem-card:hover {
    border-color: var(--danger);
    transform: translateY(-4px);
}

.problem-icon {
    color: var(--danger);
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.problem-punchline {
    text-align: center;
    margin-top: 48px;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.problem-punchline strong {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Features ──────────────────────────────────────────────────────────── */
.solution {
    padding: 100px 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

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

.feature-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(255, 0, 229, 0.04));
    border-color: var(--cyan);
}

.feature-icon {
    color: var(--cyan);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Video Demo ────────────────────────────────────────────────────────── */
.demo {
    padding: 100px 0;
    background: var(--bg-dark);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.video-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    aspect-ratio: 16 / 9;
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(3, 3, 8, 0.6);
    cursor: pointer;
    transition: all var(--transition);
    gap: 12px;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-dim), var(--purple));
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.5);
}

.video-play-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ── Social Proof ──────────────────────────────────────────────────────── */
.proof {
    padding: 100px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.proof-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.proof-card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.proof-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.proof-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.proof-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.proof-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing {
    padding: 100px 0;
    background: var(--bg-dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

.toggle-label.active { color: var(--text-primary); }

.toggle-switch {
    position: relative;
    width: 52px; height: 28px;
    cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-widget);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all var(--transition);
}

.toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: var(--cyan);
    border-radius: 50%;
    transition: all var(--transition);
}

.toggle-switch input:checked + .toggle-slider::after {
    transform: translateX(24px);
    background: var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card-featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(255, 170, 0, 0.04) 0%, var(--bg-panel) 100%);
}

.pricing-card-featured:hover {
    box-shadow: 0 8px 40px rgba(255, 170, 0, 0.12);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    margin-bottom: 16px;
}

.badge-hot {
    background: rgba(255, 170, 0, 0.1);
    color: var(--gold);
}

.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card-featured .price-amount { color: var(--gold); }

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(26, 26, 58, 0.3);
}

.pricing-features li:last-child { border: none; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
    padding: 100px 0;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--cyan); }
.faq-item.open { border-color: var(--cyan); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-align: left;
}

.faq-chevron {
    transition: transform var(--transition);
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle,
        rgba(0, 229, 255, 0.06) 0%,
        rgba(255, 0, 229, 0.04) 50%,
        transparent 70%);
    pointer-events: none;
}

.final-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-cta-desc em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 600;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Chatbot ───────────────────────────────────────────────────────────── */
.chatbot {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 9999;
}

.chatbot-toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-dim), var(--purple));
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
    transition: all var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
}

.chatbot-window {
    position: absolute;
    bottom: 72px; right: 0;
    width: 380px;
    max-height: 520px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-dim), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.chatbot-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.chatbot-status {
    font-size: 0.75rem;
    color: var(--success);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}

.chatbot-close:hover { color: var(--text-primary); }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    max-height: 320px;
}

.chat-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    animation: msgIn 0.3s ease;
}

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

.chat-msg.user { flex-direction: row-reverse; }

.chat-msg-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-widget);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
}

.chat-msg.user .chat-msg-avatar {
    background: var(--purple);
    color: #fff;
}

.chat-msg-bubble {
    max-width: 260px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.chat-msg.bot .chat-msg-bubble {
    background: var(--bg-widget);
    border: 1px solid var(--border);
    border-top-left-radius: 4px;
}

.chat-msg.user .chat-msg-bubble {
    background: var(--purple);
    color: #fff;
    border-top-right-radius: 4px;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.chat-typing span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing 1.4s infinite;
}

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

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

.chatbot-suggestions {
    padding: 8px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid rgba(26, 26, 58, 0.3);
}

.chat-suggestion {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: transparent;
    color: var(--cyan);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Outfit', sans-serif;
}

.chat-suggestion:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--cyan);
}

.chatbot-input {
    display: flex;
    padding: 12px;
    gap: 8px;
    border-top: 1px solid var(--border);
    background: var(--bg-panel);
}

.chatbot-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--bg-widget);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.chatbot-input input:focus { border-color: var(--cyan); }
.chatbot-input input::placeholder { color: var(--text-muted); }

.chatbot-input button {
    width: 40px; height: 40px;
    border: none;
    border-radius: var(--radius-xs);
    background: var(--purple);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.chatbot-input button:hover { background: var(--cyan-dim); }

/* ── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-widget); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 100px 20px 60px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 1.2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .proof-grid { grid-template-columns: 1fr; }
    .chatbot-window { width: calc(100vw - 48px); right: -12px; }
    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 80px 16px 40px; }
    .hero-title { font-size: 1.6rem; letter-spacing: 0; }
    .hero-sub { font-size: 0.95rem; }
    .hero-badge { font-size: 0.65rem; padding: 5px 12px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.1rem; }
    .stat-label { font-size: 0.65rem; }
    .section-title { font-size: 1.4rem; }
    .section-desc { font-size: 0.95rem; margin-bottom: 32px; }
    .problem-grid, .feature-grid, .proof-grid { gap: 16px; }
    .problem-card, .feature-card, .proof-card { padding: 20px; }
    .problem-card p, .feature-card p, .proof-card p { font-size: 0.85rem; }
    .pricing-grid { max-width: 100%; }
    .pricing-card { padding: 24px 20px; }
    .price-amount { font-size: 2.2rem; }
    .pricing-features li { font-size: 0.82rem; }
    .faq-question { padding: 16px; font-size: 0.9rem; }
    .faq-answer p { font-size: 0.82rem; }
    .final-cta { padding: 80px 0; }
    .final-cta-title { font-size: 1.4rem; }
    .final-cta-desc { font-size: 0.95rem; }
    .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
    .btn-xl { padding: 14px 28px; font-size: 0.95rem; }
    .container { padding: 0 16px; }
    .eq-bg { gap: 2px; padding: 0 5%; }
    .chatbot { bottom: 16px; right: 16px; }
    .chatbot-toggle { width: 48px; height: 48px; }
    .chatbot-window { width: calc(100vw - 32px); right: -8px; bottom: 64px; }
    .chatbot-messages { min-height: 200px; max-height: 250px; }
    .chat-msg-bubble { max-width: 220px; font-size: 0.8rem; }
    .footer-copy { font-size: 0.7rem; }
}
