/* ── marketing.css — Landing page styles ───────────────────────────────────
   Imports: tokens.css → marketing.css
   Layout follows the structure in index.html
──────────────────────────────────────────────────────────────────────────── */

/* ── Google Fonts ───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
body.marketing-page {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--background);
}

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -9999px; left: 0;
  padding: 8px 16px;
  background: var(--primary);
  color: white; font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
#navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 40px;
  height: 64px;
}

.logo-container {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}

.logo-container .logo { height: 36px; width: auto; }

.logo-text {
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-primary);
}

.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center;
}

.nav-link {
  padding: 7px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: color 150ms, background 150ms;
}
.nav-link:hover { color: var(--text-primary); background: var(--background-secondary); }

.nav-login {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 7px 14px; border-radius: 8px;
  transition: color 150ms, background 150ms;
}
.nav-login:hover { color: var(--text-primary); background: var(--background-secondary); }

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none; border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(193,39,45,0.25);
  transition: transform 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(193,39,45,0.35);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  padding: 96px 40px 80px;
  text-align: center;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(193,39,45,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px; border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 760px; margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-lead {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px; margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-primary);
  color: white;
  border: none; border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 1px 3px rgba(193,39,45,0.25);
  transition: transform 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(193,39,45,0.35);
  color: white;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--background);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: border-color 200ms, background 200ms;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--text-secondary);
  background: var(--background-secondary);
  color: var(--text-primary);
}

/* Hero demo preview strip */
.hero-demo {
  margin-top: 72px;
  padding: 40px;
  background: var(--background-secondary);
  border-radius: 20px;
  border: 1px solid var(--border);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.hero-demo::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
}

.hero-demo-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAPTOP / MLP PREVIEW (JS-driven animation — keep class names)
   ═══════════════════════════════════════════════════════════════════════════ */
.demo-placeholder { display: flex; justify-content: center; }
.placeholder-content { width: 100%; max-width: 640px; }

.laptop {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.laptop-screen {
  background: #1C1C1E;
  border-radius: 14px 14px 0 0;
  padding: 28px 20px 20px;
  position: relative;
  box-shadow: 0 2px 40px rgba(0,0,0,0.2);
  min-height: 360px;
}

.laptop-camera {
  width: 8px; height: 8px;
  background: #333;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.laptop-base {
  background: linear-gradient(180deg, #D1D5DB 0%, #9CA3AF 100%);
  height: 14px; border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.laptop-notch {
  width: 80px; height: 8px;
  background: #9CA3AF;
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}

/* MLP card (interview preview) */
.mlp-preview { height: 100%; }

.mlp-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  height: 100%;
}

.mlp-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.mlp-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.mlp-title { font-weight: 700; font-size: 13px; color: var(--text-primary); }
.mlp-subtitle { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }

.mlp-waveform {
  display: flex; align-items: center; gap: 3px; margin-left: auto; flex-shrink: 0;
}
.mlp-wave-bar {
  width: 3px; border-radius: 2px;
  background: var(--primary);
  animation: mlpWave 0.9s ease-in-out infinite alternate;
}
.mlp-wave-bar:nth-child(2) { animation-delay: 0.1s; }
.mlp-wave-bar:nth-child(3) { animation-delay: 0.2s; }
.mlp-wave-bar:nth-child(4) { animation-delay: 0.1s; }
.mlp-wave-bar:nth-child(5) { animation-delay: 0.0s; }
@keyframes mlpWave { to { transform: scaleY(1.8); } }

.mlp-phase {
  display: flex; align-items: center; gap: 8px;
  background: var(--background-secondary);
  padding: 6px 10px; border-radius: 8px; margin-bottom: 10px;
  font-size: 12px; color: var(--text-secondary); font-weight: 600;
}

.mlp-chat {
  min-height: 100px;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 12px;
}

.mlp-progress { margin-bottom: 10px; }
.mlp-progress-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-secondary); margin-bottom: 4px;
}
.mlp-progress-bar {
  height: 4px; background: var(--border); border-radius: 999px; overflow: hidden;
}
.mlp-progress-fill {
  height: 100%; background: var(--gradient-primary); border-radius: 999px;
  transition: width 0.5s ease;
}

.mlp-scores {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px;
}
.mlp-score { text-align: center; }
.mlp-score-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-primary);
  color: white; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.mlp-score-label { font-size: 10px; color: var(--text-secondary); }

.mlp-stage { margin-bottom: 10px; }
.mlp-report-card { background: var(--background-secondary); border-radius: 8px; padding: 10px 12px; }
.mlp-chip {
  background: var(--primary-light); color: var(--primary);
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
}
.mlp-report-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.mlp-report-row:last-child { border-bottom: none; }

.mlp-endcard {
  text-align: center; padding: 16px;
}
.mlp-logo {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary);
  color: white; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}

.mlp-replay { text-align: center; margin-top: 8px; }
.mlp-replay button {
  padding: 6px 16px;
  background: var(--background-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px; cursor: pointer;
  font-family: var(--font-sans);
  transition: background 150ms;
}
.mlp-replay button:hover { background: var(--border); }

.hidden { display: none !important; }

/* Chat bubbles */
.mlp-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.45;
  max-width: 85%;
  animation: bubbleFadeIn 0.3s ease;
}
.mlp-bubble--ai {
  background: var(--background-secondary);
  color: var(--text-primary);
  border-radius: 4px 12px 12px 12px;
}
.mlp-bubble--user {
  background: var(--gradient-primary);
  color: white;
  align-self: flex-end;
  border-radius: 12px 4px 12px 12px;
}
@keyframes bubbleFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.stats {
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}

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

