:root {
  --navy: #061b4f;
  --navy-2: #0b2c67;
  --green: #5b981a;
  --green-dark: #47800f;
  --green-soft: #f2f8ed;
  --gold: #e2b52d;
  --gold-emphasis: #e0b226;
  --sky: #eef4fa;
  --sky-2: #f6f9fc;
  --ink: #10224b;
  --muted: #526078;
  --line: #dde4ec;
  --white: #ffffff;
  --radius: 16px;
  --radius-small: 10px;
  --shadow: 0 18px 48px rgba(6, 27, 79, 0.10);
  --panel-shadow: 0 1px 2px rgba(6, 27, 79, 0.05), 0 12px 32px rgba(6, 27, 79, 0.055);
  --page: 1240px;
  --page-gutter: clamp(20px, 4vw, 56px);
  --page-inset: clamp(40px, 8vw, 112px);
  --section-space: clamp(72px, 6.4vw, 96px);
  --section-space-tight: clamp(56px, 4.8vw, 72px);
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  color: var(--navy);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p,
li,
blockquote {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(calc(100% - var(--page-inset)), var(--page));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-tight {
  padding: var(--section-space-tight) 0;
}

.surface {
  background: var(--sky-2);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: #bd8c00;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 30px);
  max-width: 980px;
  margin: 0 auto clamp(36px, 3.4vw, 46px);
  text-align: center;
}

.section-heading::before,
.section-heading::after {
  width: clamp(54px, 9vw, 150px);
  max-width: 150px;
  flex: 1 1 80px;
  height: 1px;
  background: var(--green);
  content: "";
}

.section-heading h2,
.section-heading h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 0 0 rgba(6, 27, 79, 0);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms var(--ease-snappy);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(71, 128, 15, 0.22);
}

.btn-outline {
  border-color: #173f7c;
  background: white;
  color: var(--navy);
}

.btn-outline:hover {
  background: #f3f7fb;
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: white;
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.11);
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid rgba(6, 27, 79, 0.08);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 30px rgba(6, 27, 79, 0.10);
}

.header-shell {
  display: grid;
  width: min(calc(100% - var(--page-inset)), var(--page));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 238px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-grid;
  width: 230px;
  grid-template-columns: 57px minmax(0, 1fr);
  align-items: center;
  gap: 0px;
  color: var(--navy);
  transition: opacity 180ms ease, transform 220ms var(--ease-standard);
}

.brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand > img {
  width: 57px;
  height: auto;
  object-fit: contain;
}

.brand-copy,
.brand-name,
.brand-tagline {
  display: block;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  width: max-content;
  background: linear-gradient(180deg, #1677dc 0%, #0758bd 48%, #052b78 100%);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Montserrat", "Inter", Arial, sans-serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.94;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-name sup {
  position: relative;
  top: -0.72em;
  margin-left: 3px;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0;
  -webkit-text-fill-color: #07398c;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--navy);
  font-size: 8.4px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.3vw, 23px);
}

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  border: 0;
  background: none;
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-link::after,
.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 260ms var(--ease-standard);
}

.nav-link:hover::after,
.nav-trigger:hover::after,
.nav-link.active::after,
.nav-trigger.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.active,
.nav-trigger.active {
  color: var(--green-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -12px;
  display: grid;
  width: 230px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: white;
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top left;
  transition: opacity 200ms ease, transform 240ms var(--ease-standard), visibility 0s linear 240ms;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav-trigger svg,
.nav-trigger i {
  width: 16px;
  height: 16px;
  transition: transform 180ms var(--ease-standard);
}

.nav-dropdown.is-open .nav-trigger svg,
.nav-dropdown.is-open .nav-trigger i {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  padding: 11px 13px;
  border-radius: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--green-soft);
  color: var(--green-dark);
}

.service-area-nav .service-area-menu {
  left: 50%;
  display: grid;
  width: min(900px, calc(100vw - 32px));
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2fr);
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(6, 27, 79, 0.2);
  transform: translate(-50%, -8px) scale(0.985);
  transform-origin: top center;
}

.service-area-nav.is-open .service-area-menu {
  transform: translate(-50%, 0);
}

.service-area-menu__feature {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 23px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 8%, rgba(226, 181, 45, 0.24), transparent 31%),
    linear-gradient(150deg, #0b2c67, #051b49);
  color: white;
}

.service-area-menu__feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.service-area-menu__feature-icon svg,
.service-area-menu__feature-icon i {
  width: 25px;
  height: 25px;
}

.service-area-menu__feature p {
  margin: 20px 0 6px;
  color: #b9d58c;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-area-menu__feature > strong {
  color: white;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.3;
}

.service-area-menu__feature > small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
}

.service-area-menu__feature > a {
  display: flex;
  width: 100%;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: white;
  font-size: 10.5px;
}

.service-area-menu__feature > a:hover,
.service-area-menu__feature > a[aria-current="page"] {
  background: transparent;
  color: var(--gold);
}

.service-area-menu__feature > a svg,
.service-area-menu__feature > a i {
  width: 17px;
  height: 17px;
}

.service-area-menu__directory {
  min-width: 0;
  padding: 11px;
}

.service-area-menu__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 4px 12px;
}

.service-area-menu__heading span:first-child small,
.service-area-menu__heading span:first-child strong,
.service-area-menu__grid a strong,
.service-area-menu__grid a small,
.service-area-menu__request strong,
.service-area-menu__request small {
  display: block;
}

.service-area-menu__heading span:first-child small {
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-area-menu__heading span:first-child strong {
  margin-top: 2px;
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 15px;
}

.service-area-menu__heading > span:last-child {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.service-area-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.service-area-menu__grid a {
  display: grid;
  min-height: 66px;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease;
}

.service-area-menu__grid a:nth-child(3n) {
  border-right: 0;
}

.service-area-menu__grid a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.service-area-menu__grid a:hover,
.service-area-menu__grid a.active {
  background: linear-gradient(90deg, var(--green-soft), rgba(242, 248, 237, 0.28));
  box-shadow: inset 3px 0 0 var(--green);
  color: var(--green-dark);
}

.service-area-menu__pin {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green);
}

.service-area-menu__pin svg,
.service-area-menu__pin i {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.service-area-menu__grid a > span:nth-child(2) {
  min-width: 0;
}

.service-area-menu__grid a strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-area-menu__grid a small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
}

.service-area-menu__request {
  display: grid;
  min-height: 56px;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  padding: 14px 4px 2px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.service-area-menu__request:hover {
  background: transparent;
  color: var(--green-dark);
}

.service-area-menu__request-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.service-area-menu__request-icon svg,
.service-area-menu__request-icon i {
  width: 20px;
  height: 20px;
}

.service-area-menu__request strong {
  color: var(--navy);
  font-size: 11px;
}

.service-area-menu__request small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8.5px;
  font-weight: 650;
}

.service-area-menu__request > svg:last-child,
.service-area-menu__request > i:last-child {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  min-height: 45px;
  padding-inline: 21px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--navy);
}

.menu-toggle i,
.menu-toggle svg {
  width: 25px;
  height: 25px;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 99;
  display: block;
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 280ms var(--ease-standard), visibility 0s linear 280ms;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu-inner {
  display: grid;
  gap: 7px;
  padding: 18px 0 calc(24px + env(safe-area-inset-bottom));
}

.mobile-menu a,
.mobile-menu button,
.mobile-nav-group > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--navy);
  font-weight: 750;
}

.mobile-nav-group {
  display: grid;
  gap: 7px;
}

.mobile-nav-group > summary {
  cursor: pointer;
  list-style: none;
}

.mobile-nav-group > summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group > summary svg,
.mobile-nav-group > summary i {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease-standard);
}

.mobile-nav-group[open] > summary svg,
.mobile-nav-group[open] > summary i {
  transform: rotate(180deg);
}

.mobile-nav-group > summary.active,
.mobile-subnav a.active {
  border-color: rgba(91, 152, 26, 0.45);
  background: var(--green-soft);
  color: var(--green-dark);
}

.mobile-menu-inner > .btn-primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.mobile-menu-inner > .btn-outline {
  border-color: #173f7c;
  background: white;
  color: var(--navy);
}

.mobile-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 2px 0 4px 14px;
}

.mobile-subnav a {
  min-height: 42px;
  padding: 8px 11px;
  font-size: 12px;
}

/* Split heroes */
.split-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(430px, 44%) minmax(0, 56%);
  overflow: hidden;
  background: white;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(64px, 6vw, 88px);
  padding-left: min(340px, max(var(--page-gutter), calc((100vw - var(--page)) / 2)));
  padding-right: clamp(36px, 4vw, 60px);
}

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.055;
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.68;
}

.hero-copy .hero-paragraph + .hero-paragraph {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #f6f7f7;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 115px;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.13);
  transition: transform 1.1s var(--ease-standard), filter 600ms ease;
}

.home-hero .hero-media img {
  object-position: 72% 50%;
}

.family-hero .hero-media img {
  object-position: 70% 48%;
}

.pricing-hero .hero-media img {
  object-position: 70% 48%;
}

.faq-hero .hero-media img {
  object-position: 68% 46%;
}

.drive-hero .hero-media img,
.driver-faq-hero .hero-media img {
  object-position: 72% 48%;
}

.green-word {
  color: var(--gold-emphasis);
}

.phone-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-width: 310px;
  padding: 25px 36px;
  border-radius: 24px 0 0;
  background: var(--navy);
  box-shadow: -12px -12px 34px rgba(6, 27, 79, 0.14);
  color: white;
}

.phone-card a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-card i,
.phone-card svg {
  width: 42px;
  height: 42px;
  color: white;
}

.phone-card strong,
.phone-card span {
  display: block;
}

.phone-card strong {
  font-size: 21px;
}

.phone-card small {
  color: rgba(255, 255, 255, 0.82);
}

.hero-rule {
  width: 150px;
  height: 2px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--green), transparent);
}

/* Feature rows */
.trust-strip {
  padding: 32px 0;
  background: var(--navy);
  color: white;
}

.home-trust-proof {
  padding: clamp(18px, 2.2vw, 30px) 0;
  background: white;
}

.family-trust-pill {
  position: relative;
  display: flex;
  width: min(100%, 870px);
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 28px);
  margin-inline: auto;
  padding: 15px clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(226, 181, 45, 0.52);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdf3 0%, #fff4b8 58%, #ffe56b 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 30px rgba(187, 140, 0, 0.15);
}

.family-trust-stars {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 3px;
  color: #f8c83e;
  font-family: Georgia, serif;
  font-size: clamp(23px, 2vw, 30px);
  letter-spacing: 0.015em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(159, 111, 0, 0.16);
}

.family-trust-pill p {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.3;
  text-align: center;
}

.family-trust-pill strong {
  font-weight: 800;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(var(--cols, 5), minmax(0, 1fr));
}

.feature-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 5px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy-2);
}

.trust-strip .feature-icon {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--gold);
}

.feature-icon i,
.feature-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.9;
}

.feature-item h3 {
  margin-bottom: 5px;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.feature-item p {
  margin-bottom: 0;
  color: inherit;
  font-size: 12.5px;
  line-height: 1.52;
  opacity: 0.87;
}

.icon-features {
  display: grid;
  grid-template-columns: repeat(var(--cols, 5), minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.icon-feature {
  min-width: 0;
  padding: 24px 20px 26px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.icon-feature:last-child {
  border-right: 0;
}

.icon-feature .feature-icon {
  margin: 0 auto 17px;
}

.icon-feature h3 {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.icon-feature p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.52;
}

/* Cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.path-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 0 0 rgba(6, 27, 79, 0);
  transition: border-color 260ms ease, box-shadow 320ms ease, transform 320ms var(--ease-standard);
}

.path-card:hover {
  border-color: #cbd6e2;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.path-card-media {
  position: relative;
  height: auto;
  min-height: 190px;
  max-height: 320px;
  aspect-ratio: 2.05 / 1;
  overflow: visible;
  background: var(--sky);
}

.path-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.path-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  transform: scale(1.18);
  transition: transform 700ms var(--ease-standard);
}

.path-card:hover .path-card-media img {
  transform: scale(1.23);
}

.path-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 36px 28px 29px;
}

.path-card-body h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.path-card-body p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.path-card-body .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
}

.text-link svg,
.text-link i {
  width: 17px;
  height: 17px;
  transition: transform 220ms var(--ease-snappy);
}

.text-link:hover svg,
.text-link:hover i,
.path-card:hover .text-link svg,
.path-card:hover .text-link i {
  transform: translateX(4px);
}

.path-badge {
  position: absolute;
  top: auto;
  bottom: -30px;
  left: 23px;
  z-index: 3;
  display: grid;
  width: 59px;
  height: 59px;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  background: #176eb8;
  color: white;
}

.path-card:nth-child(2) .path-badge {
  background: var(--navy-2);
}

.path-card:nth-child(3) .path-badge {
  background: var(--green);
}

.path-badge i,
.path-badge svg {
  width: 27px;
  height: 27px;
}

.panel {
  /* border: 1px solid var(--line); */
  border-radius: var(--radius);
  background: var(--sky-2);
  box-shadow: var(--panel-shadow);
}

/* Steps */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--steps, 4), minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
  padding-top: 10px;
}

.steps::before {
  position: absolute;
  top: 25px;
  right: calc(100% / (var(--steps, 4) * 2));
  left: calc(100% / (var(--steps, 4) * 2));
  height: 1px;
  border-top: 1px dashed #91a1b5;
  content: "";
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(91, 152, 26, 0.2);
  color: white;
  font-weight: 800;
}

.steps.driver .step-number {
  background: var(--navy-2);
}

.step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy-2);
}

.step-icon i,
.step-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}

