*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --surface: #181818;
  --border: #2a2a2a;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --text: #f5f5f5;
  --text-muted: #888;
  --text-dim: #555;
}

html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
}
.stat-unit {
  font-size: 1rem;
  color: var(--text-muted);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Social Proof */
.social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.proof-item svg { color: #22c55e; flex-shrink: 0; }

/* Value Equation Card */
.value-equation {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.ve-header { margin-bottom: 1rem; }
.ve-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 500;
}
.ve-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}
.ve-numerator {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 0.75rem;
}
.ve-num-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22c55e;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.ve-num-items {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ve-num-items span {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.ve-divider {
  display: flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.5;
}
.ve-denominator {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
  padding: 0.75rem;
}
.ve-denom-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ve-denom-items span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.denom-icon {
  color: var(--amber);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ve-verdict {
  text-align: center;
  margin-top: 1rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.02em;
}

/* Agent Loop */
.agent-loop {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.loop-step {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.2s;
}
.loop-step:hover { background: rgba(255,255,255,0.03); }
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.step-content { }
.step-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.loop-arrow {
  display: flex;
  justify-content: center;
  color: var(--text-dim);
}
.step-status { display: flex; align-items: center; justify-content: flex-end; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}
.status-dot.active { background: #22c55e; }
.status-dot.pulse {
  background: var(--amber);
  animation: pulse 2s infinite;
}
.loop-badge {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ── SECTION SHARED ────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

/* ── FEATURES ──────────────────────────────── */
.features {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.features-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.feature-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--amber); }
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.feature-proof {
  font-size: 0.72rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── PROCESS ───────────────────────────────── */
.process {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.process-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.process-step {
  position: relative;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245,158,11,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── OUTCOMES ─────────────────────────────── */
.outcomes {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.outcomes-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}
.outcomes-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.outcome-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
}
.outcome-card.outcome-highlight {
  border: 1px solid rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.04);
}
.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.outcome-metric {
  margin-bottom: 1rem;
}
.metric-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.metric-sub {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.outcome-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRICING ───────────────────────────────── */
.pricing {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Pricing Equation comparison */
.pricing-equation {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.pe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.pe-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}
.pe-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pe-cost {
  padding: 1.5rem;
  border-radius: 12px;
}
.pe-cost.apax {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
}
.pe-cost.sdr {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}
.pe-cost-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pe-cost-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pe-cost-amount .pe-period {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pe-features {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pe-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.pe-cost.apax .pe-features li svg { color: #22c55e; }
.pe-cost.sdr .pe-features li svg { color: #ef4444; }
.pe-features-muted li { color: var(--text-muted); text-decoration: line-through; opacity: 0.6; }
.pe-vs {
  display: flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pe-savings {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #22c55e;
}

/* Pricing Card */
.pricing-card-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.pc-badge {
  display: inline-block;
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.pc-plan {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pc-price {
  margin-bottom: 0.5rem;
}
.pc-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
}
.pc-period {
  font-size: 1rem;
  color: var(--text-muted);
}
.pc-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.pc-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pc-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pc-includes li svg { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.pc-cta {
  display: block;
  background: var(--amber);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 1rem;
  transition: opacity 0.2s, transform 0.2s;
}
.pc-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pc-fine {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── CLOSING ───────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }

/* Value Equation in closing */
.closing-ve {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
}
.cve-formula {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.cve-top {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.cve-div {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
}
.cve-bottom {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.cve-verdict {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #22c55e;
  margin-top: 0.5rem;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.closing-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.closing-cta-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--amber);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-trial {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-signup:hover { opacity: 0.9; }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── NO-CREDITS BANNER ─────────────────────── */
.no-credits-banner {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.ncb-inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.06) 100%);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 14px;
  padding: 1rem 1.5rem;
}
.ncb-icon {
  color: var(--amber);
  flex-shrink: 0;
}
.ncb-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.ncb-text strong {
  color: var(--amber);
  font-weight: 700;
}

/* ── COMPETITOR TABLE ──────────────────────── */
.competitor-table-wrap {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  overflow-x: auto;
}
.competitor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 640px;
}
.competitor-table thead tr {
  border-bottom: 2px solid var(--border);
}
.competitor-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ct-header-label { color: var(--text-dim); }
.ct-apex {
  color: var(--amber);
  font-weight: 700;
}
.ct-comp { color: var(--text-dim); }
.competitor-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}
.ct-label {
  color: var(--text-muted);
  font-weight: 500;
}
.ct-apex-value {
  font-weight: 600;
  color: var(--text);
}
.ct-winner {
  background: rgba(34,197,94,0.05);
}
.ct-comp-value {
  color: var(--text-dim);
}
.ct-row-highlight {
  background: rgba(245,158,11,0.03);
}
.ct-row-warning {
  background: rgba(239,68,68,0.03);
}
.ct-price-badge {
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  display: inline-block;
}
.ct-warn { color: #ef4444; }

/* ── PRICING FAQ ───────────────────────────── */
.pricing-faq {
  max-width: 700px;
  margin: 0 auto 3rem;
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.faq-toggle:hover {
  border-color: var(--amber);
  background: rgba(245,158,11,0.03);
}
.faq-q { display: flex; align-items: center; gap: 0.5rem; }
.faq-hint {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.75rem;
}
.faq-chevron {
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-toggle.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin-top: -1px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 5rem 1.5rem 3rem; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .features, .process, .outcomes, .closing { padding: 4rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; }
}