/* MyFOIA visual system */
:root {
  --navy-950: #07152f;
  --navy-900: #0b1f3f;
  --navy-800: #12315a;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --ink: #172033;
  --muted: #647085;
  --muted-dark: #475569;
  --line: #dfe5ec;
  --line-strong: #ccd5df;
  --paper: #ffffff;
  --paper-warm: #fbfcfe;
  --surface: #f5f7fa;
  --surface-blue: #f5f8ff;
  --success: #15803d;
  --success-bg: #f0fdf4;
  --danger: #b42318;
  --danger-bg: #fef3f2;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 8px rgba(15, 23, 42, .04);
  --shadow: 0 16px 48px rgba(15, 23, 42, .10);
  --max: 1160px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.form-page { background: var(--paper-warm); }
img, svg { display: block; }
a { color: var(--blue-700); text-underline-offset: 3px; }
a:hover { color: var(--blue-600); }
h1, h2, h3 { margin: 0; color: var(--navy-950); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 6vw, 4.8rem); font-weight: 760; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 730; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin-top: 0; }
.container { width: min(var(--max), calc(100% - 3rem)); margin-inline: auto; }
.section { padding: 6rem 0; }
.section.alt { background: var(--surface); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .9rem; }
.section-head .muted { font-size: 1.05rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 999px; background: currentColor; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hidden { display: none !important; }

/* Header / brand */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,229,236,.88);
  backdrop-filter: blur(14px);
}
.site-header .container { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--navy-950); font-size: 1.17rem; font-weight: 780; letter-spacing: -.025em; }
.brand:hover { color: var(--navy-950); }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy-950);
  color: white;
  box-shadow: 0 4px 14px rgba(7,21,47,.16);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name em { color: var(--blue-600); font-style: normal; }
.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a { color: var(--muted-dark); text-decoration: none; font-size: .94rem; font-weight: 620; }
.nav a:hover { color: var(--navy-950); }
.nav .btn { color: white; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 9px; padding: .5rem .65rem; color: var(--navy-950); font-size: 1.1rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 44px;
  padding: .72rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 7px 18px rgba(37,99,235,.18); }