.step h3 {
  max-width: 210px;
  margin: 0 auto 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.step p {
  max-width: 215px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.55;
}

/* Home pricing preview */
.pricing-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 4vw, 52px);
  padding: clamp(34px, 4vw, 48px);
}

.pricing-preview h2 {
  margin-bottom: 8px;
  font-size: clamp(27px, 2.2vw, 33px);
  font-weight: 800;
}

.pricing-preview-intro {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.phone-checks {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 22px;
}

.phone-checks img {
  max-height: 330px;
  margin-inline: auto;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.check-list li i,
.check-list li svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  stroke-width: 3;
}

.fine-print {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Interactive route network */
.route-network {
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.55fr);
  overflow: hidden;
  isolation: isolate;
}

.route-network [hidden],
.route-map [hidden] {
  display: none !important;
}

.route-network__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 4vw, 58px) clamp(32px, 3.5vw, 48px);
  background: radial-gradient(circle at 8% 4%, rgba(226, 181, 45, 0.12), transparent 30%), rgba(255, 255, 255, 0.97);
}

.route-network__copy .eyebrow {
  margin-bottom: 12px;
  color: var(--green);
}

.route-network__copy h2 {
  margin-bottom: 17px;
  font-size: clamp(35px, 3.4vw, 49px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.route-network__copy h2 span {
  color: var(--gold-emphasis);
}

.route-network__lead {
  max-width: 390px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.route-network__service-label {
  margin: 17px 0 10px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-network__service-points {
  display: grid;
  gap: 10px;
  max-width: 395px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.route-network__service-points li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.route-network__service-points > li > svg,
.route-network__service-points > li > i {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.route-network__service-points strong,
.route-network__service-points span {
  display: block;
}

.route-network__service-points strong {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 11.5px;
  line-height: 1.35;
}

.route-network__service-points span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.route-network__fit {
  width: 100%;
  max-width: 300px;
  margin-top: 15px;
  cursor: pointer;
}

.route-network__corridors {
  max-width: 330px;
  margin-top: 18px;
}

.route-network__corridor-label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-network__corridor-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.route-network__corridor-buttons button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(6, 27, 79, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.route-network__corridor-buttons button:hover,
.route-network__corridor-buttons button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.route-network__corridor-buttons button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.route-network__corridor-buttons i {
  width: 18px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
}

.route-network__corridor-buttons [data-route-map-route="north-dallas"] i {
  background: #0b2c67;
}

.route-network__corridor-buttons [data-route-map-route="east-dallas"] i {
  background: #5b981a;
}

.route-network__corridor-buttons button.is-active i,
.route-network__corridor-buttons button:hover i {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.route-network__disclaimer {
  max-width: 330px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.route-network .zip-form {
  display: flex;
  width: 100%;
  max-width: 300px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid #9faabd;
  border-radius: 9px;
  background: white;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.route-network__availability {
  max-width: 395px;
  padding: 14px;
  margin-top: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 27, 79, 0.06);
}

.route-network__availability > strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.route-network__availability .zip-form {
  max-width: none;
  margin-top: 8px;
}

.route-network .zip-form:focus-within {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(11, 44, 103, 0.13);
}

.route-network .zip-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 13px;
  border: 0;
  outline: none;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
}

.route-network .zip-form input::placeholder {
  color: #68758a;
}

.route-network .zip-form button {
  display: grid;
  width: 46px;
  min-height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  background: var(--navy);
  color: white;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.route-network .zip-form button:hover {
  background: var(--navy-2);
}

.route-network .zip-form button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.route-network .zip-form button svg,
.route-network .zip-form button i {
  width: 18px;
  height: 18px;
}

.route-network .zip-help {
  max-width: 300px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.route-network .zip-result {
  min-height: 19px;
  max-width: 300px;
  margin: 5px 0 6px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.45;
}

.route-network .zip-result a {
  color: var(--navy-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.route-network .text-link {
  align-self: flex-start;
  margin-top: 2px;
}

.route-network__request {
  display: grid;
  max-width: 395px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
  margin-top: 10px;
  border: 1px solid rgba(91, 152, 26, 0.24);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(91, 152, 26, 0.1), rgba(226, 181, 45, 0.06));
}

.route-network__request > svg,
.route-network__request > i {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
}

.route-network__request span,
.route-network__request strong {
  display: block;
}

.route-network__request span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.route-network__request strong {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 12px;
}

.route-network__request .btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 11px;
}

.route-map {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  /* border-left: 1px solid rgba(6, 27, 79, 0.1); */
  background: linear-gradient(145deg, rgba(91, 152, 26, 0.08), rgba(11, 44, 103, 0.08)), #edf2ed;
}

.route-map__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #edf2ed;
  outline: none;
}

.route-map__canvas:focus-visible {
  box-shadow: inset 0 0 0 4px var(--gold);
}

.route-map__placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 32px;
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(237, 242, 237, 0.9) 42%, rgba(224, 232, 225, 0.96)), #edf2ed;
  color: var(--navy);
  text-align: center;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.route-map__placeholder-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 5px;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 10px 25px rgba(6, 27, 79, 0.18);
  color: var(--gold);
}

.route-map__placeholder-icon svg,
.route-map__placeholder-icon i {
  width: 25px;
  height: 25px;
}

.route-map__placeholder strong {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 15px;
}

.route-map__placeholder > span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.route-map.is-ready .route-map__placeholder {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.route-map__legend,
.route-map__status {
  position: absolute;
  z-index: 800;
  border: 1px solid rgba(6, 27, 79, 0.11);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(6, 27, 79, 0.14);
  backdrop-filter: blur(8px);
}

.route-map__legend {
  top: 18px;
  right: 18px;
  display: grid;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.route-map.is-ready .route-map__legend {
  visibility: visible;
  opacity: 1;
}

.route-map__legend > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-map__legend i {
  display: inline-block;
  width: 28px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.route-map__legend-area {
  border: 1.5px dashed var(--navy-2);
  background: rgba(91, 152, 26, 0.22);
}

.route-map__legend-route {
  background: linear-gradient(90deg, #0b2c67 0 33%, #dda91a 33% 66%, #5b981a 66%);
}

.route-map__status {
  right: 72px;
  bottom: 18px;
  left: 18px;
  max-width: 390px;
  padding: 11px 13px;
  margin: 0;
  border-radius: 11px;
  color: #4c596d;
  font-size: 10.5px;
  line-height: 1.45;
}

.route-map__status strong {
  color: var(--navy);
}

.route-map__communities,
.route-map__routes {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  list-style: none;
}

.route-map__fallback {
  position: absolute;
  inset: 50% 28px auto;
  z-index: 10;
  padding: 18px;
  border-radius: 12px;
  background: white;
  color: var(--navy);
  text-align: center;
  transform: translateY(-50%);
}

.route-map.is-unavailable .route-map__legend {
  display: none;
}

.route-map.is-unavailable .route-map__communities {
  position: absolute;
  inset: 190px 28px auto;
  z-index: 8;
  display: flex;
  width: auto;
  height: auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.route-map.is-unavailable .route-map__community {
  padding: 6px 9px;
  border: 1px solid rgba(6, 27, 79, 0.12);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.route-map .leaflet-container {
  background: #edf2ed;
  font-family: "Inter", Arial, sans-serif;
}

.route-map .leaflet-control-zoom {
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(6, 27, 79, 0.16);
}

.route-map .leaflet-control-zoom a {
  width: 44px;
  height: 44px;
  border-color: rgba(6, 27, 79, 0.1);
  color: var(--navy);
  font-size: 22px;
  line-height: 44px;
}

.route-map .leaflet-control-zoom a:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.route-map .leaflet-bottom.leaflet-right {
  margin: 0 6px 7px 0;
}

.route-map .leaflet-control-attribution {
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #42506a;
  font-size: 8px;
}

.route-map .leaflet-control-attribution a {
  color: var(--navy-2);
}

.route-map__city-icon {
  border: 0;
  background: transparent;
}

.route-map__city-dot {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--navy-2), 0 5px 14px rgba(6, 27, 79, 0.3);
}

.route-map__city-dot.is-hub {
  width: 18px;
  height: 18px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.96), 0 0 0 5px var(--navy-2), 0 6px 16px rgba(6, 27, 79, 0.3);
}

.route-map__city-label {
  padding: 5px 8px;
  border: 1px solid rgba(6, 27, 79, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 15px rgba(6, 27, 79, 0.13);
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.route-map .leaflet-tooltip-right.route-map__city-label::before {
  border-right-color: rgba(255, 255, 255, 0.94);
}

.route-map .leaflet-popup-content-wrapper {
  border-radius: 13px;
  box-shadow: 0 14px 36px rgba(6, 27, 79, 0.2);
}

.route-map .leaflet-popup-content {
  margin: 14px 17px;
  line-height: 1.35;
}

.route-map__popup-title {
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.route-map__popup-title.is-inside {
  color: var(--green-dark);
}

.route-map__popup-title.is-outside {
  color: #9b6d00;
}

.route-map__popup-copy {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.route-map__van-layer {
  position: absolute;
  inset: 0;
  z-index: 650;
  overflow: hidden;
  pointer-events: none;
}

.route-map__van-position {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.route-map__van-rotation {
  filter: drop-shadow(0 5px 5px rgba(6, 27, 79, 0.22));
  transform-origin: center;
  will-change: transform;
}

@media (max-width: 900px) {
  .route-network {
    grid-template-columns: 1fr;
  }

  .route-network__copy {
    padding: 40px 36px;
  }

  .route-network__lead {
    max-width: 560px;
  }

  .route-map {
    min-height: 560px;
    border-top: 1px solid rgba(6, 27, 79, 0.1);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .route-network__copy {
    padding: 34px 24px 32px;
  }

  .route-network__copy h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .route-network__fit,
  .route-network .zip-form {
    max-width: none;
  }

  .route-network__corridors,
  .route-network__disclaimer,
  .route-network__service-points,
  .route-network__availability,
  .route-network__request {
    max-width: none;
  }

  .route-map {
    min-height: 600px;
    padding-bottom: 96px;
  }

  .route-map__canvas,
  .route-map__van-layer {
    bottom: 96px;
  }

  .route-map__legend {
    top: 70px;
    right: auto;
    left: 14px;
  }

  .route-map__status {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 9px 10px;
    box-shadow: none;
  }

  .route-map .leaflet-control-attribution {
    max-width: 240px;
    overflow: hidden;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .route-map__city-label {
    display: none;
  }
}

@media (max-width: 390px) {
  .route-map {
    min-height: 620px;
  }

  .route-map__status {
    font-size: 9.5px;
  }
}

/* Image + copy modules */
.safety-module {
  display: grid;
  min-height: 300px;
  grid-template-columns: 1.08fr 0.92fr;
  overflow: hidden;
}

.home-safety {
  display: grid;
  min-height: 286px;
  grid-template-columns: 0.9fr 1.05fr 1.2fr;
  overflow: hidden;
}

.home-safety-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
}

.home-safety-copy h2 {
  margin-bottom: 9px;
  font-size: 27px;
  font-weight: 800;
}

.home-safety-copy p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.home-safety-checks {
  display: flex;
  align-items: center;
  padding: 30px 32px;
  background: #fbfcfe;
}

.family-feature-band {
  padding: clamp(56px, 5vw, 72px) 0;
  background: var(--sky-2);
}

.safety-module.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.safety-photo {
  overflow: hidden;
}

.safety-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.13);
  transition: transform 900ms var(--ease-standard);
}

.safety-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4vw, 52px);
  background: linear-gradient(135deg, #f8fbf4, #f2f7ed);
}

.safety-copy h2 {
  margin-bottom: 9px;
  font-size: clamp(27px, 2.3vw, 34px);
  font-weight: 800;
}

.safety-copy p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.mini-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 21px;
  margin-top: 9px;
}

.mini-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
}

.mini-check i,
.mini-check svg {
  width: 22px;
  height: 22px;
  color: var(--navy-2);
}

/* Testimonials */
.home-reviews {
  overflow-x: hidden;
  overflow-x: clip;
  padding-block: clamp(40px, 3.5vw, 52px);
}

.home-reviews > .shell {
  width: min(calc(100% - var(--page-inset)), var(--page));
  max-width: 100%;
}

.home-reviews .section-heading {
  margin-bottom: 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 34px 32px 29px 49px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  margin:0px;
  box-shadow: var(--panel-shadow);
  transition: border-color 260ms ease, box-shadow 300ms ease, transform 300ms var(--ease-standard);
}

.testimonial-card::before {
  position: absolute;
  top: 17px;
  left: 18px;
  color: var(--green);
  content: "“";
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.testimonial-card cite {
  color: var(--navy);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.testimonial-card cite strong {
  display: block;
}

.testimonial-card figcaption {
  margin-top: auto;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.testimonial-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.testimonial-toolbar > p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.testimonial-toolbar > p svg,
.testimonial-toolbar > p i {
  width: 23px;
  height: 23px;
  color: var(--green);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-control {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  box-shadow: 0 6px 16px rgba(6, 27, 79, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease-snappy);
}

.testimonial-control:hover:not(:disabled) {
  border-color: var(--navy-2);
  background: var(--navy-2);
  color: white;
  transform: translateY(-2px);
}

.testimonial-control:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  box-shadow: none;
}

.testimonial-control svg,
.testimonial-control i {
  width: 20px;
  height: 20px;
}

.testimonial-viewport {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-viewport:focus-visible {
  border-radius: var(--radius);
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

.testimonial-track {
  display: flex;
  width: 100%;
  min-width: 100%;
  align-items: stretch;
  gap: 12px;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 0;
  max-width: calc((100% - 36px) / 4);
  min-height: 252px;
  scroll-snap-align: start;
}

.testimonial-carousel .testimonial-card {
  padding: 28px 22px 24px 42px;
}

.testimonial-carousel .testimonial-card::before {
  left: 16px;
}

.testimonial-carousel .testimonial-card blockquote {
  margin-bottom: 0;
}

.testimonial-carousel .testimonial-card figcaption {
  margin-top: 14px;
}

.testimonial-slide cite span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.testimonial-carousel-footer {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.testimonial-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.testimonial-progress span {
  display: block;
  width: var(--testimonial-progress, 50%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 320ms var(--ease-standard);
}

.testimonial-status {
  min-width: 106px;
  margin: 0;
  color: var(--navy);
  text-align: right;
  font-size: 12px;
  font-weight: 800;
}

/* Pricing page */
.tefa-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.5fr) minmax(240px, 0.8fr);
  gap: 34px;
  padding: 38px;
  border: 2px solid #e2bd49;
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(132, 95, 0, 0.07);
}

.tefa-badge {
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid #d9e2ec;
  border-radius: 13px;
  background: #f8fbfe;
}

.tefa-badge a {
  display: block;
  width: 100%;
}

.tefa-badge picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tefa-badge img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.tefa-copy h2 {
  margin-bottom: 7px;
  font-size: clamp(26px, 2.1vw, 32px);
  font-weight: 800;
}

.tefa-copy .status-line {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-weight: 750;
}

.tefa-copy p {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}

.tefa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.progress-list {
  display: grid;
  align-content: center;
  gap: 19px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.progress-list h3 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
}

.progress-row {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 9px;
  align-items: start;
  font-size: 13px;
  font-weight: 700;
}

.progress-dot {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid #b9c2cc;
  border-radius: 50%;
  color: white;
}

.progress-row.done .progress-dot {
  border-color: var(--green);
  background: var(--green);
}

.progress-row.current .progress-dot {
  border-color: var(--gold);
}

.progress-row small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.membership-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  padding: 64px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--panel-shadow);
  text-align: center;
  transition: border-color 260ms ease, box-shadow 300ms ease, transform 300ms var(--ease-standard);
}

.membership-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  background: #1471b9;
  color: white;
  transform: translateX(-50%);
}

.membership-card:nth-child(2) .membership-icon {
  background: var(--green);
}

.membership-card:nth-child(3) .membership-icon {
  background: #1c1c1c;
  color: #f2ce32;
}

.membership-icon i,
.membership-icon svg {
  width: 34px;
  height: 34px;
}

.membership-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 800;
}

.membership-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.info-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 22px 26px;
  border-radius: 12px;
  background: #edf4fb;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.6;
}

.info-banner > i,
.info-banner > svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--navy-2);
}

.factor-panel,
.payment-panel {
  padding: clamp(32px, 4vw, 46px) clamp(28px, 4vw, 44px);
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.factor {
  padding: 10px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.factor:last-child {
  border-right: 0;
}

.factor i,
.factor svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  color: var(--navy-2);
}

.factor h3 {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.factor p {
  margin-bottom: 0;
  font-size: 12.5px;
  line-height: 1.55;
}

.factor-note {
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
}

.payment-option {
  padding: 10px 30px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.payment-option:last-child {
  border-right: 0;
}

.payment-option i,
.payment-option svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 7px;
  color: var(--green);
}

.payment-option h3 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
}

.payment-option p {
  margin-bottom: 10px;
  font-size: 12.5px;
  line-height: 1.58;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 10px 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.provider-logos span {
  padding: 3px 7px;
  border-radius: 3px;
  background: white;
}

.provider-logos .afterpay {
  background: #b2fce4;
  color: #111;
}

.provider-logos .klarna {
  background: #ffb3c7;
  color: #111;
}

.provider-logos .zip {
  color: #2a145a;
}

.secure-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 24px 28px 0;
  color: var(--navy);
  font-size: 12px;
}

.secure-line i,
.secure-line svg {
  width: 26px;
  height: 26px;
}

/* FAQ */
.faq-search {
  position: relative;
  max-width: 460px;
  margin-top: 28px;
}

.faq-search input {
  width: 100%;
  height: 52px;
  padding: 11px 48px 11px 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(6, 27, 79, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-search input:focus {
  border-color: #8cabca;
  box-shadow: 0 0 0 4px rgba(23, 110, 184, 0.11), 0 10px 28px rgba(6, 27, 79, 0.08);
  outline: 0;
}

.faq-search i,
.faq-search svg {
  position: absolute;
  top: 16px;
  right: 14px;
  width: 20px;
  height: 20px;
  color: var(--navy-2);
}

.faq-result-count {
  min-height: 22px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 8px 28px rgba(6, 27, 79, 0.05);
  overflow: hidden;
}

.faq-tab {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 12px;
  color: var(--navy);
  text-align: left;
  transition: background-color 220ms ease, color 220ms ease;
}

.faq-tab:hover {
  background: white;
}

.faq-tab.active {
  color: var(--green-dark);
}

.faq-tab.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
}

.faq-tab i,
.faq-tab svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
}

.faq-tab strong,
.faq-tab small {
  display: block;
}

.faq-tab strong {
  font-size: 12px;
  line-height: 1.25;
}

.faq-tab small {
  margin-top: 3px;
  font-size: 10px;
}

.faq-group {
  margin: 0 0 28px;
}

.faq-group-title {
  margin: 0 0 11px 16px;
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accordion-list {
  display: grid;
  gap: 8px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.accordion-item.is-open {
  border-color: #c9d7e5;
  box-shadow: 0 8px 24px rgba(6, 27, 79, 0.055);
}

.accordion-trigger {
  display: grid;
  width: 100%;
  min-height: 56px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: background-color 220ms ease, color 220ms ease;
}

.accordion-trigger:hover {
  background: #f8fafc;
}

.question-number {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 11px;
}

.question-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(11, 44, 103, 0.1);
  border-radius: 12px;
  background: var(--sky-2);
  color: var(--navy-2);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.question-icon svg,
.question-icon i {
  width: 20px;
  height: 20px;
}

.accordion-item.is-open .question-icon {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-1px);
}

.accordion-icon {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--navy-2);
  font-size: 19px;
  font-weight: 500;
  transition: transform 240ms var(--ease-standard);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 52px 0 57px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
  opacity: 0;
  transition: grid-template-rows 360ms var(--ease-standard), opacity 220ms ease, padding-bottom 360ms var(--ease-standard);
}

.accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 15px;
  border-radius: 7px;
  transition: padding 360ms var(--ease-standard);
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
  padding-bottom: 16px;
  opacity: 1;
}

.accordion-item.is-open .accordion-panel-inner {
  padding: 12px 15px;
  background: #edf4fb;
}

.driver-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 10px 18px;
}

.driver-faq-grid .accordion-trigger {
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px 20px 6px;
  font-size: 14px;
}

.driver-faq-grid .accordion-panel {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 42px 18px 20px;
  font-size: 13px;
  opacity: 1;
}

.driver-faq-grid .accordion-item.is-collapsed .accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding-bottom: 0;
  opacity: 0;
}

.driver-faq-grid .accordion-item .accordion-panel-inner {
  padding: 0;
  background: transparent;
}

.proprietary-banner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 34px;
  padding: 34px 40px;
}

.proprietary-copy {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 22px;
}

.proprietary-copy .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--navy-2);
  color: white;
}

.proprietary-copy p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.62;
}

.proprietary-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proprietary-icon {
  padding: 8px 14px;
  border-left: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.proprietary-icon i,
.proprietary-icon svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 6px;
  color: var(--navy-2);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.72fr);
  align-items: center;
  gap: 0;
  padding: 26px 30px;
  background: linear-gradient(90deg, #f3f8ed, #f8fbf5);
}

.contact-intro {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 16px;
}

.contact-intro .feature-icon {
  width: 62px;
  height: 62px;
  background: var(--green);
  color: white;
}

.contact-intro h2 {
  margin-bottom: 3px;
  font-size: 22px;
  font-weight: 800;
}

.contact-intro p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.55;
}

.contact-item {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 16px;
  border-left: 1px solid #ccd5de;
  font-size: 12px;
  line-height: 1.5;
  transition: background-color 220ms ease, color 220ms ease;
}

a.contact-item:hover {
  background: rgba(255, 255, 255, 0.62);
}

.contact-item span {
  overflow-wrap: anywhere;
}

.contact-item i,
.contact-item svg {
  width: 26px;
  height: 26px;
  color: var(--navy-2);
}

.contact-item strong,
.contact-item span {
  display: block;
}

/* Driver benefits */
.drive-qualifications {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr;
  gap: clamp(42px, 5vw, 68px);
  align-items: center;
}

.drive-qualifications h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.18;
}

.drive-qualifications p {
  margin-bottom: 0;
  color: var(--muted);
}

.qualification-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualification-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.qualification-list i,
.qualification-list svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  stroke-width: 3;
}

.technology-callout {
  grid-column: 2;
  padding: 13px 15px;
  border: 2px solid #8dbb47;
  border-radius: 10px;
  background: #f8fbf3;
  font-weight: 800;
}

.driver-info {
  margin-top: 30px;
}

.driver-testimonial {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1.55fr 0.8fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #edf4fb;
  box-shadow: var(--panel-shadow);
}

.driver-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 40px 34px 86px;
  font-size: 15px;
  line-height: 1.65;
}

