:root {
  --ink: #080f0b;
  --black: #050705;
  --forest: #0c3b27;
  --green: #12824e;
  --mint: #d9f3e5;
  --gold: #c79a34;
  --steel: #e7ece8;
  --paper: #fbfcf8;
  --muted: #68736d;
  --line: #d7ded9;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(3, 12, 8, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.topline {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 8px 24px;
  background: var(--forest);
  color: white;
  font-size: 0.88rem;
}

.topline a {
  justify-self: start;
  color: var(--mint);
  font-weight: 800;
}

.topline span {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.topline-close {
  justify-self: end;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(8, 15, 11, 0.08);
  background: rgba(251, 252, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  color: #243029;
  font-size: 0.94rem;
  font-weight: 750;
}

.desktop-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  border-color: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta:hover,
.btn.primary:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 76px);
  overflow: hidden;
  background: var(--black);
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.94) 0%, rgba(5, 7, 5, 0.76) 42%, rgba(5, 7, 5, 0.2) 100%),
    url("./assets/hero-adjuster.png") center / cover;
  transform: scale(1.02);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.82fr);
  gap: clamp(24px, 3.2vw, 52px);
  align-items: center;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 6.05rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn.primary {
  border-color: var(--green);
  background: var(--green);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  max-width: 780px;
  gap: 1px;
  margin: 48px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  min-height: 100px;
  padding: 20px;
  background: rgba(5, 7, 5, 0.7);
}

.hero-stats dt {
  margin: 0 0 6px;
  color: white;
  font-size: 1.22rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-intake-panel {
  align-self: center;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(251, 252, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.panel-logo {
  width: min(100%, 280px);
  height: 188px;
  overflow: hidden;
  background: #000;
}

.panel-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-intake-panel .eyebrow {
  margin: 8px 0 -6px;
}

.hero-intake-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.hero-intake-panel p {
  margin: 0;
  color: #3f4a43;
  line-height: 1.65;
}

.hero-intake-panel .btn {
  width: fit-content;
}

.panel-phone {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: var(--forest);
  font-weight: 900;
}

.nti-form-card {
  align-self: center;
  width: min(100%, 680px);
  max-height: min(84vh, 860px);
  overflow: auto;
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.contract-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 16px;
}

.contract-logo {
  display: grid;
  justify-self: center;
  width: min(66%, 250px);
  height: clamp(94px, 10vw, 122px);
  overflow: hidden;
  background: #000;
}

.contract-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contract-contact {
  display: grid;
  gap: 2px;
  color: #111;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.contract-contact strong {
  font-size: 0.96rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nti-form-card h2 {
  margin: 0 0 0;
  color: #111;
  font-size: clamp(1.02rem, 1.75vw, 1.34rem);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.nti-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
}

.nti-field,
.nti-legal,
.nti-section-title {
  border: 1px solid #111;
  background: #fff;
  color: #151515;
}

.nti-field {
  grid-column: span 6;
  display: grid;
  gap: 6px;
  min-height: 48px;
  padding: 7px 8px;
  font-size: 0.76rem;
  font-weight: 500;
}

.nti-field.half {
  grid-column: span 6;
}

.nti-field.quarter {
  grid-column: span 3;
}

.nti-field.third {
  grid-column: span 4;
}

.nti-field.full,
.nti-legal.full,
.nti-section-title.full,
.nti-form .btn.full,
.nti-form .form-status.full {
  grid-column: 1 / -1;
}

.nti-field.tall {
  min-height: 64px;
}

.nti-field span {
  line-height: 1.25;
}

.nti-field input,
.nti-field select,
.nti-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  padding: 0;
}

.nti-field textarea {
  resize: vertical;
  min-height: 32px;
}

.nti-field select {
  cursor: pointer;
}

.nti-section-title {
  margin-top: 18px;
  padding: 0 14px 2px;
  border: 0;
  background: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.nti-legal {
  margin-top: 18px;
  padding: 0;
  border: 0;
  font-size: 0.78rem;
  line-height: 1.36;
}

.nti-field.fee {
  min-height: 52px;
  margin-top: 12px;
}

.nti-form .btn {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
}

.signature-field input {
  min-height: 26px;
}

.form-page {
  background: #eef5ef;
}

.form-shell {
  display: grid;
  gap: 28px;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(58px, 8vw, 96px);
}

.form-intro {
  max-width: 900px;
}

.form-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.96;
}

.form-intro p {
  max-width: 720px;
  color: #39443e;
  font-size: 1.05rem;
  line-height: 1.75;
}

.form-actions-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  max-width: 960px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 14px 40px rgba(8, 15, 11, 0.08);
}

.signing-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.signing-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #39443e;
  line-height: 1.65;
}

.signing-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.signing-workflow {
  max-width: 960px;
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(18, 130, 78, 0.28);
  background: #f2fbf5;
}

.signing-workflow h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.08;
}

