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

:root {
  --navy:   #0f172a;
  --slate:  #334155;
  --muted:  #64748b;
  --border: #e2e8f0;
  --light:  #f8fafc;
  --white:  #ffffff;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --green:  #16a34a;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.nav__inner { display: flex; justify-content: space-between; align-items: center; }
.nav__logo { font-weight: 700; font-size: 17px; color: var(--navy); text-decoration: none; }
.nav__logo span { color: var(--orange); }
.nav__cta {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
}
.nav__cta:hover { background: var(--orange-dark); }

/* ── Hero ── */
.hero {
  padding: 80px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, #fff7ed 0%, var(--white) 100%);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero__headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero__subheadline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.hero__cta:hover { background: var(--orange-dark); }
.hero__trust {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Pain section ── */
.pain { padding: 72px 0; background: var(--navy); }
.pain__intro {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pain__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
}
.pain__card::before {
  content: "✗";
  display: block;
  color: #f97316;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Features ── */
.features { padding: 80px 0; }
.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-headline {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 48px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card__body { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── How it works ── */
.how { padding: 80px 0; background: var(--light); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 0;
}
.step { text-align: center; }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step__body { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── Pricing ── */
.pricing { padding: 80px 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.plan-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-card__name { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.plan-card__price { font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; }
.plan-card__price sub { font-size: 14px; font-weight: 400; vertical-align: bottom; }
.plan-card__desc { font-size: 14px; color: var(--slate); margin: 12px 0 20px; line-height: 1.5; }
.plan-card__features { list-style: none; font-size: 14px; color: var(--slate); }
.plan-card__features li { padding: 4px 0; }
.plan-card__features li::before { content: "✓  "; color: var(--green); font-weight: 700; }

/* ── CTA section ── */
.cta-section {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}
.cta-section__headline {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section__sub { font-size: 16px; color: #94a3b8; margin-bottom: 36px; }
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover { background: var(--orange-dark); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--navy);
}
.btn--full { display: block; width: 100%; text-align: center; }

/* ── FAQ ── */
.faq { padding: 80px 0; background: var(--light); }
.faq__list { max-width: 680px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq__q { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq__a { font-size: 15px; color: var(--slate); line-height: 1.7; }

/* ── Forms ── */
.form-page { padding: 64px 0; min-height: 70vh; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}
.form-card__title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.form-card__sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus { border-color: var(--orange); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
.form-error { font-size: 13px; color: #dc2626; margin-top: 10px; display: none; }
.form-success { font-size: 14px; color: var(--green); margin-top: 10px; display: none; }

/* ── Footer ── */
.footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__brand { font-size: 14px; color: var(--muted); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer__links a:hover { color: var(--navy); }

/* ── Pricing breakdown (onboard.html) ── */
.tier-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 28px; }
.tier-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.tier-card.selected, .tier-card:hover { border-color: var(--orange); }
.tier-card__name { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.tier-card__price { font-size: 22px; font-weight: 800; color: var(--navy); }
.tier-card__price sub { font-size: 13px; font-weight: 400; }
.tier-card__props { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Status badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.badge--active { background: #dcfce7; color: #15803d; }
.badge--expired { background: #fee2e2; color: #dc2626; }

@media (max-width: 600px) {
  .hero { padding: 48px 0 44px; }
  .form-card { padding: 28px 20px; }
  .footer__inner { justify-content: center; text-align: center; }
}
