:root {
  --red: #ed0018;
  --ink: #0b0d10;
  --steel: #334354;
  --muted: #7a828c;
  --line: #cfd5db;
  --soft: #f5f6f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
}

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

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

.page {
  overflow-x: hidden;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 58vw;
  max-height: 820px;
  height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
  background: #07111b;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.62);
}

.hero:not(.is-playing) .hero__video {
  opacity: .55;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 8, 17, .55), rgba(0, 8, 17, .25) 45%, rgba(0, 8, 17, .72));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 22px;
  color: #fff;
  text-align: center;
  transform: translateY(-20vh);
}

.hero__brand {
  width: 50%;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(18px) scale(.985);
  animation: heroBrandIn 1.05s cubic-bezier(.16, 1, .3, 1) .18s forwards;
  will-change: opacity, transform, filter;
}

.hero.is-playing .hero__brand {
  animation: heroBrandHide .8s cubic-bezier(.25, 1, .5, 1) forwards;
}

@keyframes heroBrandIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px) scale(.985);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes heroBrandHide {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(30px) scale(.985);
  }
}

.hero-video-controls {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 20;
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}

.hero.controls-active .hero-video-controls {
  opacity: 1;
  visibility: visible;
}

.btn-hero-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  color: #fff;
  background: rgba(0,0,0,.62);
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: background .3s ease, transform .3s ease;
}

.btn-hero-control:hover {
  background: rgba(0,0,0,.82);
  transform: scale(1.05);
}

.btn-hero-control svg {
  width: 20px;
  height: 20px;
  display: block;
}

.hero .icon-play,
.hero .icon-unmuted,
.hero.is-muted .icon-unmuted,
.hero:not(.is-muted) .icon-muted,
.hero:not(.is-video-paused) .icon-play,
.hero.is-video-paused .icon-pause {
  display: none;
}

.hero.is-muted .icon-muted,
.hero:not(.is-muted) .icon-unmuted,
.hero.is-video-paused .icon-play,
.hero:not(.is-video-paused) .icon-pause {
  display: block;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .78s cubic-bezier(.22, .68, .26, 1),
    transform .78s cubic-bezier(.22, .68, .26, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero__brand.reveal-on-scroll,
.brand-footer__logo.reveal-on-scroll {
  transform: translateY(20px) scale(.97);
}

.hero__brand.reveal-on-scroll.is-visible,
.brand-footer__logo.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

.video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #fff;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.video-trigger span {
  width: 0;
  height: 0;
  border-block: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.wave {
  position: absolute;
  left: -6%;
  right: -6%;
  height: 220px;
  z-index: 3;
  pointer-events: none;
}

.wave::before,
.wave::after,
.footer-waves::before,
.footer-waves::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid var(--red);
  border-radius: 50%;
}

.wave--hero {
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(170px, 22vw, 310px);
  z-index: 4;
  background: url("/assets/camiones-hub/waves-hero-superior.png") center bottom / 100% auto no-repeat;
  /* transform: translateY(25.5%); */
  clip-path: inset(0 100% 0 0);
  animation: waveReveal 3s cubic-bezier(0.25, 1, 0.5, 1) .5s forwards;
  will-change: clip-path, transform;
}

.wave--hero::before {
  display: none;
}

.wave--hero::after {
  display: none;
}

@keyframes waveReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.hero.is-playing .wave--hero {
  animation: waveHide 1s cubic-bezier(.25, 1, .5, 1) forwards;
}

@keyframes waveHide {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.products {
  position: relative;
  z-index: 2;
  padding: 190px 0 88px;
  /* background: #f5f5f6; */
}

.products::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(86px, 12vw, 150px);
  background: url("/assets/camiones-hub/waves-hero-inferior.png") center top / 100% auto no-repeat;
  pointer-events: none;
}

.split-title {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  display: grid;
}

.split-title__row {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr;
  align-items: center;
  gap: 34px;
  padding-inline: max(24px, calc((100vw - 1160px) / 2));
}

.split-title__row h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.split-title__row--top {
  min-height: 102px;
  color: var(--steel);
  background: #fff;
  align-items: center;
}

.split-title__row--bottom {
  min-height: 200px;
  color: #fff;
  background: var(--steel);
  align-items: start;
  padding-top: 20px;
}

.split-title__row i {
  display: block;
  height: 3px;
  background: currentColor;
}

.split-title__row--bottom i {
  opacity: 0;
}

.microcopy,
.line-copy {
  margin: -64px 0 10px;
  color: rgba(255,255,255,.92);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.55vw, 26px);
  line-height: 1.2;
  font-weight: 400;
}