.btn-primary:hover { color: #fff; background: var(--blue-700); box-shadow: 0 10px 24px rgba(37,99,235,.22); }
.btn-outline { background: #fff; color: var(--navy-950); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-outline:hover { color: var(--navy-950); border-color: #aeb9c7; background: var(--surface); }
.btn-light { background: #fff; color: var(--navy-950); border-color: #fff; box-shadow: var(--shadow-sm); }
.btn-light:hover { color: var(--navy-950); background: #f8fafc; }
.btn-lg { min-height: 52px; padding: .92rem 1.45rem; font-size: 1rem; }
.btn[disabled] { opacity: .62; cursor: progress; transform: none; }
.arrow { width: 16px; height: 16px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6.8rem 0 5.7rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(59,130,246,.11), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  bottom: -230px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 0 0 70px rgba(37,99,235,.025), 0 0 0 140px rgba(37,99,235,.018);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .8fr); gap: 5rem; align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem;
  padding: .42rem .72rem;
  border: 1px solid #d6e4ff;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.hero-kicker svg { width: 15px; height: 15px; }
.hero h1 { max-width: 800px; }
.hero h1 span { color: var(--blue-600); }
.hero .lead { max-width: 690px; margin: 1.45rem 0 0; color: var(--muted-dark); font-size: clamp(1.08rem, 1.8vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .65rem 1.5rem; margin-top: 2rem; color: var(--muted); font-size: .88rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .42rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--success); }

.request-panel {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.request-panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .35rem .35rem 1.2rem; border-bottom: 1px solid var(--line); }
.request-panel-top p { margin: .25rem 0 0; color: var(--muted); font-size: .86rem; }
.request-panel-badge { padding: .35rem .55rem; border-radius: 999px; background: var(--success-bg); color: var(--success); font-size: .72rem; font-weight: 750; white-space: nowrap; }
.request-flow { display: grid; gap: 0; padding: .7rem .15rem .2rem; }
.flow-row { position: relative; display: grid; grid-template-columns: 38px 1fr; gap: .8rem; padding: .85rem .2rem; }
.flow-row:not(:last-child)::after { content: ""; position: absolute; left: 18px; top: 43px; bottom: -5px; width: 1px; background: var(--line); }
.flow-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--surface-blue); color: var(--blue-600); border: 1px solid #dce8ff; }
.flow-icon svg { width: 18px; height: 18px; }
.flow-row strong { display: block; color: var(--navy-950); font-size: .92rem; }
.flow-row p { margin: .18rem 0 0; color: var(--muted); font-size: .83rem; line-height: 1.45; }
.panel-note { margin: .5rem .25rem .1rem; padding: .85rem 1rem; border-radius: 10px; background: var(--surface); color: var(--muted-dark); font-size: .8rem; }

/* Trust strip */
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.2rem 1.5rem; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy-950); font-size: .9rem; }
.trust-item span { color: var(--muted); font-size: .8rem; }

/* Record types */
.record-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.record-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.record-card:hover { transform: translateY(-3px); border-color: #c7d8f8; box-shadow: 0 14px 34px rgba(15,23,42,.07); }
.record-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 11px; background: var(--surface-blue); color: var(--blue-600); border: 1px solid #dce8ff; }
.record-icon svg { width: 22px; height: 22px; }
.record-card h3 { margin-bottom: .55rem; }
.record-card > p { color: var(--muted); font-size: .94rem; }
.record-card ul { padding-left: 1.05rem; margin: .45rem 0 1.5rem; color: var(--muted-dark); font-size: .9rem; }
.record-card li { margin: .28rem 0; }
.card-cta { display: inline-flex; align-items: center; gap: .42rem; margin-top: auto; color: var(--blue-700); font-size: .9rem; font-weight: 720; text-decoration: none; }
.card-cta svg { width: 15px; height: 15px; transition: transform .15s ease; }
.record-card:hover .card-cta svg { transform: translateX(2px); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: steps; }
.step { position: relative; padding: 0 2rem 0 0; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 19px; left: 52px; right: 16px; height: 1px; background: #ccd8e7; }
.step-num { position: relative; z-index: 1; width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 1.35rem; border: 1px solid #c9d8ef; border-radius: 50%; background: #fff; color: var(--blue-700); font-size: .82rem; font-weight: 780; box-shadow: 0 0 0 8px var(--surface); }
.step h3 { margin-bottom: .6rem; font-size: 1.08rem; }
.step p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* Pricing */
.pricing-wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)) 300px; gap: 1.25rem; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.price-card.featured { border-color: #bfd2fb; box-shadow: 0 16px 38px rgba(37,99,235,.09); }
.price-tag { position: absolute; right: 1.2rem; top: 1.2rem; padding: .3rem .55rem; border-radius: 999px; background: var(--blue-50); color: var(--blue-700); font-size: .7rem; font-weight: 780; }
.price-card h3 { font-size: 1.05rem; }
.price-card .amount { margin: .6rem 0 .7rem; color: var(--navy-950); font-size: 2.65rem; font-weight: 760; letter-spacing: -.04em; line-height: 1; }
.price-card .amount small { color: var(--muted); font-size: .84rem; font-weight: 550; letter-spacing: normal; }
.price-card > p { min-height: 3.2em; color: var(--muted); font-size: .9rem; }
.price-card ul { list-style: none; padding: 1.1rem 0 1.4rem; margin: .4rem 0 1.5rem; border-top: 1px solid var(--line); color: var(--muted-dark); font-size: .88rem; }
.price-card li { position: relative; padding-left: 1.45rem; margin: .5rem 0; }
.price-card li::before { content: ""; position: absolute; left: 0; top: .48rem; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); }
.price-card .btn { margin-top: auto; }
.rush-card { display: flex; flex-direction: column; padding: 2rem; border-radius: 16px; background: var(--navy-950); color: #fff; }
.rush-card .eyebrow { color: #8db9ff; margin-bottom: 1rem; }
.rush-card h3 { color: #fff; font-size: 1.35rem; }
.rush-card .amount { margin: .5rem 0 .8rem; color: #fff; font-size: 2.1rem; font-weight: 760; letter-spacing: -.035em; }
.rush-card p, .rush-card li { color: #c8d4e6; font-size: .88rem; }
.rush-card ul { padding-left: 1.05rem; margin-bottom: 1.5rem; }
.rush-card .btn { margin-top: auto; background: #fff; color: var(--navy-950); }
.fee-note { display: flex; align-items: flex-start; gap: .8rem; margin-top: 1.35rem; padding: 1rem 1.1rem; border: 1px solid #dce4ee; border-radius: 11px; background: var(--surface); color: var(--muted-dark); font-size: .88rem; }
.fee-note svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: .08rem; color: var(--blue-600); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 5rem; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro p { color: var(--muted); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.2rem 0; color: var(--navy-950); cursor: pointer; list-style: none; font-size: 1rem; font-weight: 680; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-700); font-size: 1rem; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; margin: -.2rem 0 1.25rem; padding-right: 3rem; color: var(--muted); font-size: .92rem; }

/* CTA */
.cta-band { padding: 4.8rem 0; background: var(--navy-950); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.55rem); }
.cta-band p { max-width: 660px; margin: .65rem 0 0; color: #bccae0; }
.cta-band .btn { flex: 0 0 auto; }

/* Footer */
.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); background: #fff; color: var(--muted); font-size: .86rem; }
.site-footer .container { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; align-items: start; }
.footer-brand { margin-bottom: .75rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 1.3rem; }
.site-footer a { color: var(--muted-dark); text-decoration: none; }
.site-footer a:hover { color: var(--navy-950); }
.disclaimer { max-width: 780px; margin: .55rem 0 0; font-size: .8rem; line-height: 1.55; }

/* Internal page header */
.page-head { padding: 4.25rem 0 3rem; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #f8fbff, #fff); }
.page-head h1 { max-width: 780px; font-size: clamp(2.35rem, 5vw, 3.5rem); }
.page-head p { max-width: 720px; margin: 1rem 0 0; color: var(--muted); font-size: 1rem; }
.progress-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.progress-pill { display: inline-flex; align-items: center; gap: .42rem; padding: .45rem .68rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--muted-dark); font-size: .78rem; font-weight: 620; }
.progress-pill span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-blue); color: var(--blue-700); font-size: .68rem; font-weight: 800; }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2.5rem; align-items: start; padding: 3rem 0 5rem; }
#order-form { min-width: 0; }
fieldset { min-width: 0; margin: 0 0 1.35rem; padding: 0; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
legend { float: left; width: 100%; padding: 1.25rem 1.45rem 1rem; border-bottom: 1px solid var(--line); color: var(--navy-950); font-size: 1.02rem; font-weight: 720; }
legend + * { clear: both; }
fieldset > .field, fieldset > .row, fieldset > [data-show] { margin-left: 1.45rem; margin-right: 1.45rem; }
fieldset > .field:first-of-type { margin-top: 1.35rem; }
fieldset > .field:last-of-type { margin-bottom: 1.45rem; }
fieldset > [data-show] { margin-bottom: .25rem; }
fieldset > [data-show] > .field:last-child { margin-bottom: 1.45rem; }
.field { margin-bottom: 1.15rem; }
.field label, .field .label { display: block; margin-bottom: .4rem; color: #263246; font-size: .88rem; font-weight: 670; }
.field .hint { margin: .4rem 0 0; color: var(--muted); font-size: .79rem; line-height: 1.5; }
.req { color: var(--danger); }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=file], select, textarea {
  width: 100%;
  min-height: 44px;
  padding: .72rem .82rem;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: #96a0b0; }
input:hover, select:hover, textarea:hover { border-color: #aeb9c7; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
textarea { min-height: 116px; resize: vertical; }
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  padding: .9rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--navy-950);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.choice span small { display: block; margin-top: .3rem; color: var(--muted); font-size: .74rem; font-weight: 500; line-height: 1.35; }
.choice input:checked + span { border-color: var(--blue-500); background: var(--blue-50); box-shadow: 0 0 0 2px rgba(59,130,246,.09); }
.choice input:focus-visible + span { outline: 2px solid var(--blue-500); outline-offset: 2px; }
.choice input:checked + span::before { content: "Selected"; align-self: flex-start; margin-bottom: .35rem; color: var(--blue-700); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.check { display: flex !important; gap: .65rem; align-items: flex-start; padding: .1rem 0; color: var(--muted-dark) !important; font-size: .84rem !important; font-weight: 500 !important; }
.check input { flex: 0 0 auto; margin-top: .23rem; accent-color: var(--blue-600); }
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: .2rem 1.45rem 1.45rem; padding-top: .2rem; }
.form-actions .muted { font-size: .8rem; }
.form-msg { display: none; margin: 0 1.45rem 1.45rem; padding: .85rem 1rem; border-radius: 9px; font-size: .86rem; }
.form-msg.error { display: block; background: var(--danger-bg); color: var(--danger); border: 1px solid #fecdca; }
.form-msg.success { display: block; background: var(--success-bg); color: var(--success); border: 1px solid #bbf7d0; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); box-shadow: 0 0 0 2px rgba(180,35,24,.08); }

.form-aside { position: sticky; top: 98px; display: grid; gap: 1rem; }
.aside-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.aside-card.primary { border-color: #cfddfa; background: #fbfdff; }
.aside-card h3 { margin-bottom: .9rem; font-size: .98rem; }
.aside-card p, .aside-card li { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.summary-list { list-style: none; padding: 0; margin: 0; }
.summary-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .42rem 0; color: var(--muted-dark); }
.summary-list li.total { margin-top: .45rem; padding-top: .8rem; border-top: 1px solid var(--line); color: var(--navy-950); font-size: .88rem; }
.summary-list strong { color: var(--navy-950); font-weight: 720; }
.next-list { list-style: none; padding: 0; margin: 0; counter-reset: aside; }
.next-list li { position: relative; padding: .2rem 0 .65rem 1.8rem; }
.next-list li::before { counter-increment: aside; content: counter(aside); position: absolute; left: 0; top: .15rem; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-blue); color: var(--blue-700); font-size: .67rem; font-weight: 750; }
.secure-line { display: flex; align-items: center; gap: .5rem; margin-top: .85rem !important; padding-top: .85rem; border-top: 1px solid var(--line); }
.secure-line svg { width: 16px; height: 16px; color: var(--success); }

/* Prose / confirmation */
.prose { max-width: 800px; padding: 4.4rem 0 5rem; }
.prose h1 { font-size: clamp(2.3rem, 5vw, 3.3rem); }
.prose h2 { margin-top: 2.3rem; margin-bottom: .8rem; font-size: 1.38rem; }
.prose p, .prose li { color: var(--muted-dark); }
.prose li { margin-bottom: .4rem; }
.confirm-card { margin: 1.5rem 0 2rem; padding: 1.15rem 1.3rem; border: 1px solid #cfe0ff; border-radius: 12px; background: var(--surface-blue); }
.confirm-card p { margin: 0; }
.success-mark { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 1.3rem; border-radius: 50%; background: var(--success-bg); color: var(--success); }
.success-mark svg { width: 26px; height: 26px; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 2.8rem; }
  .pricing-wrap { grid-template-columns: repeat(2, 1fr); }
  .rush-card { grid-column: 1 / -1; }
  .form-layout { grid-template-columns: minmax(0,1fr) 285px; gap: 1.6rem; }
}
@media (max-width: 820px) {
  .container { width: min(var(--max), calc(100% - 2rem)); }
  .section { padding: 4.5rem 0; }
  .hero { padding: 5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .request-panel { max-width: 600px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3) { padding-left: 0; }
  .record-grid { grid-template-columns: 1fr; }
  .record-card { min-height: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1rem; }
  .step:nth-child(2)::after { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-intro { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .aside-card.primary { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .site-header .container { min-height: 66px; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 66px; left: 0; right: 0; padding: 1rem; border-bottom: 1px solid var(--line); background: #fff; flex-direction: column; align-items: stretch; gap: .2rem; box-shadow: 0 18px 30px rgba(15,23,42,.08); }
  .nav.open { display: flex; }
  .nav a { padding: .7rem .4rem; }
  .nav .btn { margin-top: .4rem; }
  .hero { padding: 4.2rem 0 3.5rem; }
  .hero-grid { gap: 2.5rem; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; gap: .55rem; }
  .trust-strip .container { grid-template-columns: 1fr; }
  .trust-item { padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2), .trust-item:nth-child(3) { padding-left: 0; }
  .trust-item:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step { padding-left: 3.25rem; padding-right: 0; }
  .step-num { position: absolute; left: 0; top: 0; box-shadow: none; }
  .step:not(:last-child)::after { left: 19px; top: 41px; bottom: -26px; right: auto; width: 1px; height: auto; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .rush-card { grid-column: auto; }
  .price-card > p { min-height: 0; }
  .cta-band { padding: 3.8rem 0; }
  .site-footer .container { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .page-head { padding: 3.2rem 0 2.4rem; }
  .progress-row { display: grid; grid-template-columns: repeat(2, 1fr); }
  .progress-pill { justify-content: flex-start; }
  .form-layout { padding-top: 1.5rem; }
  .row, .choice-grid { grid-template-columns: 1fr !important; }
  fieldset > .field, fieldset > .row, fieldset > [data-show] { margin-left: 1rem; margin-right: 1rem; }
  legend { padding: 1.1rem 1rem .9rem; }
  .form-actions { margin-left: 1rem; margin-right: 1rem; }
  .form-actions .btn { width: 100%; }
  .form-msg { margin-left: 1rem; margin-right: 1rem; }
  .form-aside { grid-template-columns: 1fr; }
  .aside-card.primary { grid-column: auto; }
}
