:root {
  --bg: #f7f8fb;
  --bg-alt: #eef1f7;
  --surface: #ffffff;
  --ink: #0b1d3a;
  --ink-soft: #3a4a66;
  --muted: #6c7891;
  --line: #dce1ec;
  --line-strong: #b7c0d3;
  --brand: #14367a;
  --brand-ink: #0b1d3a;
  --accent: #1f6feb;
  --high: #c4332a;
  --med: #c78214;
  --low: #2f7a3a;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(11,29,58,.06), 0 8px 24px rgba(11,29,58,.06);
  --shadow-sm: 0 1px 2px rgba(11,29,58,.08);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--ink); letter-spacing: -.01em; line-height: 1.2; margin: 0; }
p { margin: 0; color: var(--ink-soft); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
  min-width: 0;
}
.brand__mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand__text { min-width: 0; }
.brand__text strong {
  font-weight: 700; font-size: 16px; letter-spacing: .02em;
  display: block;
}
.brand__dot { color: var(--accent); }
.brand__text small {
  display: block; color: var(--muted); font-size: 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav__links {
  margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap;
}
.nav__links a {
  color: var(--ink-soft); font-weight: 500; font-size: 14px;
}
.nav__links a:hover { color: var(--brand); text-decoration: none; }
.nav__links-cta { display: none; }
.nav__cta { font-size: 14px; }

/* Mobile menu — checkbox-hack toggle */
.nav__toggle { display: none; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-left: auto;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: #fff;
  flex-shrink: 0;
}
.nav__burger:hover { border-color: var(--line-strong); }
.nav__burger-bar {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .15s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .04s ease, background .15s ease, border-color .15s ease, color .15s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--brand-ink); color: #fff;
}
.btn--primary:hover { background: #122c5e; text-decoration: none; }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); text-decoration: none; }
.btn--lg { padding: 14px 20px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  font-size: 12px; letter-spacing: .04em;
  color: var(--muted);
  text-transform: uppercase;
}
.eyebrow--solid {
  background: #e7ecf6; color: var(--brand-ink);
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(31,111,235,.18);
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(31,111,235,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  margin: 16px 0 16px;
}
.hl { color: var(--brand); }
.lede {
  font-size: 18px; max-width: 56ch;
  color: var(--ink-soft);
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 24px 0 20px;
}
.hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 20px;
  color: var(--muted); font-size: 14px;
}
.hero__trust strong { color: var(--ink); }

/* Hero card / sample report */
.hero__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.hero__card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(11,29,58,.08), 0 16px 36px rgba(11,29,58,.10);
  border-color: var(--line-strong);
}
.card__open {
  display: block;
  margin-top: 14px;
  text-align: right;
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
}
.card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.card__tag {
  background: #e7ecf6; color: var(--brand-ink);
  font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
}
.card__id {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: var(--muted);
}
.card__row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.card__row:last-of-type { border-bottom: 0; }
.card__label { color: var(--muted); }
.card__value { color: var(--ink); font-weight: 600; }
.pill {
  display: inline-block; padding: 2px 8px;
  border-radius: 999px; font-size: 12px; font-weight: 600;
}
.pill--high { background: #fde8e6; color: var(--high); }
.card__bar {
  height: 8px; background: var(--bg-alt); border-radius: 999px;
  overflow: hidden; margin-top: 14px;
}
.card__bar-fill {
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--high), var(--med) 55%, var(--low));
  border-radius: 999px;
}
.card__legend {
  display: flex; justify-content: space-between;
  margin-top: 8px; font-size: 13px; color: var(--muted);
}
.card__legend strong { color: var(--ink); }
.card__findings {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 8px;
  font-size: 13px; color: var(--ink-soft);
}
.card__findings li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fafbfd;
}
.sev {
  width: 8px; height: 8px; border-radius: 50%;
  flex: 0 0 8px;
}
.sev--high { background: var(--high); }
.sev--med { background: var(--med); }
.sev--low { background: var(--low); }