.signing-workflow p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #39443e;
  line-height: 1.6;
}

.signing-form {
  display: grid;
  gap: 20px;
}

.signing-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(8, 15, 11, 0.14);
  background: white;
}

.signing-form legend {
  padding: 0 8px;
  color: var(--forest);
  font-weight: 950;
}

.signing-form label,
.signature-pad {
  display: grid;
  gap: 8px;
  color: #2f3a34;
  font-size: 0.86rem;
  font-weight: 850;
}

.signing-form input,
.signing-form textarea {
  width: 100%;
  border: 1px solid #ccd5cf;
  background: #fbfcf8;
  color: var(--ink);
  padding: 13px 14px;
}

.signing-form textarea {
  resize: vertical;
}

.signing-form .wide,
.signing-submit {
  grid-column: 1 / -1;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  line-height: 1.45;
}

.check-row input {
  width: auto;
  margin-top: 3px;
}

.signature-pad canvas {
  width: 100%;
  height: 180px;
  border: 1px solid #aeb9b2;
  background: white;
  touch-action: none;
}

.text-button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--green);
  padding: 0;
  font-weight: 900;
  cursor: pointer;
}

.signing-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.bot-field {
  display: none !important;
}

.btn.outline-dark {
  border-color: var(--ink);
  background: white;
  color: var(--ink);
}

.contract-preview {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.contract-review-heading {
  max-width: 960px;
  padding-top: 18px;
}

.contract-review-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1;
}

.contract-page {
  width: min(100%, 960px);
  margin: 0;
  background: white;
  box-shadow: 0 18px 55px rgba(8, 15, 11, 0.14);
}

.contract-page img {
  display: block;
  width: 100%;
  height: auto;
}

.thank-you-shell {
  min-height: calc(100vh - 78px);
  place-items: center;
}

.thank-you-card {
  width: min(100%, 860px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(18, 130, 78, 0.22);
  background: white;
  box-shadow: 0 18px 55px rgba(8, 15, 11, 0.12);
}

.thank-you-card > svg {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--green);
}

.thank-you-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 690px;
  color: #39443e;
  font-size: 1.06rem;
  line-height: 1.7;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading h2,
.review-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.intro-copy p,
.area-copy p,
.review-copy p {
  color: #39443e;
  font-size: 1.05rem;
  line-height: 1.75;
}

.check-list,
.adjuster-compare ul,
.claim-card p,
.resource-link small,
.resource-link.light small,
.site-footer p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 28px;
  color: #243029;
}

.check-list svg {
  color: var(--green);
}

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

.adjuster-compare article,
.claim-card,
.faq-list details {
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 10px 30px rgba(8, 15, 11, 0.06);
}

.adjuster-compare article {
  min-height: 360px;
  padding: 28px;
}

.adjuster-compare .highlight {
  border-color: rgba(18, 130, 78, 0.35);
  background: #f2fbf5;
}

.adjuster-compare h3,
.claim-card h3,
.area-copy h3,
.process-rail h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.2rem;
}

.adjuster-compare p,
.adjuster-compare li {
  line-height: 1.65;
}

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

.dark-band .section-heading h2,
.dark-band .process-rail h3 {
  color: white;
}

.process-rail {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  overflow-x: auto;
}

.process-rail article {
  min-height: 275px;
  padding: 26px;
  background: #0d1510;
}

.process-rail span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(199, 154, 52, 0.7);
  color: var(--gold);
  font-weight: 900;
}

.process-rail p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

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

.claim-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.claim-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 130, 78, 0.45);
  box-shadow: var(--shadow);
}

