:root {
  --bg: #ffffff;
  --surface: #f5f6f4;
  --surface-2: #eef0ed;
  --ink: #0c0f12;
  --ink-soft: #22272c;
  --muted: #656b72;
  --muted-2: #8b9197;
  --line: #e2e5e1;
  --line-dark: rgba(12, 15, 18, 0.15);
  --accent: #e92b32;
  --accent-dark: #c9151d;
  --success: #1f9d62;
  --warning: #b7791f;
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius: 26px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-height: 78px;
  --shadow-sm: 0 12px 34px rgba(17, 22, 26, 0.07);
  --shadow: 0 28px 80px rgba(17, 22, 26, 0.12);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--ink);
  color: #fff;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
.brand-wordmark,
.button {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.utility-bar {
  position: relative;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .045em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p,
.utility-inner div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.utility-inner a {
  color: #fff;
}

.utility-inner a:hover {
  color: #ff8f94;
}

.utility-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .28);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #32d583;
  box-shadow: 0 0 0 5px rgba(50, 213, 131, .13);
  animation: pulse 2s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(12, 15, 18, .08);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(17, 22, 26, .055);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  color: var(--ink);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  letter-spacing: -.05em;
}

.brand-wordmark strong {
  font-size: 24px;
  font-weight: 700;
}

.brand-wordmark strong span {
  color: var(--accent);
}

.brand-wordmark small {
  margin-left: 3px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #3f454b;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .24s var(--ease);
}

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

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .025em;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease, border-color .22s ease, color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.mode-tab:focus-visible,
.text-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(233, 43, 50, .22);
  outline-offset: 3px;
}

.button span:last-child {
  transition: transform .22s var(--ease);
}

.button:hover span:last-child {
  transform: translateX(3px);
}

.button-compact {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 11px 24px rgba(12, 15, 18, .14);
}

.button-dark:hover {
  background: #1c2228;
  box-shadow: 0 16px 30px rgba(12, 15, 18, .2);
}

.button-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 43, 50, .18);
}

.button-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 34px rgba(233, 43, 50, .27);
}

.button-ghost {
  border-color: var(--line-dark);
  background: #fff;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--ink);
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  pointer-events: none;
  opacity: .45;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .25s var(--ease), top .25s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 85% 12%, rgba(233, 43, 50, .08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .55;
  background-image:
    linear-gradient(rgba(12, 15, 18, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 15, 18, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000 0%, transparent 58%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -12vw;
  bottom: -32vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(12, 15, 18, .08);
  border-radius: 50%;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(56px, 7vw, 98px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.mini-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  letter-spacing: .11em;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.45vw, 100px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .91;
}

.hero h1 em {
  position: relative;
  color: var(--accent);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -2%;
  bottom: .03em;
  height: .08em;
  border-radius: 99px;
  background: currentColor;
  opacity: .16;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #50575e;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.hero-assurances > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.assurance-check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  background: #e9f7ef;
  color: var(--success);
  font-size: 11px;
  font-weight: 900;
}

.hero-assurances p {
  margin: 0;
  line-height: 1.35;
}

.hero-assurances strong,
.hero-assurances small {
  display: block;
}

.hero-assurances strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.hero-assurances small {
  color: var(--muted);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(12, 15, 18, .11);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 40px 95px rgba(17, 22, 26, .18);
  transform-style: preserve-3d;
  transition: transform .2s ease-out;
}

.hero-frame-top,
.hero-frame-bottom {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 12px;
  color: #727980;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-frame-bottom a {
  color: var(--ink);
}

.hero-frame-bottom a span {
  color: var(--accent);
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 21px;
  background: #f3f2ef;
  isolation: isolate;
}

.hero-image-wrap picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.006);
  filter: saturate(.98) contrast(1.01);
  transition: transform 1.1s var(--ease);
}

.hero-frame:hover .hero-image-wrap img {
  transform: scale(1.025);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, .02), transparent 48%, rgba(7, 10, 13, .12) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 44%);
  pointer-events: none;
}

