@font-face {
  font-family: "BJP Sans";
  src: url("/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --red: #d30b2b;
  --red-dark: #a90722;
  --red-soft: #fff0f3;
  --navy: #0c285d;
  --navy-deep: #071a39;
  --blue: #1c4f9d;
  --ink: #111c30;
  --muted: #5d687a;
  --line: #dce2eb;
  --white: #fff;
  --soft: #f4f6fa;
  --blue-soft: #edf3fb;
  --green: #087956;
  --amber: #955a06;
  --shadow-sm: 0 10px 32px rgba(7, 26, 57, 0.08);
  --shadow-md: 0 23px 62px rgba(7, 26, 57, 0.14);
  --shadow-lg: 0 38px 96px rgba(7, 26, 57, 0.2);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1320px;
  --header: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
  background: var(--navy-deep);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "BJP Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

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

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.9rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

:focus-visible {
  outline: 3px solid rgba(211, 11, 43, 0.48);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.section {
  position: relative;
  padding: clamp(76px, 8vw, 126px) 0;
}

.section--tight {
  padding-block: clamp(52px, 6vw, 84px);
}

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

.section--navy {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(57, 104, 180, 0.4), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy strong {
  color: var(--white);
}

.section--navy p {
  color: #c6d1e2;
}

.section--redline {
  border-top: 5px solid var(--red);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #ff9caf;
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid var(--red);
  border-radius: 9px;
  background: var(--red);
  box-shadow: 0 11px 24px rgba(211, 11, 43, 0.2);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 15px 35px rgba(211, 11, 43, 0.27);
  transform: translateY(-2px);
}

.button:disabled,
.button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button--large {
  min-height: 58px;
  padding: 16px 27px;
  font-size: 0.91rem;
}

.button--compact {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.77rem;
}

.button--outline {
  border-color: #c8d0dc;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button--white {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 13px 36px rgba(0, 0, 0, 0.15);
  color: var(--navy);
}

.button--white:hover {
  border-color: var(--white);
  background: #f4f7fc;
  color: var(--navy);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  box-shadow: none;
}

.button--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button svg,
.text-link svg,
.mega-all svg,
.state-card > svg,
.location-state-card > svg,
.inventory-card__footer svg,
.guide-card strong svg,
.footer-market-grid svg,
.nearby-link-grid svg,
.resource-grid strong svg,
.finance-grid strong svg,
.delivery-options a svg,
.state-resource__grid > a > svg,
.guide-index-grid strong svg {
  width: 18px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.button:hover svg,
.text-link:hover svg,
.mega-all:hover svg,
.inventory-card__footer a:hover svg,
.guide-card:hover strong svg,
.footer-market-grid a:hover svg,
.nearby-link-grid a:hover svg,
.resource-grid a:hover strong svg,
.finance-grid a:hover strong svg,
.delivery-options a:hover svg,
.state-resource__grid > a:hover > svg,
.guide-index-grid a:hover strong svg {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 820;
}

.text-link:hover {
  color: var(--red);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 640px;
  margin: 18px 0 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: end;
  gap: clamp(30px, 6vw, 86px);
}

.section-heading--split > p,
.section-heading--split > div:last-child p {
  margin: 0 0 12px;
}

.section-heading--left {
  max-width: 790px;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light p {
  color: #c3cfe1;
}

/* Header and navigation */
.top-rail {
  position: relative;
  z-index: 60;
  min-height: 38px;
  background: var(--navy-deep);
  color: #dce7f8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.top-rail__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-rail__inner > span,
.top-rail__inner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-rail svg {
  width: 14px;
}

.top-rail a {
  color: var(--white);
}

.top-rail a:hover {
  color: #ff9cad;
}

.top-rail__inventory {
  color: #b3c0d3;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(12, 40, 93, 0.09);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 10px 35px rgba(7, 26, 57, 0.1);
}

.site-header__inner {
  min-height: var(--header);
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-logo {
  width: clamp(205px, 18vw, 270px);
  flex: 0 0 auto;
}

.site-logo img {
  width: 100%;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.35vw, 24px);
  margin-left: auto;
}

.nav-trigger,
.nav-link {
  min-height: 44px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #26354c;
  font-size: clamp(0.73rem, 0.8vw, 0.85rem);
  font-weight: 760;
  white-space: nowrap;
}

.nav-trigger::after,
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 4px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-trigger:hover::after,
.nav-link:hover::after,
.mega-nav.is-open .nav-trigger::after {
  transform: scaleX(1);
}

.nav-trigger svg {
  width: 14px;
  transition: transform 0.25s ease;
}

.mega-nav.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

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

.header-call {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
}

.header-call:hover {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red);
}

.header-call svg,
.menu-toggle svg,
.top-rail svg,
.button-row svg,
.button-stack svg,
.footer-cta__actions svg,
.mobile-sticky-call svg,
.mobile-menu__call svg {
  width: 19px;
  flex: 0 0 auto;
}

.menu-toggle {
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: var(--navy);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mega-panel {
  position: absolute;
  z-index: 10;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  gap: 34px;
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 0 0 22px 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
}

.mega-nav.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-panel--inventory {
  grid-template-columns: 1.08fr 1fr 1fr;
}

.mega-panel--buy {
  grid-template-columns: 1fr 1.4fr;
}

.mega-panel--resources {
  grid-template-columns: 1.1fr 0.9fr;
}

.mega-panel__intro,
.mega-feature {
  padding: 30px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    var(--navy);
  color: var(--white);
}

.mega-panel__intro h2,
.mega-feature h2 {
  margin: 10px 0 12px;
  color: var(--white);
  font-size: 1.65rem;
}

.mega-panel__intro p,
.mega-feature p {
  margin-bottom: 20px;
  color: #c7d3e6;
  font-size: 0.85rem;
}

.mega-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--red);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mega-panel__intro .mega-kicker,
.mega-feature .mega-kicker {
  color: #ff9bac;
}

.mega-panel__links,
.mega-panel__quick,
.mega-panel--resources > div {
  display: flex;
  flex-direction: column;
}

.mega-panel__links > a,
.mega-panel__quick > a,
.mega-panel--resources > div > a:not(.mega-all) {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.mega-panel__links a:hover strong,
.mega-panel__quick a:hover strong,
.mega-panel--resources a:hover strong {
  color: var(--red);
}

.mega-panel strong {
  color: var(--ink);
  font-size: 0.89rem;
}

.mega-panel small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.mega-feature > span {
  color: #ff9bad;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.mega-feature > a,
.mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--red);
  font-size: 0.79rem;
  font-weight: 850;
}

.mega-feature > a {
  color: var(--white);
}

.mega-state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
}

.mega-state-grid a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: #34435a;
  font-size: 0.81rem;
  font-weight: 700;
}

.mega-state-grid a:hover {
  color: var(--red);
}

.mobile-menu {
  max-height: calc(100dvh - var(--header));
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mobile-menu__inner {
  width: min(calc(100% - 38px), 760px);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px 0 30px;
}

.mobile-menu__inner > a:not(.button):not(.mobile-menu__call),
.mobile-menu summary,
.mobile-menu__primary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary svg {
  width: 16px;
  transition: transform 0.2s ease;
}

.mobile-menu details[open] summary svg {
  transform: rotate(180deg);
}

.mobile-menu details > div {
  display: grid;
  padding: 8px 10px 15px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.mobile-menu details a {
  padding: 10px 8px;
  color: #455169;
  font-size: 0.85rem;
  font-weight: 650;
}

.mobile-menu__states {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.mobile-menu__primary {
  color: var(--red);
}

.mobile-menu__primary span {
  min-width: 30px;
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--red-soft);
  font-size: 0.73rem;
  text-align: center;
}

.mobile-menu .button {
  margin-top: 20px;
}

.mobile-menu__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 0;
  color: var(--navy);
  font-weight: 820;
}

/* Homepage hero */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 100px) 0 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(112deg, #fff 0%, #fff 52%, #eef3fb 52%, #f7f9fc 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--red);
  content: "";
}

.home-hero__glow {
  position: absolute;
  top: -280px;
  right: -190px;
  width: 680px;
  height: 680px;
  border: 130px solid rgba(28, 79, 157, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 6vw, 92px);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(62px, 7vw, 96px);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.hero-location svg {
  width: 18px;
  color: var(--red);
}

.home-hero h1 {
  max-width: 730px;
  margin-bottom: 23px;
  font-size: clamp(3.2rem, 5.55vw, 6.3rem);
  letter-spacing: -0.065em;
}

.home-hero h1 span {
  position: relative;
  color: var(--red);
}

.home-hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 5px;
  border-radius: 6px;
  background: var(--red);
  content: "";
  opacity: 0.16;
}

.home-hero__lede {
  max-width: 690px;
  margin-bottom: 0;
  color: #4f5c70;
  font-size: clamp(1rem, 1.4vw, 1.19rem);
}

.hero-proof {
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.hero-proof span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-showcase {
  min-height: 570px;
  position: relative;
  align-self: end;
}

.hero-showcase__main {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 91%;
  height: 94%;
  overflow: hidden;
  border-radius: 38px 38px 0 0;
  background: #d9e0ea;
  box-shadow: var(--shadow-lg);
}

.hero-showcase__main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 53%, rgba(7, 26, 57, 0.79));
  content: "";
}

.hero-showcase__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase__label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.3;
}

.hero-showcase__label small {
  display: block;
  margin-bottom: 6px;
  color: #ff9bad;
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-showcase__detail {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 0;
  width: 31%;
  aspect-ratio: 1/1.12;
  overflow: hidden;
  padding: 7px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}

.hero-showcase__detail img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.hero-showcase__card {
  position: absolute;
  z-index: 5;
  bottom: 90px;
  left: -18px;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 19px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #18a274;
  box-shadow: 0 0 0 7px rgba(24, 162, 116, 0.13);
  animation: pulse-dot 2.4s ease infinite;
}

@keyframes pulse-dot {
  50% {
    box-shadow: 0 0 0 11px rgba(24, 162, 116, 0);
  }
}

.hero-showcase__card div {
  display: grid;
}

.hero-showcase__card strong {
  color: var(--navy);
  font-size: 0.79rem;
}

.hero-showcase__card small {
  color: var(--muted);
  font-size: 0.67rem;
}

.hero-showcase__accent {
  position: absolute;
  z-index: 3;
  top: 44%;
  right: -80px;
  color: rgba(211, 11, 43, 0.09);
  font-size: 10rem;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: rotate(90deg);
}

.hero-bottom {
  position: relative;
  z-index: 4;
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(12, 40, 93, 0.1);
  color: #617087;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-bottom span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

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

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

.trust-band article {
  min-height: 138px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 27px clamp(16px, 2.2vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-band article:first-child {
  padding-left: 0;
}

.trust-band article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-band__number {
  color: #ff91a5;
  font-size: 0.68rem;
  font-weight: 850;
}

.trust-band strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
}

.trust-band p {
  margin: 5px 0 0;
  color: #bcc8da;
  font-size: 0.73rem;
  line-height: 1.55;
}

/* Inventory cards, toolbar and product pages */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.inventory-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.inventory-card:hover {
  border-color: #c4cedc;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.inventory-card[hidden] {
  display: none !important;
}

.inventory-card__image {
  position: relative;
  aspect-ratio: 1.38/1;
  display: block;
  overflow: hidden;
  background: #e8edf3;
}

.inventory-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 57, 0.02), rgba(7, 26, 57, 0.26));
  content: "";
  pointer-events: none;
}

.inventory-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.inventory-card:hover .inventory-card__image > img {
  transform: scale(1.045);
}

.status {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status--available {
  background: rgba(236, 255, 248, 0.96);
  color: var(--green);
}

.status--verify {
  background: rgba(255, 248, 226, 0.96);
  color: var(--amber);
}

.photo-count {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 13px;
  padding: 6px 9px;
  border-radius: 100px;
  background: rgba(7, 26, 57, 0.8);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.inventory-card__body {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.inventory-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-card__meta span:last-child {
  color: #768297;
}

.inventory-card h3 {
  min-height: 2.5em;
  margin-bottom: 12px;
  font-size: 1.09rem;
  line-height: 1.25;
}

.inventory-card h3 a:hover {
  color: var(--red);
}

.inventory-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.inventory-card__specs span {
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--soft);
  color: #4d5a6d;
  font-size: 0.68rem;
  font-weight: 760;
}

.inventory-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.inventory-card li {
  display: flex;
  gap: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.inventory-card li svg {
  width: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.inventory-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.inventory-card__footer > strong {
  color: var(--navy);
  font-size: 0.97rem;
}

.inventory-card__footer > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 850;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--blue-soft);
  color: var(--muted);
}

.image-placeholder img {
  width: 110px !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.25;
}

.inventory-toolbar {
  position: sticky;
  z-index: 8;
  top: calc(var(--header) + 12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.inventory-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.inventory-filter button {
  min-height: 39px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--soft);
  color: #445168;
  font-size: 0.73rem;
  font-weight: 760;
  transition: 0.2s ease;
}

.inventory-filter button span {
  display: inline-flex;
  min-width: 22px;
  justify-content: center;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 100px;
  background: rgba(12, 40, 93, 0.07);
  font-size: 0.62rem;
}

.inventory-filter button:hover,
.inventory-filter button.is-active,
.inventory-filter button[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.inventory-filter button[aria-pressed="true"] span {
  background: rgba(255, 255, 255, 0.15);
}

.inventory-search {
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.inventory-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(28, 79, 157, 0.1);
}

.inventory-search svg {
  width: 18px;
  color: #718096;
}

.inventory-search input {
  width: 100%;
  min-height: 42px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.78rem;
}

.inventory-results-line {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
  padding: 0 4px;
}

.inventory-results-line > span {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 820;
}

.inventory-results-line p {
  margin: 0;
  font-size: 0.74rem;
  text-align: right;
}

.inventory-empty {
  padding: 70px 20px;
  text-align: center;
}

.inventory-empty img {
  width: 115px;
  margin: 0 auto 12px;
  opacity: 0.25;
}

.inventory-empty h2 {
  margin-bottom: 7px;
  font-size: 1.6rem;
}

.inventory-empty button {
  padding: 10px 16px;
  border: 0;
  border-bottom: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  font-weight: 820;
}

.product-page {
  padding: 28px 0 clamp(65px, 7vw, 100px);
  background: var(--soft);
}

.product-page .breadcrumbs {
  margin-bottom: 35px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.68fr);
  align-items: start;
  gap: clamp(35px, 5vw, 74px);
}

.product-gallery__main {
  aspect-ratio: 1.3/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe4eb;
  box-shadow: var(--shadow-sm);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.product-gallery__main img.is-changing {
  opacity: 0.35;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 4px 3px 8px;
  scrollbar-width: thin;
}

.product-gallery__thumbs button {
  width: 94px;
  aspect-ratio: 1.25/1;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--white);
  opacity: 0.72;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button.is-active,
.product-gallery__thumbs button[aria-pressed="true"] {
  border-color: var(--red);
  opacity: 1;
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.photo-note {
  margin: 10px 0 0;
  color: #737f92;
  font-size: 0.71rem;
}

.product-summary {
  position: sticky;
  top: calc(var(--header) + 25px);
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.product-summary__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
}

.product-summary__status .status {
  position: static;
}

.product-summary__status > span:last-child {
  color: #737f91;
  font-size: 0.69rem;
}

.product-summary h1 {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.product-summary__identifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.product-summary__identifiers span {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.72rem;
}

.product-summary__identifiers strong {
  margin-left: 3px;
  color: var(--ink);
}

.product-price {
  display: grid;
  padding: 25px 0;
}

.product-price small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price > strong {
  margin: 5px 0;
  color: var(--navy);
  font-size: 1.65rem;
}

.product-price > span {
  color: #727e90;
  font-size: 0.7rem;
}

.verification-alert {
  margin-bottom: 20px;
  padding: 15px;
  border-left: 4px solid #d08a13;
  border-radius: 7px;
  background: #fff8e7;
}

.verification-alert strong {
  color: #744704;
  font-size: 0.8rem;
}

.verification-alert p {
  margin: 5px 0 0;
  color: #735d34;
  font-size: 0.73rem;
}

.button-stack {
  display: grid;
  gap: 9px;
}

.product-summary__visit {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-summary__visit > strong {
  font-size: 0.86rem;
}

.product-summary__visit p {
  margin: 7px 0;
  font-size: 0.75rem;
}

.product-summary__visit a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 820;
}

.product-summary__visit svg {
  width: 16px;
}

.product-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--white);
  color: #405069;
  font-size: 0.78rem;
}

.spec-list svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.product-details__grid > aside {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.product-details__grid > aside h3 {
  color: var(--white);
}

.product-details__grid > aside ol {
  display: grid;
  gap: 9px;
  margin: 20px 0;
  padding-left: 20px;
  color: #d3dded;
  font-size: 0.77rem;
}

.product-details__grid > aside p {
  margin: 0;
  color: #bdc9db;
  font-size: 0.72rem;
}

.spec-empty {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

/* Shared page heroes */
.page-hero,
.about-hero,
.city-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 clamp(70px, 8vw, 116px);
  background:
    radial-gradient(circle at 90% 10%, rgba(28, 79, 157, 0.11), transparent 30%),
    linear-gradient(135deg, #f8fafd, #fff 52%, #f1f5fb);
}

.page-hero::before,
.about-hero::before,
.city-hero::before {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  width: min(24vw, 350px);
  height: 6px;
  background: var(--red);
  content: "";
}

.breadcrumbs {
  margin-bottom: clamp(45px, 6vw, 76px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #748195;
  font-size: 0.72rem;
  font-weight: 700;
}

.breadcrumbs li:not(:last-child)::after {
  color: #aeb6c4;
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--red);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.page-hero__grid > div:first-child {
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 23px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.page-hero__grid > div:first-child > p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.page-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-hero__trust span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.74rem;
}

.inventory-hero-panel,
.location-hero-card,
.state-hero-mark {
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    var(--navy);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.inventory-hero-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.inventory-hero-panel strong,
.location-hero-card strong {
  color: var(--white);
}

.inventory-hero-panel p,
.location-hero-card p {
  margin: 5px 0 14px;
  color: #c7d2e3;
  font-size: 0.84rem;
}

.inventory-hero-panel > a {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9bad;
  font-weight: 820;
}

.inventory-hero-panel svg {
  width: 18px;
}

.location-hero-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.location-hero-card > svg {
  width: 42px;
  margin-bottom: 25px;
  color: #ff9bad;
}

.location-hero-card > span {
  color: #b6c5da;
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-hero-card strong {
  margin: 7px 0 4px;
  font-size: 1.65rem;
}

.state-hero-mark {
  aspect-ratio: 1.35/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.state-hero-mark span {
  color: var(--white);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}

.state-hero-mark small {
  max-width: 230px;
  margin-top: 15px;
  color: #c4d0e1;
  font-size: 0.74rem;
}

/* Homepage content systems */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.process-card > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 53px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ff9bad;
  font-size: 0.66rem;
  font-weight: 850;
}

.process-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.process-card p {
  margin: 0;
  color: #bcc9db;
  font-size: 0.77rem;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: 27px 30px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
}

.process-cta div {
  display: grid;
}

.process-cta strong {
  color: var(--white);
}

.process-cta span {
  color: #ffd6dd;
  font-size: 0.78rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f4f7fb);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.category-card::before {
  position: absolute;
  top: -55px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(28, 79, 157, 0.055);
  border-radius: 50%;
  content: "";
}

.category-card:hover {
  border-color: rgba(211, 11, 43, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.category-card--1,
.category-card--2 {
  grid-column: span 6;
}

.category-card--3,
.category-card--4,
.category-card--5 {
  grid-column: span 4;
}

.category-card__number {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.category-card > div {
  position: relative;
  z-index: 1;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.category-card p {
  max-width: 480px;
  margin-bottom: 17px;
  font-size: 0.83rem;
}

.local-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.73fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.local-feature__content > p {
  max-width: 720px;
}

.local-feature__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  margin-top: 28px;
}

.local-feature__checks span,
.clarity-grid span,
.receiving-checklist span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3e4d65;
  font-size: 0.8rem;
  font-weight: 650;
}

.local-feature__checks svg,
.clarity-grid svg,
.receiving-checklist svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.local-feature__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(31px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.local-feature__panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  content: "";
}

.local-feature__address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 25px;
}

.local-feature__address > svg {
  width: 27px;
  flex: 0 0 auto;
  color: var(--red);
}

.local-feature__address div {
  display: grid;
}

.local-feature__address small {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.local-feature__address strong {
  margin-top: 7px;
  color: var(--navy);
}

.local-feature__address span,
.hours-grid {
  color: var(--muted);
  font-size: 0.8rem;
}

.hours-grid {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
  padding: 19px 0;
  border-block: 1px solid var(--line);
}

.hours-grid > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-grid strong {
  color: var(--ink);
}

.equipment-authority__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(45px, 8vw, 112px);
}

.equipment-authority__sticky {
  position: sticky;
  top: 140px;
}

.equipment-authority__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.system-card {
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.system-card > span,
.info-card > span,
.values-grid article > span,
.honest-coverage article > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.system-card p,
.info-card p,
.values-grid p,
.honest-coverage p {
  margin: 0;
  font-size: 0.8rem;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.state-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: 0.25s ease;
}

.state-card:hover {
  border-color: rgba(211, 11, 43, 0.42);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.state-card > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 850;
}

.state-card h3 {
  margin: 0 0 4px;
  font-size: 0.97rem;
}

.state-card p {
  margin: 0;
  overflow: hidden;
  color: #6f7b8f;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.state-card > svg {
  color: var(--red);
}

.featured-market-row,
.community-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.featured-market-row a,
.community-grid span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: #4e5d74;
  font-size: 0.73rem;
  font-weight: 760;
}

.featured-market-row a:hover {
  border-color: var(--red);
  color: var(--red);
}

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

.guide-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.28s ease;
}

.guide-card:hover {
  border-color: rgba(211, 11, 43, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.guide-card > span {
  margin-bottom: 36px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.guide-card p {
  font-size: 0.79rem;
}

.guide-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.75rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(45px, 8vw, 110px);
}

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

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

.faq-list summary {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  font-weight: 760;
  list-style: none;
}

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

.faq-plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--red);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-plus::after {
  transform: translate(-50%, -50%);
}

.faq-answer p {
  max-width: 790px;
  margin: -4px 0 24px;
  font-size: 0.87rem;
}

/* Location and city content */
.four-card-grid,
.values-grid,
.honest-coverage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card,
.values-grid article,
.honest-coverage article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.location-state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.location-state-card {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.location-state-card:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.location-state-card__code {
  width: 49px;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.location-state-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.location-state-card p,
.location-state-card small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.location-state-card > svg {
  color: var(--red);
}

.honest-coverage {
  display: grid;
  gap: 45px;
}

.honest-coverage article {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.honest-coverage article > span {
  color: #ff9bad;
}

.honest-coverage h3 {
  color: var(--white);
}

.honest-coverage p {
  color: #c0cbdd;
}

.state-overview,
.state-resource__grid,
.springfield-showroom__grid,
.city-market__grid,
.delivery-plan__grid,
.clarity-grid,
.receiving-checklist,
.type-detail-grid,
.finance-checklist,
.priority-market__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(45px, 8vw, 112px);
}

.state-overview__aside,
.springfield-showroom__grid > aside {
  padding: 31px;
  border-radius: var(--radius);
  background: var(--soft);
}

.state-overview__aside ul,
.springfield-showroom__grid > aside ul,
.type-detail-grid ul,
.finance-checklist ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.state-overview__aside li,
.springfield-showroom__grid > aside li,
.type-detail-grid li,
.finance-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #46556b;
  font-size: 0.79rem;
}

.state-overview__aside svg,
.springfield-showroom__grid > aside svg,
.type-detail-grid svg,
.finance-checklist svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

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

.city-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.25s ease;
}

.city-card:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.city-card > span {
  margin-bottom: 38px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.city-card p {
  font-size: 0.79rem;
}

.city-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.74rem;
}

.city-card svg {
  width: 17px;
}

.state-resource__grid {
  align-items: center;
}

.state-resource__grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.state-resource__grid > a > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.state-resource__grid > a div {
  display: grid;
}

.state-resource__grid > a small {
  color: var(--muted);
  font-size: 0.7rem;
}

.city-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.85fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.city-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.city-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 27px;
}

.city-hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4b5a70;
  font-size: 0.72rem;
  font-weight: 700;
}

.city-hero__facts svg {
  width: 15px;
  color: var(--green);
}

.city-hero__visual {
  position: relative;
  aspect-ratio: 1.2/1;
}

.city-hero__visual > img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.origin-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.origin-card > svg {
  width: 23px;
  color: var(--red);
}

.origin-card div {
  display: grid;
}

.origin-card small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.origin-card strong {
  color: var(--navy);
  font-size: 0.81rem;
}

.city-truth {
  border-block: 1px solid var(--line);
  background: var(--blue-soft);
}

.city-truth__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.city-truth strong {
  min-width: fit-content;
  color: var(--navy);
  font-size: 0.85rem;
}

.city-truth p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid #c9d4e3;
  font-size: 0.76rem;
}

.visit-card {
  display: flex;
  gap: 14px;
  margin-top: 25px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.visit-card > svg {
  width: 27px;
  flex: 0 0 auto;
  color: var(--red);
}

.visit-card div {
  display: grid;
}

.visit-card span,
.visit-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.springfield-pickup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.springfield-pickup > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.springfield-pickup p {
  margin: 0;
  font-size: 0.8rem;
}

.city-market__cards {
  display: grid;
  gap: 12px;
}

.city-market__cards article {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--soft);
}

.city-market__cards article > span,
.resource-grid > a > span {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-market__cards p {
  margin: 0;
  font-size: 0.75rem;
}

.priority-market__route {
  margin: 25px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
}

.priority-market__grid > ol,
.delivery-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.priority-market__grid > ol li,
.delivery-steps li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: #3d4b61;
  font-size: 0.8rem;
  font-weight: 650;
}

.priority-market__grid > ol li span,
.delivery-steps li span {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.config-grid article {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.config-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: #ff9bad;
  font-size: 0.68rem;
  font-weight: 850;
}

.config-grid h3 {
  margin-bottom: 17px;
  color: var(--white);
}

.config-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.config-grid li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #c4cede;
  font-size: 0.75rem;
}

.config-grid li svg {
  width: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #73d9b6;
}

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

.resource-grid > a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.25s ease;
}

.resource-grid > a:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.resource-grid > a > span {
  margin-bottom: 28px;
}

.resource-grid p {
  font-size: 0.76rem;
}

.resource-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.73rem;
}

.legal-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 7px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.74rem;
}

.nearby-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.nearby-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 760;
}

.nearby-link-grid a:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Content pages */
.custom-plan-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(45px, 8vw, 112px);
}

.custom-plan-grid__intro {
  position: sticky;
  top: 140px;
}

.custom-plan-grid__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.custom-plan-grid__steps article {
  min-height: 200px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.custom-plan-grid__steps article > span {
  display: block;
  margin-bottom: 35px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.custom-plan-grid__steps p {
  margin: 0;
  font-size: 0.78rem;
}

.timeline {
  max-width: 1000px;
}

.timeline article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.timeline article > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
}

.timeline h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.clarity-grid > div:last-child,
.receiving-checklist > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}

.clarity-grid span,
.receiving-checklist span {
  color: #d6dfec;
}

.clarity-grid svg,
.receiving-checklist svg {
  color: #73dbb8;
}

.finance-grid,
.delivery-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.finance-grid > a,
.delivery-options > article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 45px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.27s ease;
}

.finance-grid > a:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.finance-grid > a > span {
  margin-bottom: 37px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.finance-grid h2,
.delivery-options h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.finance-grid strong,
.delivery-options article > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 760;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.about-hero__image {
  aspect-ratio: 1.2/1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
}

.story-grid__body {
  max-width: 820px;
}

.masonry-gallery {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e4e8ee;
}

.gallery-tile--1,
.gallery-tile--6 {
  grid-row: span 2;
}

.gallery-tile--3 {
  grid-column: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-tile::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(7, 26, 57, 0.83));
  content: "";
}

.gallery-tile:hover img {
  transform: scale(1.045);
}

.gallery-tile > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: grid;
  color: var(--white);
}

.gallery-tile small {
  color: #ff9bad;
  font-size: 0.64rem;
  font-weight: 820;
  text-transform: uppercase;
}

.gallery-tile strong {
  font-size: 0.87rem;
  line-height: 1.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(40px, 7vw, 96px);
}

.contact-details {
  display: grid;
  gap: 13px;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 13px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-details svg {
  width: 22px;
  grid-row: span 3;
  color: var(--red);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: var(--navy);
  font-size: 0.89rem;
  font-weight: 760;
}

.contact-details small {
  color: var(--muted);
  font-size: 0.73rem;
}

.contact-hours {
  display: block !important;
}

.contact-hours p {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 7px 0;
}

.quote-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
}

.form-heading {
  margin-bottom: 27px;
}

.form-heading > span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.quote-form label,
.quote-form legend {
  color: #344158;
  font-size: 0.73rem;
  font-weight: 760;
}

.quote-form > label:not(.consent),
.form-grid label {
  display: grid;
  gap: 6px;
}

.quote-form > label:not(.consent) {
  margin-top: 15px;
}

.quote-form input:not([type="radio"]):not([type="checkbox"]),
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid #ccd4e0;
  border-radius: 8px;
  background: #fbfcfe;
  outline: 0;
  transition: 0.2s ease;
}

.quote-form input:not([type="radio"]):not([type="checkbox"]) {
  min-height: 47px;
  padding: 0 12px;
}

.quote-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 4px rgba(28, 79, 157, 0.1);
}

