:root {
  color-scheme: light dark;
  --paper: #f5f8f9;
  --raised: #ffffff;
  --ink: #17252b;
  --muted: #52666e;
  --faint: #71858d;
  --accent: #2f596b;
  --accent-ink: #ffffff;
  --soft: #e3edf1;
  --line: #d9e3e6;
  --record: #ff3b3f;
  --shadow: 0 18px 50px -30px rgba(18, 38, 46, .42);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0f181b;
    --raised: #162126;
    --ink: #edf3f5;
    --muted: #afc0c6;
    --faint: #82949b;
    --accent: #78adc5;
    --accent-ink: #0c1518;
    --soft: #1e3037;
    --line: #2a3a40;
    --shadow: 0 18px 50px -28px rgba(0, 0, 0, .8);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body, button { letter-spacing: 0; }
a { color: inherit; }
button { font: inherit; }
img { display: block; max-width: 100%; height: auto; }
h1, h2 {
  margin: 0;
  max-width: 22ch;
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.65rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { margin: 0; font-size: 1.05rem; line-height: 1.3; }
p { margin: 0; }

.wrap { width: min(100% - 40px, 1100px); margin-inline: auto; }
.narrow { max-width: 760px; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 50; padding: 10px 14px; background: var(--ink); color: var(--paper); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.topbar { padding: 24px 0; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: ui-serif, Georgia, serif; font-size: 1.2rem; font-weight: 600; text-decoration: none; }
.brand img { border-radius: 9px; box-shadow: var(--shadow); }
.brand--small { font-size: 1rem; }
nav { display: flex; gap: 24px; }
nav a, .back-link { color: var(--muted); font-size: .9rem; font-weight: 600; text-decoration: none; }
nav a:hover, .back-link:hover, .footer__links a:hover { color: var(--accent); }

.hero { min-height: calc(100svh - 88px); padding: 48px 0 76px; display: grid; align-items: center; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); align-items: center; gap: 72px; }
.hero__copy { padding-bottom: 32px; }
.eyebrow { margin-bottom: 14px; color: var(--accent); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero__lede { max-width: 50ch; margin: 24px 0 32px; color: var(--muted); font-size: 1.18rem; line-height: 1.6; }
.button { min-height: 48px; padding: 13px 24px; border: 1px solid transparent; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; text-decoration: none; }
.button--primary { background: var(--accent); color: var(--accent-ink); }
.button--disabled { cursor: default; }
.button-caption { max-width: 54ch; margin-top: 12px; color: var(--faint); font-size: .82rem; }

.phone { margin: 0 auto; padding: 10px; background: #06090a; border-radius: 46px; box-shadow: var(--shadow); overflow: hidden; }
.phone img { width: 100%; height: auto; border-radius: 37px; }
.phone--hero { width: 265px; max-width: 100%; transform: rotate(1.5deg); }
.phone--secondary { width: 238px; max-width: 100%; transform: rotate(-1.25deg); }

.trust { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--raised) 55%, transparent); }
.trust__items { min-height: 80px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 32px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; }
.trust svg, .privacy-note svg, .cases svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; color: var(--accent); flex: 0 0 auto; }

.section { padding: 104px 0; }
.section--compact { padding-top: 76px; }
.section--raised { border-block: 1px solid var(--line); background: var(--raised); }
.section-lede { max-width: 66ch; margin-top: 24px; color: var(--muted); font-size: 1.05rem; }
.process { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(240px, .7fr); align-items: center; gap: 92px; }
.steps { list-style: none; padding: 0; margin: 44px 0 0; display: grid; gap: 28px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.steps li > span { color: var(--accent); font-family: ui-serif, Georgia, serif; font-weight: 700; }
.steps p { max-width: 52ch; margin-top: 5px; color: var(--muted); font-size: .95rem; }
.callout { max-width: 660px; margin-top: 38px; padding: 20px 22px; border-left: 3px solid var(--accent); background: var(--soft); color: var(--muted); }
.callout strong { color: var(--ink); }
.privacy-note { max-width: 650px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: flex-start; gap: 14px; color: var(--muted); }
.privacy-note svg { width: 24px; height: 24px; margin-top: 2px; }
.privacy-note strong { color: var(--ink); }

.cases { margin-top: 44px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.cases article { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--raised); }
.cases svg { width: 28px; height: 28px; margin-bottom: 30px; }
.cases p { margin-top: 9px; color: var(--muted); font-size: .9rem; }

.requirements { margin-top: 44px; border-block: 1px solid var(--line); }
.requirements > div { padding: 28px 0; display: grid; grid-template-columns: 140px 1fr; gap: 28px; border-bottom: 1px solid var(--line); }
.requirements > div:last-child { border-bottom: 0; }
.requirements span { align-self: start; padding: 4px 9px; border-radius: 5px; background: var(--soft); color: var(--accent); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.requirements p { color: var(--muted); }
.requirements strong { color: var(--ink); }
.price-note { margin-top: 18px; color: var(--faint); font-size: .88rem; }

.faq { max-width: 800px; }
.faq h2 { margin-bottom: 38px; }
details { padding: 21px 0; border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary span { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 68ch; padding-right: 44px; margin-top: 11px; color: var(--muted); }

footer { padding: 42px 0; border-top: 1px solid var(--line); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { color: var(--muted); font-size: .9rem; text-decoration: none; }
footer p { color: var(--faint); font-size: .82rem; }

.policy { max-width: 760px; padding-top: 72px; padding-bottom: 104px; }
.policy h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.policy .updated { margin: 10px 0 32px; color: var(--faint); font-size: .86rem; }
.policy__summary { margin-bottom: 44px; padding: 22px 24px; border-left: 3px solid var(--accent); background: var(--soft); color: var(--muted); }
.policy__summary strong { color: var(--ink); }
.policy h2 { margin: 42px 0 14px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1.25rem; font-weight: 750; }
.policy p, .policy li { color: var(--muted); }
.policy p + p { margin-top: 14px; }
.policy li + li { margin-top: 8px; }
.policy a { color: var(--accent); }
.back-top { display: inline-block; margin-top: 38px; font-weight: 700; text-decoration: none; }
.text-button { min-height: 44px; padding: 0; border: 0; background: none; color: var(--accent); cursor: pointer; text-decoration: underline; }

.consent { position: fixed; z-index: 30; left: 20px; right: 20px; bottom: 20px; width: min(760px, calc(100% - 40px)); margin-inline: auto; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--raised); box-shadow: 0 22px 70px rgba(10, 25, 31, .28); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.consent[hidden] { display: none; }
.consent p { margin-top: 2px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.consent__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.consent button { min-height: 44px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 6px; background: transparent; color: var(--ink); cursor: pointer; font-weight: 700; }
.consent .button--primary { border-color: transparent; background: var(--accent); color: var(--accent-ink); }

a, button, summary { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

@media (max-width: 820px) {
  nav { display: none; }
  .hero { min-height: auto; padding-top: 24px; }
  .hero__grid, .process { grid-template-columns: 1fr; gap: 44px; }
  .hero__copy { padding: 0; }
  .phone--hero { order: -1; width: 220px; }
  .phone--secondary { width: 210px; }
  .process figure { order: -1; }
  .section { padding: 76px 0; }
  .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 32px, 1100px); }
  .topbar { padding: 18px 0; }
  .brand { font-size: 1.05rem; }
  .hero { padding: 18px 0 58px; }
  .hero__lede { font-size: 1.05rem; }
  .trust__items { justify-content: flex-start; padding-block: 20px; }
  .trust span { width: calc(50% - 16px); align-items: flex-start; }
  .cases { grid-template-columns: 1fr; }
  .cases article { min-height: 0; }
  .requirements > div { grid-template-columns: 1fr; gap: 14px; }
  .requirements span { justify-self: start; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
  .consent { align-items: stretch; flex-direction: column; gap: 14px; }
  .consent__actions { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