.driver-quote::before {
  position: absolute;
  top: 23px;
  left: 30px;
  color: #6aa0cf;
  content: "“";
  font-family: Georgia, serif;
  font-size: 65px;
  line-height: 1;
}

.driver-quote strong {
  margin-top: 8px;
}

.driver-photo {
  overflow: hidden;
}

.driver-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 43%;
}

/* CTA bands */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 220px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, auto) minmax(190px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 3.4vw, 42px);
  padding: 40px 0;
}

.cta-band h2 {
  margin-bottom: 8px;
  color: white;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
}

.cta-band p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.cta-band .accent {
  color: #f0c537;
}

.cta-actions {
  display: grid;
  min-width: 250px;
  gap: 12px;
}

.cta-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35%;
  overflow: hidden;
}

.cta-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--navy), transparent 55%);
  content: "";
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1s var(--ease-standard);
}

.cta-band.compact .cta-band-inner {
  min-height: 132px;
  grid-template-columns: minmax(0, 1fr) auto minmax(160px, 0.55fr);
  gap: 32px;
  padding-block: 28px;
}

.cta-band.compact h2 {
  margin-bottom: 3px;
  font-size: 26px;
}

.cta-band.compact .cta-actions {
  display: flex;
}

.benefit-strip {
  padding: 23px 0;
  border-top: 1px solid rgba(6, 27, 79, 0.13);
  background: white;
}

.benefit-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.benefit-strip-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--navy);
}

.benefit-strip-item i,
.benefit-strip-item svg {
  width: 34px;
  height: 34px;
  color: var(--navy-2);
}

.benefit-strip-item strong,
.benefit-strip-item small {
  display: block;
}

.benefit-strip-item strong {
  font-size: 12px;
}

.benefit-strip-item small {
  margin-top: 2px;
  font-size: 10.5px;
  line-height: 1.4;
}

.promise-line {
  padding: 11px 16px;
  color: var(--green-dark);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 54px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(27, 74, 146, 0.25), transparent 27%),
    linear-gradient(145deg, #041944 0%, #021132 100%);
  color: white;
}

.site-footer::before {
  position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, #061b4f 0%, #092152 58%, rgba(226, 181, 45, 0) 100%);
    content: "";
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(235px, 0.85fr) minmax(0, 2.45fr);
  align-items: start;
  gap: clamp(46px, 6vw, 84px);
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 158px;
}

.footer-brand .footer-logo img {
  width: 158px;
  height: 158px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 255px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 4px;
  margin-top: 19px;
  font-style: normal;
}

.footer-contact > a,
.footer-contact > span {
  display: flex;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.footer-contact svg,
.footer-contact i {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--gold);
}

.footer-contact a {
  transition: color 180ms ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-navigation {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-top: 13px;
}

.footer-column {
  min-width: 0;
}

.footer-column h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 12px;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.footer-column h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  content: "";
}

.footer-column a {
  display: flex;
  min-height: 35px;
  align-items: center;
  margin: 1px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.5;
  transition: color 180ms ease, transform 180ms var(--ease-snappy);
}

.footer-column a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
}

/* Interior navigation pages */
.schools-hero .hero-media img {
  object-position: 62% center;
}

.service-areas-hero .hero-media img {
  object-position: 50% 50%;
}

.safety-hero .hero-media img {
  object-position: 66% center;
}

.about-hero .hero-media img {
  object-position: 50% 38%;
  transform: scale(1.02);
}

.contact-hero .hero-media img {
  object-position: 32% center;
  transform: scale(1.06);
}

.suggest-school-hero .hero-media img {
  object-position: center 62%;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
}

.editorial-copy h2,
.district-section__intro h2,
.careers-openings h2,
.contact-detail-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.13;
}

.editorial-copy > p:not(.eyebrow),
.district-section__intro > p:not(.eyebrow),
.careers-openings p,
.contact-detail-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.partnership-panel {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(145deg, #f8fbf4, #edf4e8);
}

.partnership-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partnership-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(6, 27, 79, 0.11);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.partnership-list li:first-child {
  border-top: 0;
}

.partnership-list li > svg,
.partnership-list li > i {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 12px;
  background: white;
  color: var(--navy-2);
  box-shadow: 0 7px 18px rgba(6, 27, 79, 0.08);
}

.partnership-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 14px;
}

.district-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(36px, 5vw, 68px);
}

.district-section__intro p:last-child {
  margin-bottom: 0;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.district-grid a {
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 18px rgba(6, 27, 79, 0.045);
  color: var(--navy);
  transition: border-color 200ms ease, box-shadow 240ms ease, transform 240ms var(--ease-standard);
}

.district-grid a:hover {
  border-color: rgba(91, 152, 26, 0.6);
  box-shadow: 0 12px 26px rgba(6, 27, 79, 0.09);
  transform: translateY(-3px);
}

.district-grid a > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--sky);
  color: var(--navy-2);
}