.stat-item { text-align: center; padding: 16px; }

.stat-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 96px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

.timeline-container { position: relative; padding: 0 20px; }

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: var(--border);
}

.timeline-step { text-align: center; position: relative; }

.timeline-icon {
  width: 56px; height: 56px;
  background: var(--background);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.timeline-step h3 {
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-footnote {
  text-align: center; margin-top: 40px;
  font-size: 14px; color: var(--text-secondary);
}
.section-footnote a { color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════════
   WHY MIRAN / BENEFITS
   ═══════════════════════════════════════════════════════════════════════════ */
.who-its-for {
  padding: 96px 40px;
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--background);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.benefit-icon-circle {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 15px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════ */
.faq {
  padding: 96px 40px;
  max-width: 1200px; margin: 0 auto;
}

.faq-container {
  max-width: 720px; margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 150ms;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }

.faq-question::after {
  content: '+';
  font-size: 22px; font-weight: 400;
  color: var(--text-secondary);
  flex-shrink: 0; margin-left: 16px;
  transition: transform 200ms;
}
.faq-item.open .faq-question::after,
.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-answer,
.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer-content {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--secondary);
  padding: 96px 40px;
  text-align: center;
}

.cta-content { max-width: 560px; margin: 0 auto; }

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.02em;
  color: white; margin-bottom: 14px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px; line-height: 1.7;
}

.cta-content .btn-primary {
  font-size: 16px; padding: 16px 36px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 40px 0;
}

.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: start;
}

.footer-logo {
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-description {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 280px;
  line-height: 1.75;
}

.footer-section h4 {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 220ms;
}
.modal.open,
.modal.active { opacity: 1; pointer-events: auto; }

.modal-content {
  background: var(--background);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(12px);
  transition: transform 220ms;
}
.modal.open .modal-content,
.modal.active .modal-content { transform: translateY(0); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--border);
  background: var(--background);
  color: var(--text-secondary); font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 150ms;
  line-height: 1;
  padding: 0;
}
.modal-close:hover { background: var(--background-secondary); color: var(--text-primary); }

/* Setup screen */
.setup-screen { padding: 40px; }
.setup-screen h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.setup-screen .subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }

#statusMessage { margin-bottom: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px; color: var(--text-primary);
  transition: border-color 150ms, box-shadow 150ms;
  background: var(--background);
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193,39,45,0.1);
}

.form-submit { width: 100%; margin-top: 8px; font-size: 15px; padding: 14px; }
.form-note { font-size: 13px; color: var(--text-secondary); margin-top: 16px; line-height: 1.6; }

/* Interview phone screen */
.phone-screen { display: none; padding: 32px 40px; }
.phone-screen.active { display: block; }

.call-header { text-align: center; margin-bottom: 24px; }
.call-header h2 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.call-status { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.avatar-container { display: flex; justify-content: center; margin-bottom: 16px; }
.call-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-light);
  font-size: 36px;
  display: flex; align-items: center; justify-content: center;
}

.call-timer {
  text-align: center; font-size: 28px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.audio-visualizer {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; height: 40px; margin-bottom: 20px;
}
.visualizer-bar {
  width: 4px; border-radius: 2px; background: var(--primary);
  animation: visualizerAnim 0.8s ease-in-out infinite alternate;
}
.visualizer-bar:nth-child(1){ height: 10px; animation-delay: 0s; }
.visualizer-bar:nth-child(2){ height: 20px; animation-delay: 0.1s; }
.visualizer-bar:nth-child(3){ height: 32px; animation-delay: 0.2s; }
.visualizer-bar:nth-child(4){ height: 20px; animation-delay: 0.15s; }
.visualizer-bar:nth-child(5){ height: 28px; animation-delay: 0.05s; }
.visualizer-bar:nth-child(6){ height: 16px; animation-delay: 0.1s; }
.visualizer-bar:nth-child(7){ height: 8px;  animation-delay: 0.2s; }
@keyframes visualizerAnim { to { transform: scaleY(0.3); } }

.progress-phase { text-align: center; margin-bottom: 16px; }
.phase-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; font-weight: 600; }
.phase-dots { display: flex; justify-content: center; gap: 6px; }
.phase-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: background 300ms;
}
.phase-dot.active { background: var(--primary); }
.phase-dot.done { background: #10B981; }

.transcript-area {
  background: var(--background-secondary);
  border-radius: 12px;
  padding: 16px;
  max-height: 140px;
  overflow-y: auto;
  margin-bottom: 20px;
  min-height: 80px;
}

.call-actions { display: flex; justify-content: center; }
.btn-end-call {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #EF4444; color: white;
  border: none; font-size: 18px;
  cursor: pointer; transition: background 200ms;
  display: flex; align-items: center; justify-content: center;
}
.btn-end-call:hover { background: #DC2626; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #navbar, .hero, .stats, .who-its-for, .how-it-works, .faq, .cta-section, footer {
    padding-left: 24px; padding-right: 24px;
  }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); }
  .timeline-steps::before { display: none; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 16px; gap: 12px; }
  .nav-links { display: none; }

  .hero { padding: 60px 16px 56px; }
  .hero h1 { font-size: 28px; }
  .hero-lead { font-size: 15px; }
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .stats { padding: 24px 16px; }
  .stats-grid { grid-template-columns: 1fr; gap: 4px; }

  .how-it-works, .faq { padding: 60px 16px; }
  .who-its-for { padding: 60px 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 60px 16px; }
  footer { padding: 48px 16px 0; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .timeline-steps { grid-template-columns: 1fr; }
}
