:root {
  --navy: #18154a;
  --blue: #2e2a73;
  --light-blue: #cfd7e0;
  --pearl-silver: #e7edf2;
  --warm-ink: #18154a;
  --pearl: #f7f8f8;
  --ink: #141331;
  --shell: #e8edf2;
  --muted: #626779;
  --line: #d9dee8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 19, 49, 0.16);
  font-family: Inter, Avenir Next, Arial, sans-serif;
  color: var(--ink);
  background: var(--pearl);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--pearl);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.utility-bar {
  color: rgba(255, 255, 255, 0.9);
  background: #100e36;
  font-size: 0.88rem;
}

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

.utility-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  min-width: 0;
}

.former-name-note {
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(24, 21, 74, 0.96);
  border-bottom: 1px solid rgba(231, 237, 242, 0.16);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(24, 21, 74, 0.99);
  box-shadow: 0 12px 34px rgba(20, 19, 49, 0.24);
}

.header-inner {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 154px;
  display: block;
}

.brand img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown-toggle {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle.is-current {
  color: var(--light-blue);
  border-color: var(--light-blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  background: none;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  cursor: pointer;
  font-weight: 850;
}

.nav-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 35;
  width: 260px;
  padding: 8px;
  display: grid;
  gap: 2px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 850;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.is-current {
  color: var(--navy);
  background: #f0f3f6;
  outline: none;
}

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

.phone-link,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
}

.phone-link {
  color: var(--white);
  padding: 0 10px;
}

.btn {
  padding: 0 18px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(24, 21, 74, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(24, 21, 74, 0.28);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(231, 237, 242, 0.28);
  border-radius: 8px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(247, 248, 248, 0.96) 0%, rgba(247, 248, 248, 0.86) 40%, rgba(232, 237, 242, 0.3) 74%),
    url("assets/rebrand-01-truck-uniform-pearl-edit.png") center right / cover no-repeat;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
}

.move-path {
  position: absolute;
  right: max(18px, 5vw);
  bottom: clamp(28px, 8vw, 96px);
  z-index: 0;
  width: min(44vw, 520px);
  height: 160px;
  opacity: 0.62;
  pointer-events: none;
}

.move-path span:first-child {
  position: absolute;
  inset: 54px 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--light-blue), transparent);
  transform-origin: left center;
}

.move-path span:nth-child(2),
.move-path span:nth-child(3) {
  position: absolute;
  top: 44px;
  display: block;
  border-radius: 999px;
}

.move-path span:nth-child(2) {
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--pearl-silver);
  box-shadow: 0 0 0 8px rgba(231, 237, 242, 0.2);
}

.move-path span:nth-child(3) {
  left: 52%;
  width: 34px;
  height: 22px;
  background: var(--blue);
  box-shadow: 0 10px 28px rgba(24, 21, 74, 0.24);
}

.move-path span:nth-child(3)::before,
.move-path span:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.move-path span:nth-child(3)::before {
  left: 5px;
}

.move-path span:nth-child(3)::after {
  right: 5px;
}

body.motion-ready .move-path span:first-child {
  animation: route-line 950ms ease 260ms both;
}

body.motion-ready .move-path span:nth-child(2) {
  animation: route-dot 900ms ease 320ms both;
}

body.motion-ready .move-path span:nth-child(3) {
  animation: route-truck 1800ms ease-in-out 420ms both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(248, 248, 246, 0), var(--pearl));
  z-index: -1;
}

