/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #000000;
  --bg2:      #03030f;
  --card:     #06061a;
  --border:   rgba(0,80,255,0.18);
  --blue:     #0050ff;
  --blue2:    #1a6fff;
  --green:    #00ff41;
  --green2:   #39ff14;
  --white:    #ffffff;
  --muted:    #c8d8ff;
  --radius:   14px;
  --font:     'Inter', 'Segoe UI', system-ui, sans-serif;
  --font2:    'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CANVAS BG ===== */
#bgCanvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* All content above canvas */
header, section, footer, .toast { position: relative; z-index: 2; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font2); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.5px; text-align: center; margin-bottom: 0.75rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
p  { line-height: 1.7; color: var(--white); }

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; text-decoration: none;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,80,255,0.4);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,80,255,0.55); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  text-decoration: none;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--green); background: rgba(0,255,65,0.07); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  text-decoration: none;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(0,80,255,0.12); }

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.75rem 2rem;
}
.logo { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; }

nav {
  display: flex; align-items: center; gap: 1.8rem;
  flex: 1; justify-content: center;
}
nav a {
  color: var(--white); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  opacity: 0.85; transition: opacity 0.2s, color 0.2s;
}
nav a:hover { opacity: 1; color: var(--green); }

.header-cta { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }
.mobile-menu-btn {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--white); font-size: 1.2rem; border-radius: 8px;
  padding: 0.3rem 0.6rem; cursor: pointer;
}

/* ===== BADGES ===== */
.badge-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
}
.badge-green { background: rgba(0,255,65,0.12); border: 1px solid rgba(0,255,65,0.3); color: var(--green); }
.badge-blue  { background: rgba(0,80,255,0.12); border: 1px solid rgba(0,80,255,0.3); color: #80aaff; }

.section-tag {
  display: inline-block;
  background: rgba(0,80,255,0.15);
  border: 1px solid rgba(0,80,255,0.3);
  color: #80aaff;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: center;
  display: flex; justify-content: center; width: fit-content; margin: 0 auto 1rem;
}

/* ===== HERO ===== */
.hero { padding: 7rem 2rem 5rem; }
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 4rem;
}
.hero-content { flex: 1; max-width: 600px; }
h1 { margin-bottom: 1.2rem; }

.hero-sub { font-size: 1.1rem; color: var(--white); margin-bottom: 2rem; max-width: 540px; }

.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; }
.hstat-num { font-size: 1.8rem; font-weight: 800; color: var(--green); font-family: var(--font2); line-height: 1; }
.hstat-label { font-size: 0.72rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.2rem; }
.hstat-div { width: 1px; height: 40px; background: var(--border); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-note { font-size: 0.82rem; color: var(--white); opacity: 0.8; }

/* ===== DASHBOARD MOCK ===== */
.hero-visual { flex-shrink: 0; }
.dashboard-mock {
  width: 380px;
  background: rgba(6,6,26,0.9);
  border: 1px solid rgba(0,80,255,0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,80,255,0.2), 0 20px 60px rgba(0,0,0,0.6);
}
.dash-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0,80,255,0.08);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #10b981; }
.dash-title { font-size: 0.75rem; color: var(--white); opacity: 0.7; }

.dash-body { padding: 1.25rem; }
.dash-call-live {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(0,255,65,0.08);
  border: 1px solid rgba(0,255,65,0.25);
  border-radius: 8px; padding: 0.5rem 0.75rem;
  font-size: 0.8rem; margin-bottom: 1rem;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.4); }
}
.call-timer { margin-left: auto; font-weight: 700; color: var(--green); font-size: 0.85rem; }

.waveform {
  display: flex; align-items: center; justify-content: center;
  gap: 3px; height: 44px; margin-bottom: 1rem;
}
.waveform span {
  display: block; width: 4px; border-radius: 2px;
  background: linear-gradient(to top, var(--blue), var(--green));
  animation: waveAnim 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1)  { height:12px; animation-delay:0s; }