.district-grid a > span svg,
.district-grid a > span i {
  width: 19px;
  height: 19px;
}

.district-grid a > svg:last-child,
.district-grid a > i:last-child {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.district-grid a strong {
  font-size: 12px;
  line-height: 1.35;
}

.district-grid .district-grid__suggest {
  border-color: rgba(91, 152, 26, 0.38);
  background: var(--green-soft);
}

/* Service-area city landing pages */
.city-hero .hero-copy {
  padding-block: clamp(58px, 5vw, 76px);
}

.city-hero .hero-copy h1 {
  margin-bottom: 20px;
}

.city-name-accent {
  display: block;
  color: var(--gold-emphasis);
}

.service-hero-accent {
  display: block;
}

.city-hero .hero-media img {
  object-position: 68% 48%;
  transform: scale(1.08);
}

.city-hero-facts {
  display: flex;
  max-width: 650px;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.city-hero-facts > span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 44, 103, 0.12);
  border-radius: 999px;
  background: rgba(246, 249, 253, 0.94);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

.city-hero-facts svg,
.city-hero-facts i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--green);
}

.city-hero-facts strong {
  font-size: 12px;
}

.city-phone-card {
  min-width: 300px;
}

.city-trust-strip {
  padding-block: 24px;
}

.city-trust-strip .feature-item {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  padding-inline: 18px;
}

.city-trust-strip .feature-icon {
  width: 42px;
  height: 42px;
}

.city-trust-strip .feature-item h3 {
  font-size: 12px;
}

.city-trust-strip .feature-item p {
  font-size: 10px;
}

.city-schools-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(91, 152, 26, 0.08), transparent 25%),
    linear-gradient(180deg, #fff, #f8fafc);
}

.city-schools-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(30px, 5vw, 70px);
}

.city-schools-heading > div:first-child {
  max-width: 740px;
}

.city-schools-heading h2 {
  margin-top: 7px;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.08;
}

.city-schools-heading > div:first-child > p:last-child {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.city-school-facts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
}

.city-school-facts > span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding-inline: 18px;
  border-left: 1px solid rgba(11, 44, 103, 0.14);
  font-size: 10.5px;
  font-weight: 750;
  white-space: nowrap;
}

.city-school-facts > span:first-child {
  padding-left: 0;
  border-left: 0;
}

.city-school-facts svg,
.city-school-facts i {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.city-school-facts strong {
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 16px;
}

.city-school-local-note {
  display: flex;
  max-width: 980px;
  align-items: flex-start;
  gap: 11px;
  margin-top: 23px;
  padding-left: 15px;
  border-left: 3px solid var(--green);
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.65;
}

.city-school-local-note > svg,
.city-school-local-note > i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--green-dark);
}

.city-school-local-note strong {
  color: var(--navy);
}

.city-school-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  align-items: start;
  margin-top: 34px;
  border-top: 1px solid rgba(11, 44, 103, 0.14);
  border-bottom: 1px solid rgba(11, 44, 103, 0.14);
}

.city-section-heading h2,
.city-franchise-copy h2,
.city-hq-copy h2 {
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.12;
}

.city-section-heading > p:not(.eyebrow),
.city-franchise-copy > p,
.city-hq-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.city-school-directory {
  min-width: 0;
  padding: clamp(26px, 3vw, 38px) clamp(28px, 4vw, 52px) clamp(28px, 3.5vw, 44px) 0;
}

.city-school-directory__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.city-school-directory__header small {
  display: block;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.city-school-directory__header h3 {
  margin-top: 5px;
  font-size: clamp(23px, 2.3vw, 31px);
}

.city-school-directory__header > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 750;
  white-space: nowrap;
}

.city-school-directory__header > span svg,
.city-school-directory__header > span i {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.city-school-groups {
  display: grid;
  gap: 30px;
}

.city-school-group {
  min-width: 0;
}

.city-school-group + .city-school-group {
  padding-top: 3px;
}

.city-school-group__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid rgba(11, 44, 103, 0.11);
}

.city-school-group__heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}

.city-school-group__heading > span svg,
.city-school-group__heading > span i {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.city-school-group__heading strong {
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-school-group__heading small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.city-school-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.city-school-row {
  display: grid;
  min-width: 0;
  grid-template-columns: 26px 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 15px 8px 15px 2px;
  border-bottom: 1px solid rgba(11, 44, 103, 0.1);
  transition: background-color 180ms ease, padding-inline 180ms ease;
}

.city-school-row:hover {
  padding-right: 12px;
  padding-left: 8px;
  background: linear-gradient(90deg, rgba(91, 152, 26, 0.06), rgba(91, 152, 26, 0));
}

.city-school-row__number {
  color: #9aa6b7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.city-school-row__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.city-school-row__icon svg,
.city-school-row__icon i {
  width: 19px;
  height: 19px;
}

.city-school-row__location {
  min-width: 0;
  color: var(--navy);
}

.city-school-row__location strong,
.city-school-row__location small,
.city-school-row__directions {
  display: block;
}

.city-school-row__location strong {
  font-size: 12px;
  line-height: 1.35;
  transition: color 180ms ease;
}

.city-school-row__location small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.city-school-row__directions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 8.5px;
  font-weight: 800;
}

.city-school-row__directions svg,
.city-school-row__directions i {
  width: 12px;
  height: 12px;
}

.city-school-row__location:hover strong,
.city-school-row__location:focus-visible strong {
  color: var(--green-dark);
}

.city-school-row__availability {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 44, 103, 0.18);
  border-radius: 999px;
  color: var(--navy-2);
  font-size: 8.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.city-school-row__availability svg,
.city-school-row__availability i {
  width: 13px;
  height: 13px;
}

.city-school-row__availability:hover,
.city-school-row__availability:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.city-suggest-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  padding: 18px 0 3px;
  border-top: 1px solid rgba(91, 152, 26, 0.36);
}

.city-suggest-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--navy-2);
}

.city-suggest-card > span svg,
.city-suggest-card > span i {
  width: 24px;
  height: 24px;
}

.city-suggest-card strong {
  color: var(--navy);
  font-size: 13px;
}

.city-suggest-card p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.city-suggest-card .btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 11px;
}

.city-map-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-width: 0;
  padding: clamp(26px, 3vw, 38px) 0 clamp(28px, 3.5vw, 44px) clamp(28px, 4vw, 52px);
  border-left: 1px solid rgba(11, 44, 103, 0.14);
}

.city-map-panel__heading {
  margin-bottom: 20px;
}

.city-map-panel__heading .eyebrow {
  margin-bottom: 5px;
  font-size: 9px;
}

.city-map-panel__heading h3 {
  color: var(--navy);
  font-size: clamp(23px, 2.4vw, 31px);
}

.city-map-panel__heading div > p:last-child {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.city-map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 28px rgba(6, 27, 79, 0.08);
}

.city-route-map {
  min-height: 520px;
  border: 0;
}

.city-route-map .route-map__legend {
  right: auto;
  left: 18px;
  max-width: calc(100% - 36px);
}

.city-route-map .route-map__status {
  right: 62px;
  max-width: none;
}

.city-map-ownership {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.city-map-ownership span {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  background: white;
  color: var(--navy);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
}

.city-map-ownership svg,
.city-map-ownership i {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--green);
}

.city-map-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.5;
}

.city-map-disclaimer svg,
.city-map-disclaimer i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--navy-2);
}

.city-map-check {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(11, 44, 103, 0.12);
}

.city-map-check > svg,
.city-map-check > i {
  width: 40px;
  height: 40px;
  padding: 8px;
  color: var(--green);
}

.city-map-check span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.city-map-check strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.city-map-check .btn {
  grid-column: 2;
  justify-self: start;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 10.5px;
}

.city-leadership-section {
  background: linear-gradient(180deg, #f7faf4, #eef4e9);
}

.city-section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.city-section-heading.text-center {
  margin-inline: auto;
}

.city-section-heading h2 {
  margin-bottom: 12px;
}

.ownership-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  margin: 3px 0 15px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ownership-badge svg,
.ownership-badge i {
  width: 14px;
  height: 14px;
}

.ownership-badge--hq {
  border-color: rgba(11, 44, 103, 0.22);
  background: var(--sky);
  color: var(--navy-2);
}

.ownership-badge--local {
  border-color: rgba(91, 152, 26, 0.35);
  background: var(--green-soft);
  color: var(--green-dark);
}

.city-hq-panel,
.city-franchise-panel,
.richardson-leadership-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  background: white;
}

.city-hq-copy h2,
.city-franchise-copy h2,
.richardson-leadership-copy h2 {
  margin-bottom: 15px;
}

.city-franchise-copy > strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
}

.richardson-leadership-panel {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(26px, 3.5vw, 52px);
}

.richardson-leadership-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}

.city-leadership-profiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.city-leadership-profile {
  min-width: 0;
}

.city-leadership-profile__photo {
  aspect-ratio: 1.08;
  overflow: hidden;
  border: 1px solid rgba(11, 44, 103, 0.12);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 27, 79, 0.12);
}

.city-leadership-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.city-leadership-profile figcaption {
  padding: 10px 3px 0;
  text-align: center;
}

.city-leadership-profile figcaption strong,
.city-leadership-profile figcaption span {
  display: block;
}

.city-leadership-profile figcaption strong {
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 11px;
  line-height: 1.3;
}

.city-leadership-profile figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8.5px;
  line-height: 1.4;
}

.owner-team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.owner-team-actions .btn {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 11px;
}

.city-hq-photo {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(6, 27, 79, 0.16);
}

.city-hq-photo img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.city-hq-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(6, 27, 79, 0.9);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.4;
  backdrop-filter: blur(7px);
}

.city-hq-photo figcaption svg,
.city-hq-photo figcaption i {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.franchise-visual {
  position: relative;
  display: grid;
  min-height: 290px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
  padding: 38px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 18%, rgba(226, 181, 45, 0.32), transparent 25%),
    linear-gradient(145deg, #09275f, #041944);
  box-shadow: 0 18px 38px rgba(6, 27, 79, 0.18);
}

.franchise-visual > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: white;
  text-align: center;
}

.franchise-visual > div > svg,
.franchise-visual > div > i {
  width: 74px;
  height: 74px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.franchise-visual small,
.franchise-visual strong {
  display: block;
}

.franchise-visual small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.franchise-visual strong {
  margin-top: 3px;
  color: white;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

.franchise-visual__connector {
  position: absolute;
  top: 50%;
  right: 30%;
  left: 30%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 13px);
  transform: translateY(-50%);
}

.franchise-owner-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(6, 27, 79, 0.18);
}

.franchise-owner-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 50% 35%;
}

.franchise-owner-photo figcaption,
.owner-team-card__photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  background: rgba(6, 27, 79, 0.9);
  color: white;
  line-height: 1.35;
  backdrop-filter: blur(7px);
}

.franchise-owner-photo figcaption strong,
.franchise-owner-photo figcaption span,
.owner-team-card__photo figcaption strong,
.owner-team-card__photo figcaption span {
  display: block;
}

.franchise-owner-photo figcaption strong,
.owner-team-card__photo figcaption strong {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 12px;
}

.franchise-owner-photo figcaption span,
.owner-team-card__photo figcaption span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
}

.garland-owner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.owner-team-card {
  position: relative;
  display: grid;
  min-height: 380px;
  grid-template-columns: minmax(0, 1.08fr) minmax(170px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 34px rgba(6, 27, 79, 0.08);
}

.owner-team-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(11, 44, 103, 0.045);
  content: "";
  pointer-events: none;
}

.owner-team-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25px, 2.6vw, 34px);
}

.owner-team-card__content .owner-team-actions {
  margin-top: auto;
  padding-top: 22px;
}

.owner-team-card__photo {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.owner-team-card__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(6, 27, 79, 0.32));
  content: "";
  pointer-events: none;
}

.owner-team-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center top;
}

.owner-team-card--local::after {
  background: rgba(91, 152, 26, 0.075);
}

.owner-team-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 7px 0 20px;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(6, 27, 79, 0.16);
  color: var(--gold);
}

.owner-team-card--local .owner-team-icon {
  background: var(--green-dark);
  color: white;
}

.owner-team-icon svg,
.owner-team-icon i {
  width: 31px;
  height: 31px;
}

.owner-team-card h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.owner-team-card p {
  max-width: 590px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.city-standard-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.city-standard-row article {
  display: grid;
  min-height: 96px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(11, 44, 103, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(6, 27, 79, 0.065);
  color: var(--navy);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.city-standard-row article:hover {
  border-color: rgba(91, 152, 26, 0.34);
  box-shadow: 0 15px 30px rgba(6, 27, 79, 0.1);
  transform: translateY(-2px);
}

.city-standard-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--gold);
  box-shadow: 0 9px 18px rgba(6, 27, 79, 0.16);
}

.city-standard-icon svg,
.city-standard-icon i {
  width: 24px;
  height: 24px;
}

.city-standard-row article > span:last-child {
  min-width: 0;
}

.city-standard-row strong,
.city-standard-row small {
  display: block;
}

.city-standard-row strong {
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.3;
}

.city-standard-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.4;
}

.city-how-section .city-section-heading {
  margin-bottom: 42px;
}

.city-steps .step p {
  max-width: 190px;
}

.city-faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(38px, 5vw, 72px);
}

.city-faq-layout .city-section-heading {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  margin-bottom: 0;
}

.city-faq-layout .city-section-heading .btn {
  margin-top: 22px;
}

.city-faq-list {
  display: grid;
  gap: 11px;
}