.hero-grid {
  min-height: calc(100svh - 120px);
  padding: clamp(54px, 7vw, 104px) 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(388px, 430px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 565px;
  color: #3f485f;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.5;
}

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

.promise-row {
  max-width: 760px;
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(24, 21, 74, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promise-row div {
  min-height: 110px;
  padding: 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  align-content: start;
  align-items: start;
}

.promise-row div + div {
  border-left: 1px solid var(--line);
}

.promise-row strong {
  color: var(--navy);
}

.promise-row span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.icon-circle,
.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: #f0f3f6;
  border: 1px solid #d8dee7;
  border-radius: 8px;
}

.icon-circle {
  grid-row: span 2;
}

.quote-card {
  align-self: center;
  scroll-margin-top: 126px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 21, 74, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-card-pro {
  background: linear-gradient(180deg, var(--white), #fbfcfd);
}

body.motion-ready .hero-copy .eyebrow,
body.motion-ready .hero-copy h1,
body.motion-ready .hero-copy .hero-lede,
body.motion-ready .hero-actions,
body.motion-ready .promise-row,
body.motion-ready .quote-card {
  animation: fade-up 620ms ease both;
}

body.motion-ready .hero-copy h1 {
  animation-delay: 90ms;
}

body.motion-ready .hero-copy .hero-lede {
  animation-delay: 160ms;
}

body.motion-ready .hero-actions {
  animation-delay: 230ms;
}

body.motion-ready .promise-row {
  animation-delay: 310ms;
}

body.motion-ready .quote-card {
  animation-delay: 180ms;
}

.quote-card-heading {
  min-height: 72px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--navy));
  border-bottom: 4px solid var(--pearl-silver);
  font-size: clamp(1.35rem, 2.3vw, 1.72rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
}

.quote-card-heading span {
  color: var(--pearl-silver);
}

.quote-form {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.quote-form label {
  display: grid;
  gap: 5px;
  color: #414a62;
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-honeypot {
  display: none !important;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd9e6;
  border-radius: 8px;
}

.quote-form textarea {
  min-height: 74px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(207, 215, 224, 0.55);
  border-color: var(--blue);
}

.field-example {
  color: #626779;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.2;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  box-shadow: 0 10px 24px rgba(24, 21, 74, 0.24);
  cursor: pointer;
}

.form-submit:hover,
.form-submit:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.quote-note {
  margin: 0;
  color: #566076;
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: center;
}

.quote-note a {
  color: var(--blue);
  font-weight: 950;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (min-width: 1041px) {
  .hero-grid {
    min-height: min(760px, calc(100svh - 120px));
    padding: clamp(34px, 4.2vw, 58px) 0 clamp(30px, 3.6vw, 48px);
    align-items: start;
  }

  .hero-copy {
    padding-top: 4px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(2.9rem, 5vw, 4.55rem);
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 540px;
    font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  }

  .hero-actions {
    margin-top: 24px;
  }

  .promise-row {
    margin-top: 34px;
  }

  .promise-row div {
    min-height: 98px;
    padding: 18px;
    grid-template-columns: 40px 1fr;
    gap: 3px 12px;
  }

  .promise-row span:last-child {
    font-size: 0.84rem;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .quote-card {
    align-self: start;
  }

  .quote-card-heading {
    min-height: 60px;
    padding: 14px 20px;
    font-size: clamp(1.18rem, 1.75vw, 1.45rem);
  }

  .quote-form {
    padding: 18px 20px 20px;
    gap: 8px;
  }

  .quote-form label {
    gap: 4px;
    font-size: 0.8rem;
  }

  .field-example {
    font-size: 0.68rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 40px;
    padding: 9px 10px;
  }

  .quote-form textarea {
    min-height: 58px;
  }

  .form-submit {
    min-height: 44px;
  }

  .quote-note {
    font-size: 0.8rem;
  }
}

@media (min-width: 1041px) and (max-height: 760px) {
  .utility-inner {
    min-height: 32px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 156px;
  }

  .brand img {
    height: 54px;
  }

  .hero-grid {
    min-height: calc(100svh - 102px);
    padding: 28px 0 26px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.65rem, 4.6vw, 3.9rem);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .promise-row {
    margin-top: 26px;
  }

  .promise-row div {
    min-height: 84px;
    padding: 14px;
    grid-template-columns: 36px 1fr;
    gap: 2px 10px;
  }

  .promise-row span:last-child {
    font-size: 0.78rem;
  }

  .icon-circle {
    width: 36px;
    height: 36px;
  }

  .quote-card-heading {
    min-height: 52px;
    padding: 12px 18px;
    font-size: 1.24rem;
  }

  .quote-form {
    padding: 12px 18px 14px;
    gap: 6px;
  }

  .quote-form label {
    font-size: 0.75rem;
  }

  .field-example {
    font-size: 0.64rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 34px;
    padding: 7px 9px;
  }

  .quote-form textarea {
    min-height: 46px;
  }

  .form-split {
    gap: 10px;
  }

  .form-submit {
    min-height: 40px;
  }

  .quote-note {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .form-status {
    min-height: 14px;
    font-size: 0.78rem;
  }
}

.section {
  padding: clamp(66px, 8vw, 106px) 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.services {
  padding-bottom: clamp(54px, 6vw, 76px);
}

.service-carousel {
  display: grid;
  gap: 18px;
}

.service-stage {
  position: relative;
}

.service-slide {
  min-height: 520px;
  display: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(7, 27, 58, 0.1);
}

.service-slide.is-active {
  display: grid;
  animation: fade-up 300ms ease both;
}

.service-media {
  min-height: 100%;
  overflow: hidden;
  background: #edf1f5;
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}

.service-media-top img {
  object-position: center top;
}

.service-media-right img {
  object-position: 62% center;
}

.service-media-left img {
  object-position: 34% center;
}

.service-media-center img {
  object-position: center center;
}

.service-media-wide img {
  object-position: center center;
}

.service-copy {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-count {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #f2f5f8;
  border: 1px solid #d8dee7;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 950;
}

.service-copy h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.service-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.service-copy ul {
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 28px;
  color: #414a62;
  line-height: 1.5;
}

.service-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border: 4px solid #d8dee7;
  border-radius: 50%;
}

.service-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.service-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-dots button {
  width: 30px;
  height: 8px;
  padding: 0;
  background: #cbd1dc;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.service-dots button.is-active {
  width: 46px;
  background: var(--blue);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.service-tabs button {
  min-height: 52px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
}

.service-tabs button:hover,
.service-tabs button:focus-visible,
.service-tabs button.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 12px 28px rgba(24, 21, 74, 0.18);
}

.proof-section {
  background: var(--white);
}

.proof-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.trust-badge-row {
  margin-bottom: clamp(38px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  align-items: center;
  gap: clamp(18px, 4vw, 58px);
}

.source-badge {
  min-height: 74px;
  display: grid;
  place-items: center;
}

.source-badge img {
  width: auto;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(7, 27, 58, 0.08));
}

.review-carousel {
  position: relative;
}

.review-carousel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.review-carousel-top h3 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  color: var(--white);
  background: var(--blue);
  outline: none;
}

.review-track {
  margin: 34px 0 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  min-height: 420px;
  padding: clamp(22px, 2.5vw, 28px);
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid #d8dee7;
  border-bottom: 2px solid #ed3b3b;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.review-card.is-carousel-visible {
  display: flex;
}

.review-card.is-active {
  border-color: #c4ccd8;
  box-shadow: 0 24px 60px rgba(7, 27, 58, 0.13);
  transform: translateY(-4px);
}

.review-card::before {
  content: none;
}

.review-card-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #e41d2c;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 950;
}

.google-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  justify-self: end;
}

.review-divider {
  height: 1px;
  background: var(--line);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.star-icons {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.star-icons img {
  width: 22px;
  height: 22px;
}

.star-icons img.is-empty {
  opacity: 0.22;
  filter: grayscale(1);
}

.verified-check {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: #4385f5;
  border-radius: 50%;
}

.verified-check svg {
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

.review-card p {
  margin-bottom: 0;
  color: #59667a;
  font-size: clamp(1.2rem, 1.6vw, 1.48rem);
  font-weight: 800;
  line-height: 1.46;
}

.review-author {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.review-card strong {
  color: #161f2c;
  font-size: 1.06rem;
}

.review-card small {
  color: #717b8b;
  font-weight: 800;
  line-height: 1.35;
}

.review-more {
  width: fit-content;
  color: #5f6978;
  border-bottom: 2px solid currentColor;
  font-size: 1rem;
  font-weight: 900;
}

.review-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 100%;
}

.carousel-dots button {
  width: 42px;
  height: 8px;
  padding: 0;
  background: #cbd1dc;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 52px;
  background: #717b8b;
}

.review-summary {
  width: min(100%, 620px);
  margin-bottom: 0;
  color: #667286;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.review-summary strong {
  color: var(--ink);
}

.review-summary a {
  color: #d71920;
  font-weight: 950;
}

.image-band {
  background:
    linear-gradient(180deg, rgba(248, 248, 246, 0.92), rgba(248, 248, 246, 0.92)),
    url("assets/pearl-pattern.png") center / cover no-repeat;
}

.band-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: clamp(24px, 5vw, 58px);
}

.area-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
}

.band-copy p,
.area-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.band-checks {
  margin-top: 6px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 215, 224, 0.35);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 27, 58, 0.08);
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #414a62;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px var(--light-blue);
}

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

.text-link::after {
  content: "";
  width: 38px;
  height: 2px;
  margin-left: 12px;
  background: currentColor;
}

.service-detail-link {
  margin-top: 8px;
}

.band-media,
.area-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.band-media {
  margin-top: clamp(24px, 4vw, 44px);
}

.band-media img,
.area-media img {
  width: 100%;
  object-fit: cover;
}

.band-media img {
  aspect-ratio: 16 / 8;
  object-position: center;
}

.band-media-home img {
  object-position: center 12%;
}

.area-media img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.photo-guides {
  background: var(--pearl);
}

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

.photo-guide-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
}

.photo-guide-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-guide-card div {
  padding: 24px;
}

.photo-guide-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.26rem, 2vw, 1.58rem);
}

.photo-guide-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.56;
}

.process {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--navy));
}