.hero-status-card {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(9, 11, 13, .58);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-status-card small,
.hero-status-card strong {
  display: block;
  line-height: 1.2;
}

.hero-status-card small {
  margin-bottom: 3px;
  color: #aeb5bc;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.hero-status-card strong {
  font-size: 11px;
}

.hero-spec-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  width: 100%;
  margin-top: 10px;
  padding: 17px 20px 14px;
  border: 1px solid rgba(12, 15, 18, .09);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7f7f5 0%, #ffffff 100%);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.hero-spec-card > small {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 7px;
  color: #7b8289;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.spec-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(12, 15, 18, .09);
}

.spec-row span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.spec-row strong {
  font-size: 11px;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(233, 43, 50, .18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(233, 43, 50, .09);
}

.orbit-one {
  width: 190px;
  height: 190px;
  top: -60px;
  right: -75px;
  animation: spin 16s linear infinite;
}

.orbit-two {
  width: 92px;
  height: 92px;
  left: -35px;
  bottom: 76px;
  border-color: rgba(12, 15, 18, .14);
  animation: spinReverse 10s linear infinite;
}

.fact-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-grid article {
  min-height: 124px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.fact-grid article:first-child {
  border-left: 1px solid var(--line);
}

.fact-grid strong {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.05em;
  white-space: nowrap;
}

.fact-grid span {
  max-width: 135px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .075em;
}

.section {
  padding: 118px 0;
}

.section-soft {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
}

.section-heading h2,
.process-heading h2,
.referral-copy h2,
.faq-intro h2,
.closing-card h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .98;
}

.section-heading > p,
.process-heading > p,
.faq-intro > p {
  max-width: 510px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.75;
}

.eligibility-shell {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.eligibility-sidebar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 48px;
  background: var(--ink);
  color: #fff;
}

.eligibility-sidebar::before,
.eligibility-sidebar::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.eligibility-sidebar::before {
  width: 320px;
  height: 320px;
  right: -180px;
  bottom: -145px;
}

.eligibility-sidebar::after {
  width: 230px;
  height: 230px;
  right: -135px;
  bottom: -100px;
}

.eligibility-sidebar .mini-label {
  color: #8d949b;
}

.eligibility-sidebar h3 {
  max-width: 440px;
  margin: 68px 0 20px;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.eligibility-sidebar > p {
  max-width: 430px;
  color: #a9b0b7;
  font-size: 14px;
}

.eligibility-meter {
  margin-top: 50px;
}

.eligibility-meter > div {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
}

.eligibility-meter > div span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .35s var(--ease);
}

.eligibility-meter small {
  display: block;
  margin-top: 10px;
  color: #878e95;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eligibility-meter b {
  color: #fff;
}

.quick-checker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 48px;
}

.checker-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checker-field > span,
.field > span,
.choice-label {
  color: #41474d;
  font-size: 11px;
  font-weight: 800;
}

.checker-field select,
.checker-field input,
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.checker-field select,
.checker-field input,
.field input,
.field select {
  height: 56px;
  padding: 0 15px;
}

.checker-field select,
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777d83 50%), linear-gradient(135deg, #777d83 50%, transparent 50%);
  background-position: calc(100% - 18px) 24px, calc(100% - 13px) 24px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.checker-field input::placeholder,
.field input::placeholder,
.field textarea::placeholder {
  color: #a2a7ac;
}

.checker-field select:focus,
.checker-field input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(233, 43, 50, .75);
  box-shadow: 0 0 0 4px rgba(233, 43, 50, .08);
}

.input-suffix,
.input-prefix {
  position: relative;
}

.input-suffix input {
  padding-right: 58px;
}

.input-suffix b {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #8a9096;
  font-size: 10px;
  letter-spacing: .08em;
  pointer-events: none;
}

.input-prefix input {
  padding-left: 58px;
}

