/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a14;
  --bg-alt: #0f0f1e;
  --fg: #f0f0f8;
  --fg-muted: #8888a8;
  --accent: #4f6ef7;
  --accent-light: #6b84ff;
  --accent-glow: rgba(79, 110, 247, 0.3);
  --mint: #3dffc0;
  --mint-dim: rgba(61, 255, 192, 0.1);
  --card-bg: #11111f;
  --card-border: rgba(255,255,255,0.07);
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 20, 0.7);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 3px 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
}
.nav-subscribe {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  padding: 7px 16px;
  background: var(--accent);
  border-radius: 20px;
  transition: background 0.18s, box-shadow 0.18s;
}
.nav-subscribe:hover {
  background: var(--accent-light);
  box-shadow: 0 2px 12px rgba(79, 110, 247, 0.4);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4f6ef7, transparent);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3dffc0, transparent);
  bottom: -100px; left: 20%;
  opacity: 0.15;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #a855f7, transparent);
  top: 40%; left: -50px;
  opacity: 0.12;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(79, 110, 247, 0.15);
  border: 1px solid rgba(79, 110, 247, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-channels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.channel-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  color: var(--fg-muted);
}

/* Phone mockup */
.hero-right {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 300px;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
  font-family: 'Sora', sans-serif;
}
.phone-header {
  background: #11111f;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phone-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.phone-call-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(79, 110, 247, 0.15);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.call-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.call-info { flex: 1; }
.call-label { font-size: 11px; color: var(--fg-muted); display: block; }
.call-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.call-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--mint);
  background: rgba(61, 255, 192, 0.15);
  border: 1px solid rgba(61, 255, 192, 0.3);
  padding: 3px 8px;
  border-radius: 10px;
}
.phone-conversation {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.msg {
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 90%;
}
.ai-msg {
  background: rgba(79, 110, 247, 0.2);
  color: #c8d0ff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.ai-confirm {
  background: rgba(61, 255, 192, 0.12);
  color: var(--mint);
  border: 1px solid rgba(61, 255, 192, 0.2);
}
.caller-msg {
  background: #1e1e3a;
  color: var(--fg);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.phone-waves {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wave-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.wave-bar:nth-child(3) { height: 12px; animation-delay: 0.4s; }
.wave-bar:nth-child(4) { height: 20px; animation-delay: 0.6s; }
@keyframes wave {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Stats */
.stats-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 48px 32px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--card-border);
  flex-shrink: 0;
}

/* How */
.how-section { padding: 100px 32px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 32px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* Channels */
.channels-section {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.channels-inner { max-width: 1200px; margin: 0 auto; }
.channel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.channel-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.channel-card:hover { border-color: rgba(255,255,255,0.15); }
.channel-card.featured {
  border-color: rgba(79, 110, 247, 0.3);
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.08), transparent);
}
.channel-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}
.channel-icon {
  width: 52px; height: 52px;
  background: var(--mint-dim);
  border: 1px solid rgba(61, 255, 192, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  margin-bottom: 20px;
}
.channel-card.featured .channel-icon {
  background: rgba(79, 110, 247, 0.15);
  border-color: rgba(79, 110, 247, 0.3);
  color: var(--accent-light);
}
.channel-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.channel-card p { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.6; }
.channel-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.channel-card li { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.channel-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.channel-card.featured li::before { background: var(--mint); }

/* Industries */
.industries-section { padding: 100px 32px; }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.industry-card:hover { border-color: rgba(255,255,255,0.12); }
.industry-icon {
  width: 44px; height: 44px;
  background: rgba(79, 110, 247, 0.1);
  border: 1px solid rgba(79, 110, 247, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.industry-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.industry-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* Pricing */
.pricing-section {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
}
.pricing-card.featured {
  border-color: rgba(79, 110, 247, 0.4);
  background: linear-gradient(135deg, rgba(79, 110, 247, 0.06), transparent);
}
.pricing-tier {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg-muted); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(61, 255, 192, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%233dffc0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-note { font-size: 13px; color: var(--fg-muted); max-width: 600px; }

/* Subscribe buttons inside pricing cards */
.pricing-card form { margin-top: 24px; }
.subscribe-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(79, 110, 247, 0.3);
}
.subscribe-btn:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 24px rgba(79, 110, 247, 0.45);
}

/* Closing */
.closing-section { padding: 100px 32px; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-vision {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.8;
  opacity: 0.7;
}

/* Footer */
.footer { padding: 40px 32px; border-top: 1px solid var(--card-border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-meta { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .channel-cards { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .stats-inner { justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .how-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .industries-section, .channels-section, .pricing-section, .how-section, .closing-section { padding: 60px 20px; }
  .nav { padding: 12px 20px; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* Hero CTA */
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
}
.hero-cta-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 28px rgba(79, 110, 247, 0.5);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.hero-cta-secondary:hover { color: var(--fg); border-color: var(--fg-muted); }

/* Demo section */
.demo-section {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.demo-inner { max-width: 720px; margin: 0 auto; }
.demo-stage {
  margin-top: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--card-border);
  background: rgba(255,255,255,0.02);
}
.demo-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
.demo-status-label { font-size: 13px; color: var(--fg-muted); flex: 1; }
.demo-replay-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.demo-replay-btn:hover:not(:disabled) { color: var(--fg); border-color: rgba(255,255,255,0.15); }
.demo-replay-btn:disabled { opacity: 0.4; cursor: default; }
.demo-transcript {
  padding: 20px;
  min-height: 280px;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--card-border) transparent;
}
.demo-line { display: flex; flex-direction: column; gap: 4px; }
.demo-line--caller { align-items: flex-end; }
.demo-line--ai { align-items: flex-start; }
.demo-line-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
  margin: 0 4px;
}
.demo-bubble {
  font-size: 13px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  min-height: 1em;
  word-break: break-word;
}
.demo-line--ai .demo-bubble {
  background: rgba(79, 110, 247, 0.18);
  color: #c8d0ff;
  border-bottom-left-radius: 4px;
}
.demo-line--caller .demo-bubble {
  background: #1e1e3a;
  color: var(--fg);
  border-bottom-right-radius: 4px;
}
.demo-outcome {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--card-border);
  font-size: 13px;
  color: var(--mint);
  background: rgba(61, 255, 192, 0.05);
}
.demo-outcome--visible { display: flex; }

/* Waitlist section */
.waitlist-section {
  padding: 100px 32px;
  background: var(--bg);
}
.waitlist-inner { max-width: 680px; margin: 0 auto; }
.waitlist-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(61, 255, 192, 0.1);
  border: 1px solid rgba(61, 255, 192, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.waitlist-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wf-row { display: flex; gap: 16px; }
.wf-row--2 > .wf-field { flex: 1; min-width: 0; }
.wf-field { display: flex; flex-direction: column; gap: 6px; }
.wf-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
}
.wf-field input,
.wf-field select {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.wf-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.wf-field input:focus,
.wf-field select:focus { border-color: var(--accent); }
.wf-field input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.wf-error {
  display: none;
  font-size: 13px;
  color: #ff6b6b;
  padding: 10px 14px;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-sm);
}
.wf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
  margin-top: 4px;
}
.wf-submit:hover:not(:disabled) {
  background: var(--accent-light);
  box-shadow: 0 4px 28px rgba(79, 110, 247, 0.5);
}
.wf-submit:disabled { opacity: 0.6; cursor: default; }
.wf-spinner {
  display: none;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.wf-success {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(61, 255, 192, 0.07);
  border: 1px solid rgba(61, 255, 192, 0.2);
  border-radius: var(--radius);
  margin-top: 40px;
}
.wf-success svg { color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.wf-success strong { display: block; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.wf-success span { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Responsive adjustments for new sections */
@media (max-width: 640px) {
  .demo-section, .waitlist-section { padding: 60px 20px; }
  .wf-row--2 { flex-direction: column; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-primary { width: 100%; text-align: center; }
}

/* Voice Setup Dashboard */
.dashboard-body { background: var(--bg); }
.dashboard-main {
  padding-top: 80px;
  min-height: 100vh;
}

.voice-setup-section { padding: 60px 32px 100px; }
.vs-container { max-width: 1100px; margin: 0 auto; }
.vs-header { margin-bottom: 40px; }
.vs-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(61, 255, 192, 0.1);
  border: 1px solid rgba(61, 255, 192, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.vs-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 10px;
}
.vs-subtitle { font-size: 16px; color: var(--fg-muted); max-width: 560px; line-height: 1.7; }

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.vs-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
}
.vs-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}

.vs-form { display: flex; flex-direction: column; gap: 20px; }
.vs-field { display: flex; flex-direction: column; gap: 6px; }
.vs-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
}
.vs-required { color: var(--mint); }
.vs-field input {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.vs-field input:focus { border-color: var(--accent); }
.vs-field input::placeholder { color: var(--fg-muted); opacity: 0.5; }
.vs-hint { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }

.vs-actions { display: flex; gap: 12px; margin-top: 8px; }
.vs-btn {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, opacity 0.18s;
  border: none;
}
.vs-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
}
.vs-btn-primary:hover:not(:disabled) {
  background: var(--accent-light);
  box-shadow: 0 4px 28px rgba(79, 110, 247, 0.5);
}
.vs-btn-secondary {
  background: none;
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
}
.vs-btn-secondary:hover { color: var(--fg); border-color: rgba(255,255,255,0.15); }
.vs-btn:disabled { opacity: 0.6; cursor: default; }

.vs-error {
  display: none;
  font-size: 13px;
  color: #ff6b6b;
  padding: 10px 14px;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-sm);
}
.vs-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mint);
  padding: 10px 14px;
  background: rgba(61, 255, 192, 0.07);
  border: 1px solid rgba(61, 255, 192, 0.2);
  border-radius: var(--radius-sm);
}

.vs-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.vs-stat { display: flex; flex-direction: column; gap: 4px; }
.vs-stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.5px;
}
.vs-stat-label { font-size: 12px; color: var(--fg-muted); }

.vs-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.vs-status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vs-status-dot--active {
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
.vs-status-dot--inactive { background: var(--fg-muted); }
.vs-status-dot--unconfigured {
  background: #ffcc00;
  box-shadow: 0 0 8px #ffcc00;
}
.vs-status-text { font-size: 13px; color: var(--fg-muted); }

.vs-bookings-list { margin-top: 8px; }
.vs-bookings-header {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.vs-bookings-empty { font-size: 13px; color: var(--fg-muted); opacity: 0.6; }
.vs-booking-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
}
.vs-booking-item:last-child { border-bottom: none; }
.vs-booking-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.vs-booking-meta { font-size: 12px; color: var(--fg-muted); display: flex; gap: 12px; flex-wrap: wrap; }
.vs-booking-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
}
.vs-booking-tag--confirmed {
  color: var(--mint);
  background: rgba(61, 255, 192, 0.12);
  border: 1px solid rgba(61, 255, 192, 0.2);
}
.vs-booking-tag--pending {
  color: #ffcc00;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.2);
}

.vs-activation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 1px solid rgba(61, 255, 192, 0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.vs-activation-text { font-size: 14px; color: var(--fg-muted); }
.vs-activation-text strong { color: var(--fg); }
.vs-btn-activate {
  background: rgba(61, 255, 192, 0.12);
  border: 1px solid rgba(61, 255, 192, 0.3);
  color: var(--mint);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s;
}
.vs-btn-activate:hover { background: rgba(61, 255, 192, 0.2); }

@media (max-width: 768px) {
  .vs-grid { grid-template-columns: 1fr; }
  .voice-setup-section { padding: 40px 20px 80px; }
  .vs-activation { flex-direction: column; gap: 16px; text-align: center; }
}

/* Call Logs */
.vs-calls-list { margin-top: 8px; }
.vs-calls-empty { font-size: 13px; color: var(--fg-muted); opacity: 0.6; }
.vs-call-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
}
.vs-call-item:last-child { border-bottom: none; }
.vs-call-dir {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  width: fit-content;
}
.vs-call-direction--inbound {
  color: var(--accent-light);
  background: rgba(79, 110, 247, 0.12);
  border: 1px solid rgba(79, 110, 247, 0.2);
}
.vs-call-direction--outbound {
  color: var(--mint);
  background: rgba(61, 255, 192, 0.1);
  border: 1px solid rgba(61, 255, 192, 0.2);
}
.vs-call-meta { font-size: 12px; color: var(--fg-muted); }
.vs-transcript-toggle {
  background: none;
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 4px;
  transition: color 0.15s, border-color 0.15s;
}
.vs-transcript-toggle:hover { color: var(--fg); border-color: rgba(255,255,255,0.15); }

/* WhatsApp Messages */
.vs-whatsapp-list { margin-top: 8px; }
.vs-whatsapp-empty { font-size: 13px; color: var(--fg-muted); opacity: 0.6; }
.vs-whatsapp-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
}
.vs-whatsapp-item:last-child { border-bottom: none; }
.vs-whatsapp-meta { font-size: 12px; color: var(--fg-muted); }
.vs-whatsapp-body { font-size: 13px; color: var(--fg); line-height: 1.5; }

/* Missed Calls */
.vs-missed-list { margin-top: 8px; }
.vs-missed-empty { font-size: 13px; color: var(--fg-muted); opacity: 0.6; }
.vs-missed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
}
.vs-missed-item:last-child { border-bottom: none; }
.vs-missed-phone { font-size: 13px; color: var(--fg); font-weight: 600; }
.vs-missed-date { font-size: 12px; color: var(--fg-muted); margin-left: auto; }