.process .eyebrow {
  color: var(--light-blue);
}

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

.process-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--light-blue);
  border-radius: 999px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 24px 0 8px;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.area-section {
  background: var(--white);
}

.area-list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--navy);
  background: #f0f3f6;
  border: 1px solid #d8dee7;
  border-radius: 8px;
  font-weight: 850;
}

.area-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-link-grid a {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  color: var(--navy);
  background: #f0f3f6;
  border: 1px solid #d8dee7;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.area-link-grid a:hover,
.area-link-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 100, 165, 0.38);
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.1);
}

.area-link-grid strong {
  display: block;
  font-size: 1rem;
  font-weight: 950;
}

.area-link-grid a span {
  min-height: 0;
  margin-top: 6px;
  padding: 0;
  display: block;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.42;
}

.final-cta {
  padding-top: 0;
  background: var(--white);
}

.final-card {
  padding: clamp(30px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 19, 49, 0.96), rgba(24, 21, 74, 0.94)),
    url("assets/pearl-pattern.png") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.final-card .eyebrow {
  color: var(--light-blue);
}

.final-card p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 90px;
  color: var(--white);
  background: #100e36;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(150px, 0.5fr));
  gap: 36px;
}

.footer-brand img {
  width: 146px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.mobile-action-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 19, 49, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-action-bar a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
}