.input-prefix b {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #8a9096;
  font-size: 10px;
  letter-spacing: .06em;
  pointer-events: none;
}

.checker-result {
  grid-column: 1 / -1;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  padding: 18px;
  border: 1px dashed #d4d8d3;
  border-radius: var(--radius-sm);
  background: #fafaf9;
  transition: background .25s ease, border-color .25s ease;
}

.result-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.checker-result strong,
.checker-result p {
  display: block;
  margin: 0;
}

.checker-result strong {
  font-size: 13px;
}

.checker-result p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.checker-result.eligible {
  border-style: solid;
  border-color: rgba(31, 157, 98, .25);
  background: #f2fbf6;
}

.checker-result.eligible .result-icon {
  background: #dff4e8;
  color: var(--success);
}

.checker-result.ineligible {
  border-style: solid;
  border-color: rgba(233, 43, 50, .21);
  background: #fff6f6;
}

.checker-result.ineligible .result-icon {
  background: #ffe2e3;
  color: var(--accent);
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(17, 22, 26, .04);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #cfd3ce;
  box-shadow: 0 22px 52px rgba(17, 22, 26, .09);
}

.service-card-feature {
  min-height: 515px;
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto 1fr;
  gap: 20px;
  overflow: hidden;
  background: var(--surface);
}

.service-card-feature .service-index {
  grid-column: 1 / -1;
}

.service-card-feature > div:last-child {
  align-self: end;
}

.service-index {
  color: #a3a8ad;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.service-visual {
  position: relative;
  min-height: 250px;
  align-self: center;
}

.focus-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(12, 15, 18, .14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.focus-ring-one {
  width: 220px;
  height: 220px;
}

.focus-ring-two {
  width: 140px;
  height: 140px;
}

.focus-ring::before,
.focus-ring::after {
  content: "";
  position: absolute;
  background: rgba(12, 15, 18, .15);
}

.focus-ring::before {
  top: 50%;
  left: -30px;
  width: calc(100% + 60px);
  height: 1px;
}

.focus-ring::after {
  top: -30px;
  left: 50%;
  width: 1px;
  height: calc(100% + 60px);
}

.focus-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 0 18px rgba(233, 43, 50, .08);
  transform: translate(-50%, -50%);
  animation: focusPulse 2.2s ease-in-out infinite;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card .mini-label {
  margin-bottom: 13px;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card-feature h3 {
  max-width: 570px;
  font-size: clamp(34px, 4vw, 54px);
}

.service-card-feature p {
  max-width: 570px;
  font-size: 14px;
}

.service-card-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.service-card-dark::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -110px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.service-card-dark .service-index,
.service-card-dark p {
  color: #90979e;
}

.service-card-dark .mini-label {
  margin-top: auto;
}

.service-card-dark a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.service-card-dark a span {
  color: var(--accent);
}

.process-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fcfcfb;
}

.process-heading {
  max-width: 790px;
  margin-bottom: 76px;
}

.process-heading > p {
  margin: 25px 0 0;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 25px;
  right: 25px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.process-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 1.4s var(--ease);
}

.process-line.active span {
  width: 100%;
}

.process-step {
  position: relative;
  padding-top: 78px;
}

.process-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(17, 22, 26, .06);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.referral-section {
  position: relative;
  overflow: hidden;
}

.referral-section::before {
  content: "CAR LINK";
  position: absolute;
  left: -28px;
  bottom: -80px;
  z-index: -1;
  color: #f5f6f4;
  font-family: "Space Grotesk", sans-serif;
  font-size: min(17vw, 240px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
  white-space: nowrap;
}

.referral-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 84px;
  align-items: center;
}

.referral-copy h2 {
  margin-bottom: 26px;
}

.referral-copy > p {
  max-width: 610px;
  color: var(--muted);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.tick-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid var(--line);
  color: #343a40;
  font-size: 13px;
  font-weight: 600;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f7ef;
  color: var(--success);
  font-size: 10px;
  font-weight: 900;
}

.reward-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.reward-panel::before {
  content: "";
  position: absolute;
  right: -115px;
  top: -115px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, .025), 0 0 0 100px rgba(255, 255, 255, .018);
}