.quote-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 22px 0 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.quote-form input[type="radio"],
.quote-form input[type="checkbox"] {
  accent-color: var(--red);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
  margin: 18px 0;
  font-weight: 550 !important;
}

.form-status {
  margin: 13px 0 0;
  font-size: 0.71rem;
}

.form-status.is-error {
  color: var(--red-dark);
}

.form-status.is-success {
  color: var(--green);
}

.guide-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.guide-index-grid > a {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.guide-index-grid > a:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.guide-index-grid > a > span {
  margin-bottom: 36px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.guide-index-grid h2 {
  font-size: 1.3rem;
}

.guide-index-grid p {
  font-size: 0.78rem;
}

.guide-index-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy);
  font-size: 0.75rem;
}

.guide-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.guide-disclaimer {
  margin-bottom: 48px;
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--soft);
}

.guide-disclaimer p {
  margin: 5px 0 0;
  font-size: 0.78rem;
}

.guide-article__body > section {
  position: relative;
  padding: 0 0 55px 58px;
  border-left: 1px solid var(--line);
}

.guide-section-number {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 0;
  left: -19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 850;
}

.guide-article__body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
}

.guide-article__body ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.guide-article__body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px;
  border-radius: 7px;
  background: var(--soft);
  color: #48566b;
  font-size: 0.75rem;
}

