/* ============================================================
   CALL AGENTS — DESIGN SYSTEM
   Violet + warm coral, midnight base, glassmorphism accents
   ============================================================ */
:root {
  --bg:         #0a0a18;
  --bg-2:       #0f0f24;
  --surface:    #14142e;
  --surface-2:  #1a1a3a;
  --border:     #2a2a4a;

  --primary:    #8b5cf6;          /* violet */
  --primary-2:  #a855f7;
  --primary-deep:#6d28d9;
  --accent:     #fb7185;          /* coral */
  --accent-2:   #f59e0b;          /* amber accent for highlights */
  --success:    #34d399;

  --text:       #f4f4ff;
  --text-muted: #9ca3af;
  --text-dim:   #6b7280;

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:     14px;
  --radius-lg:  22px;
  --max-w:      1180px;
  --shadow-glow: 0 8px 40px rgba(139, 92, 246, 0.35);

  --grad-primary: linear-gradient(135deg, #8b5cf6 0%, #fb7185 100%);
  --grad-mesh:    radial-gradient(at 20% 20%, rgba(139,92,246,.18) 0%, transparent 50%),
                  radial-gradient(at 80% 0%,  rgba(251,113,133,.15) 0%, transparent 50%),
                  radial-gradient(at 60% 100%, rgba(168,85,247,.12) 0%, transparent 50%);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--primary); color: white; padding: 8px 16px; border-radius: 6px;
}
.skip-link:focus { left: 8px; top: 8px; z-index: 9999; }

/* ============================================================ TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(1.95rem, 7.2vw, 4rem); word-break: break-word; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================ LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }
.section { padding: 100px 22px; position: relative; }
.section-tight { padding: 70px 22px; }
.section-dark { background: var(--bg-2); }
.section-cta { background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05) 50%, transparent); }
.section-sub { color: var(--text-muted); margin-top: -8px; margin-bottom: 32px; max-width: 640px; font-size: 1.05rem; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { box-shadow: 0 12px 50px rgba(139, 92, 246, 0.5); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(139,92,246,0.06); }

.btn-call {
  background: rgba(34,211,153,0.1);
  color: var(--success);
  border: 1px solid rgba(52,211,153,0.4);
}
.btn-call:hover { background: rgba(34,211,153,0.18); border-color: var(--success); }
.call-icon { font-size: 1.05em; flex-shrink: 0; }
.call-label-full { display: inline; }
.call-label-short { display: none; }

/* ============================================================ ANNOUNCEMENT */
.announcement {
  background: linear-gradient(90deg, rgba(139,92,246,0.12), rgba(251,113,133,0.12));
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
}
.announcement a { color: var(--accent); font-weight: 600; }
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50%     { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
}