.city-faq-list .accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 22px rgba(6, 27, 79, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.city-faq-list .accordion-item.is-open {
  border-color: rgba(91, 152, 26, 0.34);
  box-shadow: 0 14px 30px rgba(6, 27, 79, 0.085);
}

.city-faq-list .accordion-trigger {
  min-height: 78px;
  gap: 14px;
  padding: 15px 17px;
  font-size: 15px;
}

.city-faq-list .accordion-trigger:hover {
  background: linear-gradient(90deg, #f7fbf2, #fff);
}

.city-faq-list .accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f6fb;
  font-size: 21px;
}

.city-faq-list .accordion-item.is-open .accordion-icon {
  background: var(--green-soft);
  color: var(--green-dark);
}

.city-faq-list .accordion-panel {
  padding-right: 65px;
  padding-left: 70px;
}

.city-faq-list .accordion-item.is-open .accordion-panel-inner {
  border-left: 3px solid var(--green);
  background: #f4f8fc;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: white;
}

.service-facts div {
  min-height: 145px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-facts div:nth-child(even) {
  border-right: 0;
}

.service-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-facts strong,
.service-facts span {
  display: block;
}

.service-facts strong {
  margin-bottom: 7px;
  color: var(--green-dark);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 25px;
  line-height: 1.1;
}

.service-facts span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.safety-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.safety-standard {
  display: grid;
  min-height: 200px;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 17px;
  padding: 28px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--panel-shadow);
}

.safety-standard > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.safety-standard > span svg,
.safety-standard > span i {
  width: 27px;
  height: 27px;
}

.safety-standard h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 800;
}

.safety-standard p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

/* About and careers */
.about-milestones {
  padding: 27px 0;
  background: var(--navy);
  color: white;
}

.about-milestones .shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-milestones .shell > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 4px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-milestones .shell > div:first-child {
  padding-left: 0;
}

.about-milestones .shell > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-milestones strong {
  color: var(--gold);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 25px;
}

.about-milestones span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.45;
}

.founder-card {
  overflow: hidden;
  background: white;
}

.founder-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: 50% 38%;
}

.founder-card figcaption {
  display: grid;
  gap: 3px;
  padding: 20px 23px 23px;
}

.founder-card figcaption strong {
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 15px;
}

.founder-card figcaption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky);
  box-shadow: var(--panel-shadow);
}

.about-gallery .about-gallery__wide {
  min-height: 325px;
  grid-column: 1 / -1;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about-gallery__wide img {
  object-position: center;
}

.about-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 11px;
  background: rgba(6, 27, 79, 0.86);
  color: white;
  font-size: 12px;
  line-height: 1.5;
  backdrop-filter: blur(9px);
}

.directory-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(226, 181, 45, 0.13), transparent 27%),
    linear-gradient(180deg, #f7fafc 0%, #eef4fa 100%);
}

.directory-intro {
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.directory-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.directory-intro > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
}

.directory-featured,
.directory-grid {
  display: grid;
  gap: 18px;
}

.directory-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(11, 44, 103, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--panel-shadow);
}

.directory-card--featured {
  min-height: 320px;
  padding: clamp(27px, 3.2vw, 36px);
  border-color: rgba(11, 44, 103, 0.18);
}

.directory-card--franchise {
  border-color: rgba(91, 152, 26, 0.28);
  background: linear-gradient(145deg, #f5faef 0%, #ffffff 76%);
}

.directory-card__header {
  display: grid;
  min-width: 0;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.directory-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 9px 22px rgba(6, 27, 79, 0.14);
}

.directory-card--franchise .directory-card__icon {
  background: var(--green-dark);
  color: white;
}

.directory-card__icon svg,
.directory-card__icon i {
  width: 26px;
  height: 26px;
}

.directory-card__header p {
  margin-bottom: 3px;
  color: var(--green-dark);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.directory-card__header h3 {
  margin-bottom: 0;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}

.directory-card__summary {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.directory-card__primary,
.directory-card__links a {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: var(--navy);
}

.directory-card__primary {
  padding-top: 14px;
}

.directory-card__links {
  display: grid;
  margin-top: auto;
}

.directory-card__links a {
  padding: 10px 0;
}

.directory-card__primary > svg,
.directory-card__primary > i,
.directory-card__links a > svg,
.directory-card__links a > i {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--green-dark);
}

.directory-card__primary span,
.directory-card__links a span {
  min-width: 0;
}

.directory-card__primary small,
.directory-card__primary strong,
.directory-card__links small,
.directory-card__links strong {
  display: block;
}

.directory-card__primary small,
.directory-card__links small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.directory-card__primary strong,
.directory-card__links strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  font-size: 12.5px;
  line-height: 1.45;
}

.directory-role-list {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sky-2);
  list-style: none;
}

.directory-role-list li {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(130px, 0.75fr) minmax(0, 1.25fr);
  gap: 14px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  line-height: 1.45;
}

.directory-role-list li:last-child {
  border-bottom: 0;
}

.directory-role-list li > span:first-child {
  color: var(--muted);
  font-weight: 700;
}

.directory-role-list a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-weight: 750;
}

.directory-role-list__emails {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.directory-note {
  max-width: 880px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.careers-openings {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(34px, 5vw, 54px);
  background: white;
}

.careers-openings > div:first-child > p:not(.eyebrow) {
  max-width: 720px;
}

.careers-openings__visual {
  display: grid;
  min-height: 230px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: white;
  text-align: center;
}

.careers-openings__visual > svg,
.careers-openings__visual > i {
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  color: var(--gold);
}

.careers-openings__visual strong {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 17px;
}

.careers-openings__visual span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

/* Contact */
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-channel {
  display: grid;
  min-height: 190px;
  grid-template-columns: 54px minmax(0, 1fr) 22px;
  align-items: start;
  gap: 17px;
  padding: 28px 25px;
  background: white;
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms var(--ease-standard);
}

.contact-channel:hover {
  border-color: rgba(91, 152, 26, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.contact-channel > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.contact-channel > span svg,
.contact-channel > span i {
  width: 26px;
  height: 26px;
}

.contact-channel > svg:last-child,
.contact-channel > i:last-child {
  width: 20px;
  height: 20px;
  margin-top: 16px;
  color: var(--green);
}

.contact-channel p {
  margin-bottom: 2px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel h2 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.5vw, 22px);
  overflow-wrap: anywhere;
}

.contact-channel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(32px, 5vw, 70px);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.contact-form-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.contact-form-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form-promise {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  margin-top: 24px;
  background: var(--green-soft);
}

.contact-form-promise > svg,
.contact-form-promise > i {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: white;
  color: var(--green-dark);
}

.contact-form-promise strong,
.contact-form-promise span {
  display: block;
}

.contact-form-promise strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 13px;
}

.contact-form-promise span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.contact-message-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: white;
}

.contact-form-fields {
  display: grid;
  gap: 16px;
}

.contact-form-fields.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-fields .span-two {
  grid-column: 1 / -1;
}

.contact-form-fields label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 750;
}

.contact-form-fields input,
.contact-form-fields select,
.contact-form-fields textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd6e1;
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font: inherit;
}

.contact-form-fields textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-fields input:focus,
.contact-form-fields select:focus,
.contact-form-fields textarea:focus {
  border-color: var(--navy-2);
  outline: 3px solid rgba(11, 44, 103, 0.12);
}

.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.contact-form-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.submission-notice {
  padding: 15px 17px;
  border: 1px solid rgba(91, 152, 26, 0.35);
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.submission-notice.is-error {
  border-color: rgba(163, 49, 49, 0.3);
  background: #fff1f1;
  color: #8d2828;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.taximom-turnstile {
  display: grid;
  max-width: 100%;
  gap: 7px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.taximom-turnstile .cf-turnstile {
  max-width: 100%;
  overflow: hidden;
}

.taximom-turnstile > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
}

.detail-check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 27px 0 30px;
  list-style: none;
}

.detail-check-list li {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.detail-check-list svg,
.detail-check-list i {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  stroke-width: 3;
}

.office-card {
  position: relative;
  padding: clamp(34px, 5vw, 50px);
  background: linear-gradient(145deg, #f7fafc, #edf4fb);
}

.office-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(6, 27, 79, 0.18);
}

.office-card__icon svg,
.office-card__icon i {
  width: 32px;
  height: 32px;
}

.office-card h2 {
  margin-bottom: 10px;
  font-size: clamp(27px, 2.4vw, 34px);
}

.office-card address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.office-card__rows {
  display: grid;
  gap: 0;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.office-card__rows > * {
  display: grid;
  min-width: 0;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.office-card__rows svg,
.office-card__rows i {
  width: 24px;
  height: 24px;
  color: var(--navy-2);
}

.office-card__rows strong {
  display: block;
  color: var(--navy);
}

.contact-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-next-steps article {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--panel-shadow);
}

.contact-next-steps article > span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 14px;
  background: var(--sky);
  color: var(--navy-2);
}

.contact-next-steps article > span svg,
.contact-next-steps article > span i {
  width: 26px;
  height: 26px;
}

.contact-next-steps h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.contact-next-steps p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-next-steps .btn {
  width: 100%;
  margin-top: auto;
}

/* Suggest a school */
.suggestion-note {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  background: white;
}

.suggestion-note > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.suggestion-note > span svg,
.suggestion-note > span i {
  width: 34px;
  height: 34px;
}

.suggestion-note h2 {
  margin-bottom: 5px;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
}

.suggestion-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.suggestion-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.suggestion-detail-grid article {
  min-height: 240px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--panel-shadow);
}

.suggestion-detail-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 15px;
  background: var(--sky);
  color: var(--navy-2);
}

.suggestion-detail-grid article > span svg,
.suggestion-detail-grid article > span i {
  width: 28px;
  height: 28px;
}

.suggestion-detail-grid h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.suggestion-detail-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Legal */
.legal-hero {
  padding: clamp(76px, 8vw, 112px) 0 clamp(60px, 6vw, 84px);
  background:
    radial-gradient(circle at 84% 14%, rgba(91, 152, 26, 0.17), transparent 24%),
    linear-gradient(135deg, #f8fbfe, #edf4fb);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
}

.legal-hero > .shell > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 28px;
}

.legal-meta > * {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.legal-meta svg,
.legal-meta i {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 6vw, 82px);
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  display: grid;
  padding: 18px;
  background: white;
}

.legal-nav strong {
  padding: 7px 10px 14px;
  color: var(--navy);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 13px;
}

.legal-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.legal-nav a:hover {
  color: var(--green-dark);
}

.legal-content {
  max-width: 820px;
}