.mobile-action-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease var(--reveal-delay, 0ms), transform 540ms ease var(--reveal-delay, 0ms);
}

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

body.motion-ready .detail-card.reveal {
  transform: translateY(24px) scale(0.98);
}

body.motion-ready .detail-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes fade-up {
  from {
    transform: translateY(22px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes route-line {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes route-dot {
  from {
    opacity: 0;
    transform: translateX(-18px) scale(0.7);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes route-truck {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(80px);
  }
}

.subpage-main {
  background: var(--pearl);
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(248, 248, 246, 0.98), rgba(237, 248, 252, 0.9)),
    url("assets/pearl-pattern.png") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(248, 248, 246, 0), var(--pearl));
  z-index: 0;
}

.page-hero-grid {
  min-height: min(650px, calc(100svh - 120px));
  padding: clamp(54px, 7vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
}

.page-hero-copy {
  max-width: 680px;
}

.page-hero-media,
.blog-empty-card,
.blog-photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 21, 74, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  min-height: 430px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-photo-card img {
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-empty-card,
.blog-photo-card div {
  padding: clamp(28px, 5vw, 48px);
}

.blog-empty-card h2,
.blog-photo-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.blog-empty-card p:not(.eyebrow),
.blog-photo-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.move-path-subpage {
  right: max(16px, 4vw);
  bottom: auto;
  top: 120px;
}

.service-detail-section {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

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

.detail-card {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid #d8dee7;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
}

.detail-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #f2f5f8;
  border: 1px solid #d8dee7;
  border-radius: 8px;
  font-weight: 950;
}

.detail-card h3 {
  margin: 26px 0 10px;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.blog-topic-card {
  padding: 0;
  overflow: hidden;
}

.blog-topic-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-topic-card div {
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-proof-rail {
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(24, 21, 74, 0.94)),
    url("assets/pearl-pattern.png") center / cover no-repeat;
  color: var(--white);
}

.service-proof-rail .eyebrow {
  color: var(--light-blue);
}

.location-services,
.location-nearby {
  background: var(--white);
}

.location-service-grid,
.location-nearby-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.location-service-grid a,
.location-nearby-list a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  color: var(--navy);
  background: #f2f5f8;
  border: 1px solid #d8dee7;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.location-service-grid a:hover,
.location-service-grid a:focus-visible,
.location-nearby-list a:hover,
.location-nearby-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 100, 165, 0.38);
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.1);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--white), #fbfcfd);
  border: 1px solid #d8dee7;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.35;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.rail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-proof-rail .check-list {
  margin-top: 0;
}

.service-proof-rail .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.blog-topics {
  background: var(--white);
}

.subpage-main .final-cta {
  padding-top: clamp(58px, 6vw, 86px);
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 12px) 0 auto;
    z-index: 25;
    max-height: calc(100svh - 132px);
    padding: 18px;
    flex-direction: column;
    gap: 6px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--ink);
    border-bottom: 0;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-current,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible,
  .nav-dropdown-toggle.is-current {
    color: var(--navy);
    background: #f0f3f6;
    border-color: transparent;
    outline: none;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    border-bottom: 0;
  }

  .site-nav .nav-dropdown .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    gap: 0;
    color: var(--ink);
    background: var(--white);
    overflow: hidden;
    border-width: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .nav-dropdown-menu::before {
    content: none;
  }

  .site-nav .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 340px;
    margin: 4px 0 8px;
    padding: 8px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown-menu a {
    min-height: 40px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .quote-card {
    max-width: 640px;
  }

  .service-slide {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .service-media img {
    min-height: 380px;
    aspect-ratio: 16 / 9;
  }

  .service-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tabs button {
    min-width: 154px;
    flex: 0 0 auto;
  }

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

  .trust-badge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .band-grid,
  .area-grid,
  .page-hero-grid,
  .service-detail-grid,
  .rail-grid,
  .final-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    min-height: auto;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), 366px);
    margin-right: auto;
    margin-left: 12px;
  }

  .utility-inner {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 7px 0;
    text-align: center;
  }

  .utility-copy {
    justify-content: center;
  }

  .utility-copy span:first-child {
    display: none;
  }

  .former-name-note {
    padding-left: 0;
    border-left: 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 148px;
  }

  .brand img {
    height: 54px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(247, 248, 248, 0.97) 0%, rgba(247, 248, 248, 0.91) 52%, rgba(232, 237, 242, 0.36) 100%),
      url("assets/rebrand-01-truck-uniform-pearl-edit.png") center top / cover no-repeat;
  }

  .move-path {
    right: 12px;
    bottom: 28px;
    width: min(260px, 70vw);
    height: 120px;
    opacity: 0.38;
  }

  .move-path-subpage {
    top: auto;
    bottom: 36px;
  }

  .hero-grid {
    padding: 36px 0 42px;
  }

  .hero-copy,
  .hero-lede,
  .promise-row,
  .quote-card {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

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

  .promise-row {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .promise-row div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quote-card {
    max-width: none;
  }

  .quote-card-heading {
    min-height: 66px;
    padding: 16px 18px;
  }

  .quote-form {
    padding: 18px;
  }

  .form-split,
  .photo-guide-grid,
  .trust-badge-row,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-slide {
    border-radius: 8px;
  }

  .service-media img {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }

  .service-copy {
    padding: 24px;
  }

  .service-copy h3 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .page-hero-grid {
    padding: 42px 0 48px;
  }

  .page-hero-media img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .blog-photo-card img {
    min-height: 230px;
  }

  .detail-card-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .area-link-grid,
  .location-service-grid,
  .location-nearby-list {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: auto;
  }

  .service-controls {
    justify-content: space-between;
    gap: 10px;
  }

  .service-dots {
    gap: 6px;
  }

  .service-dots button {
    width: 18px;
  }

  .service-dots button.is-active {
    width: 34px;
  }

  .service-tabs {
    margin-right: -12px;
    margin-left: -12px;
    padding: 0 12px 4px;
  }

  .service-tabs button {
    min-width: 142px;
    min-height: 48px;
  }

  .band-media img {
    aspect-ratio: 16 / 9;
  }

  .band-media-home img {
    aspect-ratio: 4 / 3;
    object-position: center 10%;
  }

  .review-carousel-top {
    gap: 16px;
  }

  .carousel-controls {
    flex-shrink: 0;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .review-track {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 24px 0;
  }

  .review-card {
    min-height: 380px;
  }

  .review-card:not(.is-carousel-visible) {
    display: none;
  }

  .review-card.is-active {
    transform: none;
  }

  .section {
    padding: 58px 0;
  }

  .process-grid article {
    min-height: auto;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-action-bar {
    display: grid;
  }

  body.show-mobile-bar .mobile-action-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 390px) {
  .btn {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.92rem;
  }

  .quote-card-heading {
    font-size: 1.3rem;
  }
}

.rates-page {
  background: #f4f7fb;
}

.rates-page .site-nav a[aria-current="page"] {
  color: var(--light-blue);
  border-color: var(--light-blue);
}

.rates-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(247, 248, 248, 0.98) 0%, rgba(247, 248, 248, 0.9) 48%, rgba(232, 237, 242, 0.48) 100%),
    url("assets/pearl-pattern.png") center / 540px repeat;
}

.rates-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0), #f4f7fb);
}

