:root {
  --ink: #111316;
  --soft-ink: #303741;
  --muted: #66717d;
  --line: rgba(17, 19, 22, 0.13);
  --paper: #f7f8f5;
  --white: #ffffff;
  --charcoal: #151a1e;
  --green: #0e6b55;
  --green-2: #084538;
  --sage: #dce9df;
  --blue: #e7eef8;
  --amber: #d9822b;
  --red: #b83d2c;
  --shadow: 0 24px 70px rgba(17, 19, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ad-label {
  padding: 8px 16px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 13px clamp(16px, 4vw, 58px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.call-strip {
  position: sticky;
  top: 69px;
  z-index: 29;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--amber);
  color: #14110e;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.call-strip strong {
  font-weight: 950;
}

.brand,
.nav-links a,
.nav-cta,
.button,
.tile-link,
.crumbs a {
  text-decoration: none;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px 12px 12px 2px;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--charcoal));
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #39424c;
  font-size: 14px;
  font-weight: 820;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--charcoal);
  background: var(--sage);
  border: 1px solid rgba(14, 107, 85, 0.18);
}

.button.outline {
  color: var(--green);
  background: transparent;
  border: 1px solid rgba(14, 107, 85, 0.35);
}

.button.full {
  width: 100%;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.88fr) minmax(380px, 1.12fr);
  min-height: calc(100vh - 96px);
  background: var(--paper);
}

.hero-brief {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 68px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(21, 26, 30, 0.7), rgba(21, 26, 30, 0.94)),
    url("assets/hero-intake.png") center / cover;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.proof-stack {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.proof-stack span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.review-workspace {
  display: grid;
  align-content: center;
  padding: clamp(22px, 5vw, 70px);
}

.progress-card,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.progress-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.progress-card span {
  padding: 13px 12px;
  border-right: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 920;
  text-align: center;
}

.progress-card span:last-child {
  border-right: 0;
}

.lead-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 6px;
}

.form-progress span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--sage);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
}

.form-progress strong {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
}

.form-intro {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 107, 85, 0.09), rgba(217, 130, 43, 0.12));
}

.form-intro h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.form-intro p {
  margin-bottom: 0;
  color: var(--soft-ink);
}

.form-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.form-step-title span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.form-step-title strong {
  font-size: 17px;
}

.lead-form h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 42px);
}

.form-sub {
  color: var(--muted);
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 6px;
  color: #303741;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 19, 22, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3f4852;
  font-size: 11.5px;
  font-weight: 650;
}

.consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.fine-print,
.form-links {
  color: var(--muted);
  font-size: 11.5px;
}

.form-links a {
  color: var(--green);
  font-weight: 850;
}

.band {
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
}

.band.white {
  background: var(--white);
}

.band.dark {
  background: var(--charcoal);
  color: #f5f8f5;
}

.section-head {
  max-width: 880px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.section-head p {
  color: var(--muted);
}

.dark .section-head p {
  color: rgba(245, 248, 245, 0.74);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.article-card,
.state-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3,
.article-card h3,
.state-card h3 {
  margin-bottom: 8px;
}

.card p,
.article-card p,
.state-card p {
  color: var(--muted);
}

.dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.dark .card p {
  color: rgba(245, 248, 245, 0.72);
}

.tile-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tile-link,
.link-grid a,
.mini-links a {
  display: block;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-2);
  font-weight: 880;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-hero {
  padding: clamp(30px, 6vw, 76px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(220, 233, 223, 0.92), rgba(247, 248, 245, 0.98)),
    linear-gradient(90deg, rgba(14, 107, 85, 0.1), transparent);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-hero h1 {
  max-width: 860px;
}

.article-hero p {
  max-width: 760px;
  color: var(--soft-ink);
  font-size: 18px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 342px;
  gap: 24px;
  padding: clamp(30px, 5vw, 64px) clamp(16px, 5vw, 72px);
}

.content-block {
  padding: 24px;
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-block h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.sidebar-card {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(14, 107, 85, 0.18);
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(17, 19, 22, 0.09);
}

.sidebar-card .button {
  margin-top: 10px;
}

.faq details {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 30px clamp(16px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(245, 248, 245, 0.74);
}

.footer strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 850;
}

.match-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  min-height: 660px;
  padding: clamp(40px, 7vw, 96px) clamp(16px, 5vw, 72px);
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.match-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 26, 30, 0.92), rgba(21, 26, 30, 0.68) 52%, rgba(21, 26, 30, 0.38)),
    url("assets/hero-intake.png") center / cover;
}

.match-hero-content,
.quick-card {
  position: relative;
  z-index: 1;
}

.match-hero-content {
  max-width: 850px;
}

.match-hero-content h1 {
  max-width: 880px;
  font-size: clamp(46px, 6.4vw, 88px);
}

.match-hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-note {
  margin-top: 10px;
  font-size: 13px !important;
  font-weight: 750;
}

.quick-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.quick-card h2 {
  margin-bottom: 8px;
}

.quick-card p,
.phone-link {
  color: rgba(255, 255, 255, 0.78);
}

.phone-link {
  display: block;
  margin-top: 14px;
  font-weight: 900;
  text-align: center;
}

.quick-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}

.quick-picks button,
.chooser-grid button {
  cursor: pointer;
  font: inherit;
}