.guide-article__body li svg {
  width: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.guide-sidebar {
  position: sticky;
  top: 130px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.guide-sidebar h2 {
  color: var(--white);
  font-size: 1.5rem;
}

.guide-sidebar p {
  color: #c4d0e1;
  font-size: 0.78rem;
}

.guide-sidebar > a:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #ff9bad;
  font-size: 0.79rem;
  font-weight: 820;
}

.faq-list--wide,
.legal-copy .prose {
  max-width: 1000px;
  margin-inline: auto;
}

.legal-copy .prose {
  max-width: 840px;
}

.prose h2 {
  margin: 45px 0 14px;
  font-size: 1.55rem;
}

.prose a {
  color: var(--red);
  text-decoration: underline;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sitemap-grid > div {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sitemap-grid h2 {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
}

.sitemap-grid a {
  padding: 8px 0;
  color: #4c5b72;
  font-size: 0.77rem;
  font-weight: 650;
}

.type-inventory-empty > .shell {
  max-width: 920px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.type-inventory-empty h2 {
  max-width: 700px;
  margin: 0 auto 16px;
}

.type-inventory-empty p {
  max-width: 690px;
  margin: 0 auto;
}

.type-inventory-empty .button-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(110deg, var(--red-dark), var(--red));
}

.footer-cta::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 470px;
  height: 470px;
  border: 85px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.footer-cta__inner {
  min-height: 270px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.footer-cta__inner > div:first-child {
  max-width: 800px;
}

.footer-cta h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.footer-cta p {
  margin: 0;
  color: #ffe0e5;
}

.footer-cta .eyebrow--light {
  color: var(--white);
}

.footer-cta__actions {
  min-width: max-content;
  display: flex;
  gap: 10px;
}

.footer-body {
  background:
    radial-gradient(circle at 10% 0%, rgba(36, 82, 156, 0.17), transparent 28%),
    var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.72fr);
  gap: clamp(34px, 5vw, 70px);
  padding-block: clamp(66px, 8vw, 100px);
}

.footer-brand > a {
  width: min(285px, 100%);
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.footer-brand img {
  width: 100%;
}

.footer-brand > p {
  max-width: 440px;
  margin: 23px 0;
  color: #bec9d9;
  font-size: 0.8rem;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 760;
}

.footer-contact span {
  margin-top: 6px;
  color: #aab8cd;
  font-size: 0.76rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.footer-column a {
  padding: 7px 0;
  color: #bdc8d8;
  font-size: 0.77rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-markets {
  padding-block: 35px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-markets__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 26px;
}

.footer-markets__heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.4rem;
}

.footer-markets__heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9bad;
  font-size: 0.76rem;
  font-weight: 820;
}

.footer-market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.footer-market-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #c5cfdd;
  font-size: 0.73rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.footer-market-grid a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.footer-market-grid svg {
  color: #ff91a3;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: #9dabbe;
  font-size: 0.7rem;
}

.footer-bottom__inner > span:nth-child(2) {
  text-align: center;
}

.footer-bottom__inner > div {
  display: flex;
  gap: 15px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-sticky-call {
  display: none;
}

/* Progressive reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Responsive */
@media (max-width: 1220px) {
  :root {
    --header: 78px;
  }

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

  .desktop-nav {
    gap: 13px;
  }

  .nav-link {
    display: none;
  }

  .site-logo {
    width: 220px;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
    gap: 42px;
  }

  .trust-band__grid,
  .config-grid,
  .four-card-grid,
  .values-grid,
  .honest-coverage__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-band article:nth-child(2) {
    border-right: 0;
  }

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

  .inventory-grid,
  .location-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 1.35fr repeat(3, 0.75fr);
    gap: 34px;
  }

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

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

  .header-call,
  .menu-toggle {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .mega-panel {
    display: none;
  }

  .home-hero {
    background: linear-gradient(180deg, #fff 0%, #fff 48%, #eef3fa 48%);
  }

  .home-hero__grid,
  .page-hero__grid,
  .about-hero__grid,
  .city-hero__grid,
  .product-layout,
  .local-feature,
  .equipment-authority__grid,
  .custom-plan-grid,
  .state-overview,
  .state-resource__grid,
  .springfield-showroom__grid,
  .city-market__grid,
  .delivery-plan__grid,
  .clarity-grid,
  .receiving-checklist,
  .type-detail-grid,
  .finance-checklist,
  .priority-market__grid,
  .product-details__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__grid {
    gap: 0;
  }

  .home-hero__content {
    max-width: 800px;
    padding-bottom: 50px;
  }

  .hero-showcase {
    min-height: clamp(450px, 68vw, 640px);
  }

  .hero-showcase__main {
    width: 93%;
  }

  .hero-bottom {
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .city-hero__visual,
  .about-hero__image {
    max-height: 610px;
  }

  .product-summary,
  .equipment-authority__sticky,
  .custom-plan-grid__intro,
  .guide-sidebar {
    position: static;
  }

  .inventory-toolbar {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .inventory-search {
    min-width: 0;
  }

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

  .city-card-grid,
  .guide-grid,
  .guide-index-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-gallery {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-tile--3 {
    grid-column: span 1;
  }

  .contact-grid,
  .guide-article__layout {
    grid-template-columns: 1fr;
  }

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

  .footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 48px;
  }

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

  .footer-brand {
    grid-column: 1/-1;
  }
}

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

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

  .section {
    padding-block: 70px;
  }

  .top-rail {
    display: none;
  }

  .site-logo {
    width: min(55vw, 205px);
  }

  .header-quote {
    display: none;
  }

  .page-hero,
  .about-hero,
  .city-hero {
    padding: 20px 0 70px;
  }

  .breadcrumbs {
    margin-bottom: 43px;
  }

  .page-hero h1,
  .city-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4.1rem);
  }

  .home-hero {
    padding-top: 44px;
  }

  .home-hero::before {
    width: 4px;
  }

  .home-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.5rem);
    line-height: 1.01;
  }

  .hero-location {
    font-size: 0.65rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-proof > div {
    padding-inline: 10px;
  }

  .hero-proof strong {
    font-size: 1.25rem;
  }

  .hero-proof span {
    font-size: 0.58rem;
  }

  .hero-showcase {
    min-height: 420px;
  }

  .hero-showcase__main {
    width: 96%;
    height: 93%;
    border-radius: 24px 24px 0 0;
  }

  .hero-showcase__detail {
    top: 14px;
    width: 30%;
  }

  .hero-showcase__card {
    bottom: 72px;
    left: 0;
    min-width: 185px;
    padding: 13px 15px;
  }

  .hero-showcase__accent {
    display: none;
  }

  .hero-showcase__label {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.84rem;
  }

  .trust-band__grid,
  .inventory-grid,
  .inventory-grid--featured,
  .location-state-grid,
  .city-card-grid,
  .guide-grid,
  .guide-index-grid,
  .resource-grid,
  .state-grid,
  .config-grid,
  .four-card-grid,
  .values-grid,
  .honest-coverage__grid,
  .finance-grid,
  .delivery-options,
  .custom-plan-grid__steps {
    grid-template-columns: 1fr;
  }

  .trust-band article {
    min-height: 108px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .inventory-card__body {
    min-height: 0;
  }

  .inventory-card h3 {
    min-height: 0;
  }

  .inventory-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .inventory-filter button {
    flex: 0 0 auto;
  }

  .inventory-results-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .inventory-results-line p {
    text-align: left;
  }

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

  .process-card {
    min-height: 190px;
  }

  .process-card > span {
    margin-bottom: 28px;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--1,
  .category-card--2,
  .category-card--3,
  .category-card--4,
  .category-card--5 {
    min-height: 235px;
    grid-column: auto;
  }

  .local-feature__checks,
  .equipment-authority__cards,
  .springfield-pickup,
  .clarity-grid > div:last-child,
  .receiving-checklist > div:last-child,
  .spec-list,
  .form-grid,
  .guide-article__body ul {
    grid-template-columns: 1fr;
  }

  .city-truth__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 22px;
  }

  .city-truth p {
    padding-left: 0;
    border-left: 0;
  }

  .city-hero__visual {
    aspect-ratio: 1/0.86;
  }

  .origin-card {
    right: 13px;
    bottom: 13px;
  }

  .nearby-link-grid {
    grid-template-columns: 1fr;
  }

  .product-summary {
    padding: 24px 20px;
  }

  .product-summary__status {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .masonry-gallery {
    display: flex;
    flex-direction: column;
  }

  .gallery-tile {
    aspect-ratio: 1.15/1;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .quote-form fieldset {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline article {
    grid-template-columns: 52px 1fr;
    gap: 19px;
  }

  .guide-article__body > section {
    padding: 0 0 48px 36px;
  }

  .type-inventory-empty > .shell {
    padding: 32px 18px;
  }

  .footer-cta__actions {
    min-width: 0;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1/-1;
  }

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

  .footer-markets__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 65px;
  }

  .footer-bottom__inner > span:nth-child(2) {
    text-align: left;
  }

  .mobile-sticky-call {
    position: fixed;
    z-index: 45;
    right: 13px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 13px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(7, 26, 57, 0.96);
    box-shadow: 0 16px 42px rgba(7, 26, 57, 0.35);
    color: var(--white);
    font-size: 0.72rem;
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-call span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-sticky-call strong {
    color: #ff9bad;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(calc(100% - 26px), var(--shell));
  }

  .site-logo {
    width: 175px;
  }

  .header-call,
  .menu-toggle {
    width: 41px;
    height: 41px;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 12.7vw, 3.5rem);
  }

  .hero-proof > div {
    padding-inline: 7px;
  }

  .hero-showcase {
    min-height: 350px;
  }

  .hero-showcase__detail {
    width: 33%;
    padding: 5px;
  }

  .hero-showcase__card {
    bottom: 60px;
    min-width: 168px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

/* July 2026 navigation, concepts, reviews, city-depth and footer refinement */
.nav-inventory-link {
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  padding: 0 15px !important;
  border-radius: 9px;
  background: var(--red);
  box-shadow: 0 10px 22px rgba(211, 11, 43, 0.2);
  color: var(--white) !important;
  line-height: 1;
  transition: 0.25s ease;
}

.nav-inventory-link:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(211, 11, 43, 0.28);
  transform: translateY(-2px);
}

.nav-inventory-link span {
  font-weight: 850;
}

.nav-inventory-link small {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.58rem;
  font-weight: 800;
  white-space: nowrap;
}

.mega-menu-trailers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu .mega-feature--kitchen {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #861025, var(--red));
}

.mega-menu .mega-feature--cargo {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, var(--navy-deep), var(--blue));
}

.mega-links--utility {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu-concepts {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
}

.mega-concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.mega-concept-grid a {
  display: grid;
  gap: 3px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.mega-concept-grid strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.mega-concept-grid span {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.4;
}

.mega-concept-grid a:hover strong {
  color: var(--red);
}

.mobile-inventory-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: var(--red);
  color: var(--white) !important;
}

.mobile-inventory-link small {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  font-size: 0.62rem;
}

.concept-explorer-grid > a {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(150deg, #fff, #f3f7fc);
  box-shadow: var(--shadow-sm);
  transition: 0.28s ease;
}

.concept-explorer-grid > a:hover {
  border-color: rgba(211, 11, 43, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.concept-explorer-grid > a > span {
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
}

.concept-explorer-grid > a h3 {
  font-size: 1.15rem;
}

.concept-explorer-grid > a p {
  margin-bottom: 22px;
  font-size: 0.75rem;
}

.concept-explorer-grid > a .link-arrow {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 820;
}

.review-showcase {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 0, rgba(28, 79, 157, 0.08), transparent 28%),
    var(--white);
}

.review-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.review-showcase-head h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.review-rating {
  min-width: 172px;
  display: grid;
  justify-items: end;
  line-height: 1;
}

.review-rating strong {
  color: var(--navy);
  font-size: 3.35rem;
  letter-spacing: -0.07em;
}

.review-rating span,
.review-stars {
  color: #f5a300;
  letter-spacing: 0.08em;
}

.review-rating small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.review-marquee {
  width: 100%;
  overflow: hidden;
  padding-block: 12px 24px;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.review-track {
  width: max-content;
  display: flex;
  gap: 16px;
  animation: review-scroll 48s linear infinite;
}

.review-marquee:hover .review-track,
.review-marquee:focus-within .review-track {
  animation-play-state: paused;
}

.review-track article {
  width: min(430px, calc(100vw - 48px));
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.review-track blockquote {
  margin: 22px 0 28px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.65;
}

.review-track footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.review-track footer strong {
  color: var(--navy);
}

.review-track footer span {
  color: var(--muted);
  font-size: 0.72rem;
}

.review-source {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

@keyframes review-scroll {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

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

.trailer-family {
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.trailer-family::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 16, 36, 0.96), rgba(5, 16, 36, 0.22)),
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.19), transparent 30%);
  content: "";
}

.trailer-family--kitchen {
  background: linear-gradient(145deg, #b00828, #671023);
}

.trailer-family--cargo {
  background: linear-gradient(145deg, #153e7f, #071a39);
}

.trailer-family > * {
  position: relative;
  z-index: 1;
}

.trailer-family__eyebrow {
  margin-bottom: 15px;
  color: #ffb2bf;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trailer-family h3 {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.trailer-family p {
  max-width: 600px;
  color: #d6deea;
}

.trailer-family .button {
  width: fit-content;
  margin-top: 18px;
}

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

.secondary-type-grid > a {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: 0.25s ease;
}

.secondary-type-grid > a:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.secondary-type-grid p {
  font-size: 0.78rem;
}

.secondary-type-grid .link-arrow {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 820;
}

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

.city-depth-grid article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.city-depth-grid article > span {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 850;
}

.city-depth-grid h3 {
  margin: 24px 0 12px;
}

.city-depth-grid p {
  margin: 0;
  font-size: 0.79rem;
}

.city-nearby-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 19px;
  border-radius: 13px;
  background: var(--navy);
  color: var(--white);
}

.city-nearby-inline strong {
  margin-right: 8px;
  font-size: 0.78rem;
}

.city-nearby-inline a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dce6f4;
  font-size: 0.68rem;
  font-weight: 750;
}

.city-nearby-inline a:hover {
  border-color: #ff9bad;
  color: var(--white);
}

.concept-grid--six > a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  transition: 0.25s ease;
}

.concept-grid--six > a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.concept-grid--six > a h3 {
  color: var(--white);
}

.concept-grid--six > a p {
  color: #c7d2e4;
  font-size: 0.75rem;
}

.concept-grid--six > a > span {
  color: #ff9bad;
  font-size: 0.68rem;
}

.concept-grid--six .link-arrow {
  margin-top: auto;
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 800;
}

.concept-hero-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--red);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.concept-hero-card span {
  color: #ff9bad;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept-hero-card strong {
  display: block;
  margin: 14px 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.2;
}

.concept-hero-card p {
  margin: 0;
  color: #c7d2e4;
}

.concept-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(45px, 8vw, 110px);
}

.concept-equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-equipment-list li {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 760;
}

.concept-equipment-list span {
  color: var(--red);
  font-size: 0.64rem;
}

.concept-workflow h3 {
  color: var(--white);
}

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

.concept-link-grid > a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  transition: 0.25s ease;
}

.concept-link-grid > a:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.concept-link-grid > a > span {
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.concept-link-grid .link-arrow {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.55fr);
  gap: clamp(46px, 7vw, 96px);
  padding-block: clamp(64px, 8vw, 96px);
}

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

.footer-brand address {
  margin-top: 18px;
  color: #aab8cd;
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.7;
}

.employee-link {
  margin-top: 8px;
  color: #ff9bad !important;
}

.footer-bottom > div {
  flex-wrap: wrap;
}

main {
  animation: page-enter 0.46s ease both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .nav-inventory-link small,
  .phone-pill {
    display: none;
  }

  .nav-inventory-link {
    padding-inline: 12px !important;
  }

  .mega-menu-trailers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-menu-trailers .mega-links--utility {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .review-showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-rating {
    justify-items: start;
  }

  .trailer-family-grid,
  .city-depth-grid,
  .concept-detail-grid {
    grid-template-columns: 1fr;
  }

  .concept-link-grid,
  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .concept-explorer-grid > a {
    min-height: 215px;
  }

  .review-track article {
    min-height: 235px;
    padding: 24px;
  }

  .review-source {
    justify-content: flex-start;
  }

  .trailer-family {
    min-height: 340px;
    padding: 28px;
  }

  .secondary-type-grid,
  .concept-equipment-list,
  .concept-link-grid,
  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .city-depth-grid article {
    min-height: auto;
  }

  .city-nearby-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-link-groups {
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  main {
    animation: none;
  }

  .review-track {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding-inline: 24px;
    animation: none;
  }

  .review-track article[aria-hidden="true"] {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* Recovered component hook layer */
.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(57, 104, 180, 0.4), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark strong {
  color: var(--white);
}

.section-dark p {
  color: #c6d1e2;
}

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

.eyebrow-light {
  color: #ff9caf;
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button-outline {
  border-color: #c8d0dc;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  border-color: #f2f6fc;
  background: #f2f6fc;
  color: var(--navy);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow svg {
  width: 18px;
  transition: transform 0.25s ease;
}

a:hover > .link-arrow svg,
.link-arrow:hover svg {
  transform: translateX(4px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: end;
  gap: clamp(30px, 6vw, 86px);
}

.split-heading > p,
.split-heading > div:last-child > p {
  margin-bottom: 12px;
}

.centered-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2,
.centered-heading p {
  margin-inline: auto;
}

.lede {
  max-width: 780px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

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

.narrow-hero {
  max-width: 880px;
}

.narrow-hero h1 {
  margin-bottom: 22px;
}

/* Recovered navigation */
.utility-bar {
  position: relative;
  z-index: 60;
  min-height: 38px;
  background: var(--navy-deep);
  color: #dce7f8;
  font-size: 0.72rem;
  font-weight: 700;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--white);
}

.utility-inner svg {
  width: 15px;
}

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

.nav-row {
  min-height: var(--header);
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.brand {
  width: clamp(205px, 18vw, 270px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.nav-group {
  position: static;
}

.desktop-nav > a {
  min-height: 44px;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #26354c;
  font-size: clamp(0.73rem, 0.8vw, 0.85rem);
  font-weight: 760;
  white-space: nowrap;
}

.desktop-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav > a:hover::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 0 0 22px 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
}

.nav-group.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-menu-compact {
  width: min(720px, 100%);
  right: auto;
  grid-template-columns: 1fr;
}

.mega-menu .mega-feature {
  padding: 28px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
}

.mega-menu .mega-feature > strong {
  display: block;
  margin: 7px 0 10px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.2;
}

.mega-menu .mega-feature p {
  color: #c7d3e6;
  font-size: 0.84rem;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.mega-links > a {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mega-links strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.mega-links span {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.mega-links a:hover strong {
  color: var(--red);
}

.state-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 0 17px;
}

.state-menu a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #3d4c63;
  font-size: 0.79rem;
  font-weight: 700;
}

.state-menu a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone-pill {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 780;
}

.phone-pill svg {
  width: 18px;
  color: var(--red);
}

.mobile-toggle {
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-navigation {
  max-height: calc(100dvh - var(--header));
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mobile-navigation[aria-hidden="true"] {
  display: none;
}

.mobile-nav-inner {
  width: min(calc(100% - 38px), 760px);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px 0 30px;
}

.mobile-nav-inner > a,
.mobile-nav-inner summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  list-style: none;
}

.mobile-nav-inner details > a {
  display: block;
  padding: 10px 13px;
  background: var(--soft);
  color: #445168;
  font-size: 0.83rem;
  font-weight: 650;
}

.mobile-call {
  margin-top: 18px;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 9px;
  background: var(--navy);
  color: var(--white) !important;
}

/* Recovered home hero */
.home-hero {
  padding: clamp(66px, 8vw, 112px) 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(53, 105, 189, 0.5), transparent 31%),
    linear-gradient(125deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.home-hero::before {
  width: 7px;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(46px, 7vw, 105px);
}

.home-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.1rem, 5.55vw, 6.25rem);
}

.home-hero-copy h1 em {
  color: #ff9bad;
  font-style: normal;
}

.home-hero-copy > p {
  max-width: 700px;
  color: #c7d3e5;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-trust span {
  display: grid;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: #aebdd3;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust span:first-child {
  padding-left: 0;
}

.hero-trust span:last-child {
  border-right: 0;
}

.hero-trust strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
}

.home-hero-visual {
  min-height: 560px;
  position: relative;
}

.home-hero-visual > picture {
  position: absolute;
  inset: 0 0 0 7%;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.3);
}

.home-hero-visual > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-visual::after {
  position: absolute;
  inset: 50% 0 0 7%;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(transparent, rgba(7, 26, 57, 0.76));
  content: "";
  pointer-events: none;
}

.hero-image-card {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 0;
  max-width: 355px;
  display: grid;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.hero-image-card > span {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image-card > strong {
  margin: 5px 0 10px;
  color: var(--navy);
  font-size: 0.94rem;
}

.hero-image-card a {
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 820;
}

.hero-accent {
  position: absolute;
  z-index: 1;
  top: -54px;
  right: -38px;
  color: rgba(255, 255, 255, 0.09);
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.proof-bar {
  background: var(--white);
  box-shadow: 0 9px 34px rgba(7, 26, 57, 0.08);
}

.proof-bar-grid {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.proof-bar-grid > p {
  max-width: 460px;
  margin: 0;
  font-size: 0.76rem;
}

.proof-bar-grid > p strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
}

.proof-bar-grid > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.proof-bar-grid > div span {
  padding: 9px 12px;
  border-radius: 100px;
  background: var(--soft);
  color: #526078;
  font-size: 0.7rem;
  font-weight: 730;
}

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

.process-grid article {
  min-height: 250px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.process-grid article > span {
  display: block;
  margin-bottom: 48px;
  color: #ff9bad;
  font-size: 0.68rem;
  font-weight: 850;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  margin: 0;
  color: #c3cede;
  font-size: 0.77rem;
}

.type-card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.type-card {
  min-height: 245px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f3f7fc);
  box-shadow: var(--shadow-sm);
  transition: 0.28s ease;
}

.type-card:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.type-card-1,
.type-card-2 {
  grid-column: span 6;
}

.type-card-3,
.type-card-4,
.type-card-5 {
  grid-column: span 4;
}

.type-number {
  display: block;
  margin-bottom: 45px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.type-card p {
  font-size: 0.79rem;
}

.type-card .link-arrow {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 820;
}

.type-card-grid-large .type-card {
  min-height: 280px;
}

.systems-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(45px, 8vw, 112px);
}

.systems-intro {
  position: sticky;
  top: 140px;
}

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

.systems-list article {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.systems-list article > span {
  height: 100%;
  min-height: 70px;
  border-radius: 3px;
  background: linear-gradient(var(--red), var(--navy));
}

.systems-list p {
  margin: 0;
  font-size: 0.78rem;
}

.featured-market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.featured-market-grid > a {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  transition: 0.25s ease;
}

.featured-market-grid > a:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.featured-market-grid > a > span {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 850;
}

.featured-market-grid > a > strong {
  margin: 8px 0;
  color: var(--navy);
}

.featured-market-grid .link-arrow {
  margin-top: auto;
  color: #5b687c;
  font-size: 0.7rem;
}

.state-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.state-link-row a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #526078;
  font-size: 0.7rem;
  font-weight: 730;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.guide-card-grid > a {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: 0.25s ease;
}

.guide-card-grid > a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-4px);
}

.guide-card-grid > a > span {
  margin-bottom: 38px;
  color: #ff9bad;
  font-size: 0.67rem;
  font-weight: 850;
}

.guide-card-grid h3 {
  color: var(--white);
}

.guide-card-grid p {
  color: #c4cfe0;
  font-size: 0.77rem;
}

.guide-card-grid .link-arrow {
  margin-top: auto;
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 820;
}

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

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

.accordion-list summary {
  min-height: 78px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 40px 18px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 760;
  list-style: none;
}

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

.accordion-list summary::after {
  position: absolute;
  right: 7px;
  color: var(--red);
  content: "+";
  font-size: 1.5rem;
  font-weight: 450;
}

.accordion-list details[open] summary::after {
  content: "−";
}

.accordion-list details > p {
  max-width: 850px;
  margin: -3px 0 24px;
  font-size: 0.82rem;
}

/* Recovered inventory and product hooks */
.inventory-card-image {
  position: relative;
  aspect-ratio: 1.38/1;
  display: block;
  overflow: hidden;
  background: #e8edf3;
}

.inventory-card-image picture,
.inventory-card-image picture img {
  width: 100%;
  height: 100%;
}

.inventory-card-image picture img {
  object-fit: cover;
  transition: transform 0.55s ease;
}

.inventory-card:hover .inventory-card-image img {
  transform: scale(1.045);
}

.inventory-category {
  position: absolute;
  bottom: 13px;
  left: 13px;
  padding: 7px 10px;
  border-radius: 100px;
  background: rgba(7, 26, 57, 0.84);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 820;
  text-transform: uppercase;
}

.inventory-card-body {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 100px;
  background: #ecfff8;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 820;
  text-transform: uppercase;
}

.status-pill > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill-special {
  background: #fff3d6;
  color: #8a4b00;
}

.inventory-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.inventory-card-body > p {
  font-size: 0.76rem;
}

.inventory-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.inventory-card-footer > strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.inventory-controls {
  position: sticky;
  z-index: 8;
  top: calc(var(--header) + 12px);
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.inventory-search {
  display: grid;
  gap: 5px;
}

.inventory-controls .inventory-search {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.inventory-controls .inventory-search:focus-within {
  border: 0;
  box-shadow: none;
}

.inventory-search label {
  color: #405069;
  font-size: 0.68rem;
  font-weight: 760;
}

.inventory-search input {
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.inventory-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(28, 79, 157, 0.1);
}

.inventory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.inventory-filters button {
  min-height: 39px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--soft);
  color: #445168;
  font-size: 0.7rem;
  font-weight: 740;
}

.inventory-filters button:hover,
.inventory-filters button[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.results-count {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 780;
  white-space: nowrap;
}

.empty-results {
  padding: 70px 20px;
  text-align: center;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(40px, 7vw, 95px);
}

.hero-note,
.city-disclosure {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.hero-note strong,
.city-disclosure strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1rem;
}

.city-disclosure > span {
  display: block;
  color: #ff9bad;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note p,
.city-disclosure p {
  margin: 8px 0 0;
  color: #c7d2e4;
  font-size: 0.78rem;
}

.city-disclosure > a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 820;
}

.product-main-image {
  aspect-ratio: 1.3/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e1e6ed;
  box-shadow: var(--shadow-sm);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.product-main-image img.is-changing {
  opacity: 0.35;
}

.product-thumbnails {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 3px 3px 8px;
}

.product-thumbnails button {
  width: 94px;
  aspect-ratio: 1.25/1;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--white);
  opacity: 0.72;
}

.product-thumbnails button:hover,
.product-thumbnails button[aria-pressed="true"] {
  border-color: var(--red);
  opacity: 1;
}

.product-thumbnails picture,
.product-thumbnails img {
  width: 100%;
  height: 100%;
}

.product-thumbnails img {
  object-fit: cover;
}

.product-intro {
  font-size: 0.87rem;
}

.product-summary .product-price {
  display: block;
  margin: 0;
  padding: 23px 0;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 850;
  line-height: 1.2;
}

.product-stock {
  padding: 11px 13px;
  border-radius: 8px;
  background: var(--soft);
  color: #526078;
  font-size: 0.72rem;
}

.product-actions {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.listing-disclosure {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.listing-disclosure p {
  margin: 6px 0 0;
  font-size: 0.72rem;
}

.verification-band {
  padding: 28px 0;
  border-block: 1px solid #eed9a3;
  background: #fff8e7;
}

.verification-band .shell {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.verification-band strong {
  min-width: max-content;
  color: #764908;
}

.verification-band ul {
  margin: 0;
  color: #735d35;
  font-size: 0.76rem;
}

.product-detail-grid,
.two-column-copy,
.visit-grid,
.about-story,
.city-priority-grid,
.resource-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(45px, 8vw, 112px);
}

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

.planning-card-grid.six-cards {
  grid-template-columns: repeat(3, 1fr);
}

.planning-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.planning-card > span {
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.planning-card h2 {
  font-size: 1.35rem;
}

.planning-card p {
  margin: 0;
  font-size: 0.79rem;
}

/* Recovered location hooks */
.state-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.state-hub-grid > article {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.state-hub-grid > article > span {
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
}

.state-hub-grid > article p {
  font-size: 0.77rem;
}

.state-hub-grid > article h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.state-hub-grid > article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 5px 0 20px;
}

.state-hub-grid > article > div a {
  padding: 5px 8px;
  border-radius: 100px;
  background: var(--soft);
  color: #536178;
  font-size: 0.66rem;
  font-weight: 700;
}

.state-hub-grid .text-link {
  margin-top: auto;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #45536a;
  font-size: 0.79rem;
}

.check-list li::before {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6f7f1;
  color: var(--green);
  content: "✓";
  font-size: 0.58rem;
  font-weight: 900;
}

.check-list-light li {
  color: #d4deec;
}

.walkaround-card,
.route-note {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.walkaround-card h3,
.route-note h3,
.route-note strong {
  color: var(--white);
}

.walkaround-card .check-list li {
  color: #d5deeb;
}

.community-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-pills span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: #4d5b71;
  font-size: 0.73rem;
  font-weight: 730;
}

.pickup-grid,
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.pickup-grid article,
.concept-grid article {
  min-height: 215px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.city-concepts .concept-grid article {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.city-concepts .concept-grid h3 {
  color: var(--white);
}

.city-concepts .concept-grid p {
  color: #c6d1e1;
  font-size: 0.77rem;
}

.resource-list {
  display: grid;
  gap: 10px;
}

.resource-list > a {
  display: grid;
  gap: 5px;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}

.resource-list > a strong {
  color: var(--navy);
}

.resource-list > a span,
.resource-list > a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.resource-list > article {
  display: grid;
  gap: 6px;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
}

.resource-list > article strong {
  color: var(--navy);
}

.resource-list > article span {
  color: var(--muted);
  font-size: 0.74rem;
}

.city-card-grid > a {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.city-card-grid > a:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.city-card-grid > a > span {
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.city-card-grid > a h3 {
  margin-bottom: 9px;
}

.city-card-grid > a p {
  font-size: 0.77rem;
}

.city-card-grid > a .link-arrow {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 820;
}

.springfield-hero {
  background:
    radial-gradient(circle at 88% 12%, rgba(211, 11, 43, 0.1), transparent 28%),
    linear-gradient(135deg, #f8fafd, #fff 52%, #edf3fb);
}

.springfield-visit address {
  margin: 22px 0 12px;
  color: #48566c;
  font-style: normal;
  line-height: 1.7;
}

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

.springfield-pickup {
  display: block;
  margin-top: 0;
}

/* Recovered content, contact and legal hooks */
.finance-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 45px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.27s ease;
}

.finance-card:hover {
  border-color: rgba(211, 11, 43, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.finance-card > span {
  margin-bottom: 35px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.finance-card .link-arrow {
  margin-top: auto;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid > a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e3e8ef;
}

.gallery-grid > a::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(7, 26, 57, 0.86));
  content: "";
  pointer-events: none;
}

.gallery-grid picture,
.gallery-grid img {
  width: 100%;
  height: 100%;
}

.gallery-grid img {
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-grid > a:hover img {
  transform: scale(1.045);
}

.gallery-grid > a > span {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 47px;
  left: 15px;
  color: #ff9bad;
  font-size: 0.64rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-grid > a > strong {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 17px;
  left: 15px;
  overflow: hidden;
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.consent-check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
  margin: 18px 0;
  font-weight: 550 !important;
}

.contact-card {
  position: sticky;
  top: 130px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.contact-card > img {
  width: min(260px, 100%);
  margin-bottom: 26px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--white);
}

.contact-card h2,
.contact-card h3,
.contact-card strong {
  color: var(--white);
}

.contact-card p {
  color: #c5d0e1;
}

.contact-phone {
  display: block;
  margin: 18px 0;
  color: #ff9bad;
  font-size: 1.4rem;
  font-weight: 850;
}

.article-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.article-shell > aside {
  position: sticky;
  top: 130px;
  padding: 22px;
  border-radius: 12px;
  background: var(--soft);
}

.article-shell > article {
  max-width: 850px;
}

.article-shell > article > section {
  padding-bottom: 50px;
}

.article-shell > article h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
}

.legal-page .article-shell > article h2 {
  margin-top: 40px;
}

.sitemap-cities {
  grid-column: span 2;
}

.inventory-strip,
.inventory-catalog,
.contact-section,
.city-priorities,
.city-resources,
.city-faq,
.springfield-visit,
.state-intro,
.systems-section,
.trailer-types-home,
.markets-section,
.planning-section,
.home-faq,
.locations-hero,
.page-hero-inventory {
  position: relative;
}

.inventory-grid-catalog {
  align-items: stretch;
}

.faq-wide {
  max-width: 1000px;
  margin-inline: auto;
}

/* Recovered footer */
.footer-cta-inner {
  min-height: 270px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.footer-cta-inner > div:first-child {
  max-width: 800px;
}

.footer-cta-actions {
  min-width: max-content;
  display: flex;
  gap: 10px;
}

.site-footer {
  padding-top: 0;
}

.site-footer .footer-grid {
  padding-block: clamp(66px, 8vw, 96px);
}

.footer-brand > img {
  width: min(285px, 100%);
  margin-bottom: 23px;
  filter: none;
}

.footer-brand > a {
  width: auto;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand > a:not(.footer-phone) {
  display: block;
  margin-top: 5px;
  color: #c4cedd;
  font-size: 0.78rem;
}

.footer-phone {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 820;
}

.footer-column h2,
.footer-markets h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer-column address,
.footer-column p {
  margin: 0 0 14px;
  color: #bec9d9;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-markets > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.footer-markets > div a {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #c7d1de;
  font-size: 0.73rem;
  font-weight: 700;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-bottom p {
  max-width: 850px;
  margin: 0;
  color: #a9b6c8;
  font-size: 0.7rem;
}

.site-footer .footer-bottom > div {
  display: flex;
  gap: 15px;
  color: #c5cede;
  font-size: 0.72rem;
}

/* Recovered responsive hooks */
@media (max-width: 1220px) {
  .brand {
    width: 220px;
  }

  .phone-pill span {
    display: none;
  }

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

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

@media (max-width: 1040px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .home-hero-grid,
  .page-hero-grid,
  .product-detail-grid,
  .two-column-copy,
  .visit-grid,
  .about-story,
  .city-priority-grid,
  .resource-layout,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: clamp(430px, 68vw, 610px);
  }

  .systems-intro,
  .contact-card,
  .article-shell > aside {
    position: static;
  }

  .state-hub-grid,
  .city-card-grid,
  .planning-card-grid,
  .pickup-grid,
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .inventory-controls {
    position: static;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .results-count {
    margin: 0;
  }

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

  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 48px;
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .brand {
    width: min(55vw, 205px);
  }

  .nav-quote,
  .phone-pill {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .home-hero {
    padding-block: 54px 64px;
  }

  .home-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-trust span {
    padding-inline: 8px;
    font-size: 0.56rem;
  }

  .hero-trust strong {
    font-size: 1.28rem;
  }

  .home-hero-visual {
    min-height: 390px;
    margin-top: 36px;
  }

  .home-hero-visual > picture {
    inset-left: 0;
    left: 0;
  }

  .home-hero-visual::after {
    left: 0;
  }

  .hero-image-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-accent {
    display: none;
  }

  .proof-bar-grid {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 25px;
  }

  .proof-bar-grid > div {
    justify-content: flex-start;
  }

  .process-grid,
  .state-hub-grid,
  .city-card-grid,
  .planning-card-grid,
  .planning-card-grid.six-cards,
  .pickup-grid,
  .concept-grid,
  .featured-market-grid,
  .guide-card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .springfield-pickup .pickup-grid {
    grid-template-columns: 1fr;
  }

  .type-card-grid {
    grid-template-columns: 1fr;
  }

  .type-card,
  .type-card-1,
  .type-card-2,
  .type-card-3,
  .type-card-4,
  .type-card-5 {
    grid-column: auto;
  }

  .inventory-card-body {
    min-height: 0;
  }

  .inventory-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .inventory-filters button {
    flex: 0 0 auto;
  }

  .verification-band .shell {
    flex-direction: column;
    gap: 9px;
  }

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

  .article-shell > article > section {
    padding-bottom: 35px;
  }

  .footer-cta-actions {
    min-width: 0;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-markets > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 78px;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 175px;
  }

  .mobile-toggle {
    width: 41px;
    height: 41px;
  }

  .home-hero-visual {
    min-height: 330px;
  }

  .footer-markets > div {
    grid-template-columns: 1fr;
  }
}

/* Nationwide premium rebuild */
.utility-message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-trigger {
  gap: 6px;
}

.nav-trigger > svg {
  width: 13px;
  transition: transform 0.22s ease;
}

.nav-group.is-open .nav-trigger > svg {
  transform: rotate(180deg);
}

.mega-menu-inventory {
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.18fr) minmax(230px, 0.55fr);
}

.mega-menu-buy,
.mega-menu-national {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
}

.mega-employee-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #d6deea;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fafd, #eef3f9);
}

.mega-employee-card > span,
.mega-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mega-employee-card > strong {
  color: var(--navy);
  font-size: 1.03rem;
}

.mega-employee-card p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 0.74rem;
}

.mega-employee-card > a {
  margin-top: auto;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 820;
}

.state-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.state-menu a > span {
  min-width: 28px;
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 850;
}

.mega-all-states {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.premium-home-hero {
  min-height: min(850px, calc(100vh - 38px));
  display: flex;
  align-items: center;
  padding-block: clamp(70px, 7vw, 112px);
  background:
    radial-gradient(circle at 82% 6%, rgba(63, 112, 198, 0.52), transparent 32%),
    radial-gradient(circle at 3% 95%, rgba(211, 11, 43, 0.18), transparent 33%),
    linear-gradient(124deg, #06142d 0%, #0a2149 52%, #0d2e68 100%);
}

.hero-glow {
  position: absolute;
  inset: auto -180px -360px auto;
  width: 750px;
  height: 750px;
  border: 130px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.premium-home-hero .home-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 5.7vw, 6.75rem);
}

.premium-home-hero .home-hero-copy h1 > span {
  display: block;
  margin-top: 7px;
  color: #aebfda;
  font-size: 0.46em;
  font-weight: 580;
  letter-spacing: -0.04em;
}

.premium-home-hero .home-hero-visual {
  min-height: 620px;
}

.premium-home-hero .home-hero-visual > picture {
  inset: 0 0 0 5%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 44px 44px 18px 44px;
}

.premium-home-hero .home-hero-visual::after {
  inset: 48% 0 0 5%;
  border-radius: 0 0 18px 44px;
}

.hero-detail-frame {
  position: absolute;
  z-index: 4;
  top: 24px;
  left: -18px;
  width: 185px;
  aspect-ratio: 1/1.18;
  overflow: hidden;
  padding: 7px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  transform: rotate(-3deg);
}

.hero-detail-frame picture,
.hero-detail-frame img {
  width: 100%;
  height: 100%;
}

.hero-detail-frame img {
  border-radius: 12px;
  object-fit: cover;
}

.hero-live-badge {
  position: absolute;
  z-index: 5;
  top: 44px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  background: rgba(7, 26, 57, 0.77);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 780;
  backdrop-filter: blur(12px);
}

.hero-live-badge > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d59c;
  box-shadow: 0 0 0 6px rgba(53, 213, 156, 0.13);
}

.premium-home-hero .hero-image-card {
  right: 34px;
  bottom: 34px;
  left: -26px;
  max-width: 395px;
  padding: 23px 25px;
}

.home-command-bar {
  position: relative;
  z-index: 8;
  margin-top: -1px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 26, 57, 0.1);
}

.home-command-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-command-grid > a {
  min-height: 190px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 29px clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--line);
  transition: background 0.25s ease;
}

.home-command-grid > a:first-child {
  border-left: 1px solid var(--line);
}

.home-command-grid > a:hover {
  background: #f7f9fc;
}

.home-command-grid > a > span {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-command-grid > a > strong {
  margin: 9px 0 6px;
  color: var(--navy);
  font-size: 1.06rem;
}

.home-command-grid p {
  margin: 0;
  font-size: 0.75rem;
}

.home-command-grid .link-arrow {
  margin-top: auto;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 820;
}

.concept-explorer {
  overflow: hidden;
}

.concept-explorer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.concept-explorer-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 252, 0.95)),
    var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.concept-explorer-grid article:hover {
  border-color: rgba(211, 11, 43, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.concept-explorer-grid article > span {
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 850;
}

.concept-explorer-grid article h3 {
  font-size: 1.15rem;
}

.concept-explorer-grid article p {
  margin: auto 0 0;
  font-size: 0.75rem;
}

.national-directory-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 19px;
  background:
    radial-gradient(circle at 90% 10%, rgba(70, 118, 197, 0.38), transparent 34%),
    var(--navy);
  box-shadow: var(--shadow-md);
}

.national-directory-card > div {
  max-width: 800px;
}

.national-directory-card span {
  color: #ff9bad;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.national-directory-card strong {
  display: block;
  margin: 7px 0 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  line-height: 1.12;
}

.national-directory-card p {
  margin: 0;
  color: #c6d1e2;
  font-size: 0.8rem;
}

.region-directory {
  display: grid;
  gap: clamp(74px, 9vw, 130px);
}

.region-directory .state-hub-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.region-directory .state-hub-grid article {
  min-height: 185px;
}

.national-count-card strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.state-operating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.state-resource-panel {
  display: grid;
  gap: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.state-resource-panel > strong {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.05rem;
}

.state-resource-panel > a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
}

.state-resource-panel > p {
  margin: 18px 0 0;
  font-size: 0.73rem;
}

.market-proof-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(7, 26, 57, 0.07);
}

.market-proof-bar .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.market-proof-bar .shell > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.market-proof-bar .shell > div:first-child {
  border-left: 1px solid var(--line);
}

.market-proof-bar span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-proof-bar strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: capitalize;
}

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

.concept-grid--six article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.concept-grid--six article > span {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebdd2;
  font-size: 0.7rem;
  line-height: 1.55;
}

.size-comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.size-comparison-grid article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.size-comparison-grid article > span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.size-comparison-grid h3 {
  margin: 28px 0 12px;
  font-size: 1.1rem;
}

.size-comparison-grid p {
  margin: auto 0 0;
  font-size: 0.75rem;
}

.nearby-markets {
  overflow: hidden;
}

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

.nearby-link-grid a {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.25s ease;
}

.nearby-link-grid a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.nearby-link-grid a > span {
  color: #ff9bad;
  font-size: 0.62rem;
  font-weight: 850;
}

.nearby-link-grid a > strong {
  margin: 7px 0;
  color: var(--white);
}

.nearby-link-grid .link-arrow {
  margin-top: auto;
  color: #c7d2e4;
  font-size: 0.68rem;
}

.status-pill-pending {
  background: #fff6dc;
  color: #865708;
}

.status-pill-sold {
  background: #f0f1f3;
  color: #626a77;
}

.site-footer .footer-markets-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-markets-heading span {
  color: #ff9bad;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-markets-heading h2 {
  margin: 5px 0 0;
  font-size: 1.45rem;
}

.footer-markets-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 820;
}

.footer-markets-heading > a svg {
  width: 17px;
}

.site-footer .footer-market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.site-footer .footer-market-grid > a {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
}

.footer-market-grid > a span {
  color: #ff9bad;
  font-size: 0.58rem;
  font-weight: 850;
}

.footer-market-grid > a strong {
  color: #e7edf7;
  font-size: 0.75rem;
}

.footer-market-grid > a svg {
  width: 15px;
  color: #8192aa;
}

.runtime-nav-row {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.runtime-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 27px);
  margin-left: auto;
}

.runtime-nav a {
  color: #26354c;
  font-size: 0.79rem;
  font-weight: 760;
}

.runtime-nav a:hover {
  color: var(--red);
}

.runtime-footer {
  padding: 70px 0;
}

.runtime-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 70px;
}

.runtime-footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.runtime-footer-grid img {
  width: min(280px, 100%);
}

.runtime-footer-grid p,
.runtime-footer-grid span,
.runtime-footer-grid a {
  color: #c0cbdc;
  font-size: 0.77rem;
}

.runtime-footer-grid strong {
  margin-bottom: 7px;
  color: var(--white);
}

@media (max-width: 1180px) {
  .mega-menu-inventory {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  }

  .mega-employee-card {
    display: none;
  }

  .concept-explorer-grid,
  .size-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-directory .state-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .runtime-nav a:nth-last-child(-n + 2) {
    display: none;
  }
}

@media (max-width: 960px) {
  .home-command-grid {
    grid-template-columns: 1fr;
  }

  .home-command-grid > a {
    min-height: 150px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .state-operating-grid {
    grid-template-columns: 1fr;
  }

  .market-proof-bar .shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-proof-bar .shell > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .concept-grid--six,
  .nearby-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .runtime-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .utility-message {
    display: none;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .faq-layout > *,
  .accordion-list,
  .accordion-list details,
  .accordion-list summary {
    min-width: 0;
  }

  .premium-home-hero {
    min-height: auto;
  }

  .premium-home-hero .home-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .premium-home-hero .home-hero-visual {
    min-height: 430px;
  }

  .hero-detail-frame {
    top: 18px;
    left: -4px;
    width: 120px;
  }

  .hero-live-badge {
    top: 20px;
    right: 12px;
  }

  .premium-home-hero .hero-image-card {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .concept-explorer-grid,
  .region-directory .state-hub-grid,
  .concept-grid--six,
  .size-comparison-grid,
  .nearby-link-grid {
    grid-template-columns: 1fr;
  }

  .concept-explorer-grid article {
    min-height: 210px;
  }

  .national-directory-card {
    align-items: stretch;
    flex-direction: column;
  }

  .market-proof-bar .shell {
    width: 100%;
  }

  .market-proof-bar .shell > div {
    min-height: 92px;
    padding: 16px 20px;
  }

  .site-footer .footer-markets-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .runtime-nav-row {
    min-height: 76px;
  }

  .runtime-nav-row > .button {
    margin-left: auto;
    padding-inline: 13px;
    font-size: 0.68rem;
  }

  .runtime-footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 430px) {
  .premium-home-hero .home-hero-visual {
    min-height: 350px;
  }

  .hero-detail-frame {
    width: 98px;
  }

  .hero-live-badge {
    font-size: 0.57rem;
  }

  .market-proof-bar .shell {
    grid-template-columns: 1fr;
  }

  .market-proof-bar .shell > div {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

/* July 27, 2026 homepage polish: premium proof bar, concept menu, full reviews */
.nav-inventory-link {
  min-width: 104px;
  justify-content: center;
  padding-inline: 18px !important;
}

.mega-menu-concepts {
  grid-template-columns: minmax(255px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px 34px;
  padding: 30px;
}

.concept-menu-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.13), transparent 35%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.concept-menu-intro .mega-label {
  color: #ff9bad;
}

.concept-menu-intro > strong {
  max-width: 330px;
  margin: 9px 0 13px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.concept-menu-intro p {
  margin-bottom: 22px;
  color: #c9d5e7;
  font-size: 0.78rem;
  line-height: 1.62;
}

.concept-menu-intro .button {
  margin-top: auto;
}

.mega-concept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0 24px;
}

.mega-concept-grid > a {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 17px;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.mega-concept-grid > a:hover .concept-menu-copy strong {
  color: var(--red);
}

.mega-concept-grid > a > svg {
  width: 17px;
  color: #9ca8b9;
  transition: transform 0.2s ease;
}

.mega-concept-grid > a:hover > svg {
  color: var(--red);
  transform: translateX(3px);
}

.concept-menu-number {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 880;
  letter-spacing: 0.06em;
}

.concept-menu-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.concept-menu-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-menu-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-menu-footer {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 830;
}

.concept-menu-footer:hover {
  color: var(--red);
}

.concept-menu-footer svg {
  width: 17px;
}

.premium-home-hero {
  border-bottom: 0;
}

.premium-home-hero .home-hero-copy {
  padding-bottom: 0;
}

.premium-home-hero .home-hero-copy h1 em {
  color: #ff6f88;
  font-style: normal;
}

.hero-trust--service span {
  min-width: 0;
}

.hero-trust--service strong {
  font-size: 0.92rem;
}

.golden-proof-bar {
  position: relative;
  z-index: 9;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 26, 57, 0.12);
}

.golden-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.golden-proof-item {
  min-width: 0;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px clamp(20px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.golden-proof-item:first-child {
  border-left: 1px solid var(--line);
}

.golden-proof-item strong {
  color: var(--navy);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.golden-proof-item strong b {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
}

.golden-proof-item > span:not(.golden-proof-stars) {
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 810;
}

.golden-proof-item small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.golden-proof-item--rating {
  background:
    radial-gradient(circle at 100% 0, rgba(211, 11, 43, 0.08), transparent 45%),
    var(--white);
}

.golden-proof-item--rating:hover strong {
  color: var(--red);
}

.golden-proof-stars {
  margin-bottom: 9px;
  color: #f2a000;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.home-command-bar {
  box-shadow: 0 12px 34px rgba(7, 26, 57, 0.07);
}

.review-showcase {
  overflow: hidden;
  padding-block: clamp(82px, 8vw, 122px);
  background:
    radial-gradient(circle at 8% 0, rgba(28, 79, 157, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f8fc);
}

.review-showcase-head {
  align-items: flex-end;
}

.review-showcase-head > div:first-child {
  max-width: 870px;
}

.review-showcase-head p {
  max-width: 620px;
  margin: 17px 0 0;
}

.review-rating {
  min-width: 190px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.review-marquee {
  padding-block: 14px 28px;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.review-track {
  gap: 20px;
  animation-duration: 62s;
}

.review-track article {
  width: min(520px, calc(100vw - 52px));
  min-height: 395px;
  padding: 32px;
  border: 1px solid #d8dfea;
  border-top: 4px solid var(--red);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 26, 57, 0.1);
}

.review-track article > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-stars {
  font-size: 0.91rem;
}

.review-platform {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #637087;
  font-size: 0.65rem;
  font-weight: 760;
}

.review-platform::before {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  content: "G";
  font-size: 0.74rem;
  font-weight: 880;
}

.review-track blockquote {
  position: relative;
  margin: 27px 0 30px;
  color: #18233a;
  font-size: 0.96rem;
  font-weight: 590;
  line-height: 1.72;
}

.review-track footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.9rem !important;
  font-weight: 850;
}

.review-track footer > span:last-child {
  display: grid;
  gap: 2px;
}

.review-track footer strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.review-track footer small {
  color: var(--muted);
  font-size: 0.68rem;
}

.review-source {
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .mega-menu-concepts {
    grid-template-columns: minmax(235px, 0.55fr) minmax(0, 1.45fr);
  }

  .concept-menu-copy small {
    display: none;
  }
}

@media (max-width: 900px) {
  .golden-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .golden-proof-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .golden-proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .review-showcase-head {
    align-items: flex-start;
  }

  .review-rating {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .golden-proof-grid {
    width: 100%;
  }

  .golden-proof-item {
    min-height: 118px;
    padding: 18px;
  }

  .golden-proof-item strong {
    font-size: 0.93rem;
  }

  .golden-proof-item strong b {
    font-size: 1.85rem;
  }

  .golden-proof-item small {
    display: none;
  }

  .golden-proof-stars {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .review-marquee {
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .review-marquee::-webkit-scrollbar {
    display: none;
  }

  .review-track {
    width: max-content;
    gap: 14px;
    padding: 0 20px;
    animation: none;
  }

  .review-track article {
    width: min(86vw, 430px);
    min-height: 440px;
    padding: 25px;
    scroll-snap-align: center;
  }

  .review-track article[aria-hidden="true"] {
    display: none;
  }

  .review-track blockquote {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .review-platform {
    font-size: 0;
  }

  .review-platform::before {
    font-size: 0.72rem;
  }

  .review-source {
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .golden-proof-item {
    min-height: 108px;
    padding: 15px;
  }

  .golden-proof-item > span:not(.golden-proof-stars) {
    font-size: 0.7rem;
  }

  .review-track article {
    min-height: 470px;
  }
}
