/* ============================================================
   FDADeviceCheck — site.css
   Archetype: centered search-engine / lookup tool.
   Self-contained. Clinical blue (#1d4ed8) on white, Inter.
   Refs: greenlight.guru · vercel.com · algolia docsearch.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p, dl, dd, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
summary { cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --blue: #1d4ed8;
  --blue-600: #2563eb;
  --blue-700: #1739a8;
  --blue-tint: #eff4ff;
  --blue-tint-2: #f5f8ff;

  --ink: #0b1220;
  --ink-2: #1e293b;
  --muted: #64748b;
  --muted-2: #94a3b8;

  --line: #e6eaf2;
  --line-2: #eef1f7;
  --bg: #ffffff;
  --bg-soft: #f8fafc;

  --ok: #15803d;
  --ok-tint: #ecfdf3;
  --ok-line: #bbf7d0;
  --warn: #b45309;
  --warn-tint: #fffbeb;
  --warn-line: #fde68a;
  --err: #b91c1c;
  --err-tint: #fef2f2;
  --err-line: #fecaca;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 1px rgba(15, 23, 42, .03);
  --shadow: 0 10px 30px rgba(15, 23, 42, .07), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-lg: 0 24px 60px rgba(29, 78, 216, .14), 0 8px 20px rgba(15, 23, 42, .06);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
}

/* ---------- Layout shells ---------- */
.shell { width: 100%; max-width: 820px; margin-inline: auto; padding-inline: 22px; }
.shell--wide { max-width: 1080px; }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }

.band-title {
  font-size: clamp(1.6rem, 1rem + 1.9vw, 2.3rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.025em;
  margin-top: 12px; text-align: center; max-width: 22ch; margin-inline: auto;
}
.band-lede {
  margin-top: 16px; color: var(--muted); font-size: 1.06rem;
  max-width: 56ch; margin-inline: auto;
}
.microcopy { font-size: .82rem; color: var(--muted-2); line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: var(--radius-sm);
  font-weight: 650; font-size: .95rem; letter-spacing: -0.01em;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
  white-space: nowrap;
}
.btn.full { width: 100%; }
.btn--primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 6px 16px rgba(29, 78, 216, .28);
}
.btn--primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(29, 78, 216, .34); }
.btn--primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--ghost {
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 20px;
  padding: 14px clamp(22px, 4vw, 40px);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav__brand { display: flex; align-items: center; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: .9rem; font-weight: 550; color: var(--muted);
  transition: color .15s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 9px 16px; border-radius: 9px; font-size: .88rem; font-weight: 650;
  color: #fff; background: var(--blue);
  box-shadow: 0 4px 12px rgba(29, 78, 216, .25);
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.nav__cta:hover { background: var(--blue-700); transform: translateY(-1px); }

/* ============================================================
   HERO — centered search engine
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(54px, 8vw, 100px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -10%, var(--blue-tint) 0%, rgba(239, 244, 255, 0) 70%),
    linear-gradient(#ffffff, #ffffff);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(640px 400px at 50% 8%, #000 0%, transparent 78%);
  mask-image: radial-gradient(640px 400px at 50% 8%, #000 0%, transparent 78%);
  opacity: .6; pointer-events: none;
}
.hero .shell { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 650; letter-spacing: .04em;
  color: var(--blue); padding: 6px 13px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero__title {
  margin-top: 22px;
  font-size: clamp(2.1rem, 1.1rem + 4vw, 3.6rem);
  font-weight: 850; line-height: 1.05; letter-spacing: -0.035em;
}
.hero__title span { color: var(--blue); }
.hero__lede {
  margin: 20px auto 0; max-width: 60ch;
  font-size: clamp(1.02rem, .96rem + .4vw, 1.18rem);
  color: var(--muted);
}

/* ----- The finder (search tool) ----- */
.finder { margin: 34px auto 0; max-width: 760px; text-align: left; }
.finder__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 8px 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.finder__bar:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .14), var(--shadow-lg);
}
.finder__icon { width: 22px; height: 22px; flex: none; color: var(--muted-2); }
.finder__bar input {
  flex: 1; min-width: 0; height: 48px; border: 0; outline: 0; background: transparent;
  font-size: 1.05rem; letter-spacing: -0.01em;
}
.finder__bar input::placeholder { color: var(--muted-2); }
.finder__go {
  height: 48px; padding: 0 22px; border-radius: 11px; flex: none;
  background: var(--blue); color: #fff; font-weight: 650; font-size: .98rem;
  box-shadow: 0 6px 16px rgba(29, 78, 216, .3);
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.finder__go:hover { background: var(--blue-700); transform: translateY(-1px); }

.finder__row {
  display: flex; align-items: center; gap: 10px; margin-top: 12px;
  flex-wrap: wrap;
}
.finder__row input,
.finder__row select {
  height: 42px; padding: 0 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  font-size: .92rem; color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.finder__row input { flex: 1; min-width: 200px; }
.finder__row select { min-width: 190px; }
.finder__row input:focus,
.finder__row select:focus {
  outline: 0; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.finder__status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: var(--ok);
  padding: 0 12px; height: 28px; border-radius: 999px;
  background: var(--ok-tint); border: 1px solid var(--ok-line);
}
.finder__status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
}

.finder__samples {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 12px; font-size: .85rem; color: var(--muted);
}
.chip {
  padding: 6px 13px; border-radius: 999px; font-size: .85rem; font-weight: 550;
  color: var(--ink-2); background: #fff; border: 1px solid var(--line);
  transition: all .15s var(--ease);
}
.chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint-2); }