.rates-hero-grid {
  min-height: min(780px, calc(100svh - 132px));
  padding: clamp(44px, 6vw, 82px) 0 clamp(42px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

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

.rates-hero-copy h1 {
  max-width: 700px;
}

.rates-proof-strip {
  margin-top: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 21, 74, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(20, 19, 49, 0.12);
}

.rates-proof-strip div {
  min-height: 116px;
  padding: 20px;
  display: grid;
  gap: 7px;
  align-content: center;
}

.rates-proof-strip div + div {
  border-left: 1px solid var(--line);
}

.rates-proof-strip strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.rates-proof-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.4;
}

.rates-photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #dfe7ef;
  border: 1px solid rgba(24, 21, 74, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rates-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 54% center;
}

.rates-photo-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  color: var(--white);
  background: rgba(16, 14, 54, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.rates-photo-caption span,
.rates-photo-caption strong {
  display: block;
}

.rates-photo-caption span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rates-photo-caption strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.rates-funnel-section {
  padding: clamp(54px, 7vw, 96px) 0;
  background: #f4f7fb;
}

.rates-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 42px);
}

.rates-progress-panel,
.rates-funnel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(7, 27, 58, 0.1);
}

.rates-progress-panel {
  position: sticky;
  top: 142px;
  padding: 24px;
  display: grid;
  gap: 22px;
}