.claim-card > svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.claim-card p {
  margin: 0;
  line-height: 1.6;
}

.service-area {
  padding-top: 0;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.map-panel {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(12, 59, 39, 0.96), rgba(5, 7, 5, 0.96)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center / cover;
  overflow: hidden;
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.state-chip {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 900;
}

.state-chip.active {
  background: var(--gold);
  color: var(--ink);
}

.state-chip:nth-child(1) { left: 45%; top: 45%; }
.state-chip:nth-child(2) { left: 61%; top: 39%; }
.state-chip:nth-child(3) { left: 28%; top: 45%; }
.state-chip:nth-child(4) { left: 42%; top: 26%; }
.state-chip:nth-child(5) { left: 66%; top: 22%; }
.state-chip:nth-child(6) { left: 55%; top: 66%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

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

.resource-link {
  min-height: 160px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0d1510;
}

.resource-link:hover {
  border-color: var(--green);
}

.resource-link > svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.resource-link strong,
.resource-link small {
  display: block;
}

.resource-link strong {
  margin-bottom: 8px;
  color: white;
  font-size: 1.1rem;
}

.resource-link small {
  line-height: 1.55;
}

.resource-link.light {
  min-height: 142px;
  border-color: var(--line);
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(8, 15, 11, 0.06);
}

.resource-link.light strong {
  color: var(--ink);
}

.review-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: #eef5ef;
}

.next-step-panel {
  display: grid;
  gap: 14px;
}

.contact-strip {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-strip a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  font-weight: 850;
}

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
}

.compact-form {
  margin-top: 22px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  padding: 24px 28px 28px;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: #2f3a34;
  font-size: 0.86rem;
  font-weight: 850;
}

.review-form label:nth-of-type(4),
.review-form label:nth-of-type(6),
.review-form button,
.form-status {
  grid-column: 1 / -1;
}

.compact-form label:nth-of-type(4) {
  grid-column: auto;
}

.compact-form label:nth-of-type(5),
.compact-form label:nth-of-type(6) {
  grid-column: 1 / -1;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid #ccd5cf;
  border-radius: 0;
  background: #fbfcf8;
  color: var(--ink);
  padding: 13px 14px;
}

.review-form textarea {
  resize: vertical;
  min-height: 128px;
}

.compact-form textarea {
  min-height: 108px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 44px clamp(18px, 6vw, 82px);
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer p {
  max-width: 620px;
  line-height: 1.65;
}

.site-footer .brand-text strong {
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
  font-weight: 800;
}

.is-hidden {
  display: none;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .mobile-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    z-index: 19;
    display: none;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-top: 1px solid var(--line);
    font-weight: 850;
  }

  .intro-grid,
  .hero-layout,
  .area-layout,
  .review-section {
    grid-template-columns: 1fr;
  }

  .process-rail {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
  }

  .process-rail article {
    flex: 0 0 240px;
  }

  .claim-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .topline span {
    display: none;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 18px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 0;
    padding-top: 76px;
  }

  .hero-bg {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 4.2rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nti-form-card {
    order: -1;
    margin-top: 8px;
    max-height: none;
    padding: 16px;
  }

  .hero-intake-panel {
    order: -1;
    margin-top: 8px;
  }

  .hero-intake-panel .btn {
    width: 100%;
  }

  .hero-content {
    order: 1;
  }

  .form-actions-band {
    grid-template-columns: 1fr;
  }

  .signing-actions .btn,
  .signing-actions .panel-phone {
    width: 100%;
  }

  .signing-form fieldset {
    grid-template-columns: 1fr;
  }

  .signing-form .wide,
  .signing-submit {
    grid-column: auto;
  }

  .adjuster-compare,
  .claim-grid,
  .resource-grid,
  .review-form,
  .nti-form {
    grid-template-columns: 1fr;
  }

  .nti-field,
  .nti-field.half,
  .nti-field.quarter,
  .nti-field.third,
  .nti-field.full,
  .nti-legal.full,
  .nti-section-title.full,
  .nti-form .btn.full,
  .nti-form .form-status.full {
    grid-column: auto;
  }

  .review-form label,
  .review-form label:nth-of-type(4),
  .review-form label:nth-of-type(6),
  .review-form button,
  .form-status {
    grid-column: auto;
  }

  .map-panel {
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