.legal-content > section {
  padding: 0 0 33px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.legal-content > section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 28px 0 12px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.24;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #38465e;
  font-size: 14px;
  line-height: 1.78;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-lead {
  padding: 24px 26px;
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  background: var(--green-soft);
  color: var(--navy) !important;
  font-weight: 600;
}

.legal-content address {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sky-2);
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.legal-content address strong,
.legal-content address a {
  color: var(--navy);
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 700;
}

/* Interaction and motion */
.feature-icon,
.step-icon,
.membership-icon {
  transition: box-shadow 280ms ease, transform 320ms var(--ease-standard);
}

.phone-card a {
  transition: opacity 220ms ease, transform 260ms var(--ease-standard);
}

.accordion-trigger:focus-visible,
.faq-tab:focus-visible,
.path-card:focus-visible {
  position: relative;
  z-index: 3;
}

@media (hover: hover) and (pointer: fine) {
  .split-hero:hover .hero-media img {
    transform: scale(1.16);
  }

  .phone-card a:hover {
    opacity: 0.92;
    transform: translateX(3px);
  }

  .icon-feature:hover .feature-icon,
  .step:hover .step-icon,
  .membership-card:hover .membership-icon {
    box-shadow: 0 12px 26px rgba(6, 27, 79, 0.13);
    transform: translateY(-4px);
  }

  .membership-card:hover,
  .testimonial-card:hover {
    border-color: #c9d7e4;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
  }

  .safety-module:hover .safety-photo img,
  .home-safety:hover .safety-photo img {
    transform: scale(1.17);
  }

  .cta-band:hover .cta-image img {
    transform: scale(1.07);
  }
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
}

.motion-ready .motion-item.motion-from-left {
  transform: translate3d(-28px, 0, 0);
}

.motion-ready .motion-item.motion-from-right {
  transform: translate3d(28px, 0, 0);
}

.motion-ready .motion-item.motion-scale {
  transform: scale(0.975);
}

.motion-ready .motion-item.is-visible {
  animation: reveal-up 720ms var(--ease-standard) var(--motion-delay, 0ms) both;
}

.motion-ready .motion-item.motion-from-left.is-visible {
  animation-name: reveal-left;
}

.motion-ready .motion-item.motion-from-right.is-visible {
  animation-name: reveal-right;
}

.motion-ready .motion-item.motion-scale.is-visible {
  animation-name: reveal-scale;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes reveal-left {
  from { opacity: 0; transform: translate3d(-28px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes reveal-right {
  from { opacity: 0; transform: translate3d(28px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: scale(0.975); }
  to { opacity: 1; transform: scale(1); }
}

/* Utility */
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-38 { margin-top: 38px; }
.mt-44 { margin-top: 44px; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --header-h: 78px;
  }

  .header-shell {
    grid-template-columns: 210px 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 205px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 8px;
  }

  .brand > img {
    width: 50px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    margin-top: 4px;
    font-size: 7.4px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .nav-link,
  .nav-trigger {
    font-size: 12px;
  }

  .header-actions .btn {
    padding-inline: 14px;
    font-size: 12px;
  }

  .feature-item {
    grid-template-columns: 43px 1fr;
    padding-inline: 12px;
  }

  .feature-icon {
    width: 43px;
    height: 43px;
  }

  .feature-icon i,
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .icon-feature {
    padding-inline: 11px;
  }

  .drive-benefits.icon-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .drive-benefits .icon-feature:nth-child(4) {
    border-right: 0;
  }

  .drive-benefits .icon-feature:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

  .tefa-panel {
    grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.4fr) minmax(230px, 0.8fr);
    gap: 20px;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-slide {
    flex-basis: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }
}

@media (min-width: 1081px) {
  .mobile-menu,
  .mobile-menu.is-open {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
    visibility: hidden !important;
  }
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .split-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 64px var(--page-gutter) 52px;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(40px, 6.4vw, 60px);
  }

  .hero-media {
    min-height: clamp(360px, 45vw, 480px);
  }

  .hero-media::before {
    inset: 0 0 auto;
    width: auto;
    height: 85px;
    background: linear-gradient(180deg, white, transparent);
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .split-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 62px var(--page-gutter) 50px;
  }

  .hero-copy h1 {
    max-width: 700px;
    font-size: clamp(40px, 7vw, 60px);
  }

  .hero-media {
    min-height: clamp(340px, 52vw, 420px);
  }

  .hero-media::before {
    inset: 0 0 auto;
    width: auto;
    height: 85px;
    background: linear-gradient(180deg, white, transparent);
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .feature-item:nth-child(even) {
    border-right: 0;
  }

  .feature-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    border-right: 0;
  }

  .icon-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .drive-benefits.icon-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-feature:nth-child(even) {
    border-right: 0;
  }

  .icon-feature:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .icon-feature:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
    border-right: 0;
  }

  .path-grid,
  .testimonial-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-slide {
    flex-basis: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .path-card-media {
    height: auto;
    min-height: 220px;
    max-height: 320px;
  }

  .path-card-body p {
    min-height: 0;
  }

  .path-badge {
    top: auto;
  }

  .pricing-preview,
  .tefa-panel,
  .safety-module,
  .safety-module.reverse,
  .home-safety,
  .drive-qualifications {
    grid-template-columns: 1fr;
  }

  .home-safety .safety-photo {
    min-height: 310px;
  }

  .tefa-badge {
    justify-content: start;
  }

  .membership-grid {
    row-gap: 58px;
  }

  .progress-list {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .factor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 0;
  }

  .factor:nth-child(even) {
    border-right: 0;
  }

  .factor:last-child {
    grid-column: 1 / -1;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-option {
    padding-block: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .payment-option:last-child {
    border-bottom: 0;
  }

  .faq-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-tab:last-child {
    grid-column: 1 / -1;
  }

  .driver-faq-grid,
  .proprietary-banner,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .driver-faq-grid {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .drive-qualifications {
    gap: 28px;
  }

  .proprietary-icons {
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .contact-item {
    justify-content: flex-start;
    border-top: 1px solid #d8dfd2;
    border-left: 0;
  }

  .technology-callout {
    grid-column: auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 10px;
  }

  .steps::before {
    display: none;
  }

  .step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .cta-band-inner,
  .cta-band.compact .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-block: 38px;
  }

  .cta-spacer {
    display: none;
  }

  .cta-band.compact .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .cta-image {
    width: 42%;
    opacity: 0.28;
  }

  .benefit-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .benefit-strip-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    display: grid;
    max-width: 660px;
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 25px;
    grid-column: auto;
  }

  .footer-brand .footer-logo {
    grid-row: 1 / 3;
  }

  .footer-brand p {
    max-width: 360px;
    margin-top: 0;
  }

  .footer-contact {
    margin-top: 12px;
  }

  .footer-navigation {
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 20px;
    --page-inset: 40px;
    --section-space: 56px;
    --section-space-tight: 48px;
    --header-h: 72px;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .section-tight {
    padding: var(--section-space-tight) 0;
  }

  .shell,
  .header-shell {
    width: min(calc(100% - var(--page-inset)), var(--page));
  }

  .brand {
    width: 185px;
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 8px;
  }

  .brand > img {
    width: 47px;
  }

  .brand-name {
    font-size: 20.5px;
  }

  .brand-tagline {
    font-size: 7px;
  }

  .hero-copy {
    min-height: 370px;
    padding: 54px var(--page-gutter) 46px;
  }

  .hero-copy h1 {
    margin-bottom: 20px;
    font-size: clamp(35px, 10.5vw, 48px);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-media img {
    transform: scale(1.06);
  }

  .home-hero .hero-media img {
    object-position: 74% 50%;
  }

  .family-hero .hero-media img {
    object-position: 69% 50%;
  }

  .pricing-hero .hero-media img {
    object-position: 78% 50%;
  }

  .faq-hero .hero-media img {
    object-position: 69% 48%;
  }

  .drive-hero .hero-media img,
  .driver-faq-hero .hero-media img {
    object-position: 68% 48%;
  }

  .phone-card {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 16px 19px;
    border-radius: 12px;
  }

  .phone-card strong {
    font-size: 17px;
  }

  .feature-row,
  .icon-features,
  .drive-benefits.icon-features,
  .factor-grid,
  .faq-tabs,
  .qualification-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(even),
  .icon-feature,
  .icon-feature:nth-child(even),
  .drive-benefits .icon-feature:nth-child(4) {
    border-right: 0;
  }

  .feature-item:last-child:nth-child(odd),
  .benefit-strip-item:last-child:nth-child(odd) {
    max-width: none;
  }

  .icon-feature:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .icon-feature:nth-child(n + 2),
  .drive-benefits .icon-feature:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-heading::before,
  .section-heading::after {
    width: 28px;
  }

  .path-card-media {
    height: auto;
    min-height: 200px;
    max-height: 280px;
  }

  .path-badge {
    top: auto;
  }

  .pricing-preview,
  .tefa-panel,
  .factor-panel,
  .payment-panel {
    padding: 28px 22px;
  }

  .path-card-body {
    padding: 36px 23px 26px;
  }

  .secure-line {
    margin: 18px 0 0;
    font-size: 12px;
  }

  .phone-checks,
  .driver-testimonial {
    grid-template-columns: 1fr;
  }

  .phone-checks img {
    max-height: 280px;
  }

  .testimonial-track {
    gap: 0;
  }

  .testimonial-toolbar {
    align-items: flex-end;
  }

  .testimonial-toolbar > p {
    max-width: 230px;
  }

  .testimonial-slide {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .footer-logo {
    width: 148px;
  }

  .footer-brand .footer-logo img {
    width: 148px;
    height: 148px;
  }

  .testimonial-carousel-footer {
    grid-template-columns: 1fr auto;
  }

  .tefa-badge img {
    width: 180px;
  }

  .safety-photo {
    min-height: 250px;
  }

  .safety-copy {
    padding: 28px 22px;
  }

  .mini-check-grid,
  .steps,
  .benefit-strip-grid {
    grid-template-columns: 1fr;
  }

  .step:last-child:nth-child(odd),
  .factor:last-child,
  .faq-tab:last-child,
  .benefit-strip-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .membership-card {
    margin-top: 23px;
  }

  .faq-tab:last-child {
    grid-column: auto;
  }

  .accordion-trigger {
    padding-inline: 11px;
    font-size: 12px;
  }

  .accordion-panel {
    padding: 0 12px 0 48px;
  }

  .accordion-item.is-open .accordion-panel {
    padding-bottom: 12px;
  }

  .driver-faq-grid .accordion-panel {
    padding: 0 18px 16px 14px;
  }

  .driver-faq-grid .accordion-item.is-collapsed .accordion-panel {
    padding-bottom: 0;
  }

  .proprietary-banner {
    padding: 22px 18px;
  }

  .proprietary-copy {
    grid-template-columns: 1fr;
  }

  .proprietary-icons {
    grid-template-columns: 1fr;
  }

  .proprietary-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .proprietary-icon i,
  .proprietary-icon svg {
    margin: 0;
  }

  .driver-quote {
    padding: 55px 22px 25px;
  }

  .driver-quote::before {
    top: 10px;
    left: 20px;
  }

  .driver-photo {
    min-height: 220px;
  }

  .cta-band h2 {
    font-size: 29px;
  }

  .cta-actions,
  .cta-actions .btn,
  .cta-band.compact .cta-actions {
    width: 100%;
  }

  .cta-band.compact .cta-actions {
    display: grid;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand {
    display: block;
    max-width: 330px;
  }

  .footer-brand .footer-logo {
    grid-row: auto;
  }

  .footer-brand p {
    margin-top: 8px;
  }

  .footer-contact {
    margin-top: 16px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column a {
    display: flex;
    min-height: 44px;
    align-items: center;
    margin: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .editorial-grid,
  .district-section,
  .careers-openings,
  .contact-form-layout,
  .contact-detail-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .district-section,
  .contact-form-layout,
  .contact-detail-grid,
  .legal-layout {
    gap: 38px;
  }

  .partnership-panel,
  .service-facts,
  .office-card {
    width: 100%;
  }

  .district-grid,
  .safety-standards-grid,
  .contact-next-steps,
  .suggestion-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .district-grid a {
    min-height: 76px;
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    min-height: 150px;
  }

  .contact-form-promise {
    max-width: 560px;
  }

  .contact-next-steps article:last-child,
  .suggestion-detail-grid article:last-child {
    grid-column: 1 / -1;
  }

  .suggestion-note {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .suggestion-note .btn {
    grid-column: 2;
    justify-self: start;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }

  .legal-content {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .editorial-actions,
  .editorial-actions .btn {
    width: 100%;
  }

  .district-grid,
  .safety-standards-grid,
  .service-facts,
  .contact-next-steps,
  .suggestion-detail-grid,
  .about-gallery,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .service-facts div,
  .service-facts div:nth-child(even),
  .service-facts div:nth-last-child(-n + 2) {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-facts div:last-child {
    border-bottom: 0;
  }

  .safety-standard {
    min-height: 0;
  }

  .about-milestones .shell {
    grid-template-columns: 1fr;
  }

  .about-milestones .shell > div,
  .about-milestones .shell > div:first-child,
  .about-milestones .shell > div:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-milestones .shell > div:last-child {
    border-bottom: 0;
  }

  .about-gallery figure,
  .about-gallery .about-gallery__wide {
    min-height: 290px;
    grid-column: auto;
  }

  .about-gallery .about-gallery__wide {
    min-height: 230px;
  }

  .careers-openings {
    padding: 28px 22px;
  }

  .contact-channel {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 23px 20px;
  }

  .contact-channel > span {
    width: 48px;
    height: 48px;
  }

  .contact-channel > svg:last-child,
  .contact-channel > i:last-child {
    display: none;
  }

  .contact-form-fields.two {
    grid-template-columns: 1fr;
  }

  .contact-form-fields .span-two {
    grid-column: auto;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .contact-form-actions p {
    text-align: left;
  }

  .office-card {
    padding: 30px 23px;
  }

  .contact-next-steps article:last-child,
  .suggestion-detail-grid article:last-child {
    grid-column: auto;
  }

  .suggestion-note {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .suggestion-note .btn {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
  }

  .legal-hero {
    padding: 62px 0 52px;
  }

  .legal-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .legal-meta {
    display: grid;
    gap: 4px;
  }

  .legal-nav strong {
    grid-column: auto;
  }

  .legal-lead {
    padding: 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 13.5px;
  }
}

@media (hover: none), (pointer: coarse) {
  .btn:hover,
  .path-card:hover,
  .membership-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .path-card:hover {
    border-color: var(--line);
    box-shadow: 0 0 0 rgba(6, 27, 79, 0);
  }

  .path-card:hover .path-card-media img {
    transform: scale(1.18);
  }

  .text-link:hover svg,
  .text-link:hover i,
  .path-card:hover .text-link svg,
  .path-card:hover .text-link i {
    transform: none;
  }
}

@media (max-width: 980px) {
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .directory-featured,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-card,
  .directory-card--featured {
    min-height: 0;
    padding: 23px 20px;
  }
}

@media (max-width: 520px) {
  .home-trust-proof {
    padding: 14px 0;
  }

  .family-trust-pill {
    min-height: 0;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 26px;
  }

  .family-trust-stars {
    font-size: 22px;
  }

  .family-trust-pill p {
    font-size: 15px;
    line-height: 1.35;
  }

  .directory-role-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 390px) {
  .testimonial-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .testimonial-toolbar > p {
    min-width: 0;
    max-width: none;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .motion-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }
}

/* v3 document-led page revisions — July 2026 */
select,
textarea {
  font: inherit;
}

.trust-strip {
  padding-block: clamp(39px, 4vw, 48px);
}

.path-heading {
  max-width: 760px;
  margin: 0 auto 28px;
}

.path-heading h2,
.leadership-heading h2 {
  margin: -3px 0 8px;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.08;
}

.path-heading > p:last-child,
.membership-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.path-footnote {
  display: flex;
  max-width: 760px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.path-footnote svg,
.path-footnote i {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--navy-2);
}

.planning-preview,
.plan-builder {
  padding: clamp(34px, 4vw, 54px);
  background: white;
}

.planning-preview__intro,
.plan-builder__heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.planning-preview__intro h2,
.plan-builder__heading h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.06;
}

.planning-preview__intro p:last-child,
.plan-builder__heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.planning-preview__body,
.plan-builder__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.82fr) minmax(230px, 0.92fr);
  align-items: stretch;
  gap: 24px;
}

.planning-preview__steps,
.plan-builder__grid > div {
  display: flex;
  align-items: center;
}

.planning-steps {
  width: 100%;
}

.planning-steps .step {
  padding-inline: 8px;
}

.planning-steps .step h3 {
  font-size: 14px;
}

.planning-steps .step p {
  font-size: 11px;
}

.planning-preview__photo,
.plan-builder__grid > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 14px;
  object-fit: cover;
  object-position: 58% center;
}

.planning-preview__outcomes,
.plan-builder__grid > ul {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.planning-preview__outcomes li,
.plan-builder__grid > ul li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
}

.planning-preview__outcomes li:last-child,
.plan-builder__grid > ul li:last-child {
  border-bottom: 0;
}

.planning-preview__outcomes svg,
.planning-preview__outcomes i,
.plan-builder__grid > ul svg,
.plan-builder__grid > ul i {
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}

.planning-preview__outcomes strong,
.planning-preview__outcomes span,
.plan-builder__grid > ul strong,
.plan-builder__grid > ul span {
  display: block;
}

.planning-preview__outcomes strong,
.plan-builder__grid > ul strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 13px;
}

.planning-preview__callout,
.plan-builder__action {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(280px, 0.8fr);
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(91, 152, 26, 0.25);
  border-radius: 13px;
  background: linear-gradient(90deg, #f4f9ef, #fff);
}

.planning-preview__callout > div,
.plan-builder__action > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.planning-preview__callout > div > svg,
.planning-preview__callout > div > i,
.plan-builder__action > div > svg,
.plan-builder__action > div > i {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 10px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}

.planning-preview__callout > p,
.plan-builder__action > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.planning-preview__callout > p svg,
.planning-preview__callout > p i,
.plan-builder__action > p svg,
.plan-builder__action > p i {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: var(--green-dark);
}

.home-safety-v3 {
  display: grid;
  grid-template-columns: minmax(250px, 0.88fr) minmax(280px, 1.05fr) minmax(350px, 1.3fr);
  overflow: hidden;
  background: white;
}

.home-safety-v3__copy {
  padding: clamp(30px, 4vw, 46px);
}

.safety-title-lockup {
      display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 22px;
    flex-direction: column;
}

.safety-title-lockup img {
  width: 66px;
  height: auto;
}

.safety-title-lockup h2 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.02;
}

.home-safety-v3__copy > p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.home-safety-v3__copy > small {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--navy);
  font-size: 11px;
}

.home-safety-v3__copy > small svg,
.home-safety-v3__copy > small i {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}

.home-safety-v3__photo {
  min-height: 500px;
  overflow: hidden;
}

.home-safety-v3__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.home-safety-v3__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 22px 18px;
  padding: 34px;
}

.home-safety-v3__features article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}

.home-safety-v3__features article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--navy-2);
}

.home-safety-v3__features article svg,
.home-safety-v3__features article i {
  width: 24px;
  height: 24px;
}

.home-safety-v3__features h3 {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.35;
}

.home-safety-v3__features p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.home-safety-v3__commitment {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(250px, 0.8fr) minmax(300px, 1fr);
  align-items: center;
  gap: 20px;
  margin: 0 clamp(30px, 4vw, 52px);
  padding: 20px 28px;
  border: 1px solid rgba(91, 152, 26, 0.22);
  border-radius: 12px;
  background: #f6f9f3;
}

.home-safety-v3__commitment > svg,
.home-safety-v3__commitment > i {
  width: 45px;
  height: 45px;
  color: var(--green-dark);
}

.home-safety-v3__commitment span,
.home-safety-v3__commitment strong {
  display: block;
}

.home-safety-v3__commitment span {
  color: var(--green-dark);
  font-weight: 700;
}

.home-safety-v3__commitment strong {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.home-safety-v3__commitment p {
  padding-left: 25px;
  margin: 0;
  border-left: 1px solid rgba(6, 27, 79, 0.2);
  color: var(--navy);
  font-size: 13px;
}

.home-safety-v3__stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px clamp(30px, 4vw, 52px) 32px;
}

.home-safety-v3__stats > div,
.footer-proof > div,
.safety-commitment__stats > div,
.about-communities__stats > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.home-safety-v3__stats > div:last-child,
.footer-proof > div:last-child,
.safety-commitment__stats > div:last-child,
.about-communities__stats > div:last-child {
  border-right: 0;
}

.home-safety-v3__stats svg,
.home-safety-v3__stats i {
  width: 42px;
  height: 42px;
  color: var(--navy-2);
}

.home-safety-v3__stats small,
.home-safety-v3__stats strong,
.home-safety-v3__stats em {
  display: block;
}

.home-safety-v3__stats small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-safety-v3__stats strong {
  color: var(--green-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
}

.home-safety-v3__stats em {
  margin-top: 1px;
  color: var(--navy);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reviews-heading-row {
  position: relative;
}

.reviews-heading-row .section-heading {
  margin-bottom: 28px;
}

.google-reviews-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin: 0 0 17px auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.google-reviews-button svg,
.google-reviews-button i {
  width: 16px;
  height: 16px;
}

.google-g {
  display: inline-grid;
  width: 28px;
  place-items: center;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 64%, #ea4335 0 80%, #4285f4 0);
  background-clip: text;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  -webkit-background-clip: text;
}

/* How we build / membership page */
.membership-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.membership-heading .section-heading {
  margin-bottom: 12px;
}

.membership-grid--detailed {
  gap: 26px;
  margin-top: 72px;
}

.membership-card--detailed {
  min-height: 650px;
  justify-content: flex-start;
  padding: 65px 30px 30px;
  text-align: left;
}

.membership-card--detailed.is-featured {
  border: 2px solid var(--green);
}

.membership-card--detailed .membership-icon {
  background: var(--green);
}

.membership-card--detailed:nth-child(2) .membership-icon {
  background: #1469d1;
}

.membership-card--detailed:nth-child(3) .membership-icon {
  background: var(--navy);
  color: var(--gold);
}

.membership-badge {
  align-self: center;
  padding: 6px 14px;
  margin: -18px 0 13px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.membership-card--detailed h3 {
  margin-bottom: 2px;
  text-align: center;
  font-size: 22px;
}

.membership-card--detailed > p {
  text-align: center;
}

.membership-card--detailed .membership-kicker {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.membership-card--detailed:nth-child(2) .membership-kicker {
  color: #1469d1;
}

.membership-card--detailed:nth-child(3) .membership-kicker {
  color: #ad7900;
}

.membership-feature-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.membership-feature-list li {
  display: grid;
  min-height: 52px;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.membership-feature-list li svg,
.membership-feature-list li i {
  width: 23px;
  height: 23px;
  color: var(--green-dark);
}

.membership-feature-list small {
  display: block;
  grid-column: 2;
  margin-top: -8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.membership-review {
  background: #eef5fc;
}

.membership-review span {
  color: var(--green-dark);
  font-weight: 700;
}

.membership-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.membership-process > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.membership-process > div svg,
.membership-process > div i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 9px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy-2);
}

.membership-process strong,
.membership-process span {
  display: block;
}

.membership-process strong {
  color: var(--navy);
  font-size: 12px;
}

.membership-process span {
  color: var(--muted);
  font-size: 10px;
}

/* Safety page additions */
.safety-commitment {
  overflow: hidden;
  padding: 0;
  background: var(--navy);
  color: white;
}

.safety-commitment .section-heading {
  margin: 0;
  padding: 24px 28px;
}

.safety-commitment .section-heading h2 {
  color: white;
}

.safety-commitment .section-heading::before,
.safety-commitment .section-heading::after {
  background: rgba(226, 181, 45, 0.6);
}

.safety-commitment__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 28px 30px;
}

.safety-commitment__grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  padding: 10px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.safety-commitment__grid article:last-child {
  border-right: 0;
}

.safety-commitment__grid article > svg,
.safety-commitment__grid article > i {
  width: 45px;
  height: 45px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
}

.safety-commitment__grid h3 {
  margin-bottom: 6px;
  color: #8fce42;
  font-size: 14px;
}

.safety-commitment__grid ul {
  padding-left: 17px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10.5px;
  line-height: 1.6;
}

.safety-commitment__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 22px;
  background: white;
  color: var(--navy);
}

.safety-commitment__stats svg,
.safety-commitment__stats i,
.about-communities__stats svg,
.about-communities__stats i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--navy-2);
}

.safety-commitment__stats strong,
.safety-commitment__stats small,
.about-communities__stats strong,
.about-communities__stats small {
  display: block;
}

.safety-commitment__stats strong,
.about-communities__stats strong {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}

.safety-commitment__stats small,
.about-communities__stats small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.safety-faq-grid,
.suggestion-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.safety-faqs__more {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.safety-faqs__more a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
}

/* About page */
.about-milestones .shell > div {
  grid-template-columns: 46px minmax(0, 1fr);
}

.about-milestones .shell > div > svg,
.about-milestones .shell > div > i {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(226, 181, 45, 0.75);
  border-radius: 50%;
  color: var(--gold);
}

.about-milestones span,
.about-milestones b,
.about-milestones small {
  display: block;
}

.about-milestones b {
  color: white;
  font-size: 12px;
}

.about-milestones small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.leadership-heading {
  margin-bottom: 30px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.leadership-grid article,
.community-team-grid article {
  padding: 25px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--panel-shadow);
  text-align: center;
}

.leadership-avatar,
.community-team-grid article > span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-2), #1778d6);
  box-shadow: inset 0 0 0 5px white, 0 0 0 1px var(--line);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.leadership-grid h3,
.community-team-grid h3 {
  margin-bottom: 3px;
  font-size: 14px;
}

.leadership-grid strong,
.community-team-grid strong {
  display: block;
  color: var(--green-dark);
  font-size: 11px;
}

.leadership-grid p,
.community-team-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.5;
}

.about-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-difference-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}

.about-difference-grid svg,
.about-difference-grid i {
  width: 52px;
  height: 52px;
  padding: 12px;
  margin: 0 auto 13px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.about-difference-grid h3 {
  margin-bottom: 7px;
  font-size: 15px;
}

.about-difference-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.community-team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.community-team-grid article > span {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--green-dark), #79b72d);
  font-size: 20px;
}

.about-communities {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.35fr) minmax(180px, 0.45fr);
  gap: 20px;
}

.about-communities__lists {
  display: grid;
  align-content: start;
  gap: 20px;
}

.about-communities__lists > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.about-communities__lists h2 {
  margin-bottom: 12px;
  font-size: 16px;
}

.about-communities__lists ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 14px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.about-communities__lists li::before {
  margin-right: 6px;
  color: var(--green);
  content: "⌖";
}

.about-communities__map {
  width: 100%;
  height: 100%;
  min-height: 530px;
  border-radius: 12px;
  object-fit: cover;
}

.about-communities__stats {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.about-communities__stats > div {
  justify-content: flex-start;
  padding: 18px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.about-communities__stats > div:last-child {
  border-bottom: 0;
}

.about-careers-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  overflow: hidden;
  background: white;
}

.about-careers-band > div {
  padding: 32px;
}

.about-careers-band h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.about-careers-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}

.about-careers-band > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

/* Suggest a School landing page */
.community-add-steps .step h3 {
  font-size: 14px;
}

.suggestion-dashboard {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.45fr);
  align-items: start;
  gap: 20px;
}

.suggestion-request-card,
.community-history,
.evaluation-table {
  padding: 26px;
  background: white;
}

.suggestion-request-card h2,
.community-history h2,
.evaluation-table h2 {
  margin-bottom: 7px;
  font-size: 22px;
}

.suggestion-request-card > p,
.evaluation-table > p {
  color: var(--muted);
  font-size: 12px;
}

.suggestion-summary-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.suggestion-summary-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.suggestion-summary-list svg,
.suggestion-summary-list i {
  width: 39px;
  height: 39px;
  padding: 8px;
  border-radius: 10px;
  background: var(--sky);
  color: var(--navy-2);
}

.suggestion-summary-list strong,
.suggestion-summary-list span {
  display: block;
}

.suggestion-summary-list strong {
  color: var(--navy);
  font-size: 12px;
}

.suggestion-summary-list span {
  color: var(--muted);
  font-size: 10.5px;
}

.suggestion-request-card .btn {
  width: 100%;
}

.suggestion-request-card > small {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9.5px;
}

.suggestion-request-card > small svg,
.suggestion-request-card > small i {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.suggestion-growth {
  display: grid;
  gap: 16px;
}

.community-history ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.community-history li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--navy);
  font-size: 10px;
}

.community-history li::after {
  position: absolute;
  top: 11px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 1px;
  background: var(--line);
  content: "";
}

.community-history li:last-child::after {
  display: none;
}

.community-history li > span {
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
}

.community-history small {
  color: var(--muted);
}

.community-history > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px;
  margin: 0;
  border: 1px solid rgba(91, 152, 26, 0.25);
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--navy);
  font-size: 11px;
}

