:root {
  --navy: #1a237e;
  --navy-deep: #11184f;
  --blue: #1e6087;
  --cyan: #00bcd4;
  --gold: #ffb23d;
  --gold-dark: #ed9719;
  --ink: #2b2b2b;
  --muted: #666b70;
  --soft: #f1f4f2;
  --line: #dfe4e5;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(19, 31, 57, 0.12);
  --radius: 18px;
  --container: 1160px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.18;
  letter-spacing: -0.035em;
}

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

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 20px;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #eef1f3;
  color: #15243a;
}

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

.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: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 6px;
  color: #fff;
  background: #000;
}

.skip-link:focus {
  transform: none;
}

.eyebrow,
.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light,
.hero-kicker {
  color: #b8eff5;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
}

.top-strip {
  position: relative;
  z-index: 101;
  color: #fff;
  background: #073b78;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  gap: 12px;
}

.top-strip a {
  color: #15b9d1;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.top-strip a:hover,
.top-strip a:focus-visible {
  color: #79e7f3;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: #eceff1;
  box-shadow: 0 10px 32px rgba(27, 36, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-frame {
  --logo-width: 460px;
  --logo-x-offset: 3px;
  --logo-y-offset: 15px;
  position: relative;
  display: block;
  width: 260px;
  height: 80px;
  overflow: hidden;
  background: #fff;
}

.brand-logo-frame img {
  position: absolute;
  top: calc(50% + var(--logo-y-offset));
  left: calc(50% + var(--logo-x-offset));
  width: var(--logo-width);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.primary-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 33px 0;
  border: 0;
  color: #272a2c;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.is-active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown.is-open > button::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button span {
  display: inline-block;
  margin-left: 3px;
  font-size: 1rem;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open > button span {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: -24px;
  width: 230px;
  padding: 10px;
  transform: translateY(8px);
  border: 1px solid #e6eaec;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--navy);
  background: #eef8fa;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms 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);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 25px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 29, 54, 0.17);
}

.button--gold {
  color: #202325;
  background: var(--gold);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: #ffc158;
}

.button--dark {
  color: #fff;
  background: var(--navy-deep);
}

.button--outline-light {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: transparent;
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  color: var(--navy);
  background: #fff;
}

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

.button:disabled {
  transform: none;
  opacity: 0.65;
  cursor: wait;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(58, 227, 225, 0.28), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(31, 93, 174, 0.5), transparent 45%),
    linear-gradient(135deg, #00b9ce 0%, #087aa8 42%, #1a237e 100%);
}

.home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.home-hero__content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-top: 35px;
  padding-bottom: 150px;
  text-align: center;
}

.home-hero h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.home-hero p {
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions,
.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-waves {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
}

.hero-waves svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave--front {
  fill: #f1f4f2;
}

.hero-truck-animation {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-truck-animation__vehicle {
  position: absolute;
  bottom: 82px;
  left: 0;
  width: clamp(620px, 48vw, 900px);
  opacity: .13;
  will-change: transform;
  animation: hero-truck-drive 24s linear infinite;
  animation-delay: -7s;
}

.hero-truck-animation img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(.72) brightness(1.16);
  will-change: transform;
  animation: hero-truck-float 1.8s ease-in-out infinite;
}

@keyframes hero-truck-drive {
  from { transform: translate3d(calc(-100% - 90px), 0, 0); }
  to { transform: translate3d(calc(100vw + 90px), 0, 0); }
}

@keyframes hero-truck-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 510px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: var(--navy);
}

.page-hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 29, 80, .84), rgba(5, 80, 124, .5), rgba(255,255,255,.14));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 5.15rem);
}

.page-hero p {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: 1.18rem;
  line-height: 1.65;
}

.simple-hero {
  padding: 105px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f5f7f6 100%);
}

