:root {
  --ink: #13294b;
  --muted: #5d6b7d;
  --paper: #f5f9ff;
  --paper-2: #e7f1ff;
  --white: #ffffff;
  --gold: #ffd326;
  --gold-soft: #fff3ad;
  --green: #005bbb;
  --red: #e6372e;
  --sky: #00a6e8;
  --line: rgba(19, 41, 75, .14);
  --shadow: 0 18px 45px rgba(19, 41, 75, .18);
  --radius: 8px;
  --font-body: Aptos, "Segoe UI", Tahoma, Arial, sans-serif;
  --font-display: Bahnschrift, "Franklin Gothic Medium", "Aptos Display", "Segoe UI Semibold", Arial, sans-serif;
  --font-ui: Bahnschrift, "Segoe UI Semibold", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(0,166,232,.14), transparent 34%),
    radial-gradient(circle at 92% 2%, rgba(255,211,38,.18), transparent 30%),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { max-width: 100%; height: auto; }
h1, h2, h3, p, li, a, strong { overflow-wrap: break-word; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.section { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 30px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 11px 12px 11px 16px;
  border: 1px solid rgba(0,91,187,.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(19,41,75,.13);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  font-size: 14px;
  letter-spacing: 0;
}
.brand-text { font-size: 17px; }
.main-nav { display: flex; align-items: center; gap: 16px; color: var(--muted); font-family: var(--font-ui); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.main-nav a:hover { color: var(--red); }
.nav-cta { padding: 10px 15px; border-radius: 6px; color: var(--white) !important; background: var(--red); box-shadow: 0 10px 22px rgba(230,55,46,.24); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 0;
  background:
    linear-gradient(120deg, rgba(0,91,187,.12) 0 48%, rgba(255,211,38,.28) 48% 70%, rgba(230,55,46,.10) 70% 100%),
    linear-gradient(90deg, rgba(19,41,75,.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(19,41,75,.06) 1px, transparent 1px),
    #f8fbff;
  background-size: 38px 38px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 76px;
  width: 46vw;
  height: 46vw;
  max-width: 560px;
  max-height: 560px;
  border: 70px solid rgba(0,166,232,.18);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: end;
  padding-bottom: 72px;
}
.hero-grid > *,
.split-heading > *,
.services-layout > *,
.services-layout > div > *,
.service-categories > *,
.calculator-layout > *,
.calculator > *,
.contact-layout > *,
.online-inner > *,
.service-hero-layout > *,
.legal-content > * {
  min-width: 0;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.eyebrow::before, .section-kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 5px rgba(0,166,232,.16); }
h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.04; letter-spacing: 0; text-transform: none; }
h1 { max-width: 760px; margin-top: 22px; font-size: 62px; font-weight: 750; }
h2 { font-size: 44px; font-weight: 750; }
h3 { font-size: 22px; font-weight: 700; }
h1::after {
  content: "";
  display: block;
  width: 150px;
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
p { color: var(--muted); }
.legal-article p,
.legal-article li,
.detail-panel li,
.detail-grid p,
.service-category p,
.trust-list p,
.vehicle-grid p,
.faq-item p {
  line-height: 1.68;
}
.hero-copy p { max-width: 610px; margin: 26px 0 30px; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: var(--font-ui);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(22,22,22,.16); }
.button:disabled { cursor: not-allowed; opacity: .55; transform: none; box-shadow: none; }
.button-primary { color: var(--white); background: var(--red); }
.button-ghost { border: 1px solid rgba(0,91,187,.22); color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--green); }
.contact-line {
  display: grid;
  gap: 4px;
  max-width: 420px;
  margin-top: 34px;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
}
.contact-line span { color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.contact-line strong { font-family: var(--font-display); font-size: 16px; line-height: 1.18; font-weight: 700; text-transform: none; }

.quick-start { display: grid; gap: 12px; }
.start-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 16px;
  align-items: start;
  min-height: 156px;
  padding: 24px;
  border: 2px solid rgba(0,91,187,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 30px rgba(22,22,22,.06);
}
.start-card.active { color: var(--white); border-color: rgba(255,211,38,.7); background: linear-gradient(135deg, var(--green), #003d83); box-shadow: 0 18px 45px rgba(0,91,187,.28); }
.start-number { color: var(--red); font-weight: 900; }
.active .start-number { color: var(--gold); }
.start-action {
  grid-column: 3;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.start-card h2 { grid-column: 2; font-size: 28px; }
.start-card p { grid-column: 2; margin: 0; }
.start-card strong { grid-column: 2 / -1; font-size: 14px; }
.active p { color: #dce8e3; }

.hero-band {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}
.hero-band span {
  flex: 1;
  min-width: 220px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-ui);
}

.process-section, .faq-section, .vehicle-section { padding: 108px 0; }
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-top: 18px;
}
.split-heading p { margin: 0; font-size: 17px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.steps-grid article {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid rgba(0,91,187,.18);
  border-bottom: 1px solid rgba(0,91,187,.18);
  background: rgba(255,255,255,.76);
}
.steps-grid span { color: var(--white); background: var(--red); border-radius: 999px; padding: 6px 10px; font-weight: 900; }
.steps-grid h3 { margin-top: 86px; }
.steps-grid p { margin-bottom: 0; font-size: 14px; }

.services-panel {
  padding: 105px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, #005bbb, #003d83);
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
}
.services-layout > div:first-child {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: end;
}
.services-layout .section-kicker, .services-layout .lead { color: #d9e5df; }
.services-layout h2 { margin-top: 18px; }
.lead { max-width: 560px; font-size: 17px; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-list article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.09);
}
.service-list span { color: var(--gold); font-size: 12px; font-weight: 900; }
.service-list h3 { margin: 28px 0 8px; font-size: 21px; }
.service-list p { margin: 0; color: #d9e5df; font-size: 14px; }

.service-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-category {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
}
.service-category.transfer-group {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
}
.service-category.insurance-group {
  background: linear-gradient(180deg, rgba(255,211,38,.18), rgba(255,255,255,.08));
}
.category-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.category-heading span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.category-heading h3 {
  color: var(--white);
  font-size: 28px;
  text-align: right;
}
.service-category p {
  margin: 0 0 26px;
  color: #eaf4ff;
  font-size: 15px;
}
.service-category a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--gold);
  background: rgba(255,211,38,.12);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-category a:hover {
  color: var(--ink);
  background: var(--gold);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.vehicle-grid article {
  min-height: 210px;
  padding: 28px;
  border: 2px solid rgba(0,91,187,.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(22,22,22,.06);
}
.vehicle-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.vehicle-grid h3 { margin: 42px 0 10px; }
.vehicle-grid p { margin: 0; font-size: 14px; }

.trust-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  padding: 108px 0;
}
.credential-card {
  display: grid;
  align-content: space-between;
  min-height: 460px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
}
.credential-number { font-family: var(--font-display); font-size: 110px; font-weight: 750; line-height: .9; letter-spacing: 0; }
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.trust-list article {
  padding: 28px;
  border: 2px solid rgba(0,91,187,.12);
  border-radius: var(--radius);
  background: var(--white);
}
.trust-list h3 { margin-bottom: 18px; }
.trust-list p { margin: 0; }

.collaborators-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
  padding: 0 0 108px;
}
.collaborators-section h2 {
  margin-top: 18px;
}
.collaborator-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.collaborator-logos article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 190px;
  padding: 28px;
  border: 2px solid rgba(0,91,187,.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(22,22,22,.06);
}
.collaborator-logos img {
  display: block;
  max-width: min(100%, 230px);
  max-height: 76px;
  object-fit: contain;
}
.collaborator-logos span {
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.online-section {
  padding: 105px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--ink), #005bbb);
}
.online-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: end;
}
.online-inner .section-kicker,
.online-inner p { color: #d6d0c7; }
.online-inner h2 { margin-top: 18px; }
.online-inner p { margin: 0; font-size: 18px; }

.calculator-section {
  padding: 108px 0;
  background:
    linear-gradient(135deg, var(--paper-2), #ffffff);
}
.calculator-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 62px;
  align-items: start;
}
.calculator-layout p { font-size: 17px; }
.calculator {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 14px;
}
.calculator-form, .calculator-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(22,22,22,.07);
}
.calculator-form { display: grid; gap: 16px; padding: 26px; }
label { display: grid; gap: 8px; }
label span, .calculator-result span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: var(--font-ui);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  outline: 0;
  color: var(--ink);
  background: #fffdf8;
}
input:focus, select:focus, textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,166,232,.14); }
.calculator-result { padding: 28px; color: var(--white); background: linear-gradient(135deg, var(--green), #003d83); }
.calculator-result span { color: var(--gold); }
.calculator-result strong { display: block; margin: 18px 0 12px; font-family: var(--font-display); font-size: 48px; font-weight: 750; line-height: 1; }
.calculator-result p { color: #d6d0c7; font-size: 14px; }

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}
.faq-item {
  border: 2px solid rgba(0,91,187,.12);
  border-radius: var(--radius);
  background: var(--white);
}
.faq-item button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: none;
  text-align: left;
}
.faq-item button::after { content: "+"; flex: 0 0 auto; color: var(--sky); font-size: 22px; line-height: 1; }
.faq-item.open button::after { content: "-"; }
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
  max-width: 850px;
}
.faq-item.open p { display: block; }

.contact-section { padding: 108px 0; color: var(--white); background: linear-gradient(135deg, #13294b, #005bbb); }
.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.contact-copy .section-kicker, .contact-copy p { color: #d6d0c7; }
.contact-copy h2 { margin-top: 18px; }
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-card {
  display: grid;
  gap: 16px;
  min-height: 260px;
  padding: 30px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,.08);
  box-shadow: 0 14px 35px rgba(0,0,0,.12);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,211,38,.8);
  background: rgba(255,255,255,.13);
}
.contact-card span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-card strong {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  overflow-wrap: anywhere;
}
.contact-card p {
  margin: 0;
  color: #d6d0c7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: #d6d0c7;
  background: #061a35;
}
.site-footer p { margin: 12px 0 0; color: #aaa39b; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 18px; color: #aaa39b; font-size: 13px; }

.service-hero {
  padding: 142px 0 86px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(0,91,187,.12), rgba(255,211,38,.22) 56%, rgba(230,55,46,.08)),
    var(--paper);
}
.service-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .55fr;
  gap: 56px;
  align-items: end;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--muted);
}
.service-hero-copy h1 {
  max-width: 820px;
  margin-top: 20px;
}
.service-hero-copy p {
  max-width: 720px;
  margin: 26px 0 30px;
  font-size: 19px;
}
.service-summary {
  padding: 28px;
  border: 1px solid rgba(0,91,187,.16);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #003d83);
  box-shadow: var(--shadow);
}
.service-summary span {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.service-summary h2 {
  margin: 26px 0 22px;
  color: var(--white);
  font-size: 34px;
}
.service-summary ul,
.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}
.service-summary li { color: #eaf4ff; }
.detail-section {
  padding: 98px 0 48px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.detail-grid article,
.detail-panel {
  padding: 28px;
  border: 2px solid rgba(0,91,187,.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(22,22,22,.06);
}
.detail-grid h2,
.detail-panel h2 {
  margin-bottom: 14px;
  font-size: 28px;
}
.detail-grid p,
.detail-panel li {
  color: var(--muted);
}
.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 42px 0 86px;
}
.service-faq {
  padding-top: 0;
  padding-bottom: 86px;
}
.related-services {
  padding: 0 0 92px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.related-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--green));
  font-family: var(--font-display);
  font-weight: 700;
}
.related-grid a:hover {
  background: linear-gradient(135deg, var(--red), var(--green));
}

.legal-header { padding: 150px max(24px, calc((100vw - 1180px) / 2)) 70px; background: var(--paper); }
.legal-content { display: grid; grid-template-columns: 260px 1fr; gap: 60px; padding: 70px 0 100px; }
.legal-aside { position: sticky; top: 110px; align-self: start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.legal-aside a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 700; }
.legal-aside a:last-child { border-bottom: 0; }
.legal-article { display: grid; gap: 28px; }
.legal-article section { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.legal-article h2 { margin-bottom: 14px; font-size: 34px; }
.legal-article p, .legal-article li { color: var(--muted); }
.legal-placeholder { padding: 2px 7px; border-radius: 4px; color: var(--ink); background: var(--gold-soft); font-weight: 700; }
.legal-note { padding: 18px; border-left: 4px solid var(--gold); background: var(--white); }
.legal-mini-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px max(24px, calc((100vw - 1180px) / 2)); color: #d5e5f7; background: #061a35; font-size: 13px; }
.legal-mini-footer nav { display: flex; gap: 18px; }

@media (max-width: 1080px) {
  .hero-grid, .services-layout, .service-hero-layout, .trust-section, .collaborators-section, .calculator-layout, .contact-layout, .split-heading, .online-inner { grid-template-columns: 1fr; }
  .services-layout > div:first-child { grid-template-columns: 1fr; gap: 18px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .calculator { grid-template-columns: 1fr; }
  .credential-card { min-height: 310px; }
  .service-list, .service-categories, .detail-grid, .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: min(1180px, calc(100% - 24px));
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(0,91,187,.14);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: grid;
    gap: 4px;
  }
  .main-nav a {
    padding: 12px;
    border-radius: 6px;
  }
  .main-nav a:hover {
    background: var(--paper-2);
  }
  .main-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    padding: 10px;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
}

@media (max-width: 720px) {
  .section { width: min(100% - 32px, 1180px); }
  body { line-height: 1.62; }
  .site-header { padding: 9px 10px 9px 12px; }
  .brand-text { font-size: 15px; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 36px; padding-bottom: 50px; }
  h1 { font-size: 40px; }
  h2 { font-size: 34px; line-height: 1.08; }
  h3 { font-size: 20px; line-height: 1.16; }
  h1::after { width: 118px; height: 8px; }
  .hero-copy p, .service-hero-copy p, .lead, .split-heading p, .calculator-layout p, .online-inner p { font-size: 16px; }
  .hero-actions, .button { width: 100%; }
  .button { min-height: 46px; padding-inline: 16px; text-align: center; }
  .start-card { grid-template-columns: 38px 1fr; }
  .start-card, .service-category, .vehicle-grid article, .trust-list article, .detail-grid article, .detail-panel, .contact-card, .calculator-form, .calculator-result { padding: 22px; }
  .start-card, .steps-grid article, .service-list article, .service-category, .vehicle-grid article, .contact-card { min-height: auto; }
  .start-action { grid-column: 2; justify-self: start; }
  .start-card h2, .start-card p, .start-card strong { grid-column: 2; }
  .start-card h2, .detail-grid h2, .detail-panel h2 { font-size: 25px; }
  .steps-grid, .service-list, .service-categories, .detail-grid, .detail-columns, .related-grid, .vehicle-grid, .trust-list, .collaborator-logos, .contact-options, .legal-content { grid-template-columns: 1fr; }
  .category-heading { display: grid; gap: 14px; margin-bottom: 24px; }
  .category-heading h3 { font-size: 25px; text-align: left; }
  .service-category p { margin-bottom: 20px; }
  .collaborators-section { gap: 28px; padding: 0 0 76px; }
  .collaborator-logos article { min-height: 150px; padding: 22px; }
  .collaborator-logos img { max-height: 62px; }
  .online-inner { gap: 30px; }
  .calculator-layout { gap: 28px; }
  .calculator-result strong { font-size: 38px; }
  .contact-layout { gap: 34px; }
  .contact-card strong { font-size: 26px; line-height: 1.12; }
  .credential-card { min-height: auto; padding: 26px; }
  .credential-number { font-size: 82px; }
  .service-hero { padding: 116px 0 70px; }
  .service-hero-layout { gap: 32px; }
  .service-summary h2 { font-size: 28px; }
  .detail-section { padding: 76px 0 28px; }
  .detail-columns, .service-faq, .related-services { padding-bottom: 76px; }
  .process-section, .services-panel, .vehicle-section, .trust-section, .online-section, .calculator-section, .faq-section, .contact-section { padding: 76px 0; }
  .steps-grid h3 { margin-top: 44px; }
  .hero-band {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
  }
  .hero-band span {
    min-width: 0;
    padding: 14px 10px;
    font-size: 12px;
  }
  .faq-item button { padding: 18px; }
  .faq-item p { padding: 0 18px 20px; }
  .site-footer, .legal-mini-footer, .legal-mini-footer nav { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .legal-header { padding: 124px 16px 48px; }
  .legal-content { gap: 34px; padding: 46px 0 76px; }
  .legal-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 10px;
  }
  .legal-aside a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    font-size: 13px;
    text-align: center;
  }
  .legal-article { gap: 22px; }
  .legal-article h2 { font-size: 26px; line-height: 1.15; }
  .legal-article p, .legal-article li { font-size: 15px; }
}

@media (max-width: 420px) {
  .section { width: min(100% - 24px, 1180px); }
  .site-header { width: min(1180px, calc(100% - 16px)); }
  .brand-mark { width: 36px; height: 36px; font-size: 12px; }
  .brand-text { font-size: 13px; }
  h1 { font-size: 34px; line-height: 1.08; }
  h2 { font-size: 29px; }
  .eyebrow, .section-kicker { font-size: 11px; }
  .hero { padding-top: 104px; }
  .hero-grid { gap: 28px; padding-bottom: 42px; }
  .hero-copy p { margin: 22px 0 24px; }
  .hero-band { grid-template-columns: 1fr; }
  .start-card { grid-template-columns: 1fr; gap: 12px; }
  .start-action, .start-card h2, .start-card p, .start-card strong { grid-column: 1; }
  .steps-grid h3 { margin-top: 34px; }
  .service-summary h2, .calculator-result strong { font-size: 32px; }
  .contact-card strong { font-size: 23px; }
  .legal-header { padding-inline: 12px; }
  .legal-aside { grid-template-columns: 1fr; }
  .legal-mini-footer { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