.line-tabs {
  display: inline-grid;
  grid-template-columns: minmax(170px, 245px) minmax(230px, 320px);
  gap: 0;
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 24px rgba(0,0,0,.14);
}

.line-tabs button {
  position: relative;
  min-height: 42px;
  padding: 5px 34px;
  border: 0;
  border-radius: 999px;
  color: #8f9398;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 2.65vw, 42px);
  font-weight: 900;
  line-height: 1;
  transition: color .25s ease, background .25s ease;
}

.line-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform .28s ease;
}

.line-tabs button.active {
  color: #fff;
  background: var(--red);
  animation: tabPop .35s ease;
}

.line-tabs button.active::after {
  transform: scaleX(1);
}

@keyframes tabPop {
  45% { transform: translateY(-3px); }
}

.line-copy {
  margin-top: 32px;
  margin-bottom: 0;
  color: #292929;
  font-size: clamp(14px, 1.35vw, 22px);
  line-height: 1.18;
}

.truck-slider {
  overflow: visible;
  margin-top: -26px;
  touch-action: pan-y;
}

.truck-track {
  display: flex;
  gap: 54px;
  transition: transform .48s cubic-bezier(.22, .68, .26, 1);
  will-change: transform;
}

.truck-card {
  flex: 0 0 clamp(320px, 39vw, 500px);
  min-height: 100px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.truck-title-img {
  width: min(100%, 410px);
  height: 85px;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(100px);
  position: relative;
  z-index: 2;
}

.truck-model-img {
  width: min(112%, 470px);
  height: 100%;
  object-fit: contain;
  /* margin: -6px 0 22px; */
  position: relative;
  z-index: 1;
}

.pill-link {
  --knob-width: 116px;
  --knob-shift: 58px;
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 46px;
  padding: 6px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  transition: border-color .25s ease, color .25s ease;
}

.pill-link::before,
.financing__content a::before,
.submit-switch::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: var(--knob-width, 62%);
  border-radius: 999px;
  background: var(--red);
  transition: transform .32s ease, background .32s ease;
}

.pill-link span,
.financing__content a span,
.submit-switch span {
  position: absolute;
  left: 5px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--knob-width, 62%);
  height: calc(100% - 10px);
  transform: translateY(-50%);
  transition: transform .32s ease;
  pointer-events: none;
}

.pill-link:hover {
  color: #fff;
  border-color: #050505;
}

.pill-link:hover::before {
  transform: translateX(var(--knob-shift, 52%));
  background: #050505;
}

.pill-link:hover span {
  transform: translate(var(--knob-shift, 52%), -50%);
}

.slider-ui {
  margin-top: 8px;
  max-width: 1040px;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrows button {
  width: 28px;
  height: 20px;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

.slider-arrows [data-prev] {
  background-image: url("/assets/camiones-hub/prev-arrow.png");
}

.slider-arrows [data-next] {
  background-image: url("/assets/camiones-hub/next-arrow.png");
}

.slider-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.slider-progress strong {
  color: var(--red);
  font-size: 18px;
}

.slider-progress span {
  height: 3px;
  background: #9ba6b0;
}

.slider-progress i {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--red);
  transition: width .35s ease;
}

.financing {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 0fr;
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.financing__image {
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}

.financing__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.financing__content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: end !important;
  gap: 0;
  padding: 10% !important;
  color: #fff;
  text-align: center;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
}

.financing__gallery {
  position: absolute;
  top: 0;
  left: 0%;
  bottom: 0;
  z-index: 4;
  width: 50%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transform: translateX(100%);
}

.financing__gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  padding: 5px 15px;
}

.financing--ready {
  grid-template-columns: 1fr 1fr;
}

.financing--ready .financing__content {
  opacity: 1;
  padding: 54px clamp(30px, 7vw, 100px);
  gap: 32px;
}

.financing--ready .financing__gallery {
  transform: none;
}

.financing__content h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(34px, 5vw, 54px);
  text-align: right;
}

.financing__content p {
  max-width: 500px;
  margin: 0;
  line-height: 1.45;
  text-align: right;
}

.financing__content a {
  --knob-width: 166px;
  --knob-shift: 54px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 230px;
  min-height: 48px;
  padding: 9px 24px;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  transition: border-color .25s ease;
}

.financing__content a span {
  white-space: nowrap;
}