.simple-hero h1 {
  max-width: 1000px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.simple-hero p {
  max-width: 900px;
  font-size: 1.1rem;
}

.simple-hero--contact,
.simple-hero--calculator {
  background: linear-gradient(135deg, #f8faf9 0%, #e9f4f5 100%);
}

.section {
  padding: 96px 0;
}

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

.section--form {
  padding-top: 50px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--light,
.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(45px, 7vw, 90px);
}

.split--center {
  align-items: center;
}

.split--top {
  align-items: start;
}

.split__content > :last-child {
  margin-bottom: 0;
}

.sticky-copy {
  position: sticky;
  top: 140px;
}

.stars {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: .1em;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.mini-points span {
  padding: 8px 11px;
  border-radius: 5px;
  color: #1a3340;
  background: #e8f8f8;
  font-size: .8rem;
  font-weight: 700;
}

.image-frame {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe5e6;
  box-shadow: var(--shadow);
}

.image-frame--wide {
  min-height: 410px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  max-width: 220px;
  padding: 17px 20px;
  border-radius: 10px;
  color: #fff;
  background: rgba(17, 24, 79, .93);
  backdrop-filter: blur(8px);
  gap: 12px;
}

.image-badge strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.image-badge span {
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.35;
}

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

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: .72rem;
  font-weight: 800;
}

.check-list--two-col {
  grid-template-columns: 1fr 1fr;
}

.numbered-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.numbered-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 15px;
}

.numbered-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: .75rem;
  font-weight: 800;
}

.numbered-list p {
  margin: 6px 0 0;
}

.lead-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid #e1e7e8;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.lead-card__heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

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

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: #303438;
  font-size: .86rem;
  font-weight: 700;
}

.field label span,
.field legend span {
  color: #be2f20;
}

.field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.field select,
.field textarea,
.search-box input {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid #ccd4d7;
  border-radius: 5px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-box input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, .12);
}

.field small {
  display: block;
  margin-top: 8px;
  color: #71777b;
  font-size: .7rem;
  line-height: 1.5;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.alert {
  margin-top: 24px;
  padding: 15px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.alert--error {
  border: 1px solid #efb9b2;
  color: #7e251b;
  background: #fff0ee;
}

.service-overview {
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,188,212,.35), transparent 34%),
    linear-gradient(135deg, #1e6087 0%, #152766 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}

.benefit-item {
  min-height: 145px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.benefit-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.benefit-item p {
  margin: 0;
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.55;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid #e0e5e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 41, 67, .08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card__visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--service-accent);
}

.service-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(10,21,46,.52), transparent 65%);
}

.service-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover .service-card__visual img {
  transform: scale(1.04);
}

.service-card__visual span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 50%;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
}

.service-card__body {
  padding: 26px;
}

.service-card__body h3 {
  margin-bottom: 13px;
}

.service-card__body p {
  color: var(--muted);
  font-size: .88rem;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.pricing-section {
  background: #fff;
}

.price-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  justify-self: end;
  padding: 45px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(0,188,212,.55), transparent 42%),
    linear-gradient(145deg, var(--navy-deep), var(--blue));
  box-shadow: var(--shadow);
}

.price-card__label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  color: #172332;
  background: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card__number {
  margin: 22px 0 4px;
  color: #fff;
  font-size: clamp(5rem, 9vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .9;
}

.price-card__number span {
  margin-left: 6px;
  color: var(--gold);
  font-size: .4em;
}

.price-card__number--word {
  font-size: clamp(3rem, 6vw, 5.3rem);
  letter-spacing: -.05em;
}

.price-card p {
  margin-bottom: 26px;
  font-weight: 600;
}

.price-card small {
  opacity: .8;
  font-weight: 400;
}

.process-section {
  background: #f8faf9;
}

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

.process-grid article {
  position: relative;
  padding: 36px 30px;
  border: 1px solid #e1e7e7;
  border-radius: 12px;
  background: #fff;
}

.process-grid article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #d9dfe1;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.06em;
}

.process-icon,
.contact-icon,
.stat-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 10px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.testimonials-section {
  color: #fff;
  background:
    linear-gradient(rgba(10, 26, 65, .93), rgba(10, 26, 65, .93)),
    url("../images/hero-highway.png") center / cover;
}

.testimonials-section h2 {
  color: #fff;
}

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