.community-history > p svg,
.community-history > p i {
  width: 25px;
  height: 25px;
  color: var(--navy-2);
}

.evaluation-table [role="table"] {
  display: grid;
  margin-top: 14px;
}

.evaluation-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.6fr;
  gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.evaluation-table [role="row"]:first-child {
  color: var(--navy);
  font-weight: 800;
}

.evaluation-table [role="cell"]:nth-child(2)::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.evaluation-callout {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 15px;
  padding: 12px;
  border-radius: 10px;
  background: var(--sky);
}

.evaluation-callout > svg,
.evaluation-callout > i {
  width: 34px;
  height: 34px;
  color: var(--navy-2);
}

.evaluation-callout span,
.evaluation-callout strong {
  display: block;
  color: var(--muted);
  font-size: 9.5px;
}

.evaluation-callout strong {
  color: var(--navy);
  font-size: 11px;
}

/* School request form */
.request-progress {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: white;
}

.request-progress ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 0;
  margin-block: 0;
  list-style: none;
}

.request-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.request-progress li::after {
  position: absolute;
  top: 15px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 1px;
  background: var(--line);
  content: "";
}

.request-progress li:last-child::after {
  display: none;
}

.request-progress li > span {
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eef1f4;
}

.request-progress li.is-active {
  color: var(--navy);
}