.rates-mini-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rates-mini-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #f2f5f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rates-mini-brand span,
.rates-mini-brand strong {
  display: block;
}

.rates-mini-brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.rates-mini-brand strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.15;
}

.rates-progress-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.42rem, 2vw, 1.78rem);
  line-height: 1.08;
}

.rates-progress-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.rates-summary-list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.rates-summary-list div {
  min-height: 64px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
  background: #f6f8fb;
  border: 1px solid #dde4ed;
  border-radius: 8px;
}

.rates-summary-list dt {
  color: #697188;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rates-summary-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.25;
  word-break: break-word;
}

.rates-funnel-card {
  min-height: 640px;
  overflow: hidden;
}

.rates-funnel-top {
  padding: 22px 26px 18px;
  display: grid;
  gap: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #100e36, var(--navy));
}

.rates-funnel-top .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.rates-progress-track {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.rates-progress-track span {
  width: 10%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--light-blue), #ffffff);
  border-radius: inherit;
  transition: width 260ms ease;
}

.rates-master-form {
  margin: 0;
}

.rates-step {
  min-height: 548px;
  padding: clamp(24px, 4vw, 46px);
  display: none;
}

.rates-step.is-active {
  display: block;
  animation: fade-up 260ms ease both;
}

.rates-step h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