.reward-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8c9399;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.reward-amount {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 72px 0 18px;
}

.reward-amount sup {
  margin-top: 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.reward-amount strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(78px, 9vw, 132px);
  font-weight: 600;
  letter-spacing: -.09em;
  line-height: .8;
}

.reward-panel > p {
  position: relative;
  max-width: 500px;
  color: #aab0b6;
  font-size: 13px;
}

.reward-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 34px 0 22px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
}

.reward-ticket span {
  color: #c6cacf;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .1em;
  text-align: center;
}

.reward-ticket i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.reward-panel > small {
  position: relative;
  color: #70777d;
  font-size: 9px;
}

.form-section {
  background: var(--surface);
}

.lead-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.lead-sidebar {
  position: sticky;
  top: 118px;
  padding: 30px 4px 30px 0;
}

.contact-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-block a,
.contact-block strong {
  display: block;
  margin: 14px 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.055em;
}

.contact-block p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-rule {
  height: 1px;
  margin: 34px 0;
  background: var(--line);
}

.sidebar-facts {
  display: grid;
  gap: 24px;
}

.sidebar-facts > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px;
}

.sidebar-facts > div > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.sidebar-facts p {
  margin: 0;
}

.sidebar-facts strong,
.sidebar-facts small {
  display: block;
}

.sidebar-facts strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.sidebar-facts small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.form-card {
  min-height: 720px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 70px rgba(17, 22, 26, .09);
}

.form-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.mode-tab {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.mode-tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(17, 22, 26, .08);
}

.form-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 34px 4px 40px;
}

.form-progress > i {
  height: 1px;
  background: var(--line);
}

.form-progress-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9ba0a5;
}

.form-progress-item span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.form-progress-item strong {
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.form-progress-item.active,
.form-progress-item.complete {
  color: var(--ink);
}

.form-progress-item.active span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.form-progress-item.complete span {
  border-color: #d9efe3;
  background: #dff4e8;
  color: var(--success);
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: block;
  animation: stepIn .42s var(--ease);
}

.form-step legend {
  margin-bottom: 5px;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.045em;
}

.step-intro {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}

.field-grid {
  display: grid;
  gap: 17px;
}

.field-grid.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field em {
  color: #92989e;
  font-style: normal;
  font-weight: 500;
}

.field textarea {
  min-height: 116px;
  padding: 15px;
  resize: vertical;
}

.field-full {
  margin-top: 18px;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: rgba(233, 43, 50, .7);
  box-shadow: 0 0 0 4px rgba(233, 43, 50, .06);
}

.field-error {
  min-height: 14px;
  color: var(--accent);
  font-size: 9px;
  line-height: 1.3;
}

.choice-group + .choice-group {
  margin-top: 24px;
}

.choice-label {
  display: block;
  margin-bottom: 10px;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice > span {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}

.choice:hover > span {
  transform: translateY(-2px);
  border-color: #c9cdc8;
}

.choice input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(12, 15, 18, .14);
}

.choice b,
.choice small {
  display: block;
}

.choice b {
  font-size: 12px;
}

.choice small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.choice input:checked + span small {
  color: #aeb4ba;
}

.group-error {
  display: block;
  margin-top: 5px;
}

.condition-fields {
  margin-top: 24px;
}

.eligibility-alert {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-xs);
  font-size: 11px;
}

.eligibility-alert.show {
  display: block;
}

.eligibility-alert.success {
  border: 1px solid rgba(31, 157, 98, .2);
  background: #f0faf4;
  color: #176942;
}

.eligibility-alert.error {
  border: 1px solid rgba(233, 43, 50, .2);
  background: #fff4f4;
  color: #a51f24;
}