.testimonial-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.testimonial-card blockquote {
  min-height: 180px;
  margin: 0 0 25px;
  color: #fff;
  font-size: .93rem;
  line-height: 1.75;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person small {
  color: #b9c8d8;
  font-size: .72rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 70px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 140px;
}

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

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item > button {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  border: 0;
  text-align: left;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  gap: 20px;
}

.accordion-item > button span {
  font-weight: 700;
}

.accordion-item > button b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.accordion-item.is-open > button b {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 180ms ease, opacity 180ms ease;
}

.accordion-panel p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
  opacity: 1;
}

.cta-band {
  padding: 55px 0;
  color: #fff;
  background: linear-gradient(110deg, var(--blue), var(--navy));
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-band h2 {
  max-width: 710px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-band__actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.site-footer {
  padding: 75px 0 22px;
  color: #cbd3df;
  background: #101726;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  gap: 70px;
}

.brand--footer {
  margin-bottom: 24px;
}

.brand-logo-frame--footer {
  --logo-width: 555px;
  --logo-x-offset: 4px;
  --logo-y-offset: 19px;
  width: 290px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
}

.footer-about p {
  max-width: 470px;
  color: #aeb7c4;
  font-size: .86rem;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.social-title {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--gold);
  color: var(--navy-deep);
  background: var(--gold);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.social-links .social-icon-instagram rect,
.social-links .social-icon-instagram circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links .social-play {
  fill: var(--navy-deep);
}

.social-links a:hover .social-play,
.social-links a:focus-visible .social-play {
  fill: var(--gold);
}

.site-footer h3 {
  margin-bottom: 21px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: #aeb7c4;
  font-size: .84rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #788394;
  font-size: .7rem;
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #18232b;
  background: var(--gold);
  box-shadow: 0 12px 34px rgba(16, 23, 38, .28);
  font-size: 1.25rem;
}

/* About and truck pages */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-grid article {
  padding: 30px;
  border: 1px solid #dfe5e7;
  border-radius: 12px;
  background: #fff;
}

.value-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.value-grid h3 {
  margin-bottom: 12px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.value-grid .process-icon {
  margin-bottom: 20px;
}

.stats-band {
  color: #fff;
  background: linear-gradient(110deg, var(--navy-deep), var(--blue));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
}

.stats-grid > div {
  padding: 35px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--gold);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
}

.stats-grid span {
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 600;
}

.truck-list {
  display: grid;
  gap: 75px;
}

.truck-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.truck-row--reverse .truck-row__image {
  order: 2;
}

.truck-row__image {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.truck-row__image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.truck-number {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.inline-stats {
  display: grid;
  padding: 0;
  margin: 25px 0;
  list-style: none;
  gap: 8px;
}

.inline-stats li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-size: .88rem;
  font-weight: 600;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border: 1px solid #e0e4e6;
  border-radius: 12px;
  overflow: hidden;
}

.service-stats > div {
  padding: 35px;
  text-align: center;
  background: #f6f8f7;
}

.service-stats > div + div {
  border-left: 1px solid #dfe4e5;
}

.service-stats .stat-icon {
  margin: 0 auto 20px;
}

.service-stats strong,
.service-stats small {
  display: block;
}

.service-stats small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .72rem;
}

.narrow-form {
  max-width: 760px;
}

/* Carrier and contact forms */
.carrier-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: start;
  gap: 45px;
}

.carrier-sidebar {
  position: sticky;
  top: 130px;
}

.sidebar-card {
  padding: 30px;
  border-radius: 12px;
  background: var(--soft);
}

.sidebar-card h2 {
  font-size: 1.6rem;
}

.sidebar-card .check-list {
  font-size: .84rem;
}

.security-note {
  padding: 13px;
  border-left: 3px solid var(--gold);
  color: #565e62;
  background: #fff;
  font-size: .72rem;
  line-height: 1.6;
}

.sidebar-help {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
}

.sidebar-help span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.sidebar-help a {
  display: block;
  max-width: 100%;
  margin-top: 6px;
  color: var(--gold);
  font-size: clamp(.88rem, 1.45vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

.carrier-form {
  padding: clamp(25px, 4vw, 45px);
  border: 1px solid #dfe4e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 52px 1fr;
  margin: 18px 0 28px;
  padding-top: 28px;
  border-top: 1px solid #e4e8e9;
  gap: 16px;
}

.form-section-heading:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.form-section-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-size: .75rem;
  font-weight: 800;
}

.form-section-heading h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
}

.form-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.checkbox-fieldset,
.radio-fieldset {
  display: flex;
  flex-wrap: wrap;
  padding: 17px;
  border: 1px solid #d9dfe1;
  border-radius: 7px;
  gap: 15px 22px;
}

.checkbox-fieldset legend,
.radio-fieldset legend {
  padding: 0 5px;
}

.checkbox-fieldset label,
.radio-fieldset label,
.consent-field label {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-weight: 500;
  gap: 8px;
}

.checkbox-fieldset input,
.radio-fieldset input,
.consent-field input {
  margin-top: 5px;
  accent-color: var(--navy);
}

.upload-field {
  padding: 22px;
  border: 2px dashed #b9c6cb;
  border-radius: 8px;
  background: #f8faf9;
}

.upload-field input {
  width: 100%;
}

.contact-shell {
  padding: 45px;
  border-radius: 14px;
  background: var(--soft);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-cards article {
  padding: 34px;
  text-align: center;
  background: #fff;
}

.contact-cards .contact-icon {
  margin: 0 auto 18px;
}

.contact-cards h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.contact-cards a {
  color: var(--blue);
  font-weight: 600;
  word-break: break-word;
}

.contact-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .75rem;
}

.contact-form-wrap {
  max-width: 850px;
  margin: 55px auto 0;
  padding: 40px;
  border-radius: 12px;
  background: #fff;
}

/* Blog and articles */
.blog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 30px;
}

.blog-toolbar h2 {
  margin: 0;
}

.search-box {
  position: relative;
  display: block;
  width: min(100%, 330px);
}

.search-box input {
  padding-right: 48px;
}

.search-box b {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.2rem;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid #e0e5e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 40, 67, .07);
}

.blog-card[hidden] {
  display: none;
}

.blog-card__image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.blog-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(11,22,50,.5), transparent 65%);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__image span {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  left: 16px;
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--gold);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card__body {
  padding: 25px;
}