.quick-picks button {
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.quick-picks button:hover,
.quick-picks button:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-keywords a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.accident-chooser {
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
  background: #fff;
}

.chooser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.chooser-grid button {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(17, 19, 22, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f5f8f5);
  color: var(--ink);
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.chooser-grid button:hover,
.chooser-grid button:focus-visible,
.chooser-grid button.is-selected {
  transform: translateY(-2px);
  border-color: rgba(14, 107, 85, 0.42);
  box-shadow: 0 14px 34px rgba(17, 19, 22, 0.1);
}

.chooser-grid button.is-selected,
.quick-picks button.is-selected {
  outline: 3px solid rgba(217, 130, 43, 0.38);
}

.chooser-grid span {
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-2);
  font-size: 12px;
  font-weight: 950;
}

.chooser-grid strong {
  font-size: 21px;
}

.chooser-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
}

.split-section h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.03;
}

.split-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mini-proof div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mini-proof strong,
.mini-proof span {
  display: block;
}

.mini-proof span {
  margin-top: 5px;
  color: var(--muted);
}

.photo-panel {
  min-height: 380px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 107, 85, 0.05), rgba(21, 26, 30, 0.12)),
    url("assets/hero-intake.png") center / cover;
  box-shadow: var(--shadow);
}

.case-worth-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
  background: var(--blue);
}

.seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 28px;
  align-items: start;
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
}

.auto-help-band {
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
  background: linear-gradient(180deg, #fff, #f6f8f5);
}

.auto-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.auto-help-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 19, 22, 0.08);
}

.auto-help-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #233b5f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.auto-help-grid h3 {
  font-size: 24px;
}

.auto-help-grid p {
  color: var(--muted);
}

.seo-copy h2 {
  max-width: 850px;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
}

.seo-copy p {
  max-width: 900px;
  color: var(--soft-ink);
}

.seo-checklist {
  padding: 24px;
  border: 1px solid rgba(14, 107, 85, 0.18);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(17, 19, 22, 0.08);
}

.seo-checklist h3 {
  font-size: 24px;
}

.seo-checklist ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.seo-checklist li + li {
  margin-top: 9px;
}

.worth-copy h2 {
  max-width: 820px;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
}

.worth-copy p {
  max-width: 760px;
  color: var(--soft-ink);
}

.worth-list {
  display: grid;
  gap: 12px;
}

.worth-list div {
  padding: 18px;
  border: 1px solid rgba(48, 71, 113, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.worth-list strong,
.worth-list span {
  display: block;
}

.worth-list span {
  margin-top: 5px;
  color: var(--muted);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.practice-grid a {
  min-height: 154px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.practice-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17, 19, 22, 0.1);
}

.practice-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green-2);
  font-weight: 950;
}

.practice-grid strong {
  display: block;
  font-size: 20px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-card-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17, 19, 22, 0.08);
}

.image-card-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-card-grid span,
.image-card-grid strong,
.image-card-grid p {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.image-card-grid span {
  margin-top: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.image-card-grid strong {
  margin-top: 5px;
  font-size: 22px;
}

.image-card-grid p {
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--muted);
}

.why-section {
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
  background: #fff;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.number-grid div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.number-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}

.number-grid p {
  color: var(--muted);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scenario-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6f8f5);
}

.scenario-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-2);
  font-size: 12px;
  font-weight: 950;
}

.scenario-grid p {
  color: var(--muted);
}

.trust-quote {
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 26, 30, 0.96), rgba(21, 26, 30, 0.78)),
    url("assets/hero-intake.png") center / cover;
}

.trust-quote div {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-quote blockquote {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 850;
  line-height: 1.12;
}

.trust-quote p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.consult-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(16px, 5vw, 72px);
  background: var(--green-2);
  color: #fff;
}

.consult-band h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.consult-band .eyebrow {
  color: var(--amber);
}

.form-section {
  padding: clamp(38px, 6vw, 82px) clamp(16px, 5vw, 72px);
  background: var(--paper);
}

.wide-form {
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-shell,
  .article-layout,
  .match-hero,
  .split-section,
  .case-worth-band,
  .seo-panel {
    grid-template-columns: 1fr;
  }

  .hero-brief {
    min-height: 430px;
  }

  .sidebar-card {
    position: static;
  }

  .grid,
  .tile-grid,
  .link-grid,
  .practice-grid,
  .chooser-grid,
  .number-grid,
  .scenario-grid,
  .image-card-grid,
  .auto-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-brief,
  .review-workspace {
    padding: 24px 16px;
  }

  .call-strip {
    position: static;
    display: grid;
    gap: 2px;
  }

  .progress-card,
  .form-grid,
  .grid,
  .tile-grid,
  .link-grid,
  .practice-grid,
  .chooser-grid,
  .number-grid,
  .scenario-grid,
  .image-card-grid,
  .auto-help-grid,
  .mini-proof,
  .form-progress,
  .footer {
    grid-template-columns: 1fr;
  }

  .match-hero {
    padding: 34px 16px;
  }

  .consult-band {
    display: block;
  }

  .consult-band .button {
    margin-top: 16px;
    width: 100%;
  }

  .progress-card span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: 40px;
  }
}

.faq-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-preview-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-preview-grid p {
  color: var(--muted);
}

.faq-preview-grid a {
  color: var(--green);
  font-weight: 900;
}

.attorney-disclaimer {
  padding: 20px clamp(16px, 5vw, 72px);
  background: #0f1317;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.55;
}

.attorney-disclaimer strong {
  color: #fff;
}

@media (max-width: 1080px) {
  .faq-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .faq-preview-grid { grid-template-columns: 1fr; }
}

.seo-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--soft-ink);
}

.seo-list li {
  margin: 7px 0;
}