.request-progress li.is-active > span {
  background: var(--green);
  color: white;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 20px;
}

.school-request-form {
  display: grid;
  gap: 12px;
}

.request-section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: white;
}

.request-section__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
}

.request-section__icon svg,
.request-section__icon i {
  width: 25px;
  height: 25px;
}

.request-section__content h2 {
  margin-bottom: 14px;
  font-size: 17px;
}

.request-section__content > p {
  margin: -8px 0 8px;
  color: var(--muted);
  font-size: 10px;
}

.request-fields {
  display: grid;
  gap: 12px;
}

.request-fields.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.request-fields.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-fields.location {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-fields.location .span-two {
  grid-column: span 2;
}

.request-section label {
  display: grid;
  gap: 5px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
}

.request-section input,
.request-section select,
.request-section textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cfd8e3;
  border-radius: 7px;
  background: white;
  color: var(--navy);
  font-size: 12px;
}

.request-section textarea {
  min-height: 108px;
  resize: vertical;
}

.request-section input:focus,
.request-section select:focus,
.request-section textarea:focus {
  border-color: var(--navy-2);
  outline: 3px solid rgba(11, 44, 103, 0.12);
}

.request-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 12px;
  padding: 0;
  margin: 0 0 12px;
  border: 0;
}

.request-checks label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
}

.request-checks input,
.request-consent input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 auto;
  margin: 0;
}

.other-detail {
  max-width: 100%;
}

.request-form-actions,
.request-review {
  padding: 22px;
  background: white;
}

.request-form-actions {
  display: grid;
  gap: 13px;
}

.request-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.request-form-actions > div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.request-form-actions > p {
  min-height: 18px;
  margin: 0;
  color: var(--green-dark);
  font-size: 11px;
  text-align: right;
}

.request-form-actions > p.is-error {
  color: #a33131;
}

.request-review[hidden] {
  display: none;
}

.request-review {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.request-review h2 {
  margin-bottom: 8px;
}

.request-review dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  margin: 20px 0;
}

.request-review dt,
.request-review dd {
  padding: 9px 12px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.request-review dt {
  color: var(--navy);
  font-weight: 800;
}

.request-review dd {
  color: var(--muted);
}

.request-review__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 12px;
}

.request-sidebar article {
  padding: 22px;
  background: white;
}

.request-sidebar h2 {
  margin-bottom: 12px;
  font-size: 16px;
}

.request-sidebar p,
.request-sidebar li,
.request-sidebar a,
.request-sidebar span {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.request-impact {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  border-color: rgba(91, 152, 26, 0.25);
  background: var(--green-soft) !important;
}

.request-impact > svg,
.request-impact > i {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: white;
  color: var(--green-dark);
}

.sidebar-check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-check-list li::before {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  content: "✓";
}

.request-next {
  background: #eef6ff !important;
}

.request-next ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.request-questions {
  display: grid;
  gap: 7px;
}

.request-questions a,
.request-questions > span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.request-questions svg,
.request-questions i {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #1471b9;
}

/* Expanded footer from the homepage document */
.footer-grid {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.8fr);
  gap: clamp(38px, 5vw, 70px);
}

.footer-brand .footer-logo,
.footer-brand .footer-logo img {
  width: 154px;
  height: 154px;
  object-fit: contain;
}


.footer-navigation {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
}

.footer-service-column > p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin: 13px 0;
}

.footer-social {
  display: grid !important;
  width: 38px;
  min-height: 38px !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.footer-social svg,
.footer-social i {
  width: 18px;
  height: 18px;
}

.google-review-link {
  display: flex !important;
  min-height: 58px !important;
  align-items: center !important;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.google-review-link strong,
.google-review-link small {
  display: block;
}

.google-review-link strong {
  color: white;
  font-size: 11px;
}

.google-review-link small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.footer-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  padding: 24px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-proof > div {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-proof svg,
.footer-proof i {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  color: white;
}

.footer-proof strong,
.footer-proof small {
  display: block;
}

.footer-proof strong {
  color: white;
  font-size: 11px;
  line-height: 1.35;
}

.footer-proof small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 20px;
  border-top: 0;
}

@media (max-width: 1180px) {
  .planning-preview__body,
  .plan-builder__grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.8fr);
  }

  .planning-preview__outcomes,
  .plan-builder__grid > ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .home-safety-v3 {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.1fr);
  }

  .home-safety-v3__features {
    grid-column: 1 / -1;
  }

  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-communities {
    grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  }

  .about-communities__stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-communities__stats > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .about-communities__stats > div:last-child {
    border-right: 0;
  }
}

@media (max-width: 1080px) {
  .planning-preview__callout,
  .plan-builder__action {
    grid-template-columns: 1fr auto;
  }

  .planning-preview__callout > p,
  .plan-builder__action > p {
    grid-column: 1 / -1;
  }

  .membership-grid--detailed {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .membership-card--detailed {
    min-height: 0;
  }

  .membership-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .membership-process > .btn {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .safety-commitment__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .safety-commitment__grid article:nth-child(2) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-navigation {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .planning-preview__body,
  .plan-builder__grid {
    grid-template-columns: 1fr;
  }

  .planning-preview__outcomes,
  .plan-builder__grid > ul {
    grid-column: auto;
  }

  .planning-preview__photo,
  .plan-builder__grid > img {
    max-height: 440px;
  }

  .home-safety-v3 {
    grid-template-columns: 1fr;
  }

  .home-safety-v3__features,
  .home-safety-v3__commitment,
  .home-safety-v3__stats {
    grid-column: auto;
  }

  .home-safety-v3__commitment {
    grid-template-columns: auto 1fr;
  }

  .home-safety-v3__commitment p {
    grid-column: 1 / -1;
    padding: 14px 0 0;
    border-top: 1px solid rgba(6, 27, 79, 0.2);
    border-left: 0;
  }

  .safety-commitment__stats,
  .footer-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .safety-commitment__stats > div:nth-child(2),
  .footer-proof > div:nth-child(2) {
    border-right: 0;
  }

  .safety-faq-grid,
  .suggestion-faq-grid,
  .suggestion-dashboard,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-communities {
    grid-template-columns: 1fr;
  }

  .about-communities__map {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .home-trust-proof {
    padding-block: 28px;
  }

  .path-heading {
    text-align: left;
  }

  .path-footnote {
    align-items: flex-start;
  }

  .planning-preview,
  .plan-builder {
    padding: 25px 18px;
  }

  .planning-steps {
    grid-template-columns: 1fr !important;
  }

  .planning-preview__outcomes,
  .plan-builder__grid > ul {
    grid-template-columns: 1fr;
  }

  .planning-preview__callout,
  .plan-builder__action {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .planning-preview__callout > p,
  .plan-builder__action > p {
    grid-column: auto;
  }

  .planning-preview__callout .btn,
  .plan-builder__action .btn {
    width: 100%;
  }

  .home-safety-v3__photo {
    min-height: 380px;
  }

  .home-safety-v3__features {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .home-safety-v3__commitment {
    grid-template-columns: 1fr;
    margin-inline: 16px;
  }

  .home-safety-v3__stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-safety-v3__stats > div,
  .footer-proof > div,
  .safety-commitment__stats > div,
  .about-communities__stats > div {
    justify-content: flex-start;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-safety-v3__stats > div:last-child,
  .footer-proof > div:last-child,
  .safety-commitment__stats > div:last-child,
  .about-communities__stats > div:last-child {
    border-bottom: 0;
  }

  .reviews-heading-row .section-heading {
    justify-content: flex-start;
    text-align: left;
  }

  .google-reviews-button {
    margin-left: 0;
  }

  .membership-process {
    grid-template-columns: 1fr;
  }

  .membership-process > .btn {
    grid-column: auto;
    width: 100%;
  }

  .safety-commitment__grid,
  .safety-commitment__stats,
  .about-difference-grid,
  .leadership-grid,
  .community-team-grid,
  .about-communities__stats,
  .footer-proof {
    grid-template-columns: 1fr;
  }

  .safety-commitment__grid article {
    border-right: 0;
  }

  .about-milestones .shell {
    grid-template-columns: 1fr;
  }

  .about-milestones .shell > div {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-milestones .shell > div:last-child {
    border-bottom: 0;
  }

  .about-communities__map {
    min-height: 320px;
  }

  .about-communities__stats > div {
    padding-inline: 16px;
  }

  .about-careers-band {
    grid-template-columns: 1fr;
  }

  .community-history ol {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .community-history li {
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .community-history li::after {
    display: none;
  }

  .evaluation-callout {
    grid-template-columns: 35px 1fr;
  }

  .evaluation-callout .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .request-progress {
    overflow-x: auto;
  }

  .request-progress ol {
    width: 760px;
  }

  .request-section {
    grid-template-columns: 1fr;
  }

  .request-fields.two,
  .request-fields.three,
  .request-fields.location,
  .request-checks {
    grid-template-columns: 1fr;
  }

  .request-fields.location .span-two {
    grid-column: auto;
  }

  .request-form-actions > div,
  .request-review__actions {
    display: grid;
  }

  .request-form-actions .btn,
  .request-review__actions .btn {
    width: 100%;
  }

  .request-sidebar {
    grid-template-columns: 1fr;
  }

  .request-review dl {
    grid-template-columns: 1fr;
  }

  .request-review dd {
    padding-top: 0;
  }

  .footer-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-proof > div {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 980px) {
  .city-schools-heading,
  .city-school-explorer,
  .city-hq-panel,
  .city-franchise-panel,
  .richardson-leadership-panel,
  .city-faq-layout {
    grid-template-columns: 1fr;
  }

  .city-faq-layout {
    gap: 42px;
  }

  .city-school-facts {
    justify-content: flex-start;
  }

  .city-map-panel,
  .city-faq-layout .city-section-heading {
    position: static;
  }

  .city-map-panel {
    width: 100%;
    padding-left: 0;
    border-top: 1px solid rgba(11, 44, 103, 0.14);
    border-left: 0;
  }

  .city-hq-panel,
  .city-franchise-panel,
  .richardson-leadership-panel {
    gap: 32px;
  }

  .garland-owner-grid {
    grid-template-columns: 1fr;
  }

  .owner-team-card {
    min-height: 0;
  }

  .city-standard-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .mobile-subnav {
    grid-template-columns: 1fr;
  }

  .city-hero-facts {
    display: grid;
  }

  .city-hero-facts > span {
    border-radius: 10px;
  }

  .city-phone-card {
    min-width: min(90%, 300px);
  }

  .city-schools-heading {
    gap: 24px;
  }

  .city-school-facts {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .city-school-facts > span {
    min-height: 30px;
    padding-inline: 11px;
    font-size: 9.5px;
  }

  .city-school-facts > span:first-child {
    padding-left: 0;
  }

  .city-school-local-note {
    font-size: 10.5px;
  }

  .city-school-explorer {
    margin-top: 28px;
  }

  .city-school-directory {
    padding: 24px 0 30px;
  }

  .city-school-directory__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .city-suggest-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .city-suggest-card > span {
    width: 44px;
    height: 44px;
  }

  .city-suggest-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .city-school-row {
    grid-template-columns: 22px 38px minmax(0, 1fr);
    gap: 10px;
    padding-block: 14px;
  }

  .city-school-row__icon {
    width: 38px;
    height: 38px;
  }

  .city-school-row__availability {
    grid-column: 3;
    justify-self: start;
    margin-top: -3px;
  }

  .city-map-panel {
    padding-block: 28px;
  }

  .city-route-map {
    min-height: 440px;
  }

  .city-route-map .route-map__legend {
    right: 14px;
    left: 14px;
  }

  .city-route-map .route-map__status {
    right: 58px;
    left: 14px;
  }

  .city-map-ownership,
  .city-standard-row {
    grid-template-columns: 1fr;
  }

  .city-map-ownership span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .city-map-check .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .city-hq-panel,
  .city-franchise-panel,
  .richardson-leadership-panel {
    padding: 23px 18px;
  }

  .city-leadership-profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .city-hq-photo,
  .city-hq-photo img {
    min-height: 230px;
  }

  .city-hq-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .city-faq-list .accordion-trigger {
    min-height: 72px;
    gap: 11px;
    padding: 13px;
    font-size: 13px;
  }

  .city-faq-list .question-icon {
    width: 38px;
    height: 38px;
  }

  .city-faq-list .accordion-panel {
    padding-right: 13px;
    padding-left: 13px;
  }

  .owner-team-actions,
  .owner-team-actions .btn {
    width: 100%;
  }

  .franchise-visual {
    min-height: 410px;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 28px 20px;
  }

  .franchise-visual__connector {
    top: 40%;
    right: 50%;
    bottom: 40%;
    left: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--gold) 0 7px, transparent 7px 13px);
    transform: translateX(50%);
  }

  .owner-team-card {
    grid-template-columns: 1fr;
    padding: 24px 19px;
  }

  .owner-team-card__content {
    padding: 0;
  }

  .owner-team-card__photo {
    min-height: 310px;
    order: -1;
    margin: -24px -19px 24px;
  }

  .owner-team-card__photo img {
    min-height: 310px;
  }

  .franchise-owner-photo,
  .franchise-owner-photo img {
    min-height: 340px;
  }
}


@media (min-width: 1081px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .nav-dropdown:hover .nav-trigger svg,
  .nav-dropdown:hover .nav-trigger i {
    transform: rotate(180deg);
  }
  
  .header-shell { position: relative; }
  .service-area-nav { position: static; }
  .service-area-nav .service-area-menu {
    top: calc(50% + 21px);
    left: 50%;
    right: auto;
    margin-top: 0;
    transform: translate(-50%, -8px) scale(0.985);
  }
  .service-area-nav:hover .service-area-menu {
    transform: translate(-50%, 0);
  }
}