.blog-card__body small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
}

.blog-card__body h3 {
  margin-bottom: 12px;
}

.blog-card__body h3 a:hover {
  color: var(--blue);
}

.blog-card__body p {
  color: var(--muted);
  font-size: .84rem;
}

.empty-search {
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  background: var(--soft);
}

.article-hero {
  padding: 100px 0 80px;
  color: #fff;
  background: linear-gradient(130deg, var(--navy-deep), var(--blue));
}

.article-hero__inner {
  max-width: 980px;
}

.article-back {
  display: block;
  margin-bottom: 35px;
  color: #c9d7e7;
  font-size: .8rem;
  font-weight: 600;
}

.article-hero h1 {
  max-width: 950px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
}

.article-hero p {
  max-width: 820px;
  font-size: 1.12rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  padding-block: 80px;
  gap: 65px;
}

.article-featured {
  width: 100%;
  height: 440px;
  margin-bottom: 38px;
  border-radius: 14px;
  object-fit: cover;
}

.article-lead {
  font-size: 1.2rem;
  font-weight: 500;
}

.article-content section {
  margin-top: 40px;
}

.article-content h2 {
  font-size: 2rem;
}

.article-content p {
  color: #50565a;
}

.article-note {
  margin-top: 45px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
}

.article-note p {
  margin: 5px 0 0;
  font-size: .83rem;
}

.article-sidebar {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 18px;
}

.article-sidebar .sidebar-card:first-child {
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
}

.article-sidebar .sidebar-card:first-child h2 {
  color: #fff;
}

.sidebar-card--plain {
  display: grid;
  border: 1px solid #e0e5e6;
  background: #fff;
  gap: 10px;
}

.sidebar-card--plain h3 {
  margin: 0 0 8px;
}

.sidebar-card--plain a {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 700;
}

/* Tools and calculator */
.tools-hero {
  padding: 85px 0 45px;
  text-align: center;
}

.tools-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(3.5rem, 8vw, 6rem);
  text-transform: uppercase;
}