.rates-step p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.rates-selected-line {
  min-height: 30px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.3;
}

.rates-option-grid {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

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

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

.rates-option {
  min-height: 96px;
  padding: 18px;
  display: grid;
  gap: 6px;
  align-content: center;
  color: var(--ink);
  text-align: left;
  background: #f7f9fc;
  border: 1px solid #d9e1eb;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.rates-size-grid .rates-option {
  min-height: 72px;
  text-align: center;
  justify-items: center;
}

.rates-option:hover,
.rates-option:focus-visible,
.rates-option.is-selected {
  color: var(--navy);
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(24, 21, 74, 0.13);
  transform: translateY(-1px);
}

.rates-option strong {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.2;
}

.rates-option span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.4;
}

.rates-field-block {
  max-width: 560px;
  margin-top: 28px;
  display: grid;
  gap: 8px;
}

.rates-field-block label {
  color: #414a62;
  font-size: 0.84rem;
  font-weight: 900;
}

.rates-field-block input {
  width: 100%;
  min-height: 58px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 760;
}

.rates-field-block input:focus {
  outline: 3px solid rgba(207, 215, 224, 0.62);
  border-color: var(--blue);
}

.rates-name-grid {
  max-width: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rates-quick-row,
.rates-button-row,
.rates-final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.rates-quick-row {
  margin-top: 16px;
}

.rates-quick-row button,
.rates-back-btn {
  min-height: 42px;
  padding: 0 14px;
  color: var(--blue);
  background: #eef3f8;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

.rates-quick-row button:hover,
.rates-quick-row button:focus-visible,
.rates-back-btn:hover,
.rates-back-btn:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--blue);
}

.rates-button-row {
  margin-top: 28px;
}

.rates-button-row .btn {
  min-width: 178px;
}

.rates-loading-step {
  min-height: 548px;
  display: none;
  place-items: center;
  text-align: center;
}

.rates-loading-step.is-active {
  display: grid;
}

.rates-loading-step p,
.rates-loading-step h2 {
  margin-right: auto;
  margin-left: auto;
}

.rates-loader-orbit {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
  color: var(--blue);
}