.financing__content a:hover {
  border-color: #fff;
}

.financing__content a:hover::before {
  transform: translateX(var(--knob-shift));
  background: #fff;
}

.financing__content a:hover span {
  color: var(--red);
  transform: translate(var(--knob-shift), -50%);
}

.route-section {
  position: relative;
  min-height: 980px;
  padding: clamp(96px, 10vw, 160px) 0 56px;
  background: #fff;
}

.route-scene {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  opacity: .72;
  filter: blur(10px);
  transform: translateY(36px);
  transition:
    opacity .9s cubic-bezier(.22, .68, .26, 1),
    filter .9s cubic-bezier(.22, .68, .26, 1),
    transform .9s cubic-bezier(.22, .68, .26, 1);
}

.route-section.is-route-visible .route-scene {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.route-map {
  position: absolute;
  inset: 0;
  background: url("/assets/camiones-hub/Isuzu_sitio_productos_mapa_1.jpg") center / cover no-repeat;
}

.route-truck {
  position: absolute;
  left: 52%;
  top: 52%;
  width: clamp(170px, 20vw, 310px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(32px 18px 18px rgba(0,0,0,.22));
  transition: transform .08s linear;
}

.locator {
  --locator-map-start: clamp(282px, 18vw, 344px);
  position: relative;
  z-index: 1;
  padding: 40px 0 132px;
  background:
    linear-gradient(#fff 0 var(--locator-map-start), rgba(2,13,28,.58) var(--locator-map-start) 100%),
    url("/assets/camiones-hub/Isuzu_site_Home_googlemaps_back.jpg") center var(--locator-map-start) / cover no-repeat;
}

.locator__intro {
  /* width: min(1040px, calc(100% - 48px)); */
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(72px, 6vw, 100px);
  text-align: center;
}

.locator__intro h2 {
  margin: 1rem;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1;
  font-weight: 900;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}

.locator__intro p {
  margin: 0;
  color: #555f69;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.2;
  font-weight: 400;
}

.need-tabs {
  position: absolute;
  top: var(--locator-map-start);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.need-tabs button {
  position: relative;
  min-width: 190px;
  min-height: 52px;
  padding: 12px 24px;
  border: 2px solid #ccc;
  border-radius: 30px;
  color: #000;
  background: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.08;
  box-shadow: none;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.need-tabs button.active {
  color: #fff;
  background: #cc0000;
  border-color: #cc0000;
  box-shadow: none;
}

.need-tabs button:hover {
  background: #f0f0f0;
  border-color: #ccc;
  box-shadow: none;
  transform: scale(1.02);
}

.need-tabs button.active:hover {
  color: #fff;
  background: #cc0000;
  border-color: #cc0000;
}

.need-tabs.reveal-on-scroll {
  transform: translate(-50%, calc(-50% + 28px));
}

.need-tabs.reveal-on-scroll.is-visible {
  transform: translate(-50%, -50%);
}

.locator__stage {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 118px auto 0;
}

.search-card {
  position: absolute;
  left: 0;
  top: 28px;
  z-index: 5;
  width: 300px;
  min-height: 220px;
  padding: 34px 16px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.search-tabs {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.search-tabs button {
  min-height: 28px;
  border: 0;
  color: #555;
  background: #d5d6da;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.search-tabs button.active {
  color: #fff;
  background: var(--red);
}

.search-card h3 {
  margin: 0 0 14px;
  color: #555f69;
  font-size: 24px;
  line-height: 1.1;
}

.search-field {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 10px;
  margin-bottom: 14px;
}

.search-field input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #bfc4ca;
  padding: 0 12px;
}

.search-field button {
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.results {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
  overscroll-behavior: contain;
}

.result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c8cdd2;
  background: #fff;
  color: #555;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.result-card strong {
  grid-column: 1 / 2;
  color: #777;
  font-size: 13px;
  line-height: 1.15;
}

.result-card small {
  grid-column: 2 / 3;
  grid-row: 1;
  justify-self: end;
  color: #888;
  font-weight: 800;
  white-space: nowrap;
}

.result-card span {
  grid-column: 1 / -1;
}

.result-card:hover,
.result-card.is-active {
  border-color: var(--red);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

.results-status {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  background: #f5f6f8;
  color: #555;
  font-size: 13px;
  line-height: 1.35;
}

.map-wrap {
  position: relative;
  margin-left: 56px;
  padding-bottom: 28px;
}

.dealer-map {
  height: 560px;
  border-radius: 42px 42px 72px 72px;
  overflow: hidden;
  background:
    linear-gradient(rgba(118,216,229,.7), rgba(118,216,229,.7)),
    url("/assets/camiones-hub/Isuzu_sitio_productos_mapa.jpg") center/cover;
}

.fallback-map {
  position: relative;
  height: 100%;
}

.fallback-marker {
  position: absolute;
  width: 45px;
  height: 59px;
  border: 0;
  background: url("/assets/camiones-hub/marker.png") center / contain no-repeat;
  transform: translate(-50%, -100%);
  cursor: pointer;
}

.fallback-popup {
  position: absolute;
  left: 50%;
  top: 24px;
  z-index: 2;
  width: min(280px, calc(100% - 32px));
  padding: 13px 14px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(0,0,0,.22);
  transform: translateX(-50%);
}

.map-popup {
  display: grid;
  gap: 4px;
  max-width: 260px;
  color: #4b5563;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.3;
}

.map-popup b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.map-popup strong {
  width: fit-content;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
}

.nearby-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  min-height: 62px;
  min-width: min(390px, 90%);
  padding: 12px 28px;
  border: 9px solid #050505;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 900;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.nearby-btn.is-active,
.nearby-btn:hover {
  color: var(--red);
  background: #fff;
  border-color: var(--red);
}

.locator__note {
  margin: 44px auto 0;
  color: #fff;
  text-align: center;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  font-weight: 700;
}

@media (min-width: 1500px) {
  .locator {
    --locator-map-start: 292px;
  }

  .locator__intro {
    padding-bottom: 62px;
  }
}

.contact {
  position: relative;
  margin-top: -62px;
  padding: 0 0 170px;
  background: #010811;
}

.contact-form {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.form-message {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  text-align: center;
}

.form-message--success {
  color: #11693a;
}

.form-message--error {
  color: var(--red);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  animation: formGroupIn .28s ease both;
}

.form-grid[hidden] {
  display: none;
}

@keyframes formGroupIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 2px solid #9ea3a8;
  border-radius: 10px;
  background: #fff;
  color: #222;
}

.form-grid textarea {
  grid-column: 1 / -1;
  height: 160px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form p {
  margin: 34px 0 20px;
  color: #fff;
  font-weight: 700;
}

.submit-switch {
  --knob-width: 110px;
  --knob-shift: 68px;
  position: relative;
  min-width: 190px;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition: border-color .25s ease, color .25s ease;
  width: 20%;
  margin-left: auto;
  margin-right: auto;
}

.submit-switch:hover {
  border-color: #fff;
}

.submit-switch:hover::before {
  transform: translateX(var(--knob-shift));
  background: #fff;
}

.submit-switch:hover span {
  color: var(--red);
  transform: translate(var(--knob-shift), -50%);
}

.post-sale {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.post-sale__intro {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 32px;
  padding: clamp(90px, 10vw, 150px) 24px;
  color: #fff;
  text-align: center;
  background: #010811;
}

.post-sale__intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.post-sale__intro p {
  width: min(740px, 100%);
  margin: 0;
  color: rgba(255,255,255,.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 3.05vw, 40px);
  line-height: 1.08;
  font-weight: 400;
}

.post-sale__bar {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 14px 24px;
  color: #fff;
  background: var(--red);
  text-align: center;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
}

.post-sale__service {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 660px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.02) 0 36%, #fff 60%),
    linear-gradient(180deg, #fff 0 82%, #eef9fd 100%);
}

.post-sale__truck {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 58%, #fff 100%),
    linear-gradient(180deg, #f9fcfd, #fff 76%, #edf9fe 100%);
}

.post-sale__truck::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, #fff 100%);
  pointer-events: none;
}

.post-sale__truck img {
  position: relative;
  z-index: 1;
  width: min(720px, 92%);
  transition:
    opacity .28s ease,
    transform .34s cubic-bezier(.22, .68, .26, 1),
    filter .34s ease;
}

.post-sale__truck img.is-changing {
  opacity: 0;
  transform: translateX(-18px) scale(.985);
  filter: blur(5px);
}

.post-sale__controls {
  display: grid;
  align-content: center;
  gap: clamp(72px, 9vw, 128px);
  padding: clamp(56px, 7vw, 98px) max(24px, calc((100vw - 1180px) / 2)) clamp(58px, 7vw, 94px) clamp(32px, 5vw, 76px);
}

.post-sale__controls label {
  display: grid;
  gap: 10px;
}

.post-sale__controls span {
  color: #8b8f94;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.1;
  font-weight: 400;
}

.post-sale__controls select {
  width: min(420px, 100%);
  min-height: 44px;
  padding: 0 44px 0 10px;
  border: 2px solid #c7c9cc;
  border-radius: 0;
  color: #333;
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%) calc(100% - 19px) 52% / 8px 8px no-repeat,
    linear-gradient(135deg, var(--red) 50%, transparent 50%) calc(100% - 13px) 52% / 8px 8px no-repeat,
    #fff;
  appearance: none;
  cursor: pointer;
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 700;
}

.post-sale__controls p {
  justify-self: end;
  width: min(520px, 100%);
  margin: 0;
  color: #a5a8ac;
  text-align: right;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}

.post-sale__parts {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 56px 24px 0;
  background: transparent;
  text-align: center;
}

.post-sale__parts p {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 800;
}

.post-sale__button {
  --knob-width: 150px;
  --knob-shift: 108px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 46px;
  padding: 6px;
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.post-sale__button::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: var(--knob-width);
  border-radius: 999px;
  background: var(--red);
  transition: transform .32s ease, background .32s ease;
}

.post-sale__button span {
  position: absolute;
  left: 5px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--knob-width);
  height: calc(100% - 10px);
  transform: translateY(-50%);
  transition: transform .32s ease;
  white-space: nowrap;
}

.post-sale__button:hover::before {
  transform: translateX(var(--knob-shift));
  background: #050505;
}

.post-sale__button:hover span {
  transform: translate(var(--knob-shift), -50%);
}

.post-sale {
  background:
    linear-gradient(180deg, #fff 0, #fff 46%, rgba(225,247,255,.72) 100%);
}

.post-sale__hero {
  position: relative;
  z-index: 2;
  min-height: clamp(330px, 34vw, 430px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: clamp(72px, 8vw, 120px) 24px clamp(110px, 9vw, 150px);
  color: #fff;
  text-align: center;
  background: #1a0306;
  overflow: hidden;
}

.post-sale__hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) brightness(.9);
}

.post-sale__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(237,0,24,.26);
  pointer-events: none;
}

.post-sale__hero > :not(.post-sale__hero-video) {
  position: relative;
  z-index: 2;
}

.post-sale__hero h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.post-sale__hero i {
  display: block;
  width: min(430px, 72vw);
  height: 1px;
  background: rgba(255,255,255,.42);
}

.post-sale__hero p {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.14;
  font-weight: 700;
}

.post-sale__body {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 24px clamp(36px, 5vw, 72px);
  margin-top: 0;
  text-align: center;
}

.post-sale__gallery {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 210px));
  justify-content: center;
  gap: clamp(28px, 4vw, 54px);
  width: min(840px, 100%);
  margin-bottom: clamp(42px, 5vw, 70px);
}

.post-sale__gallery [data-postsale-truck],
.post-sale__bar,
.post-sale__controls,
.post-sale__parts {
  display: none !important;
}

.post-sale__gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.post-sale__message {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  margin: 0 0 28px;
  color: #2a3035;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.2;
  font-weight: 800;
}

.post-sale__body .post-sale__button {
  --knob-width: 126px;
  --knob-shift: 74px;
  position: relative;
  z-index: 1;
  min-width: 220px;
  min-height: 44px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--red);
  transition: border-color .25s ease;
}

.post-sale__body .post-sale__button::before {
  background: var(--red);
}

.post-sale__body .post-sale__button:hover::before {
  background: #050505;
}

.post-sale__body .post-sale__button:hover {
  border-color: #050505;
}

.closing-scene {
  position: relative;
  min-height: 980px;
  margin-top: clamp(-88px, -7vw, -58px);
  padding: 0 0 0;
  background:
    linear-gradient(180deg, #fff 0, rgba(255,255,255,.88) 15%, rgba(255,255,255,0) 48%, rgba(255,255,255,.72) 78%, #fff 96%),
    url("/assets/camiones-hub/Isuzu_sitio_productos_cierre_Back.jpg") center top / cover no-repeat;
  overflow: visible;
}

.closing-scene .contact-city {
  margin-top: clamp(40px, 5vw, 72px);
}

.contact-city {
  position: relative;
  width: min(980px, 86vw);
  margin: 0 auto;
  min-height: 270px;
  perspective: 1100px;
  isolation: isolate;
  overflow: visible;
}

.contact-city.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

.contact-city img:first-child {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  transform-origin: center bottom;
  transform: translate3d(0, 58px, -170px) scale(.78);
  filter: blur(8px) saturate(.9);
  transition:
    opacity 1.75s cubic-bezier(.22, .68, .26, 1),
    transform 2.35s cubic-bezier(.16, 1, .3, 1),
    filter 2.05s cubic-bezier(.22, .68, .26, 1);
  will-change: opacity, transform, filter;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.contact-city.reveal-on-scroll img:first-child {
  opacity: 0;
}

.contact-city.reveal-on-scroll.is-visible img:first-child {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.22);
  filter: blur(0) saturate(1);
}

.contact-city img:last-child {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(390px, 46vw);
  z-index: 2;
  transform: translate3d(-50%, 34px, 0) scale(.94);
  transform-origin: center bottom;
  opacity: 1;
  transition:
    opacity 1.55s cubic-bezier(.22, .68, .26, 1),
    transform 2s cubic-bezier(.16, 1, .3, 1);
  transition-delay: .52s;
  will-change: opacity, transform;
}

.contact-city.reveal-on-scroll img:last-child {
  opacity: 0;
}

.contact-city.reveal-on-scroll.is-visible img:last-child {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1.24);
}

.brand-footer {
  position: relative;
  margin-top: -46px;
  min-height: 600px;
  display: grid;
  align-items: start;
  justify-items: center;
  overflow: hidden;
  background: #fff;
  padding-top: 74px;
}

.brand-footer__logo {
  position: relative;
  z-index: 1;
  width: min(460px, 72vw);
  height: auto;
}

.footer-waves {
  position: absolute;
  /* left: 0;
  right: 0; */
  bottom: 0px;
  /* height: clamp(210px, 26vw, 340px); */
  width: 100%;
  height: 75%;
  background: url("/assets/camiones-hub/Lines_red.png") center bottom / cover no-repeat;
}

.footer-waves::before,
.footer-waves::after {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    height: 78vh;
    min-height: 620px;
  }

  .hero-video-controls {
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
  }

  .hero__video {
    object-position: center center;
  }

  .products {
    padding-top: 140px;
    background: #f5f5f6;
  }

  #camiones {
    padding-top: 0;
  }

  .products::before {
    height: 92px;
    background-size: auto 100%;
  }

  .split-title {
    width: 100vw;
  }

  .split-title__row {
    gap: 18px;
    padding-inline: 24px;
  }

  .split-title__row h2 {
    font-size: clamp(34px, 8vw, 58px);
  }

  .split-title__row--top,
  .split-title__row--bottom {
    min-height: 82px;
  }

  .microcopy,
  .line-copy {
    margin-top: -48px;
  }

  .line-tabs {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    width: 100%;
    gap: 6px;
    padding: 8px 10px;
  }

  .line-tabs button {
    min-height: 42px;
    padding: 6px 18px;
    font-size: clamp(24px, 6.8vw, 34px);
  }

  .truck-track {
    gap: 24px;
  }

  .truck-card {
    flex-basis: 76vw;
    gap: 0;
  }

  .truck-title-img {
    margin-top: 18px;
    height: 72px;
    transform: none;
  }

  .truck-model-img {
    width: min(132%, 560px);
    height: clamp(300px, 62vw, 430px);
    margin-top: -54px;
    margin-bottom: -6px;
  }

  .slider-ui {
    margin-top: 28px;
  }

  .slider-arrows {
    justify-content: center;
    gap: 22px;
    margin: 24px 0 22px;
  }

  .slider-arrows button {
    width: 34px;
    height: 26px;
  }

  .pill-link,
  .financing__content a,
  .submit-switch {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
  }

  .pill-link {
    min-width: 186px;
    padding: 6px 24px;
    font-size: 13px;
    font-weight: 700;
  }

  .financing__content a {
    min-width: 170px;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 800;
  }

  .submit-switch {
    width: 20%;
    min-width: 190px;
    padding: 9px 24px;
    font-weight: 800;
  }

  .pill-link::before,
  .financing__content a::before,
  .submit-switch::before {
    display: none;
  }

  .pill-link span,
  .financing__content a span,
  .submit-switch span {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .pill-link:hover,
  .financing__content a:hover,
  .submit-switch:hover {
    border-color: transparent;
    background: var(--red);
    color: #fff;
  }

  .pill-link:hover span,
  .financing__content a:hover span,
  .submit-switch:hover span {
    transform: none;
  }

  .financing__content a:hover,
  .submit-switch:hover {
    background: #fff;
    color: var(--red);
  }

  .financing__content a:hover span,
  .submit-switch:hover span {
    color: var(--red);
  }

  .financing {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .financing__image {
    height: 420px;
  }

  .financing__content {
    opacity: 1;
    justify-items: center !important;
    gap: 22px;
    padding: 46px 24px;
    text-align: center;
  }

  .financing__content h2,
  .financing__content p {
    text-align: center;
  }

  .financing__gallery {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 520px;
    transform: none;
  }

  .financing__image.reveal-on-scroll,
  .financing__content.reveal-on-scroll,
  .financing__gallery.reveal-on-scroll {
    opacity: 0;
    transform: translateX(-22vw) scale(.96);
    filter: blur(8px);
    transition:
      opacity .95s cubic-bezier(.16, 1, .3, 1),
      transform 1.05s cubic-bezier(.16, 1, .3, 1),
      filter .95s cubic-bezier(.22, .68, .26, 1);
  }

  .financing__content.reveal-on-scroll {
    transform: translateX(18vw);
    transition-delay: 90ms;
  }

  .financing__gallery.reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
    transition-delay: 160ms;
  }

  .financing__gallery.reveal-on-scroll img {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(-24vw) scale(.96);
    transition:
      opacity .95s cubic-bezier(.16, 1, .3, 1),
      transform 1.05s cubic-bezier(.16, 1, .3, 1),
      filter .95s cubic-bezier(.22, .68, .26, 1);
  }

  .financing__gallery.reveal-on-scroll img:nth-child(even) {
    transform: translateX(24vw) scale(.96);
    transition-delay: 120ms;
  }

  .financing__image.reveal-on-scroll.is-visible,
  .financing__content.reveal-on-scroll.is-visible,
  .financing__gallery.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .financing__gallery.reveal-on-scroll.is-visible img {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }

  .route-scene {
    min-height: 640px;
  }

  .route-truck {
    left: 56%;
  }

  .need-tabs {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-direction: column;
    width: min(400px, calc(100% - 32px));
    margin-top: -76px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 28px;
    gap: 10px;
    padding: 15px;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
  }

  .need-tabs button {
    width: 100%;
    min-height: 56px;
    padding: 16px 20px;
    border: 2px solid #ccc;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    font-size: 16px;
  }

  .need-tabs button.active {
    border-color: #cc0000;
    box-shadow: none;
  }

  .need-tabs.reveal-on-scroll {
    transform: translateY(28px);
  }

  .need-tabs.reveal-on-scroll.is-visible {
    transform: none;
  }

  .locator__stage {
    display: grid;
    gap: 18px;
  }

  .search-card {
    position: relative;
    top: auto;
    width: 100%;
  }

  .map-wrap {
    margin-left: 0;
  }

  .dealer-map {
    height: 430px;
    border-radius: 32px 32px 42px 42px;
  }

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

  .contact {
    margin-top: -34px;
    padding-bottom: 118px;
    overflow: visible;
    z-index: 3;
  }

  .post-sale__intro {
    min-height: 430px;
    padding: 78px 24px;
  }

  .post-sale__service {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .post-sale__truck {
    min-height: 410px;
    align-items: end;
  }

  .post-sale__truck img {
    width: min(620px, 92vw);
  }

  .post-sale__controls {
    gap: 42px;
    padding: 28px 24px 48px;
  }

  .post-sale__controls select {
    width: 100%;
  }

  .post-sale__controls p {
    justify-self: start;
    text-align: left;
  }

  .post-sale__hero {
    min-height: 390px;
    padding: 72px 22px 124px;
  }

  .post-sale__body {
    margin-top: -74px;
    padding-bottom: 100px;
  }

  .post-sale__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(620px, 100%);
  }

  .contact-city {
    width: 100%;
    margin-top: 0;
    min-height: 270px;
  }

  .contact-city img:first-child {
    position: relative;
    left: 50%;
    width: min(118vw, 1120px);
    max-width: none;
    transform: translate3d(-50%, 58px, -170px) scale(.78);
  }

  .contact-city.reveal-on-scroll.is-visible img:first-child {
    transform: translate3d(-50%, 0, 0) scale(1.24);
  }

  .contact-city img:last-child {
    z-index: 20;
    bottom: -8px;
    width: min(360px, 60vw);
  }

  .contact-city.reveal-on-scroll.is-visible img:last-child {
    transform: translate3d(-50%, 0, 0) scale(1.12);
  }

  .brand-footer {
    margin-top: -82px;
    min-height: clamp(360px, 72vw, 520px);
    padding-top: 54px;
    isolation: isolate;
    z-index: 1;
  }

  .brand-footer__logo {
    position: relative;
    z-index: 10;
    transform: translateY(55px);
  }

  .brand-footer__logo.reveal-on-scroll.is-visible {
    transform: translateY(55px) scale(1);
  }

  .footer-waves {
    z-index: 0;
    pointer-events: none;
    height: min(72vw, 340px);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

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

  .hero__brand {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .hero.is-playing .hero__brand,
  .hero.is-playing .wave--hero {
    animation: none;
  }

  .reveal-on-scroll,
  .truck-track,
  .financing__image,
  .financing__image img,
  .financing__content,
  .financing__gallery,
  .contact-city img,
  .pill-link,
  .submit-switch,
  .result-card {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .contact-city img:first-child,
  .contact-city img:last-child {
    opacity: 1 !important;
    filter: none !important;
  }

  .contact-city img:first-child {
    transform: none !important;
  }

  .contact-city img:last-child {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 520px) {
  .section-shell,
  .locator__intro,
  .locator__stage,
  .contact-form {
    width: min(100% - 28px, 1160px);
  }

  .hero__brand {
    width: min(280px, 72vw);
  }

  .products {
    padding-bottom: 60px;
  }

  .split-title__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .split-title__row h2 {
    white-space: normal;
    font-size: 37px;
  }

  .split-title__row i {
    width: 44%;
    height: 2px;
  }

  .split-title__row--top,
  .split-title__row--bottom {
    min-height: auto;
    padding-block: 12px;
  }

  .microcopy,
  .line-copy {
    margin-top: 18px;
    color: #555;
  }

  .microcopy {
    font-size: 18px;
  }

  .line-copy {
    font-size: 16px;
  }

  .products {
    padding-top: 0;
  }

  .products::before {
    height: 72px;
  }

  .need-tabs {
    margin-top: -58px;
  }

  .contact {
    margin-top: -18px;
    padding-bottom: 86px;
  }

  .post-sale__intro {
    min-height: 360px;
    gap: 22px;
    padding: 60px 18px;
  }

  .post-sale__intro p {
    font-size: 18px;
  }

  .post-sale__bar {
    min-height: 58px;
    font-size: 13px;
  }

  .post-sale__truck {
    min-height: 330px;
  }

  .post-sale__controls {
    padding-inline: 16px;
  }

  .post-sale__parts {
    padding-top: 42px;
  }

  .post-sale__button {
    min-height: 48px;
    border: 0;
    background: var(--red);
  }

  .post-sale__button::before {
    display: none;
  }

  .post-sale__button span {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .post-sale__button:hover span {
    transform: none;
  }

  .post-sale__body .post-sale__button {
    border: 0;
    background: var(--red);
  }

  .post-sale__hero {
    min-height: 370px;
    gap: 18px;
    padding: 64px 18px 120px;
  }

  .post-sale__hero h2 {
    font-size: 34px;
  }

  .post-sale__hero p {
    font-size: 16px;
  }

  .post-sale__body {
    margin-top: 0;
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 42px;
  }

  .post-sale__gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(280px, 100%);
    margin-bottom: 36px;
  }

  .post-sale__message {
    font-size: 17px;
  }

  .closing-scene {
    z-index: 2;
    min-height: 850px;
    margin-top: -72px;
    background-position: center top, center top;
  }

  .closing-scene .contact-city {
    margin-top: 42px;
  }

  .brand-footer {
    min-height: 340px;
    margin-top: -96px;
    padding-top: 46px;
    z-index: 0;
  }

  .brand-footer__logo {
    transform: translateY(55px);
  }

  .brand-footer__logo.reveal-on-scroll.is-visible {
    transform: translateY(55px) scale(1);
  }

  .contact-city {
    z-index: 3;
    min-height: 250px;
  }

  .contact-city img:first-child {
    width: min(132vw, 760px);
  }

  .contact-city img:last-child {
    left: 54%;
    width: min(360px, 70vw);
    bottom: 0;
  }

  .contact-city.reveal-on-scroll.is-visible img:last-child {
    transform: translate3d(-50%, 0, 0) scale(1.12);
  }

  .footer-waves {
    bottom: 0;
    height: min(78vw, 300px);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .truck-model-img {
    width: min(146%, 430px);
    height: 292px;
    margin-top: -68px;
  }

  .nearby-btn {
    font-size: 16px;
  }
}