.title-rule {
  width: min(100%, 700px);
  height: 1px;
  margin: 0 auto 16px;
  background: var(--blue);
}

.tools-hero h2 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.tools-hero p {
  max-width: 990px;
  margin-inline: auto;
}

.tools-cards-section {
  padding-top: 45px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tool-card {
  padding: 35px;
  border: 3px solid var(--blue);
  text-align: center;
  background: #fff;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  color: #fff;
  background: var(--blue);
}

.tool-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 1;
}

.tool-card h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.tool-card p {
  margin: 0;
  font-size: .88rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #dfe5e6;
  border-radius: 10px;
  background: #fff;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e4e8e9;
  text-align: left;
  font-size: .82rem;
}

.data-table th {
  color: #fff;
  background: var(--blue);
  font-size: .73rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:nth-child(even) {
  background: #f7f9f8;
}

.permit-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  padding: 28px;
  border-left: 5px solid var(--gold);
  background: var(--soft);
  gap: 30px;
}

.permit-callout p {
  max-width: 730px;
  margin: 4px 0 0;
  font-size: .82rem;
}

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

.state-grid span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 10px;
  border: 1px solid #e0e5e6;
  border-radius: 6px;
  font-size: .68rem;
  gap: 8px;
}

.state-grid b {
  color: var(--blue);
  font-size: .8rem;
}

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

.glossary-grid article {
  padding: 24px;
  border: 1px solid #dfe5e6;
  border-radius: 8px;
  background: #fff;
}

.glossary-grid h3 {
  margin-bottom: 7px;
  color: var(--blue);
}

.glossary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
}

.calculator-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 35px;
}

.calculator-form,
.calculator-result {
  padding: clamp(28px, 4vw, 45px);
  border-radius: 14px;
}

.calculator-form {
  border: 1px solid #dfe5e6;
  background: #fff;
  box-shadow: var(--shadow);
}

.calculator-result {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,188,212,.55), transparent 40%),
    linear-gradient(145deg, var(--navy-deep), var(--blue));
}

.calculator-result.is-calculated {
  animation: resultPulse 400ms ease;
}

@keyframes resultPulse {
  50% { transform: scale(1.012); }
}

.result-class {
  margin: 18px 0 30px;
}

.result-class small,
.result-class strong {
  display: block;
}