.rates-loader-orbit span:first-child {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(46, 42, 115, 0.12);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: rates-spin 900ms linear infinite;
}

.rates-loader-orbit span:last-child {
  position: absolute;
  inset: 30px;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 21, 74, 0.22);
}

.rates-loader-bar {
  width: min(380px, 100%);
  height: 10px;
  margin: 24px auto 0;
  overflow: hidden;
  background: #dbe3ed;
  border-radius: 999px;
}

.rates-loader-bar span {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--light-blue));
  border-radius: inherit;
  transition: width 1100ms ease;
}

.rates-loading-step.is-active .rates-loader-bar span {
  width: 100%;
}

.rates-quote-ready {
  max-width: 520px;
  margin-bottom: 26px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-radius: 8px;
}

.rates-quote-ready span,
.rates-quote-ready strong {
  display: block;
  line-height: 1.2;
}

.rates-quote-ready span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rates-quote-ready strong {
  font-size: 1.02rem;
}

.rates-consent-copy {
  max-width: 650px;
  margin-top: 14px;
  color: #697188;
  font-size: 0.78rem;
  line-height: 1.45;
}

.rates-confirm-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 21, 74, 0.18);
}

.rates-confirm-icon svg {
  width: 32px;
  height: 32px;
}

.rates-confirm-icon-success {
  background: #24715b;
}

.rates-phone-confirm {
  max-width: 420px;
  margin-top: 24px;
  padding: 20px;
  color: var(--navy);
  background: #f3f6fa;
  border: 1px solid #d8e1eb;
  border-radius: 8px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.rates-final-summary {
  max-width: 700px;
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rates-final-summary div {
  min-height: 64px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  background: #f6f8fb;
  border: 1px solid #dde4ed;
  border-radius: 8px;
}

.rates-final-summary dt {
  color: #697188;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rates-final-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.3;
  word-break: break-word;
}

.rates-final-actions {
  margin-bottom: 14px;
}

.rates-final-actions .btn {
  min-width: 160px;
}

.rates-final-actions .btn-light {
  color: var(--navy);
  background: #eef3f8;
  border-color: #d7e0ea;
}

.rates-copy-status {
  min-height: 20px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 820;
}

.rates-support-section {
  background: var(--white);
}

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

.rates-proof-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  align-content: start;
  gap: 14px;
  background: #f6f8fb;
  border: 1px solid #dce4ee;
  border-radius: 8px;
}

.rates-proof-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid #d9e1eb;
  border-radius: 8px;
  font-weight: 950;
}

.rates-proof-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.rates-proof-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

@media (max-width: 1080px) {
  .rates-hero-grid {
    grid-template-columns: 1fr;
  }

  .rates-photo-panel,
  .rates-photo-panel img {
    min-height: 420px;
  }

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

  .rates-progress-panel {
    position: static;
  }

  .rates-summary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rates-hero-grid {
    min-height: auto;
    padding-top: 36px;
  }

  .rates-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .rates-proof-strip,
  .rates-support-grid,
  .rates-option-grid-2,
  .rates-size-grid,
  .rates-name-grid,
  .rates-final-summary,
  .rates-summary-list {
    grid-template-columns: 1fr;
  }

  .rates-proof-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .rates-photo-panel,
  .rates-photo-panel img {
    min-height: 320px;
  }

  .rates-funnel-card {
    min-height: auto;
  }

  .rates-step,
  .rates-loading-step {
    min-height: 500px;
  }

  .rates-step h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .rates-option {
    min-height: 76px;
  }

  .rates-field-block input {
    min-height: 54px;
  }

  .rates-button-row .btn,
  .rates-final-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .rates-progress-panel,
  .rates-funnel-card {
    margin-right: -4px;
    margin-left: -4px;
  }

  .rates-step {
    padding: 22px;
  }

  .rates-funnel-top {
    padding: 18px 22px 16px;
  }

  .rates-quote-ready {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
