/* LeadBack — clean, conversion-focused */
:root {
  --bg: #f6f7f9;
  --bg-alt: #eef1f5;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6575;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --navy: #0b1f33;
  --navy-soft: #14304a;
  --accent: #0d6efd;
  --accent-hover: #0b5ed7;
  --accent-soft: #e8f1ff;
  --warm: #c45c26;
  --ok: #0f766e;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1080px;
  --narrow: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.wrap.narrow,
.narrow { width: min(var(--narrow), calc(100% - 2rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}
.logo {
  font-weight: 750;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--navy) !important;
  text-decoration: none !important;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--text); }
.nav .btn { color: #fff !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font: inherit;
  font-weight: 650;
  font-size: 0.98rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-secondary {
  background: var(--surface);
  color: var(--navy) !important;
  border-color: var(--line-strong);
}
.btn-secondary:hover { background: var(--bg-alt); }
.btn-wide { width: 100%; max-width: 320px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}
.cta-center { justify-content: center; }
.inline-cta { margin-top: 1.75rem; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 10% -10%, #dbeafe 0%, transparent 55%),
    radial-gradient(700px 360px at 100% 0%, #ffedd5 0%, transparent 50%),
    var(--bg);
  padding: 3.25rem 0 2.75rem;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 760px; }
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 750;
}
.lede {
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.35rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-line .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line-strong);
  margin: 0 0.35rem;
}

/* Path band */
.path-band {
  background: var(--navy);
  color: #e8eef5;
  padding: 1.35rem 0;
}
.path-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
}
.path-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.path-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.path-step strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
  color: #fff;
}
.path-step p {
  margin: 0;
  font-size: 0.88rem;
  color: #a8b8c9;
  line-height: 1.4;
}

/* Sections */
.section { padding: 3.25rem 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 1.5rem; max-width: 36rem; }
.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.25;
}
.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--navy);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
}
.steps li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.1rem 3.5rem;
  box-shadow: var(--shadow);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 750;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}
.steps strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.steps span {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Checklist */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.checklist li {
  position: relative;
  padding: 0.95rem 1.25rem 0.95rem 2.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

/* Pricing */
.pricing-panel {
  display: flex;
  justify-content: center;
}
.pricing-main {
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.pricing-label {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm);
}
.pricing-amounts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.amount {
  display: block;
  font-size: 2.15rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.amount-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-plus {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--line-strong);
  padding-bottom: 1.1rem;
}
.pricing-bullets {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.pricing-bullets li { margin: 0.35rem 0; }
.pricing-foot {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 0.55rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--navy);
  padding: 0.95rem 1.1rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Final */
.final {
  background: var(--navy);
  color: #e8eef5;
  padding: 3.5rem 0;
}
.final-inner {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}
.final h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.final p {
  margin: 0 0 0.25rem;
  color: #a8b8c9;
}
.final .btn-secondary {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}
.final .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.site-footer {
  background: #081622;
  color: #8b9aab;
  padding: 2rem 0 2.5rem;
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
}
.site-footer .logo { color: #fff !important; display: inline-block; margin-bottom: 0.25rem; }
.site-footer p { margin: 0.2rem 0; }
.site-footer a { color: #c5d4e5; }
.footer-meta { text-align: right; }
.footer-meta p { margin-top: 0.35rem; }

/* Responsive */
@media (max-width: 800px) {
  .path-row,
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .path-band { padding: 1.15rem 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav a:not(.btn) { display: none; }
  .hero { padding: 2.25rem 0 2rem; }
  .section { padding: 2.5rem 0; }
  .pricing-main { padding: 1.35rem; }
  .footer-meta { text-align: left; }
  .cta-row .btn { width: 100%; }
  .btn-wide { max-width: none; }
}