/* ---------- Strip ---------- */
.strip {
  background: var(--brand-ink); color: #e8edf7;
}
.strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 24px;
  font-size: 14px;
}
.strip__item strong { color: #fff; }
.strip__sep {
  width: 1px; align-self: stretch; background: rgba(255,255,255,.18);
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__title {
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 14px 0 12px;
}
.section__lede {
  font-size: 17px; max-width: 70ch;
  color: var(--ink-soft); margin-bottom: 32px;
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }

.pain {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.pain h3 {
  font-size: 16px; margin-bottom: 6px;
  color: var(--brand-ink);
}
.pain p { font-size: 14px; }

/* ---------- Two-column ---------- */
.two {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: start;
}
.two--center { align-items: center; }
.two__copy h2 { font-size: clamp(28px, 3.2vw, 38px); margin: 14px 0 12px; }
.two__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.two__note {
  margin-top: 18px; padding: 14px 16px;
  background: rgba(11, 29, 58, .04);
  border-left: 3px solid var(--brand-ink, #0b1d3a);
  border-radius: 6px;
  font-size: 14px; color: var(--ink-soft);
}
.two__note strong { color: var(--ink); }

.case {
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.case__title {
  font-size: 19px; margin: 10px 0 12px;
}
.case__body {
  font-size: 15px; color: var(--ink-soft);
  max-width: 70ch;
}
.case__body strong { color: var(--ink); }
.case__meta {
  margin-top: 14px;
  font-size: 13px; color: var(--muted);
  font-style: italic;
}

.checks {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: grid; gap: 8px;
}
.checks li {
  position: relative; padding-left: 26px;
  color: var(--ink-soft); font-size: 15px;
}
.checks li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; border-radius: 4px;
  background:
    linear-gradient(45deg, transparent 45%, #fff 46%, #fff 54%, transparent 55%),
    var(--brand-ink);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel__head { margin-bottom: 14px; }
.panel__tag {
  display: inline-block; background: #e7ecf6; color: var(--brand-ink);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
  margin-bottom: 8px;
}
.panel__head h3 { font-size: 22px; }
.panel__list { margin: 0; }
.panel__list > div {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.panel__list > div:last-child { border-bottom: 0; }
.panel__list dt { color: var(--muted); margin: 0; }
.panel__list dd { color: var(--ink); margin: 0; font-weight: 600; text-align: right; }
.panel__list dd strong { color: var(--brand-ink); }

/* ---------- Report list ---------- */
.report {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  counter-reset: r;
}
.report li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px 20px 64px;
  box-shadow: var(--shadow-sm);
}
.report__n {
  position: absolute; left: 18px; top: 18px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-ink); color: #fff;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.report h3 { font-size: 15px; margin-bottom: 4px; }
.report p { font-size: 14px; }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: 10px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; }

/* ---------- Plans ---------- */
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  border-color: var(--brand-ink);
  box-shadow: 0 2px 0 var(--brand-ink), var(--shadow);
}
.plan__tag {
  display: inline-block; background: #e7ecf6; color: var(--brand-ink);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px; text-transform: uppercase;
  margin-bottom: 8px;
}
.plan h3 { font-size: 20px; }
.plan__price { font-size: 15px; color: var(--muted); }
.plan__price strong { color: var(--brand-ink); font-size: 28px; font-weight: 700; }
.plan__sub { font-size: 13px; color: var(--muted); }
.plan ul {
  list-style: none; padding: 0; margin: 4px 0 8px;
  display: grid; gap: 8px;
}
.plan ul li {
  position: relative; padding-left: 22px;
  font-size: 14px; color: var(--ink-soft);
}
.plan ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--brand-ink);
}

/* ---------- Form ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid; gap: 12px;
}
.form__title { font-size: 18px; margin-bottom: 4px; }
.field { display: grid; gap: 4px; font-size: 13px; color: var(--ink-soft); }
.field span { font-weight: 500; }
.field input, .field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--brand-ink);
  box-shadow: 0 0 0 3px rgba(11,29,58,.10);
}
.form__legal { font-size: 12px; color: var(--muted); }
.form__status { font-size: 13px; margin: 0; min-height: 1.2em; }
.form__status.is-ok { color: var(--low); }
.form__status.is-err { color: var(--high); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form--inline {
  grid-template-columns: 1fr 1fr auto;
  align-items: end; gap: 12px;
  padding: 18px;
}
.form--inline .form__status { grid-column: 1 / -1; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--muted);
  font-family: 'IBM Plex Mono', monospace; font-size: 18px;
  margin-left: 12px;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin-top: 8px; font-size: 14px; }

/* ---------- CTA ---------- */
.cta {
  background: var(--brand-ink); color: #fff;
  padding: 56px 0;
}
.cta__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px;
  align-items: center;
}
.cta h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.cta p { color: #c5cee0; max-width: 50ch; }
.cta .field span { color: #e6ecf7; font-weight: 600; }
.cta .field input,
.cta .field select {
  background: #fff;
  border: 1px solid #1d3a76;
  color: var(--ink);
}
.cta .field input::placeholder { color: var(--muted); }
.cta .field input:focus,
.cta .field select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
.cta .form {
  background: #122c5e; border-color: #1d3a76; color: #fff;
  box-shadow: none;
}
.cta .btn--primary { background: #fff; color: var(--brand-ink); }
.cta .btn--primary:hover { background: #e7ecf6; }
.cta .form__legal { color: #8fa0c7; }
.cta .form__legal a { color: #c5cee0; text-decoration: underline; }
.cta__direct { margin-top: 18px; color: #c5cee0; font-size: 14px; }
.cta__calendly {
  display: inline-block; margin-left: 6px;
  color: #fff; font-weight: 600; text-decoration: underline;
}
.cta__calendly:hover { color: #e7ecf6; }

/* ---------- Footer ---------- */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.foot__inner {
  display: flex; justify-content: space-between; gap: 16px;
  align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.foot strong { color: var(--ink); font-size: 15px; }
.foot__meta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.foot__meta a { color: var(--ink-soft); }

/* ---------- Legal page ---------- */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(28px, 3vw, 36px); margin-bottom: 8px; }
.legal__updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 {
  font-size: 18px; margin-top: 32px; margin-bottom: 10px;
  color: var(--ink);
}
.legal p, .legal li { color: var(--ink-soft); font-size: 15px; }
.legal ul { padding-left: 20px; margin: 10px 0; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--brand); text-decoration: underline; }
.legal__back { margin-top: 40px; font-size: 14px; }

/* ---------- Bio / Equipo ---------- */
.bio {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}
.bio__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.bio__body h3 { font-size: 20px; margin-bottom: 4px; }
.bio__role {
  color: var(--muted); font-size: 13px;
  margin-bottom: 12px; line-height: 1.5;
}
.bio__body p { margin-bottom: 12px; }
.bio__link {
  display: inline-block; font-weight: 600; font-size: 14px;
  color: var(--brand);
}
.principles {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 24px;
}
.principles li {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14px; color: var(--ink-soft);
}
.principles strong { color: var(--ink); display: block; margin-bottom: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding: 56px 0 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .two { grid-template-columns: 1fr; gap: 32px; }
  .grid--3, .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .report { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form--inline { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .strip__inner { flex-wrap: wrap; }
  .strip__sep { display: none; }
  .bio { grid-template-columns: 72px 1fr; padding: 20px; gap: 16px; }
  .bio__avatar { width: 72px; height: 72px; font-size: 24px; }
  .principles { grid-template-columns: 1fr; }
  .nav__inner { gap: 12px; }
  .nav__links { gap: 16px; }
  .brand__text small { display: none; }
}

@media (max-width: 760px) {
  .nav__inner { gap: 12px; height: 60px; }
  .nav:has(.nav__links) .nav__cta { display: none; }
  .nav:has(.nav__links) .nav__burger { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: 60px; left: 0; right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(11,29,58,.08);
    padding: 8px 0;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav__links a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--bg-alt);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links-cta {
    display: block;
    margin: 10px 24px 4px;
    padding: 14px 16px !important;
    background: var(--brand-ink);
    color: #fff !important;
    text-align: center;
    border-radius: var(--radius-sm);
    border-bottom: 0 !important;
    font-weight: 600;
  }
  .nav__toggle:checked ~ .wrap .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__toggle:checked ~ .wrap .nav__burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle:checked ~ .wrap .nav__burger-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle:checked ~ .wrap .nav__burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .wrap { padding: 0 18px; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .lede { font-size: 16px; }
  .btn--lg { padding: 12px 18px; font-size: 14px; }
  .hero__ctas .btn { flex: 1 1 auto; }
  .hero__trust { gap: 14px; font-size: 13px; }

  .strip__inner { padding: 16px 18px; gap: 10px; flex-direction: column; align-items: flex-start; }

  .section { padding: 48px 0; }
  .section__lede { font-size: 16px; }

  .panel__list > div { flex-wrap: wrap; gap: 4px; }
  .panel__list dd { text-align: left; }

  .cta { padding: 40px 0; }
  .cta__inner { gap: 20px; }
  .form { padding: 18px; }
  .form--inline { padding: 16px; }

  .foot__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .foot__meta { gap: 12px; }
}

@media (max-width: 560px) {
  .grid--3, .grid--6 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .wrap { padding: 0 16px; }
  .hero__card { padding: 16px; }
  .card__head { flex-wrap: wrap; gap: 8px; }
  .report li { padding: 18px 18px 18px 58px; }
  .report__n { left: 14px; top: 16px; }
  .bio { grid-template-columns: 1fr; text-align: left; }
  .bio__avatar { width: 64px; height: 64px; font-size: 22px; }
  .plan { padding: 22px; }
}