/* ----- Inline results ----- */
.results { margin-top: 16px; }
.results__summary {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 14px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.results__summary h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.results__summary p { margin-top: 4px; font-size: .9rem; color: var(--muted); }

.risk-badge {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  min-width: 64px; height: 28px; padding: 0 10px; margin-top: 2px;
  font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em;
  border-radius: 999px; color: #fff;
}
.risk-badge.neutral { background: var(--muted-2); }
.risk-badge.low { background: var(--ok); }
.risk-badge.medium { background: var(--warn); }
.risk-badge.high { background: var(--err); }

.results__list { display: grid; gap: 10px; margin-top: 12px; }
.results__list:empty { margin-top: 0; }
.result-item {
  position: relative; padding: 14px 16px 14px 18px;
  border-radius: 12px; border: 1px solid var(--line);
  background: #fff; box-shadow: var(--shadow-sm);
}
.result-item::before {
  content: ""; position: absolute; left: 0; top: 10px; bottom: 10px;
  width: 4px; border-radius: 4px; background: var(--muted-2);
}
.result-item.ok { border-color: var(--ok-line); background: var(--ok-tint); }
.result-item.ok::before { background: var(--ok); }
.result-item.warn { border-color: var(--warn-line); background: var(--warn-tint); }
.result-item.warn::before { background: var(--warn); }
.result-item.error { border-color: var(--err-line); background: var(--err-tint); }
.result-item.error::before { background: var(--err); }
.result-item strong { display: block; font-size: .95rem; font-weight: 700; letter-spacing: -0.01em; }
.result-item p { margin-top: 4px; font-size: .88rem; color: var(--ink-2); }
.evidence-chips { display: inline-flex; margin-left: 8px; }
.evidence-chips span {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: 2px 8px; border-radius: 999px;
  background: rgba(15, 23, 42, .06); color: var(--ink-2);
}

.hero__disclaimer {
  margin: 26px auto 0; max-width: 62ch;
  font-size: .9rem; color: var(--muted);
  padding: 12px 18px; border-radius: 12px;
  background: var(--blue-tint-2); border: 1px solid var(--line);
}
.hero__disclaimer strong { color: var(--ink); }

.hero__trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-top: 30px;
}
.hero__trust li {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px 18px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  text-align: left;
}
.hero__trust strong { font-size: 1rem; font-weight: 750; color: var(--blue); letter-spacing: -0.01em; }
.hero__trust span { font-size: .8rem; color: var(--muted); }