.waveform span:nth-child(2)  { height:24px; animation-delay:0.08s; }
.waveform span:nth-child(3)  { height:36px; animation-delay:0.16s; }
.waveform span:nth-child(4)  { height:22px; animation-delay:0.24s; }
.waveform span:nth-child(5)  { height:38px; animation-delay:0.32s; }
.waveform span:nth-child(6)  { height:28px; animation-delay:0.40s; }
.waveform span:nth-child(7)  { height:40px; animation-delay:0.32s; }
.waveform span:nth-child(8)  { height:18px; animation-delay:0.24s; }
.waveform span:nth-child(9)  { height:32px; animation-delay:0.16s; }
.waveform span:nth-child(10) { height:14px; animation-delay:0.08s; }
.waveform span:nth-child(11) { height:26px; animation-delay:0s; }
.waveform span:nth-child(12) { height:10px; animation-delay:0.08s; }
@keyframes waveAnim { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(1.8)} }

.dash-quote { font-size: 0.82rem; color: var(--white); opacity: 0.85; margin-bottom: 1rem; font-style: italic; line-height: 1.5; }

.dash-metrics { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.dmetric {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.5rem; text-align: center;
}
.dval { display: block; font-size: 1.2rem; font-weight: 800; font-family: var(--font2); }
.dval.green { color: var(--green); }
.dval.blue  { color: #80aaff; }
.dlabel { font-size: 0.65rem; color: var(--white); opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }

.dash-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 50px; }
.tag-green { background: rgba(0,255,65,0.12); border: 1px solid rgba(0,255,65,0.3); color: var(--green); }
.tag-blue  { background: rgba(0,80,255,0.12); border: 1px solid rgba(0,80,255,0.3); color: #80aaff; }
.tag-white { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }

/* ===== TRUST BAR ===== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  background: rgba(0,80,255,0.04);
}
.trust-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.trust-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); opacity: 0.6; margin-bottom: 1rem; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; }
.tlogo { font-size: 0.85rem; font-weight: 600; color: var(--white); opacity: 0.55; transition: opacity 0.2s; }
.tlogo:hover { opacity: 1; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; }
.section.dark { background: rgba(0,0,10,0.6); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-sub {
  text-align: center; color: var(--white);
  font-size: 1.05rem; max-width: 640px;
  margin: 0.75rem auto 3rem; opacity: 0.88;
}

/* ===== PROBLEM ===== */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.problem-card {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(239,68,68,0.4); }
.prob-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.problem-card h4 { color: #ff8080; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.9rem; color: var(--white); opacity: 0.8; }

.solution-bridge { text-align: center; }
.bridge-arrow { font-size: 2.5rem; color: var(--green); line-height: 1; margin-bottom: 0.5rem; }
.bridge-label {
  display: inline-block;
  background: rgba(0,255,65,0.1);
  border: 1px solid rgba(0,255,65,0.3);
  color: var(--green); font-weight: 700;
  padding: 0.75rem 2rem; border-radius: 50px; font-size: 0.95rem;
}

/* ===== FEATURES TABS ===== */
.features-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 2.5rem; align-items: start;
}
.features-left { display: flex; flex-direction: column; gap: 0.5rem; }
.feat-tab {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.2s;
}
.feat-tab:hover { background: rgba(0,80,255,0.07); border-color: var(--border); }
.feat-tab.active { background: rgba(0,80,255,0.12); border-color: rgba(0,80,255,0.35); }
.feat-tab-icon { font-size: 1.5rem; flex-shrink: 0; }
.feat-tab h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.feat-tab p { font-size: 0.82rem; color: var(--white); opacity: 0.75; }

.feat-display {
  position: sticky; top: 100px;
}
.feat-visual-card {
  background: rgba(6,6,26,0.95);
  border: 1px solid rgba(0,80,255,0.3);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,80,255,0.15);
}
.fvc-header {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(0,80,255,0.08);
  border-bottom: 1px solid var(--border);
}
.fvc-dot { width: 10px; height: 10px; border-radius: 50%; }
.fvc-dot.green { background: var(--green); }
.fvc-dot.blue  { background: var(--blue2); }
.fvc-title { font-size: 0.78rem; color: var(--white); opacity: 0.7; margin-left: 0.25rem; }
.fvc-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }

.convo-line { display: flex; gap: 0.75rem; align-items: flex-start; }
.convo-line.user { flex-direction: row-reverse; }
.convo-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,80,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.convo-line.user .convo-av { background: rgba(255,255,255,0.08); }
.convo-bubble {
  background: rgba(0,80,255,0.12);
  border: 1px solid rgba(0,80,255,0.2);
  border-radius: 14px; border-top-left-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem; line-height: 1.55; color: var(--white);
  max-width: 85%;
}
.convo-line.user .convo-bubble {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  border-top-left-radius: 14px; border-top-right-radius: 4px;
  text-align: right;
}
.convo-tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ctag {
  font-size: 0.68rem; font-weight: 600;
  background: rgba(0,255,65,0.1);
  border: 1px solid rgba(0,255,65,0.25);
  color: var(--green); padding: 0.2rem 0.6rem; border-radius: 50px;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex; gap: 0; align-items: flex-start;
  margin-top: 3rem; flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 240px; max-width: 300px;
  text-align: center; padding: 0 1.5rem;
}
.step-num {
  font-size: 3rem; font-weight: 900; font-family: var(--font2);
  background: linear-gradient(135deg, var(--blue2), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem; line-height: 1;
}
.step-body h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step-body p { font-size: 0.88rem; color: var(--white); opacity: 0.82; }
.step-connector {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  margin-top: 3rem; flex-shrink: 0;
}

/* ===== ROI ===== */
.roi-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem; margin-top: 2.5rem;
}
.roi-card {
  background: rgba(6,6,26,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.roi-card:hover { border-color: rgba(0,255,65,0.35); transform: translateY(-3px); }
.roi-card.big { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
.roi-num {
  font-size: 3.2rem; font-weight: 900; font-family: var(--font2);
  background: linear-gradient(135deg, var(--blue2), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 0.75rem;
}
.roi-card.big .roi-num { font-size: 5rem; }
.roi-label { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.roi-sub { font-size: 0.78rem; color: var(--white); opacity: 0.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.tcard {
  background: rgba(6,6,26,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.2s;
}
.tcard.featured-t {
  border-color: rgba(0,255,65,0.35);
  box-shadow: 0 0 30px rgba(0,255,65,0.08);
}
.tcard-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tcard-quote { font-size: 0.92rem; line-height: 1.65; color: var(--white); opacity: 0.9; margin-bottom: 1.5rem; font-style: italic; }
.tcard-author { display: flex; gap: 0.75rem; align-items: center; }
.tcard-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.9rem; }
.tcard-author span { display: block; font-size: 0.75rem; color: var(--white); opacity: 0.65; }

/* ===== INTEGRATIONS ===== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.int-card {
  background: rgba(6,6,26,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center; font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.int-card:hover { border-color: rgba(0,80,255,0.4); background: rgba(0,80,255,0.08); }
.int-card span { font-size: 1.1rem; }

/* ===== PRICING ===== */
.pricing-toggle-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 2.5rem;
  font-size: 0.9rem; font-weight: 500;
}
.ptoggle { position: relative; width: 46px; height: 24px; }
.ptoggle input { display: none; }
.ptoggle-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 12px; transition: background 0.3s; cursor: pointer;
}
.ptoggle-slider::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: white; transition: transform 0.3s;
}
.ptoggle input:checked + .ptoggle-slider { background: var(--blue); }
.ptoggle input:checked + .ptoggle-slider::after { transform: translateX(22px); }
.save-badge {
  background: rgba(0,255,65,0.15);
  border: 1px solid rgba(0,255,65,0.3);
  color: var(--green); font-size: 0.7rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 50px; margin-left: 0.4rem;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem; align-items: start;
}
.pricing-card {
  background: rgba(6,6,26,0.9);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem;
  position: relative; transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.card-featured {
  border-color: var(--blue2);
  box-shadow: 0 0 50px rgba(0,80,255,0.2);
}
.plan-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white; font-size: 0.72rem; font-weight: 800;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.plan-tier {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #80aaff; margin-bottom: 0.75rem;
}
.plan-price {
  display: flex; align-items: flex-start; gap: 0.2rem;
  margin-bottom: 0.75rem; line-height: 1;
}
.plan-dollar { font-size: 1.5rem; font-weight: 800; padding-top: 0.4rem; color: var(--green); }
.plan-num { font-size: 3.5rem; font-weight: 900; font-family: var(--font2); color: var(--white); }
.plan-per { font-size: 1rem; color: var(--white); opacity: 0.6; padding-top: 2rem; }
.plan-desc { font-size: 0.85rem; color: var(--white); opacity: 0.75; margin-bottom: 1.5rem; line-height: 1.55; }
.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li { padding: 0.45rem 0; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.plan-features li:last-child { border-bottom: none; }

/* ===== FAQ ===== */
.faq-inner { max-width: 800px; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: rgba(6,6,26,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--white); font-family: var(--font);
  font-size: 0.95rem; font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; transition: background 0.2s;
}
.faq-q:hover { background: rgba(0,80,255,0.08); }
.faq-arrow { font-size: 1.3rem; color: var(--blue2); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem; color: var(--white); opacity: 0.82;
  padding: 0 1.5rem; line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ===== DEMO ===== */
.demo-container {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 1.5rem; margin-top: 2.5rem; align-items: start;
}
.demo-sidebar {
  background: rgba(6,6,26,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.demo-sidebar h4 { font-size: 0.85rem; margin-bottom: 1rem; color: var(--white); opacity: 0.75; text-transform: uppercase; letter-spacing: 0.5px; }
.quick-btns { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.quick-btn {
  background: rgba(0,80,255,0.08);
  border: 1px solid var(--border);
  color: var(--white); padding: 0.55rem 0.85rem;
  border-radius: 8px; font-size: 0.8rem;
  cursor: pointer; text-align: left; transition: all 0.2s;
}
.quick-btn:hover { border-color: var(--blue2); background: rgba(0,80,255,0.18); color: var(--white); }

.demo-main {
  background: rgba(6,6,26,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

/* ===== CHAT ===== */
.chat-box {
  height: 340px; overflow-y: auto;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  scroll-behavior: smooth;
}
.chat-box::-webkit-scrollbar { width: 3px; }
.chat-box::-webkit-scrollbar-thumb { background: rgba(0,80,255,0.3); border-radius: 2px; }

.msg { display: flex; gap: 0.75rem; align-items: flex-start; }
.ai-msg { flex-direction: row; }
.user-msg { flex-direction: row-reverse; }

.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.user-msg .avatar { background: rgba(255,255,255,0.08); }

.bubble {
  max-width: 78%; padding: 0.85rem 1.1rem;
  border-radius: 16px; font-size: 0.9rem; line-height: 1.55;
}
.ai-msg .bubble {
  background: rgba(0,80,255,0.12);
  border: 1px solid rgba(0,80,255,0.25);
  border-top-left-radius: 4px;
}
.user-msg .bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top-right-radius: 4px; text-align: right;
}
.typing-bubble { display: flex; gap: 5px; align-items: center; padding: 0.85rem 1.1rem; }
.typing-bubble span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue2); animation: typing 1.2s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100%{transform:translateY(0);opacity:0.4} 40%{transform:translateY(-6px);opacity:1} }

/* ===== VOICE VIZ ===== */
.voice-visualizer {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem; border-top: 1px solid var(--border); gap: 0.5rem;
}
.viz-ring {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(0,80,255,0.12);
  border: 2px solid rgba(0,80,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.viz-ring.listening { border-color: var(--green); box-shadow: 0 0 20px rgba(0,255,65,0.4); animation: ringPulse 1s infinite; }
.viz-ring.speaking  { border-color: var(--blue2); box-shadow: 0 0 20px rgba(0,80,255,0.5); }
@keyframes ringPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.viz-icon { font-size: 1.6rem; }
.viz-bars { display: flex; align-items: center; gap: 3px; height: 24px; }
.viz-bars span { display:block; width:3px; border-radius:2px; background:linear-gradient(to top,var(--blue),var(--green)); height:4px; transition:height 0.15s; }
.viz-bars.active span { animation: vizWave 0.8s ease-in-out infinite; }
.viz-bars.active span:nth-child(1)  { animation-delay:0s; }
.viz-bars.active span:nth-child(2)  { animation-delay:0.08s; }
.viz-bars.active span:nth-child(3)  { animation-delay:0.16s; }
.viz-bars.active span:nth-child(4)  { animation-delay:0.24s; }
.viz-bars.active span:nth-child(5)  { animation-delay:0.32s; }
.viz-bars.active span:nth-child(6)  { animation-delay:0.24s; }
.viz-bars.active span:nth-child(7)  { animation-delay:0.16s; }
.viz-bars.active span:nth-child(8)  { animation-delay:0.08s; }
.viz-bars.active span:nth-child(9)  { animation-delay:0s; }
.viz-bars.active span:nth-child(10) { animation-delay:0.08s; }
@keyframes vizWave { 0%,100%{height:4px} 50%{height:20px} }
.viz-status { font-size: 0.75rem; color: var(--white); opacity: 0.65; }

/* ===== INPUT AREA ===== */
.input-area {
  display: flex; gap: 0.5rem;
  padding: 1rem 1.25rem; border-top: 1px solid var(--border);
}
#userInput {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 0.7rem 1.1rem; color: var(--white);
  font-size: 0.9rem; outline: none; font-family: var(--font);
  transition: border-color 0.2s;
}
#userInput:focus { border-color: rgba(0,80,255,0.5); }
#userInput::placeholder { color: rgba(255,255,255,0.35); }
.btn-mic {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,255,65,0.1);
  border: 1px solid rgba(0,255,65,0.3);
  font-size: 1.1rem; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.btn-mic:hover { background: rgba(0,255,65,0.2); }
.btn-mic.recording { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.5); animation: micPulse 1s infinite; }
@keyframes micPulse { 0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,0.4)} 50%{box-shadow:0 0 0 8px rgba(239,68,68,0)} }
.btn-send {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white; border: none; padding: 0 1.2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; flex-shrink: 0;
  transition: opacity 0.2s;
}
.btn-send:hover { opacity: 0.88; }

/* ===== VOICE CONTROLS ===== */
.voice-controls { padding-top: 1rem; border-top: 1px solid var(--border); }
.toggle-label {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--white); cursor: pointer; margin-bottom: 0.75rem;
}
.toggle-label input { display: none; }
.toggle-slider {
  width: 36px; height: 20px; background: rgba(255,255,255,0.1);
  border-radius: 10px; position: relative; transition: background 0.3s;
}
.toggle-slider::after {
  content:''; position:absolute; top:2px; left:2px;
  width:16px; height:16px; border-radius:50%; background:white; transition:transform 0.3s;
}
.toggle-label input:checked + .toggle-slider { background: var(--blue); }
.toggle-label input:checked + .toggle-slider::after { transform: translateX(16px); }
.voice-select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); color: var(--white);
  border-radius: 8px; padding: 0.35rem 0.6rem; font-size: 0.78rem; outline: none;
}
.voice-select option { background: #06061a; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 6rem 2rem; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.cta-left p { font-size: 1rem; color: var(--white); opacity: 0.85; margin: 1rem 0 2rem; }
.cta-trust-items { display: flex; flex-direction: column; gap: 0.6rem; }
.cta-trust-item { font-size: 0.9rem; font-weight: 500; }

.contact-form {
  background: rgba(6,6,26,0.9);
  border: 1px solid rgba(0,80,255,0.25);
  border-radius: 20px; padding: 2rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.contact-form h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.8rem 1rem; color: var(--white);
  font-size: 0.9rem; outline: none; font-family: var(--font);
  transition: border-color 0.2s; width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(0,80,255,0.5); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form select { color: rgba(255,255,255,0.6); }
.contact-form select option { background: #06061a; color: white; }
.form-note { font-size: 0.72rem; color: var(--white); opacity: 0.45; text-align: center; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
  background: rgba(0,0,10,0.7);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; color: var(--white); opacity: 0.65; line-height: 1.65; max-width: 280px; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,80,255,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; font-size: 0.85rem;
  transition: background 0.2s; font-weight: 700;
}
.footer-social a:hover { background: rgba(0,80,255,0.3); }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); opacity: 0.5; margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.85rem; color: var(--white); text-decoration: none; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--white); opacity: 0.55; }
.footer-bottom a { color: var(--blue2); text-decoration: none; }
.footer-compliance { color: var(--green) !important; opacity: 0.75 !important; font-size: 0.78rem !important; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white; padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; opacity: 0;
  transition: all 0.4s; pointer-events: none; z-index: 1000; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .badge-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .dashboard-mock { width: 100%; max-width: 420px; }
  .features-tabs { grid-template-columns: 1fr; }
  .feat-display { position: static; }
  .roi-grid { grid-template-columns: 1fr 1fr; }
  .roi-card.big { grid-row: auto; grid-column: 1 / -1; }
  .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .demo-container { grid-template-columns: 1fr; }
  nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .mobile-menu-btn { display: block; }
  .step-connector { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .roi-grid { grid-template-columns: 1fr; }
  .roi-card.big { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .header-cta { display: none; }
  .input-area { flex-wrap: wrap; }
  #userInput { flex: 1 1 100%; min-width: 0; }
}
@media (max-width: 500px) {
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .trust-logos { gap: 1rem 1.5rem; }
  .footer-links { grid-template-columns: 1fr; }
}