.upload-zone {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed #cfd3ce;
  border-radius: var(--radius-sm);
  background: #fafaf9;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--accent);
  background: #fff7f7;
}

.upload-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--accent);
  font-size: 23px;
}

.upload-zone strong,
.upload-zone small {
  display: block;
}

.upload-zone strong {
  font-size: 12px;
}

.upload-zone small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.upload-zone > b {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: #737a80;
  font-size: 9px;
}

.photo-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--surface);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-thumb span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(12, 15, 18, .72);
  color: #fff;
  font-size: 8px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  color: #555c62;
  font-size: 10px;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0;
  accent-color: var(--accent);
}

.consent-error {
  display: block;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.form-actions-end {
  justify-content: flex-end;
}

.form-actions .button {
  min-width: 150px;
}

.form-note {
  margin: 13px 0 0;
  color: #949a9f;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.submit-button.loading {
  pointer-events: none;
}

.button-loader {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.submit-button.loading .button-loader {
  display: block;
}

.submit-button.loading .submit-label,
.submit-button.loading > span:last-child {
  display: none;
}

.success-state {
  min-height: 340px;
  display: none;
  place-content: center;
  justify-items: center;
  padding: 42px 20px;
  text-align: center;
}

.success-state.show {
  display: grid;
  animation: stepIn .45s var(--ease);
}

.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #e4f7ec;
  color: var(--success);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 0 0 14px rgba(31, 157, 98, .06);
}

.success-state .mini-label {
  color: var(--success);
}

.success-state h3 {
  max-width: 520px;
  margin: 15px 0 12px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

.success-state p {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.text-button {
  margin-top: 15px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}

.hidden,
.honeypot {
  display: none !important;
}

.legacy-email-link {
  display: none !important;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(40px, 4.6vw, 66px);
}

.faq-intro > p {
  margin: 24px 0;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}

.text-arrow span {
  color: var(--accent);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 60px 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.closing-section {
  padding: 0 0 42px;
}

.closing-card {
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 54px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
}

.closing-card::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -110px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
}

.closing-card .section-kicker {
  color: #a0a7ae;
}

.closing-card h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  flex: 0 0 auto;
}

.closing-actions > a:last-child {
  color: #b9bec3;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-main {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.footer-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #454b51;
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8a9095;
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 100;
  max-width: min(460px, calc(100% - 36px));
  transform: translate(-50%, 130%);
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 36px rgba(12, 15, 18, .2);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .11s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.8); opacity: .65; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes focusPulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent), 0 0 0 18px rgba(233, 43, 50, .08); }
  50% { box-shadow: 0 0 0 1px var(--accent), 0 0 0 28px rgba(233, 43, 50, 0); }
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  :root {
    --container: 1020px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(2) {
    display: none;
  }

  .hero-layout {
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
  }

  .hero-assurances {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-image-wrap {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .service-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-feature {
    grid-column: span 2;
  }

  .lead-layout {
    grid-template-columns: .55fr 1.45fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .utility-inner > div span:first-child,
  .utility-divider,
  .desktop-nav,
  .header-phone,
  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: calc(34px + var(--header-height)) 0 auto 0;
    z-index: 65;
    max-height: calc(100vh - 104px);
    overflow: auto;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 26px 50px rgba(17, 22, 26, .12);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s ease;
  }

  .mobile-menu.open {
    display: grid;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    margin-top: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    text-align: center;
  }

  .hero {
    padding: 72px 0 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

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

  .hero h1 {
    max-width: 760px;
  }

  .hero-assurances {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .fact-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 94px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .eligibility-shell {
    grid-template-columns: 1fr;
  }

  .eligibility-sidebar h3 {
    margin-top: 40px;
  }

  .eligibility-meter {
    margin-top: 34px;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .process-line {
    display: none;
  }

  .referral-layout,
  .lead-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .lead-sidebar,
  .faq-intro {
    position: static;
  }

  .lead-sidebar {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    padding: 0;
  }

  .sidebar-rule {
    display: none;
  }

  .closing-card {
    min-height: 430px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }

  .closing-actions {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .utility-inner {
    justify-content: center;
    min-height: 32px;
    text-align: center;
  }

  .utility-inner > div {
    display: none;
  }

  .utility-inner p {
    font-size: 9px;
  }

  .site-header {
    top: 0;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .brand-wordmark strong {
    font-size: 21px;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 66px;
  }

  .hero-grid-lines {
    opacity: .35;
    mask-image: none;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 8px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(49px, 15vw, 70px);
  }

  .hero-lead {
    font-size: 14px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .hero-frame-top,
  .hero-frame-bottom {
    min-height: 36px;
    padding-inline: 7px;
    font-size: 7px;
  }

  .hero-image-wrap {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .hero-image-wrap img {
    object-position: center;
  }

  /* Premium line-up hero refinement */
  .hero-status-card {
    max-width: calc(100% - 28px);
  }

  .hero-status-card {
    top: 14px;
    left: 14px;
    padding: 11px 13px;
  }

  .hero-spec-card {
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 15px 16px 12px;
  }

  .hero-spec-card > small {
    grid-column: auto;
  }

  .orbit {
    display: none;
  }

  .fact-grid article {
    min-height: 105px;
    padding: 18px;
  }

  .fact-grid strong {
    font-size: 25px;
  }

  .fact-grid span {
    font-size: 8px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .process-heading h2,
  .referral-copy h2,
  .faq-intro h2,
  .closing-card h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .section-heading > p,
  .process-heading > p,
  .faq-intro > p {
    font-size: 13px;
  }

  .eligibility-sidebar,
  .quick-checker {
    padding: 28px;
  }

  .eligibility-sidebar h3 {
    margin-top: 34px;
    font-size: 36px;
  }

  .quick-checker {
    grid-template-columns: 1fr;
  }

  .checker-result {
    grid-column: auto;
    grid-template-columns: auto 1fr;
  }

  .checker-result .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .service-bento {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .service-card-feature {
    display: flex;
  }

  .service-visual {
    min-height: 180px;
    width: 100%;
  }

  .focus-ring-one {
    width: 180px;
    height: 180px;
  }

  .focus-ring-two {
    width: 110px;
    height: 110px;
  }

  .process-heading {
    margin-bottom: 52px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-step {
    padding: 4px 0 4px 72px;
  }

  .process-number {
    top: 0;
  }

  .reward-panel {
    padding: 28px;
  }

  .reward-amount {
    margin-top: 55px;
  }

  .reward-ticket {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reward-ticket i {
    justify-self: center;
  }

  .lead-sidebar {
    grid-template-columns: 1fr;
  }

  .form-card {
    min-height: 0;
    padding: 20px;
    border-radius: 24px;
  }

  .form-progress {
    gap: 7px;
    margin: 28px 0 34px;
  }

  .form-progress-item {
    gap: 5px;
  }

  .form-progress-item strong {
    display: none;
  }

  .field-grid.two-columns,
  .choice-grid.three {
    grid-template-columns: 1fr;
  }

  .choice > span {
    min-height: 70px;
  }

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

  .form-actions .button {
    width: 100%;
  }

  .form-actions .previous-step {
    order: 2;
  }

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

  .photo-preview {
    grid-template-columns: repeat(3, 1fr);
  }

  .upload-zone {
    grid-template-columns: auto 1fr;
  }

  .upload-zone > b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 14px;
  }

  .closing-section {
    padding-bottom: 22px;
  }

  .closing-card {
    min-height: 470px;
    padding: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    padding: 32px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    min-height: 78px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Interactive polish added by app.js */
.hero-frame {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.photo-thumb .photo-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(12, 15, 18, .76);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.photo-thumb .photo-remove:hover {
  background: var(--accent);
}