/* ============================================================
   DOSSIER BAND
   ============================================================ */
.dossier-band {
  padding: clamp(54px, 7vw, 88px) 0;
  background:
    radial-gradient(700px 360px at 85% 0%, var(--blue-tint) 0%, rgba(239, 244, 255, 0) 70%),
    var(--bg-soft);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.dossier-band__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.dossier-band__copy h2 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 1rem + 1.8vw, 2.2rem);
  font-weight: 800; line-height: 1.14; letter-spacing: -0.025em;
}
.dossier-band__copy > p { margin-top: 16px; color: var(--muted); font-size: 1.05rem; max-width: 46ch; }
.dossier-band__actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.dossier-band__actions + .microcopy { margin-top: 14px; }

/* Report sheet — the deliverable, styled as a printed document */
.report-sheet {
  position: relative; overflow: hidden;
  padding: 26px 28px 22px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-lg);
}
.report-sheet::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
}
.report-sheet__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px; border-bottom: 1px dashed var(--line);
}
.report-sheet__top span:last-child { color: var(--blue); font-variant-numeric: tabular-nums; }
.report-sheet__stamp {
  display: inline-block; margin: 16px 0 10px;
  padding: 5px 12px; border-radius: 8px;
  font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .07em;
  color: var(--blue); background: var(--blue-tint); border: 1px solid #cfdcff;
}
.report-sheet h2 { font-size: 1.32rem; font-weight: 800; letter-spacing: -0.02em; }
.report-sheet__entity { margin-top: 4px; font-size: .92rem; color: var(--muted); }
.report-sheet dl { display: grid; gap: 0; margin-top: 18px; }
.report-sheet dl div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line-2);
}
.report-sheet dt { font-size: .82rem; color: var(--muted); font-weight: 550; }
.report-sheet dd { font-size: .9rem; font-weight: 650; text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.report-sheet__evidence { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.report-sheet__evidence span {
  font-size: .72rem; font-weight: 600; color: var(--ink-2);
  padding: 5px 10px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.report-sheet__lines { display: grid; gap: 7px; margin-top: 18px; }
.report-sheet__lines span {
  height: 7px; border-radius: 4px;
  background: linear-gradient(90deg, var(--line) 0%, var(--line-2) 100%);
}
.report-sheet__lines span:nth-child(1) { width: 100%; }
.report-sheet__lines span:nth-child(2) { width: 86%; }
.report-sheet__lines span:nth-child(3) { width: 92%; }
.report-sheet__lines span:nth-child(4) { width: 64%; }

/* ============================================================
   COMPARE (registration vs approval)
   ============================================================ */
.compare { padding: clamp(56px, 8vw, 96px) 0; }
.compare__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 38px;
}
.compare__col {
  padding: 26px 26px 24px; border-radius: 16px;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
}
.compare__col--yes { border-color: var(--ok-line); background: linear-gradient(180deg, var(--ok-tint), #fff 60%); }
.compare__col--no { border-color: var(--err-line); background: linear-gradient(180deg, var(--err-tint), #fff 60%); }
.compare__head {
  font-size: .8rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.compare__col--yes .compare__head { color: var(--ok); }
.compare__col--no .compare__head { color: var(--err); }
.compare__col ul { display: grid; gap: 16px; }
.compare__col li {
  position: relative; padding-left: 30px; font-size: .94rem; color: var(--ink-2); line-height: 1.55;
}
.compare__col li strong { color: var(--ink); font-weight: 700; }
.compare__col li::before {
  position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: #fff;
}
.compare__col--yes li::before { content: "✓"; background: var(--ok); }
.compare__col--no li::before { content: "✕"; background: var(--err); font-size: .7rem; }

/* ============================================================
   CASES
   ============================================================ */
.cases { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-soft); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.cases__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px;
}
.cases__grid article {
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px 24px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.cases__grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d6def0; }
.cases__tag {
  align-self: flex-start;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--blue); padding: 5px 11px; border-radius: 999px;
  background: var(--blue-tint); border: 1px solid #d8e2ff;
}
.cases__grid strong { font-size: 1.05rem; font-weight: 750; line-height: 1.3; letter-spacing: -0.015em; }
.cases__grid p { font-size: .92rem; color: var(--muted); }

/* ============================================================
   SOURCE
   ============================================================ */
.source { padding: clamp(56px, 8vw, 96px) 0; }
.source__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.source__grid article {
  display: flex; flex-direction: column; gap: 9px;
  padding: 24px; border-radius: 16px;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
}
.source__grid span {
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted);
}
.source__grid strong { font-size: 1.02rem; font-weight: 750; letter-spacing: -0.01em; color: var(--blue); }
.source__grid p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-soft); border-top: 1px solid var(--line-2); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.plan {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.plan p { font-size: .9rem; color: var(--muted); flex: 1; }
.plan__tag { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.plan__price { font-size: 2.4rem; font-weight: 850; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.plan__price--text { font-size: 1.5rem; }
.plan--featured {
  border-color: var(--blue); box-shadow: var(--shadow);
  position: relative;
  background: linear-gradient(180deg, var(--blue-tint-2), #fff 55%);
}
.plan--featured::before {
  content: "Recommended"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--blue); padding: 4px 12px; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(29, 78, 216, .3);
}
.plan--featured .plan__price { color: var(--blue); }

/* Lead form */
.lead {
  max-width: 720px; margin: 32px auto 0;
  padding: 32px clamp(22px, 4vw, 40px);
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow);
}
.lead__title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; text-align: center; margin-bottom: 22px; }
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.lead input,
.lead textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; font-size: .95rem;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.lead textarea { min-height: 108px; resize: vertical; line-height: 1.5; }
.lead input:focus,
.lead textarea:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.lead .btn { margin-top: 22px; }
.lead .microcopy { margin-top: 14px; text-align: center; }
.mailto-link {
  display: inline-block; margin-top: 12px; font-weight: 650; color: var(--blue);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(56px, 8vw, 96px) 0; }
.faq__list { max-width: 760px; margin: 36px auto 0; display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px;
  background: #fff; box-shadow: var(--shadow-sm);
  overflow: hidden; transition: border-color .15s var(--ease);
}
.faq details[open] { border-color: #d6def0; }
.faq summary {
  list-style: none; position: relative;
  padding: 18px 52px 18px 22px;
  font-size: 1rem; font-weight: 650; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--blue); line-height: 1;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 20px; color: var(--muted); font-size: .94rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 48px 0 56px; border-top: 1px solid var(--line); background: #fff; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--line-2);
}
.footer__top nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__top a { font-size: .9rem; color: var(--muted); transition: color .15s var(--ease); }
.footer__top a:hover { color: var(--blue); }
.footer__legal { margin-top: 22px; font-size: .82rem; color: var(--muted-2); line-height: 1.65; max-width: 92ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .dossier-band__grid { grid-template-columns: 1fr; }
  .dossier-band__copy { text-align: center; }
  .dossier-band__copy > p { margin-inline: auto; }
  .dossier-band__actions { justify-content: center; }
  .compare__cols { grid-template-columns: 1fr; }
  .cases__grid,
  .source__grid,
  .pricing__grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .finder__bar { flex-wrap: wrap; padding: 12px; }
  .finder__icon { display: none; }
  .finder__bar input { width: 100%; height: 44px; padding-left: 4px; }
  .finder__go { width: 100%; }
  .finder__row input,
  .finder__row select { min-width: 0; width: 100%; flex: 1 1 100%; }
  .finder__status { margin-left: 0; }
  .results__summary { flex-direction: column; }
  .lead__grid { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; }
  .hero__trust li { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* commerce.js print stage hidden on screen (print rules injected by commerce.js) */
.print-stage { display: none; }