.result-class small {
  color: #c6d8e6;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.result-class strong {
  color: var(--gold);
  font-size: 6.5rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.calculator-result dl {
  margin: 0 0 25px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.calculator-result dl > div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  gap: 20px;
}

.calculator-result dt {
  color: #c6d8e6;
}

.calculator-result dd {
  margin: 0;
  font-weight: 700;
}

.calculator-result > p {
  margin: 0;
  color: #dbe5ed;
  font-size: .72rem;
}

/* Legal and success pages */
.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.65rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #50565a;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

.thank-you-section {
  display: grid;
  min-height: 75vh;
  padding: 80px 20px;
  place-items: center;
  background: linear-gradient(145deg, #f5f8f7, #e5f4f5);
}

.thank-you-card {
  width: min(100%, 700px);
  padding: clamp(35px, 6vw, 70px);
  border-radius: 18px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.success-mark {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #2a9d68;
  font-size: 2.2rem;
  font-weight: 800;
}

.thank-you-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}

.thank-you-card p {
  max-width: 560px;
  margin: 0 auto 28px;
}

@media (max-width: 1120px) {
  .primary-nav { gap: 20px; }
  .primary-nav > a,
  .nav-dropdown > button { letter-spacing: .1em; }
  .brand-logo-frame {
    --logo-width: 420px;
    --logo-x-offset: 3px;
    --logo-y-offset: 14px;
    width: 225px;
    height: 74px;
  }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .state-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 980px) {
  .top-strip { display: none; }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 24px 20px 40px;
    transform: translateX(100%);
    overflow-y: auto;
    opacity: 0;
    background: #fff;
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .primary-nav.is-open { transform: translateX(0); opacity: 1; }
  .primary-nav > a,
  .nav-dropdown > button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 18px 8px;
    border-bottom: 1px solid #e8ebed;
    font-size: .9rem;
  }
  .primary-nav > a::after,
  .nav-dropdown > button::after { display: none; }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 6px 0 6px 16px;
    transform: none;
    border: 0;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }
  .nav-dropdown.is-open .dropdown-menu { display: block; }
  .home-hero { min-height: 590px; }
  .split,
  .faq-layout,
  .carrier-layout,
  .article-layout,
  .calculator-shell { grid-template-columns: 1fr; }
  .sticky-copy,
  .faq-layout .section-heading,
  .carrier-sidebar,
  .article-sidebar { position: static; }
  .split--reverse-mobile .image-frame { order: 2; }
  .service-card-grid,
  .blog-grid,
  .glossary-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card blockquote { min-height: auto; }
  .footer-grid { grid-template-columns: 1.25fr .75fr .75fr; gap: 35px; }
  .truck-row,
  .truck-row--reverse { grid-template-columns: 1fr; gap: 35px; }
  .truck-row--reverse .truck-row__image { order: 0; }
  .contact-shell { padding: 28px; }
  .article-sidebar { grid-template-columns: 1fr 1fr; }
  .article-featured { height: 380px; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-logo-frame {
    --logo-width: 370px;
    --logo-x-offset: 2px;
    --logo-y-offset: 12px;
    width: 190px;
    height: 64px;
  }
  .brand-logo-frame--footer {
    --logo-width: 520px;
    --logo-x-offset: 3px;
    --logo-y-offset: 17px;
    width: 270px;
    height: 92px;
  }
  .home-hero { min-height: 560px; }
  .home-hero__content { padding-bottom: 120px; }
  .home-hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .home-hero p { font-size: 1rem; }
  .hero-waves { height: 135px; }
  .hero-truck-animation__vehicle {
    bottom: 92px;
    width: 480px;
    opacity: .1;
    animation-duration: 17s;
  }
  .hero-actions .button { width: 100%; }
  .page-hero { min-height: 500px; }
  .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .simple-hero { padding: 70px 0 55px; }
  .section { padding: 70px 0; }
  .image-frame,
  .image-frame--wide { min-height: 330px; }
  .benefit-grid,
  .service-card-grid,
  .process-grid,
  .value-grid,
  .stats-grid,
  .service-stats,
  .blog-grid,
  .tools-grid,
  .glossary-grid,
  .contact-cards,
  .article-sidebar { grid-template-columns: 1fr; }
  .service-stats > div + div { border-top: 1px solid #dfe4e5; border-left: 0; }
  .check-list--two-col { grid-template-columns: 1fr; }
  .price-card { justify-self: stretch; max-width: none; padding: 35px; }
  .faq-layout { gap: 25px; }
  .cta-band__inner,
  .footer-bottom,
  .blog-toolbar,
  .permit-callout { align-items: flex-start; flex-direction: column; }
  .cta-band__actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .truck-row__image,
  .truck-row__image img { min-height: 0; height: 310px; }
  .contact-form-wrap { padding: 26px; }
  .article-layout { gap: 35px; padding-block: 55px; }
  .article-featured { height: 270px; }
  .tools-hero { padding-top: 60px; }
  .tools-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .state-grid { grid-template-columns: repeat(2, 1fr); }
  .calculator-result { min-height: 520px; }
  .result-class strong { font-size: 5.2rem; }
}

@media (max-width: 420px) {
  .brand-logo-frame {
    --logo-width: 330px;
    --logo-x-offset: 2px;
    --logo-y-offset: 11px;
    width: 170px;
    height: 58px;
  }
  .brand-logo-frame--footer {
    --logo-width: 480px;
    --logo-x-offset: 3px;
    --logo-y-offset: 16px;
    width: 250px;
    height: 86px;
  }
  .state-grid { grid-template-columns: 1fr; }
  .contact-shell { padding: 18px; }
  .contact-form-wrap { padding: 20px; }
  .floating-call { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-truck-animation__vehicle {
    left: 50%;
    opacity: .08;
    animation: none !important;
    transform: translateX(-50%);
  }
  .hero-truck-animation img { animation: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
