/* Edremedi — edremedi.in
   Palette from the developer brief: Trust Blue #1e3a8a, Accent #2563eb, Verified green #10b981,
   neutral backgrounds #fcfbfa / #ffffff. Type: Inter with Helvetica Neue / Arial fallbacks. */

:root {
  --blue: #1e3a8a;
  --blue-2: #2563eb;
  --blue-ink: #172a63;
  --green: #10b981;
  --green-ink: #047857;
  --paper: #fcfbfa;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #e7e5e1;
  --tint: #eef3ff;
  --tint-green: #e7f8f0;
  --danger: #b42318;
  --danger-bg: #fdefee;
  --font: Inter, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --wrap: 1120px;
  --r-s: 10px;
  --r-m: 14px;
  --r-l: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv11", "ss03";
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-2); text-underline-offset: 3px; }
a:hover { color: var(--blue); }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.025em; color: var(--blue-ink); }
h1 { font-size: clamp(2.25rem, 5.6vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 750; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 58ch; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }
.skip {
  position: absolute; left: -999px; top: 8px; background: var(--blue); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 200; text-decoration: none;
}
.skip:focus { left: 8px; }

.container { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section.white { background: var(--white); }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; margin-bottom: 0; }

.ic { width: 1.25em; height: 1.25em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 650; font-size: 1rem; line-height: 1;
  padding: 16px 24px; min-height: 52px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-ink); color: #fff; }
.btn-accent { background: var(--blue-2); color: #fff; }
.btn-accent:hover { background: var(--blue); color: #fff; }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--tint); color: var(--blue); }
.btn-wa { background: #fff; color: var(--green-ink); border-color: var(--green); }
.btn-wa:hover { background: var(--tint-green); color: var(--green-ink); }
.btn:active { transform: translateY(1px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(252, 251, 250, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--blue); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.03em; }
.brand:hover { color: var(--blue); }
.brand svg { width: 32px; height: 32px; }
.menu { display: flex; align-items: center; gap: 4px; }
.menu a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 550; font-size: .97rem; padding: 10px 14px; border-radius: 999px; }
.menu a:not(.btn):hover { background: var(--tint); color: var(--blue); }
.menu a[aria-current="page"] { color: var(--blue); background: var(--tint); }
.menu .btn { margin-left: 8px; padding: 12px 20px; min-height: 44px; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; margin-right: -10px; color: var(--blue); cursor: pointer; border-radius: 10px; }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .menu {
    position: absolute; left: 0; right: 0; top: 100%; background: var(--paper);
    flex-direction: column; align-items: stretch; padding: 12px 20px 20px; gap: 2px;
    border-bottom: 1px solid var(--line); display: none;
    box-shadow: 0 20px 30px -20px rgba(15, 23, 42, .25);
  }
  .menu.open { display: flex; }
  .menu a:not(.btn) { padding: 14px 12px; font-size: 1.05rem; }
  .menu .btn { margin: 10px 0 0; }
}

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  body { padding-bottom: 84px; }
  .sticky-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
  }
  .sticky-cta .btn { padding: 14px 10px; min-height: 48px; font-size: .97rem; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(40px, 6vw, 88px) clamp(48px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .95rem; font-weight: 500; }
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof .ic { color: var(--green); }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.idcard-wrap { position: relative; display: grid; place-items: center; padding: 20px 0 30px; }
.idcard {
  position: relative; width: min(330px, 100%); background: #fff; border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 70px -30px rgba(30, 58, 138, .45), 0 2px 4px rgba(15, 23, 42, .06);
  transform: rotate(3deg); transform-origin: 50% 0;
  animation: settle .9s cubic-bezier(.2, .8, .2, 1) both;
}
.idcard::before { /* lanyard slot */
  content: ""; position: absolute; top: 12px; left: 50%; width: 54px; height: 9px;
  margin-left: -27px; border-radius: 9px; background: rgba(255, 255, 255, .28); z-index: 2;
}
.idcard-top { background: var(--blue); color: #fff; padding: 34px 22px 18px; border-radius: 23px 23px 0 0; display: flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -0.02em; }
.idcard-top svg { width: 24px; height: 24px; }
.idcard-body { padding: 22px 22px 18px; display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center; }
.avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--tint); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; }
.idcard-name { font-weight: 750; font-size: 1.1rem; line-height: 1.2; color: var(--ink); }
.idcard-meta { color: var(--muted); font-size: .88rem; line-height: 1.35; margin-top: 4px; }
.idcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 22px 22px; border-top: 1.5px dashed var(--line); margin: 0 0; }
.idcard-foot p { margin: 0; font-size: .82rem; color: var(--muted); line-height: 1.4; }
.idcard-foot strong { display: block; color: var(--ink); font-size: .9rem; }
.qr { width: 76px; height: 76px; color: var(--blue-ink); flex: none; }
.badge-verified {
  position: absolute; left: 22px; bottom: -20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px 9px 10px;
  background: var(--tint-green); color: var(--green-ink); border: 1.5px solid var(--green);
  border-radius: 999px; font-weight: 700; font-size: .9rem; box-shadow: 0 10px 20px -10px rgba(4, 120, 87, .5);
  transform: rotate(-4deg); animation: stamp .5s .7s cubic-bezier(.3, 1.6, .5, 1) both;
}
.badge-verified .ic { color: var(--green); stroke-width: 3; }
.hero-note { text-align: center; font-size: .85rem; color: var(--soft); margin-top: 6px; }
@keyframes settle { from { transform: rotate(9deg) translateY(18px); opacity: 0; } to { transform: rotate(3deg) translateY(0); opacity: 1; } }
@keyframes stamp { from { transform: rotate(-4deg) scale(1.7); opacity: 0; } to { transform: rotate(-4deg) scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .idcard, .badge-verified { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-strip ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip li { display: flex; align-items: center; gap: 12px; padding: 22px 20px; font-weight: 600; font-size: .95rem; line-height: 1.3; color: var(--blue-ink); }
.trust-strip li + li { border-left: 1px solid var(--line); }
.trust-strip .ic { width: 28px; height: 28px; color: var(--blue-2); }
.trust-strip small { display: block; font-weight: 450; color: var(--muted); font-size: .85rem; }
@media (max-width: 880px) {
  .trust-strip ul { grid-template-columns: 1fr 1fr; }
  .trust-strip li:nth-child(3) { border-left: 0; }
  .trust-strip li:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .trust-strip ul { grid-template-columns: 1fr; }
  .trust-strip li + li { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- 30% -> 0% band ---------- */
.band { background: var(--blue); color: #fff; }
.band h2 { color: #fff; }
.band-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 6vw, 88px); align-items: center; }
.pct { display: flex; align-items: baseline; gap: clamp(14px, 3vw, 34px); font-weight: 800; letter-spacing: -0.05em; line-height: .9; font-variant-numeric: tabular-nums; }
.pct .from { font-size: clamp(4rem, 12vw, 8.5rem); color: rgba(255, 255, 255, .42); position: relative; }
.pct .from::after { content: ""; position: absolute; left: -4%; right: -4%; top: 52%; height: 6px; background: #fff; border-radius: 4px; transform: rotate(-8deg); }
.pct .to { font-size: clamp(5rem, 15vw, 11rem); color: #fff; }
.pct-caption { margin-top: 14px; font-size: .95rem; color: rgba(255, 255, 255, .78); max-width: 34ch; line-height: 1.45; }
.band p { color: rgba(255, 255, 255, .86); font-size: 1.1rem; }
.band .btn-row { margin-top: 26px; }
@media (max-width: 880px) { .band-grid { grid-template-columns: 1fr; } }

/* ---------- Comparison ---------- */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.compare th, .compare td { text-align: left; vertical-align: top; padding: 20px 24px; border-bottom: 1px solid var(--line); font-size: 1rem; line-height: 1.5; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th { font-size: .95rem; font-weight: 700; color: var(--muted); background: var(--paper); }
.compare thead th.us { background: var(--blue); color: #fff; font-size: 1.05rem; }
.compare tbody th { width: 20%; font-weight: 700; color: var(--blue-ink); }
.compare td.them { color: var(--muted); }
.compare td.us { background: var(--tint); color: var(--ink); font-weight: 520; }
.compare .mark { display: inline-flex; vertical-align: -3px; margin-right: 8px; }
.compare .mark .ic { width: 1.15em; height: 1.15em; }
.compare .them .mark { color: var(--danger); }
.compare .us .mark { color: var(--green); stroke-width: 3; }
@media (max-width: 760px) {
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100% !important; }
  .compare thead { display: none; }
  .compare tr { border-bottom: 1px solid var(--line); }
  .compare tbody th { background: var(--paper); padding-bottom: 8px; border-bottom: 0; }
  .compare td { border-bottom: 0; padding-top: 12px; padding-bottom: 12px; }
  .compare td::before { display: block; font-size: .8rem; font-weight: 700; color: var(--soft); margin-bottom: 4px; }
  .compare td.them::before { content: "Traditional broker"; }
  .compare td.us::before { content: "Edremedi"; color: var(--blue); }
}

/* ---------- Timeline (real sequence) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; max-width: 780px; }
.timeline li { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline .num { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; }
.timeline h3 { margin: 6px 0 6px; }
.timeline p { color: var(--muted); margin: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Tiers ---------- */
.tiers { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: stretch; }
.tier { border-radius: var(--r-l); padding: clamp(26px, 3.4vw, 40px); display: flex; flex-direction: column; gap: 14px; }
.tier .tier-name { display: flex; align-items: center; gap: 12px; }
.tier .tier-ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.tier p { margin: 0; }
.tier ul { margin: 6px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; }
.tier li .ic { margin-top: 4px; width: 1.05em; height: 1.05em; }
.tier .fit { margin-top: auto; padding-top: 14px; border-top: 1px solid currentColor; font-size: .95rem; opacity: .95; }
.tier-1 { background: var(--blue); color: #fff; }
.tier-1 h3 { color: #fff; font-size: 1.5rem; }
.tier-1 .tier-ic { background: rgba(255, 255, 255, .14); color: #fff; }
.tier-1 .ic-check { color: var(--green); }
.tier-1 .fit { border-color: rgba(255, 255, 255, .25); color: rgba(255, 255, 255, .9); }
.tier-2 { background: #fff; border: 1.5px solid var(--line); }
.tier-2 .tier-ic { background: var(--tint); color: var(--blue-2); }
.tier-2 .ic-check { color: var(--green); }
.tier-2 .fit { border-color: var(--line); color: var(--muted); }
.tier-label { font-size: .85rem; font-weight: 650; opacity: .85; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

/* ---------- Screening band ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.checks li { padding: 26px 24px; display: grid; gap: 10px; align-content: start; }
.checks li + li { border-left: 1px solid var(--line); }
.checks .tick { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--tint-green); color: var(--green); }
.checks .tick .ic { stroke-width: 3; width: 16px; height: 16px; }
.checks h3 { font-size: 1.05rem; }
.checks p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.5; }
@media (max-width: 980px) {
  .checks { grid-template-columns: 1fr 1fr; }
  .checks li:nth-child(3) { border-left: 0; }
  .checks li:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .checks { grid-template-columns: 1fr; }
  .checks li + li { border-left: 0; border-top: 1px solid var(--line); }
}

.verify-box { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; justify-content: space-between; padding: 22px 26px; background: var(--tint); border-radius: var(--r-l); }
.verify-box p { margin: 0; font-weight: 600; color: var(--blue-ink); max-width: 44ch; }
.verify-box form { display: flex; gap: 10px; flex-wrap: wrap; }
.verify-box input { font: inherit; padding: 14px 16px; min-height: 52px; border-radius: 999px; border: 1.5px solid #c9d6f7; background: #fff; width: 210px; }

/* ---------- Chips / areas ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); font-weight: 600; color: var(--blue-ink); }
.chips .ic { color: var(--blue-2); width: 1.05em; height: 1.05em; }
.chips li.soon { background: transparent; border-style: dashed; color: var(--muted); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; font-weight: 650; font-size: 1.1rem; color: var(--blue-ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px; border-right: 2.5px solid var(--blue-2); border-bottom: 2.5px solid var(--blue-2); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > div { padding: 0 0 24px; color: var(--muted); max-width: 66ch; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.cta-final { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: clamp(28px, 4vw, 52px); border-radius: var(--r-l); background: var(--tint); border: 1px solid #d6e1fb; }
.cta-final h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-final p { margin: 10px 0 0; color: var(--muted); }
@media (max-width: 760px) { .cta-final { grid-template-columns: 1fr; } }

/* ---------- Inner page hero ---------- */
.page-hero { padding-block: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.25rem); max-width: 18ch; margin-bottom: 18px; }
.page-hero.wide h1 { max-width: 24ch; }

/* ---------- Definition-style benefits (tutors) ---------- */
.benefits { display: grid; gap: 0; border-top: 1px solid var(--line); }
.benefit { display: grid; grid-template-columns: 56px 1fr 1.3fr; gap: 20px 28px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.benefit .ic-wrap { width: 48px; height: 48px; border-radius: 14px; background: var(--tint); color: var(--blue-2); display: grid; place-items: center; }
.benefit h3 { margin-top: 2px; }
.benefit p { margin: 0; color: var(--muted); }
@media (max-width: 760px) { .benefit { grid-template-columns: 48px 1fr; } .benefit p { grid-column: 2; } }

.conduct { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.conduct li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.conduct .ic { color: var(--green); stroke-width: 3; margin-top: 4px; }
.conduct strong { color: var(--blue-ink); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(24px, 3vw, 36px); }
.panel h3 { margin-bottom: 16px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(22px, 3.5vw, 40px); box-shadow: 0 30px 60px -40px rgba(30, 58, 138, .35); }
.form-card h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 6px; }
.form-card > .form-sub { color: var(--muted); margin-bottom: 24px; }
.progress { margin: 0 0 26px; }
.progress-track { height: 6px; border-radius: 6px; background: var(--line); overflow: hidden; }
.progress-bar { height: 100%; width: 33%; background: var(--blue-2); border-radius: 6px; transition: width .3s; }
.progress-text { margin-top: 10px; font-size: .9rem; font-weight: 600; color: var(--muted); }
.step { border: 0; padding: 0; margin: 0; min-width: 0; display: none; }
.step.active { display: block; }
.step legend { font-size: 1.15rem; font-weight: 700; color: var(--blue-ink); margin-bottom: 18px; padding: 0; letter-spacing: -0.015em; }
.field { margin-bottom: 18px; }
.field > label:not(.check), .field > .label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 7px; color: var(--ink); }
.field .hint { display: block; font-weight: 400; color: var(--soft); font-size: .85rem; margin-top: 2px; }
.field input:not([type="radio"]):not([type="checkbox"]), .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: #fff;
  padding: 14px 16px; min-height: 52px; border: 1.5px solid #cfd5df; border-radius: var(--r-s);
  appearance: none; -webkit-appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(37, 99, 235, .25); border-color: var(--blue-2); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: var(--danger); background: var(--danger-bg); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }
.choices { display: grid; gap: 12px; }
.choice { display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-body { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 16px 18px; border: 1.5px solid #cfd5df; border-radius: var(--r-m); background: #fff; transition: border-color .15s, background-color .15s; }
.choice-body .ic-wrap { width: 44px; height: 44px; border-radius: 12px; background: var(--tint); color: var(--blue-2); display: grid; place-items: center; }
.choice-body strong { display: block; color: var(--blue-ink); line-height: 1.3; }
.choice-body span.d { display: block; color: var(--muted); font-size: .92rem; line-height: 1.4; margin-top: 2px; }
.choice:hover .choice-body { border-color: var(--blue-2); }
.choice input:checked + .choice-body { border-color: var(--blue-2); background: var(--tint); box-shadow: inset 0 0 0 1px var(--blue-2); }
.choice input:focus-visible + .choice-body { outline: 3px solid var(--blue-2); outline-offset: 2px; }
.check { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: .95rem; color: var(--muted); }
.check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--blue); }
.form-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 26px; flex-wrap: wrap; }
.form-actions .btn { flex: 1 1 160px; }
.form-actions .btn-back { flex: 0 1 auto; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin-top: 16px; padding: 12px 14px; border-radius: var(--r-s); background: var(--danger-bg); color: var(--danger); font-size: .95rem; display: none; }
.form-error.show { display: block; }
.success { display: none; text-align: left; }
.success.show { display: block; }
.success .seal { width: 60px; height: 60px; border-radius: 50%; background: var(--tint-green); color: var(--green); display: grid; place-items: center; margin-bottom: 18px; border: 2px solid var(--green); }
.success .seal .ic { width: 30px; height: 30px; stroke-width: 3; }
.success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.success p { color: var(--muted); }
.reco { margin: 20px 0; padding: 16px 18px; border-radius: var(--r-m); background: var(--tint); color: var(--blue-ink); font-size: .98rem; }
.reco strong { display: block; }

/* ---------- Two-column intake layout ---------- */
.form-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.form-layout aside { position: sticky; top: 100px; }
.aside-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 18px; }
.aside-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.aside-list .ic { color: var(--green); stroke-width: 3; margin-top: 3px; }
.aside-list strong { display: block; color: var(--blue-ink); }
.aside-list span { color: var(--muted); font-size: .95rem; }
@media (max-width: 880px) { .form-layout { grid-template-columns: 1fr; } .form-layout aside { position: static; order: 2; } }

/* ---------- Pricing explainer ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; }
.pricing > div { padding: 28px 26px; }
.pricing > div + div { border-left: 1px solid var(--line); }
.pricing h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pricing p { margin: 0; color: var(--muted); font-size: .97rem; }
.pricing .big { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; color: var(--blue); line-height: 1; margin-bottom: 10px; }
@media (max-width: 760px) { .pricing { grid-template-columns: 1fr; } .pricing > div + div { border-left: 0; border-top: 1px solid var(--line); } }

/* ---------- Verify page ---------- */
.verify-wrap { max-width: 620px; margin-inline: auto; }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(30, 58, 138, .4); }
.vcard-top { padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.vcard-top.ok { background: var(--tint-green); border-bottom: 1.5px solid var(--green); color: var(--green-ink); }
.vcard-top.sample { background: #fff7e6; border-bottom: 1.5px solid #f0b429; color: #8a5a00; }
.vcard-top.bad { background: var(--danger-bg); border-bottom: 1.5px solid #e5a29c; color: var(--danger); }
.vstatus { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; font-size: 1.1rem; }
.vstatus .ic { width: 1.5em; height: 1.5em; stroke-width: 3; }
.vid { font-size: .9rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.vcard-main { padding: 28px 26px 8px; display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: center; }
.vphoto { width: 96px; height: 96px; border-radius: 50%; background: var(--tint); color: var(--blue); display: grid; place-items: center; font-size: 2rem; font-weight: 800; overflow: hidden; }
.vphoto img { width: 100%; height: 100%; object-fit: cover; }
.vname { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--blue-ink); line-height: 1.15; }
.vtier { margin-top: 6px; color: var(--muted); font-weight: 550; }
.vsection { padding: 18px 26px; border-top: 1px solid var(--line); margin-top: 20px; }
.vsection:first-of-type { margin-top: 0; }
.vsection h3 { font-size: .95rem; color: var(--muted); font-weight: 650; letter-spacing: 0; margin-bottom: 10px; }
.vsection ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.vchecks li { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-weight: 650; font-size: .85rem; }
.pill.done { background: var(--tint-green); color: var(--green-ink); }
.pill.wait { background: #fff7e6; color: #8a5a00; }
.vfoot { padding: 18px 26px 24px; border-top: 1px solid var(--line); background: var(--paper); font-size: .92rem; color: var(--muted); }
.vfoot p { margin: 0; }
.vbody { padding: 26px; }
.vbody p { color: var(--muted); }
.verify-search { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.verify-search input { flex: 1 1 200px; font: inherit; font-size: 16px; padding: 14px 18px; min-height: 52px; border-radius: 999px; border: 1.5px solid #cfd5df; background: #fff; }
.verify-search input:focus { outline: 3px solid rgba(37, 99, 235, .25); border-color: var(--blue-2); }

/* ---------- Prose (about, legal) ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.5rem; margin: 2.2em 0 .6em; }
.prose h3 { margin: 1.6em 0 .4em; font-size: 1.1rem; }
.prose p, .prose li { color: #2a3547; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin-bottom: .45em; }
.prose .updated { color: var(--soft); font-size: .95rem; }
.toc { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.toc a { display: inline-block; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); text-decoration: none; font-size: .92rem; font-weight: 550; color: var(--blue-ink); }
.toc a:hover { background: var(--tint); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 8px; }
.facts > div { padding: 22px 24px 22px 0; }
.facts > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.facts dt { font-size: .85rem; color: var(--soft); font-weight: 600; margin-bottom: 4px; }
.facts dd { margin: 0; font-weight: 700; color: var(--blue-ink); font-size: 1.05rem; line-height: 1.35; }
@media (max-width: 760px) { .facts { grid-template-columns: 1fr; } .facts > div, .facts > div + div { padding: 16px 0; border-left: 0; border-top: 1px solid var(--line); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-ink); color: rgba(255, 255, 255, .8); padding-block: 56px 32px; margin-top: 0; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.site-footer p { font-size: .95rem; max-width: 34ch; }
.site-footer h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .95rem; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .16); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .88rem; color: rgba(255, 255, 255, .65); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Utilities ---------- */
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.form-card.done > h2, .form-card.done > .form-sub { display: none; }

[id] { scroll-margin-top: 92px; }

.hero-note { margin-top: 26px; }