/* ============================================================ NAV */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,24,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--grad-primary);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid white;
  border-bottom: 0;
  border-right: 0;
  border-top-left-radius: 5px;
  transform: rotate(-45deg);
}
.logo-text-accent { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:not(.btn):hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s;
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    left: 0; right: 0; top: 68px;
    flex-direction: column;
    background: rgba(10,10,24,0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 18px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a:not(.btn) { font-size: 1rem; }
  .nav-links .btn { align-self: flex-start; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================ HERO */
.hero {
  position: relative;
  padding: 80px 22px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.orb-1 { width: 480px; height: 480px; background: var(--primary); top: -100px; left: -120px; }
.orb-2 { width: 380px; height: 380px; background: var(--accent); top: 100px; right: -100px; opacity: 0.35; }
.orb-3 { width: 300px; height: 300px; background: var(--primary-2); bottom: -80px; left: 30%; opacity: 0.25; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.hero-text, .hero-visual { min-width: 0; }
.hero-text h1 { margin: 14px 0 22px; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-trust li { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ===== Phone mockup ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mock {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px 18px 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}
.phone-mock::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(139,92,246,0.5), transparent 50%, rgba(251,113,133,0.5));
  z-index: -1;
  opacity: 0.7;
}
.phone-mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: 0.8rem;
}
.phone-status { color: var(--accent); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.rec-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: 0.3 } }
.phone-name { color: var(--text-muted); }
.transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}
.bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
}
.bubble-them {
  background: var(--surface-2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-us {
  background: var(--grad-primary);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 4px 14px rgba(139,92,246,0.35);
}
.bubble.typing { display: inline-flex; gap: 4px; padding: 14px 18px; }
.bubble.typing span {
  width: 6px; height: 6px; background: white; border-radius: 50%; opacity: 0.4;
  animation: typing 1.4s infinite ease-in-out;
}
.bubble.typing span:nth-child(2) { animation-delay: .2s; }
.bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.phone-mock-bottom {
  display: flex; justify-content: center; padding-top: 14px;
}
.hangup {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  border: 0;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.waveform {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  z-index: 1;
}
.waveform span {
  display: block;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1)  { animation-delay: 0s;    height: 8px; }
.waveform span:nth-child(2)  { animation-delay: .1s;   height: 18px; }
.waveform span:nth-child(3)  { animation-delay: .2s;   height: 26px; }
.waveform span:nth-child(4)  { animation-delay: .3s;   height: 12px; }
.waveform span:nth-child(5)  { animation-delay: .4s;   height: 22px; }
.waveform span:nth-child(6)  { animation-delay: .15s;  height: 14px; }
.waveform span:nth-child(7)  { animation-delay: .25s;  height: 28px; }
.waveform span:nth-child(8)  { animation-delay: .35s;  height: 8px; }
.waveform span:nth-child(9)  { animation-delay: .05s;  height: 18px; }
.waveform span:nth-child(10) { animation-delay: .15s;  height: 24px; }
.waveform span:nth-child(11) { animation-delay: .35s;  height: 14px; }
.waveform span:nth-child(12) { animation-delay: .25s;  height: 22px; }
.waveform span:nth-child(13) { animation-delay: .45s;  height: 10px; }
.waveform span:nth-child(14) { animation-delay: .15s;  height: 18px; }
.waveform span:nth-child(15) { animation-delay: 0s;    height: 8px; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50%      { transform: scaleY(1.2); opacity: 1; }
}

/* ============================================================ LOGOS / MARQUEE */
.logos { padding: 36px 22px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================ CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } }

.card-glow {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s, border-color .25s;
}
.card-glow:hover { transform: translateY(-4px); border-color: var(--primary); }
.card-glow.card-featured {
  background: linear-gradient(160deg, rgba(139,92,246,0.12), rgba(251,113,133,0.06) 60%, var(--surface));
  border-color: rgba(139,92,246,0.5);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  margin-bottom: 16px;
}
.card-glow.card-featured .card-icon {
  background: var(--grad-primary);
  border-color: transparent;
}
.card-glow h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card-list {
  list-style: none;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.card-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0 5px 20px;
  position: relative;
}
.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.card-flag {
  position: absolute;
  top: -10px; right: 18px;
  background: var(--grad-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================ METRICS */
.metrics { padding: 60px 22px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
.metric { text-align: center; }
.metric-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.metric-lbl { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================ STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
  counter-reset: stp;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.step h3 { margin-bottom: 8px; font-size: 1.2rem; }

/* ============================================================ INDUSTRIES */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 720px) { .industries { grid-template-columns: repeat(2, 1fr); } }
.industry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s;
}
.industry:hover { border-color: var(--primary); }

/* ============================================================ FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.feature-icon { font-size: 1.6rem; }
.feature h3 { font-size: 1.1rem; }

/* ============================================================ PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: linear-gradient(160deg, rgba(139,92,246,0.12), var(--surface));
  border-color: rgba(139,92,246,0.55);
  box-shadow: var(--shadow-glow);
}
.price-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-tier { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin: 14px 0; }
.price-from { font-size: 0.85rem; color: var(--text-muted); margin-right: 4px; }
.price-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.02em;
}
.price-num--small { font-size: 2rem; }
.price-period { color: var(--text-muted); font-size: 0.95rem; }
.price-tagline { color: var(--text-muted); font-size: 0.95rem; min-height: 50px; }
.price-features {
  list-style: none;
  margin: 18px 0 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-features li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.94rem;
}
.price-features li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-btn { margin-top: auto; width: 100%; }
.pricing-note { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-top: 28px; }

/* ============================================================ TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial blockquote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial blockquote::before { content: '"'; color: var(--accent); font-size: 1.5rem; font-weight: 700; margin-right: 2px; }
.testimonial figcaption { font-size: 0.88rem; color: var(--text-muted); }
.testimonial figcaption strong { color: var(--text); display: block; }

/* ============================================================ QUIZ */
.quiz-card {
  max-width: 660px;
  margin: 32px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.quiz-progress {
  height: 4px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
.quiz-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--grad-primary);
  border-radius: 4px;
  transition: width .3s ease;
}
.quiz-step.hidden { display: none; }
.quiz-q { font-family: var(--font-display); font-size: 1.2rem; color: var(--text); margin-bottom: 18px; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.quiz-opt {
  text-align: left;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.quiz-opt:hover { border-color: var(--primary); background: rgba(139,92,246,0.06); }
.quiz-opt.selected {
  border-color: var(--primary);
  background: rgba(139,92,246,0.12);
  box-shadow: 0 0 0 1px var(--primary) inset;
}
.quiz-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.quiz-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}
.quiz-input:focus { outline: 2px solid var(--primary); border-color: var(--primary); }
.quiz-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }
.quiz-consent input { margin-top: 3px; accent-color: var(--primary); }
.quiz-submit, .quiz-next { width: 100%; }
.quiz-gdpr { font-size: 0.78rem; color: var(--text-dim); margin-top: 12px; text-align: center; }
.quiz-gdpr a { color: var(--accent); }
.quiz-thanks { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); margin-bottom: 12px; }
.quiz-or { margin-top: 18px; color: var(--text-muted); font-size: 0.9rem; text-align: center; }
.quiz-or a { color: var(--accent); font-weight: 600; }

/* ============================================================ FAQ */
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .25s;
  margin-left: 16px;
}
.faq-item[open] .faq-chev { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--text-muted); font-size: 0.94rem; line-height: 1.65; }
.faq-item a { color: var(--accent); }

/* ============================================================ FINAL CTA */
.final-cta {
  position: relative;
  padding: 100px 22px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(139,92,246,0.08) 100%);
  border-top: 1px solid var(--border);
}
.final-cta-inner h2 { margin-bottom: 14px; }
.final-cta-inner p { max-width: 560px; margin: 0 auto 28px; font-size: 1.05rem; }
.final-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================ FOOTER */
.footer { padding: 32px 22px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-copy { color: var(--text-dim); font-size: 0.85rem; }
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--accent); }
.footer-phone { color: var(--accent); font-weight: 600; font-size: 0.95rem; }

/* ============================================================ MOBILE TIGHTENING */
@media (max-width: 600px) {
  .section { padding: 70px 18px; }
  .section-tight { padding: 50px 18px; }
  .container { padding: 0 18px; }
  .hero { padding: 50px 18px 80px; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 14px; font-size: 0.82rem; }
  .quiz-card { padding: 26px 22px; }
  .price-card { padding: 26px 22px; }
  .footer-inner { justify-content: center; text-align: center; }

  /* Mobile-friendly button sizing */
  .btn-lg { padding: 14px 18px; font-size: 0.92rem; }
  .btn-call .call-label-full { display: none; }
  .btn-call .call-label-short { display: inline; }
  .final-ctas .btn { width: 100%; }
}
