:root {
  --bg-primary: #0b0f1a;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;
  --border: rgba(255,255,255,0.06);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #7c8db0;
  --badge-text: #a78bfa;
  --accent: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #8b5cf6, #a78bfa);
  --success: #22c55e;
  --error: #ef4444;
}
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #475569;
  --badge-text: #7c3aed;
  --accent: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #7c3aed, #8b5cf6);
  --success: #16a34a;
}
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd, fieldset, legend, textarea, pre, iframe, hr, table { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--text-primary); background: var(--bg-primary);
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; padding: 16px 0; transition: background 0.2s, border-color 0.2s; }
.nav.scrolled { background: rgba(11,15,26,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
[data-theme="light"] .nav.scrolled { background: rgba(248,250,252,0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.35rem; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { color: var(--text-secondary); padding: 8px 14px; border-radius: 8px; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card-hover); text-decoration: none; }
.nav-links a.nav-link-active { color: var(--text-primary); background: var(--bg-card-hover); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-ghost { color: var(--text-secondary); padding: 10px 18px; border-radius: 8px; font-weight: 500; background: transparent; border: 1px solid var(--border); display: inline-flex; align-items: center; }
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-card-hover); text-decoration: none; }
.btn-accent { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-weight: 600; background: var(--accent-gradient); color: #fff; border: none; cursor: pointer; }
.btn-accent:hover { opacity: 0.95; text-decoration: none; color: #fff; }
.theme-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.theme-btn:hover { color: var(--text-primary); background: var(--bg-card-hover); }
.theme-btn .icon-sun { display: none; }
.theme-btn .icon-moon { display: block; }
[data-theme="light"] .theme-btn .icon-sun { display: block; }
[data-theme="light"] .theme-btn .icon-moon { display: none; }
.nav-hamburger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: none; color: var(--text-primary); cursor: pointer; }

/* HERO */
.hero { padding: 100px 0 80px; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; font-size: 0.875rem; font-weight: 500; background: rgba(139,92,246,0.15); color: var(--badge-text); margin-bottom: 24px; }
.hero h1 { font-size: 3.25rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-sub { font-size: 1.25rem; color: var(--text-secondary); max-width: 660px; margin: 0 auto 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-btns .btn-accent { padding: 14px 28px; font-size: 1.05rem; }
.hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px; }
[data-theme="dark"] .hero-stat-label { color: #ffffff; opacity: 0.9; }

/* SECTION COMMON */
.section { padding: 96px 0; }
.section-dark { background: #0b0f1a; color: #cbd5e1; }
[data-theme="light"] .section-dark { background: #0f172a; }
.section-dark h2, .section-dark h3 { color: #f1f5f9; }
.section-dark p, .section-dark li { color: #cbd5e1 !important; }
/* Light sections: keep readable body copy on light bg */
.section:not(.section-dark) .section-header p { color: var(--text-secondary); }
.section-dark .btn-ghost { color: #e2e8f0; border-color: #e2e8f0; }
.section-dark .btn-ghost:hover { color: #f1f5f9; border-color: #f1f5f9; background: rgba(255,255,255,0.1); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; padding: 6px 12px; border-radius: 6px; display: inline-block; color: #7c3aed; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); }
[data-theme="dark"] .section-badge, .section-dark .section-badge { color: #c4b5fd; background: rgba(139,92,246,0.15); border-color: rgba(139,92,246,0.3); }
.section-header h2 { font-size: 2.25rem; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.section p { color: #475569; }
[data-theme="dark"] .section p { color: #cbd5e1; }

/* PROBLEM */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 900px; margin: 0 auto; }
.problem-col h3 { font-size: 1.15rem; margin-bottom: 20px; color: var(--text-secondary); }
.problem-list { list-style: none; }
.problem-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.problem-list li:last-child { border-bottom: none; }
.problem-list .icon-wrap { flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; }
.problem-list .icon-wrap svg { width: 24px; height: 24px; }
.problem-list.bad .icon-wrap svg { color: var(--error); }
.problem-list.good .icon-wrap svg { color: var(--success); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: rgba(139,92,246,0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.feature-card p { color: #475569; font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }
[data-theme="dark"] .feature-card p { color: #cbd5e1; }
.feature-card .icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(139,92,246,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card .icon-wrap svg { width: 24px; height: 24px; color: var(--accent); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

/* HOW IT WORKS */
.steps { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; position: relative; }
.step { flex: 1; text-align: center; position: relative; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-gradient); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.section-dark .step p { color: #cbd5e1; }
.section:not(.section-dark) .step h3 { color: var(--text-primary); }
.step-connector { position: absolute; top: 24px; left: 50%; width: 100%; height: 2px; background: var(--border); z-index: -1; }
.step:last-child .step-connector { display: none; }

/* MATH (light section — use theme tokens) */
.math-section { text-align: center; padding: 80px 0; }
.math-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.math-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4rem; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.math-op { font-size: 2rem; color: var(--text-muted); }
.math-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 4px; }
.math-copy { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.65; }
.math-copy-highlight {
  margin-top: 16px;
  font-weight: 600;
  color: var(--badge-text);
}

/* PREVIEW CTA */
.preview-section { text-align: center; }
.preview-form { max-width: 520px; margin: 32px auto 0; }
.preview-input-row { display: flex; gap: 12px; margin-bottom: 12px; }
.preview-input-row input { flex: 1; padding: 14px 16px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); font-size: 1rem; font-family: inherit; }
.preview-input-row input::placeholder { color: var(--text-muted); }
.preview-input-row input:focus { outline: none; border-color: var(--accent); }
.preview-submit { width: 100%; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 1.05rem; background: var(--accent-gradient); color: #fff; border: none; cursor: pointer; font-family: inherit; }
.preview-submit:hover { opacity: 0.95; }
.preview-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; }
.section-dark .preview-note { color: #94a3b8; }

/* SOCIAL PROOF */
.proof-strip { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 16px 0; }
.proof-item { text-align: center; }
.proof-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); }
.proof-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.section-dark .review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.section-dark .review-card .review-text {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
.section-dark .review-card .review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.section-dark .review-card .review-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Light theme testimonial cards (#proof only — other section-dark blocks keep dark slate) */
[data-theme="light"] #proof.section-dark {
  background: #f8f9fa;
}
[data-theme="light"] #proof.section-dark .section-header h2 {
  color: #0f172a !important;
}
[data-theme="light"] #proof.section-dark .section-badge {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}
[data-theme="light"] .review-card,
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}
[data-theme="light"] .review-card p,
[data-theme="light"] .review-card .review-text,
[data-theme="light"] .testimonial-card p,
[data-theme="light"] .testimonial-card .testimonial-text,
[data-theme="light"] .review-card blockquote,
[data-theme="light"] .testimonial-card blockquote {
  color: #374151 !important;
}
[data-theme="light"] .review-card .review-author,
[data-theme="light"] .testimonial-card .testimonial-author,
[data-theme="light"] .review-card strong {
  color: #111827 !important;
}
[data-theme="light"] .review-card .review-company,
[data-theme="light"] .testimonial-card .testimonial-company {
  color: #6b7280 !important;
}

/* SPOTLIGHT TESTIMONIAL — single-card variant of #proof */
.review-spotlight {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.review-card-spotlight {
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: 44px 40px;
}
.review-card-spotlight .review-text {
  font-size: 1.35rem;
  line-height: 1.55;
  margin: 0 0 22px;
}
.review-card-spotlight .review-author {
  margin-bottom: 2px;
}
.review-card-spotlight .review-company {
  margin-bottom: 18px;
}
.review-site-link {
  display: inline-block;
  color: #a78bfa;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.review-site-link:hover {
  color: #c4b5fd;
}
@media (max-width: 720px) {
  .review-card-spotlight {
    padding: 28px 22px;
  }
  .review-card-spotlight .review-text {
    font-size: 1.15rem;
  }
}

/* WORK SHOWCASE — single live client build inside #proof */
.showcase {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.showcase-2up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}
.showcase-2up .showcase-card {
  max-width: none;
  display: flex;
  flex-direction: column;
}
.showcase-2up .showcase-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.showcase-2up .showcase-desc {
  flex: 1;
}
.showcase-card {
  display: block;
  max-width: 860px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.showcase-card:hover,
.showcase-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.showcase-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0b0f1a;
  border-bottom: 1px solid var(--border);
}
.showcase-dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}
.showcase-url {
  margin-left: 10px;
  font-size: 0.8rem;
  color: #94a3b8;
}
.showcase-shot {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
}
.showcase-body {
  padding: 26px 30px 30px;
  text-align: center;
}
.showcase-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.showcase-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.showcase-desc {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 620px;
  margin: 14px auto 18px;
}
.showcase-card .review-site-link {
  display: inline-block;
}
.showcase-card:hover .review-site-link,
.showcase-card:focus-visible .review-site-link {
  color: #c4b5fd;
}
[data-theme="light"] .showcase-card {
  background: #ffffff;
  border-color: #e5e7eb;
}
[data-theme="light"] .showcase-card:hover,
[data-theme="light"] .showcase-card:focus-visible {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
[data-theme="light"] .showcase-bar {
  background: #f1f5f9;
  border-bottom-color: #e5e7eb;
}
[data-theme="light"] .showcase-url {
  color: #64748b;
}
[data-theme="light"] .showcase-shot {
  border-bottom-color: #e5e7eb;
}
[data-theme="light"] .showcase-name {
  color: #111827 !important;
}
[data-theme="light"] .showcase-meta {
  color: #6b7280 !important;
}
[data-theme="light"] .showcase-desc {
  color: #374151 !important;
}
[data-theme="light"] .showcase-card .review-site-link {
  color: #6d28d9;
}
[data-theme="light"] .showcase-card:hover .review-site-link,
[data-theme="light"] .showcase-card:focus-visible .review-site-link {
  color: #5b21b6;
}
@media (max-width: 860px) {
  .showcase-2up {
    grid-template-columns: minmax(0, 1fr);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 720px) {
  .showcase-body {
    padding: 22px 20px 26px;
  }
  .showcase-desc {
    font-size: 0.95rem;
  }
  .showcase-url {
    font-size: 0.72rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-card,
  .showcase-card:hover,
  .showcase-card:focus-visible {
    transform: none;
    transition: none;
  }
}

/* FINAL CTA */
.final-cta { text-align: center; padding: 96px 0; }
.final-cta h2 { font-size: 2.5rem; margin-bottom: 16px; }
.final-cta p { color: #cbd5e1 !important; font-size: 1.15rem; margin-bottom: 32px; }
.final-cta .btn-ghost { color: #e2e8f0 !important; border-color: #e2e8f0 !important; }
.final-cta .hero-btns { margin-bottom: 0; }

/* FOOTER */
.footer { background: #0b0f1a; padding: 64px 0 24px; border-top: 1px solid var(--border); }
[data-theme="light"] .footer { background: #0f172a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid.footer-grid--4cols { grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-grid.footer-grid--5cols { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
.footer-brand .nav-logo { font-size: 1.25rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; }
.footer-col h3 { font-size: 0.9rem; font-weight: 600; color: #e2e8f0; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; }
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); color: #94a3b8; font-size: 0.9rem; }

.theme-float { position: fixed; bottom: 24px; right: 24px; z-index: 99; }
.theme-float .theme-btn { width: 48px; height: 48px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { flex-direction: column; gap: 32px; }
      .step-connector { display: none; }
      .problem-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid.footer-grid--4cols { grid-template-columns: 1fr 1fr; }
      .footer-grid.footer-grid--5cols { grid-template-columns: 1fr 1fr; }
    }
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 1.1rem; }
  .section { padding: 64px 0; }
  .section-header h2 { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .preview-input-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { gap: 32px; }
  .math-num { font-size: 2.5rem; }
  .final-cta h2 { font-size: 1.75rem; }
}

/* Generator hero + proxy autocomplete (shared with CTA sections) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 14px;
}
.btn-primary:hover {
  opacity: 0.95;
}
.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
}

.hero-generator {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 88px;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(139, 92, 246, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 80% 50% at 0% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 40%),
    linear-gradient(165deg, #070b14 0%, #0f172a 38%, #111827 72%, var(--bg-primary) 100%);
}
.hero-generator::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
/* Light theme hero — soft purple gradient (dark theme unchanged above) */
[data-theme="light"] .hero.hero-generator {
  background: linear-gradient(180deg, #f3f0ff 0%, #ede9fe 30%, #ffffff 100%);
}
[data-theme="light"] .hero-generator::before {
  opacity: 0.08;
}
.hero-generator .hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hero-generator h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 16px;
  color: #f1f5f9;
}
[data-theme="light"] .hero.hero-generator h1 {
  color: #1a1a2e;
}
.hero-generator h1 em {
  font-style: normal;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-generator .hero-sub {
  color: #e2e8f0;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 32px;
}
[data-theme="light"] .hero.hero-generator .hero-sub {
  color: #4a4a68;
}

/* Shared layout for hero + CTA preview forms */
.hero-generator-form {
  position: relative;
  max-width: 560px;
  margin: 0 auto 32px;
}
/* Hero-only: card shell so the primary generator reads as the focal point */
.hero.hero-generator .hero-generator-form {
  margin-bottom: 36px;
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(139, 92, 246, 0.12);
  backdrop-filter: blur(12px);
}
[data-theme="light"] .hero.hero-generator .hero-generator-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-input-wrap {
  position: relative;
  margin-bottom: 16px;
}
.hero-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  color: #e2e8f0;
}
.hero.hero-generator .hero-input-icon {
  opacity: 0.65;
  color: #c4b5fd;
  filter: none;
}
.hero-places-input {
  width: 100%;
  padding: 18px 20px 18px 48px;
  font-size: 17px;
  font-family: inherit;
  border-radius: 14px;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
/* Bottom / inner-page CTA (preview-form): readable on section-dark, lighter than hero */
.preview-form .hero-places-input {
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}
[data-theme="light"] .preview-form .hero-places-input {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}
.preview-form .hero-places-input:focus {
  border-color: var(--accent, #7c5bf0);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
/* Hero: high-contrast field — flat, no drop shadow (card provides depth) */
.hero.hero-generator .hero-places-input {
  border: 1px solid rgba(167, 139, 250, 0.5);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: none;
  backdrop-filter: none;
}
[data-theme="light"] .hero.hero-generator .hero-places-input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #1a1a2e;
}
.hero-places-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.hero.hero-generator .hero-places-input::placeholder {
  color: rgba(226, 232, 240, 0.55);
}
[data-theme="light"] .hero.hero-generator .hero-places-input::placeholder {
  color: #999;
}
.hero.hero-generator .hero-places-input:focus {
  border-color: #a78bfa;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.45);
}
[data-theme="light"] .hero.hero-generator .hero-places-input:focus {
  border-color: #7c3aed;
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.hero-places-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
}
.hero-places-dropdown.active {
  display: block;
}
.hero-place-item {
  padding: 14px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a2e;
  font-size: 15px;
  transition: background 0.1s;
  text-align: left;
}
.hero-place-item:last-child {
  border-bottom: none;
}
.hero-place-item:hover,
.hero-place-item:focus {
  background: #f5f0ff;
}
.hero-place-item strong {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
}
.hero-place-item span {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

.hero-email-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}

/* Dark theme (default) */
.hero.hero-generator .hero-email-input {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #f1f5f9;
}
.hero.hero-generator .hero-email-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}
.hero.hero-generator .hero-email-input:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.15);
}

/* Light theme */
[data-theme="light"] .hero.hero-generator .hero-email-input {
  background: #f9f8fc;
  border: 1px solid #d1d5db;
  color: #1a1a2e;
}
[data-theme="light"] .hero.hero-generator .hero-email-input::placeholder {
  color: #999;
}
[data-theme="light"] .hero.hero-generator .hero-email-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}

.hero-build-btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s;
}
.hero-build-btn.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-stats-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-generator .hero-stats-bar .hero-stat {
  color: #cbd5e1;
  opacity: 1;
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}
.hero-stat svg {
  flex-shrink: 0;
  color: #cbd5e1;
  opacity: 0.95;
}
.hero-generator .hero-proof {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 24px;
  opacity: 1;
}
.hero-proof {
  font-size: 13px;
  color: #94a3b8;
}

[data-theme="light"] .hero.hero-generator .hero-stats-bar .hero-stat,
[data-theme="light"] .hero.hero-generator .hero-stats-bar .hero-stat svg {
  color: #555;
}
[data-theme="light"] .hero.hero-generator .hero-proof {
  color: #666;
}
[data-theme="light"] .hero.hero-generator .hero-build-btn.btn-primary.active {
  background: #7c3aed;
  color: #fff;
}
[data-theme="light"] .hero.hero-generator .hero-input-icon {
  color: #7c3aed;
  filter: none;
}

@media (max-width: 640px) {
  .hero-generator {
    padding: 100px 16px 60px;
    min-height: 70vh;
  }
  .hero-stats-bar {
    flex-direction: column;
    gap: 8px;
  }
  .hero-places-input {
    font-size: 16px;
    padding: 16px 16px 16px 44px;
  }
}

/* ============================================================
   THREE-TIER PRICING + VOICE AI ADDON — added 2026-04-29
   ============================================================ */

.pricing-build-fee {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.pricing-build-fee-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-build-fee-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.pricing-build-fee-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}
.pricing-agency-compare {
  color: var(--text-muted);
  font-style: italic;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media (max-width: 960px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.tier-card-featured {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.tier-card-featured:hover {
  transform: translateY(-10px);
}
@media (max-width: 960px) {
  .tier-card-featured { transform: none; }
  .tier-card-featured:hover { transform: translateY(-2px); }
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: #a78bfa;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.tier-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: inherit;
}
.tier-card-featured .tier-name { color: #fff; }

.tier-tagline {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 42px;
}
.tier-card-featured .tier-tagline { color: rgba(255,255,255,0.78); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.tier-card-featured .tier-price { border-bottom-color: rgba(255,255,255,0.15); }

.tier-price-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
}
.tier-card-featured .tier-price-num { color: #fff; }

.tier-price-cycle {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.tier-card-featured .tier-price-cycle { color: rgba(255,255,255,0.6); }

.tier-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex: 1;
}
.tier-includes li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.tier-card-featured .tier-includes li { color: rgba(255,255,255,0.88); }
.tier-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  color: #a78bfa;
  font-weight: 800;
}
.tier-card-featured .tier-includes li::before { color: #c4b5fd; }
.tier-includes li.tier-muted {
  color: var(--text-muted);
  font-style: italic;
}
.tier-card-featured .tier-includes li.tier-muted { color: rgba(255,255,255,0.5); }
.tier-includes li.tier-muted::before { content: "·"; color: var(--text-muted); }
.tier-card-featured .tier-includes li.tier-muted::before { color: rgba(255,255,255,0.4); }

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px 22px;
  background: var(--text-primary);
  color: var(--bg-card);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.tier-cta:hover {
  background: #a78bfa;
  transform: translateY(-1px);
}
.tier-cta-featured {
  background: #a78bfa;
  color: #fff;
}
.tier-cta-featured:hover {
  background: #fff;
  color: #1a1a2e;
}
.tier-card-featured .tier-cta { background: #a78bfa; color: #fff; }
.tier-card-featured .tier-cta:hover { background: #fff; color: #1a1a2e; }

/* Voice AI addon */
.voice-addon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid #10b981;
  border-radius: 16px;
}
@media (max-width: 720px) {
  .voice-addon { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .voice-addon-price { text-align: left; }
}

.voice-addon-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: 8px;
}
.voice-addon-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--text-primary);
}
.voice-addon-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 16px 0;
  max-width: 580px;
}

.voice-addon-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #10b981;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.voice-addon-cta:hover {
  background: #059669;
  transform: translateY(-1px);
}

.voice-addon-price {
  text-align: right;
}
.voice-addon-price-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #10b981;
}
.voice-addon-price-cycle {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 4px;
}
.voice-addon-price-setup {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.pricing-aside {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}
.pricing-aside a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}
.pricing-aside a:hover { text-decoration: underline; }

/* END three-tier pricing */

/* ============================================================
   AI RECEPTIONIST ELEVATION — Block 2
   ============================================================ */

/* Hero demo line — small live-call badge under stats */
.hero-demo-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin: 20px auto 0;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #047857;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.hero-demo-line:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
}
.hero-demo-line-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: hero-demo-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes hero-demo-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { transform: scale(1.15); opacity: 0.85; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
.hero-demo-line-label {
  color: #047857;
}
.hero-demo-line-num {
  color: #065f46;
  font-weight: 700;
  letter-spacing: 0.01em;
}
[data-theme="dark"] .hero-demo-line {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}
[data-theme="dark"] .hero-demo-line-label { color: #6ee7b7; }
[data-theme="dark"] .hero-demo-line-num { color: #a7f3d0; }

/* Receptionist feature card — green accent + tag + tap-to-call CTA */
.feature-card-receptionist {
  position: relative;
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, var(--bg-card) 100%);
}
.feature-card-receptionist .icon-wrap {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}
.feature-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.feature-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 16px;
  background: #10b981;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
  align-self: flex-start;
}
.feature-card-cta:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* END AI receptionist elevation */

/* ============================================================
   FEATURE CARD TIER TAGS — Block 3
   ============================================================ */

/* Ensure feature cards can position the tag correctly */
.feature-card {
  position: relative;
}

/* Base tag style — neutral default */
.feature-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Variant: included in all plans (purple, neutral) */
.feature-card-tag-included {
  background: rgba(167, 139, 250, 0.12);
  color: #6d28d9;
  border: 1px solid rgba(167, 139, 250, 0.3);
}
[data-theme="dark"] .feature-card-tag-included {
  background: rgba(167, 139, 250, 0.18);
  color: #c4b5fd;
  border-color: rgba(167, 139, 250, 0.35);
}

/* The receptionist tag from Block 2 keeps its existing green solid style — */
/* this rule is just a guard so the base .feature-card-tag rules don't override it */
.feature-card-receptionist .feature-card-tag {
  background: #10b981;
  color: #fff;
  border: none;
}

/* Ensure h3 inside feature card has clearance for the tag on narrow cards */
.feature-card .feature-card-tag + .icon-wrap {
  margin-top: 4px;
}

/* On narrow mobile, tag can shift to a stacked position above icon */
@media (max-width: 480px) {
  .feature-card-tag {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: 12px;
  }
}

/* END feature card tier tags */

/* ───── AVERY DEMO SECTION — tap-to-call hero treatment ───── */
.avery-container {
  text-align: center;
  max-width: 720px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.avery-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.avery-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: hero-demo-pulse 1.8s infinite;
}
.avery-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #f1f5f9;
}
.avery-subtitle {
  color: #cbd5e1 !important;
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 32px;
}
.avery-subtitle strong {
  color: #f1f5f9;
  font-weight: 700;
}
.avery-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.avery-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(139, 92, 246, 0.5);
}
.avery-phone-icon { flex-shrink: 0; }
.avery-call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.avery-call-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.avery-call-sub {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 4px;
}
.avery-footnote {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 20px 0 0;
}
/* Light-theme contrast — keep #avery-demo dark-slab in both modes for impact */
[data-theme="light"] #avery-demo.section-dark { background: #0f172a; }
[data-theme="light"] #avery-demo .avery-headline { color: #f1f5f9; }
[data-theme="light"] #avery-demo .avery-subtitle { color: #cbd5e1 !important; }
@media (max-width: 720px) {
  .avery-headline { font-size: 1.85rem; }
  .avery-subtitle { font-size: 1rem; }
  .avery-call-btn {
    width: 100%;
    padding: 18px 24px;
    gap: 12px;
    justify-content: center;
  }
  .avery-call-num { font-size: 1.3rem; }
}

/* ───── FAQ SECTION — open-by-default, single column, direct ───── */
.faq-container { max-width: 860px; }
.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.faq-answer {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.faq-answer a {
  color: #a78bfa;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 139, 250, 0.3);
  transition: border-color 0.15s ease;
}
.faq-answer a:hover { border-bottom-color: #a78bfa; }
.faq-aside {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .faq-question { font-size: 1.15rem; }
  .faq-answer { font-size: 0.95rem; }
  .faq-item { padding: 22px 0; }
}
