:root {
  --orange: #ff3b20;
  --orange-dark: #d92712;
  --orange-light: #ff6a4e;
  --black: #111111;
  --black-soft: #191919;
  --gray-dark: #4a4a4a;
  --gray: #777777;
  --gray-light: #f2f2f2;
  --white: #ffffff;
  --border: #e5e5e5;
  --container: 1180px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  max-width: 100%;
}

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

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 182px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: #383838;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links .nav-cta {
  padding: 13px 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(255, 59, 32, 0.22);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--orange-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 145px 0 85px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 59, 32, 0.045), transparent 48%),
    #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-label {
  margin-bottom: 22px;
}

.hero-label span {
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.hero h1 {
  max-width: 730px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.2rem, 7.5vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: 900;
}

.hero-content > p {
  max-width: 620px;
  margin-top: 26px;
  color: var(--gray-dark);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 36px rgba(255, 59, 32, 0.24);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 45px rgba(255, 59, 32, 0.32);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--border);
}

.button-dark {
  width: 100%;
  color: white;
  background: var(--black);
}

.button-dark:hover {
  background: #292929;
}

.hero-highlights {
  display: flex;
  gap: 36px;
  margin-top: 50px;
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
}

.hero-highlights strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-highlights span {
  color: var(--gray);
  font-size: 0.76rem;
  margin-top: 5px;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.truck-card {
  position: relative;
  width: min(540px, 100%);
  height: 470px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(145deg, #ff4b2e, #e92812);
  box-shadow: 0 35px 90px rgba(217, 39, 18, 0.28);
  overflow: hidden;
}

.truck-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 29px;
}

.truck-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 77px;
  height: 8px;
  background: rgba(255, 255, 255, 0.32);
}

.truck-road::before,
.truck-road::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 80px;
  height: 2px;
  background: white;
}

.truck-road::before {
  left: 45px;
}

.truck-road::after {
  right: 45px;
}

.truck {
  position: absolute;
  left: 50%;
  bottom: 82px;
  width: 390px;
  height: 190px;
  transform: translateX(-50%);
  animation: truck-float 4s ease-in-out infinite;
}

.truck-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 260px;
  height: 145px;
  padding: 30px;
  color: var(--orange);
  background: white;
  border-radius: 18px 6px 6px 18px;
  box-shadow: 0 18px 38px rgba(98, 13, 0, 0.22);
}

.truck-box span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-style: italic;
}

.truck-box small {
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
}

.truck-cabin {
  position: absolute;
  right: 0;
  bottom: 45px;
  width: 136px;
  height: 110px;
  background: #1a1a1a;
  border-radius: 8px 24px 8px 7px;
  box-shadow: 0 18px 38px rgba(98, 13, 0, 0.22);
}

.truck-cabin::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 35px;
  height: 85px;
  background: #1a1a1a;
}

.truck-window {
  position: absolute;
  right: 18px;
  top: 15px;
  width: 67px;
  height: 39px;
  border-radius: 5px 15px 5px 5px;
  background: #eeeeee;
}

.truck-light {
  position: absolute;
  right: -3px;
  bottom: 18px;
  width: 12px;
  height: 22px;
  border-radius: 4px;
  background: #ffd65c;
}

.wheel {
  position: absolute;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border: 11px solid #1a1a1a;
  border-radius: 50%;
  background: #dedede;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.wheel::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #777;
}

.wheel-one {
  left: 58px;
}

.wheel-two {
  right: 42px;
}

.route-badge,
.floating-info {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(94, 16, 3, 0.19);
  font-size: 0.74rem;
  font-weight: 800;
}

.route-start {
  top: 54px;
  left: 45px;
}

.route-end {
  top: 98px;
  right: 38px;
}

.route-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 59, 32, 0.12);
}

.floating-info {
  color: white;
  background: #181818;
}

.floating-info strong {
  color: #68db75;
}

.info-one {
  left: 33px;
  bottom: 28px;
}

.info-two {
  right: 28px;
  bottom: 28px;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.shape-one {
  width: 470px;
  height: 470px;
  border: 90px solid rgba(255, 59, 32, 0.035);
  border-radius: 50%;
  left: -270px;
  bottom: -250px;
}

.shape-two {
  width: 150px;
  height: 450px;
  right: -40px;
  top: 90px;
  background: rgba(255, 59, 32, 0.035);
  transform: skewX(-18deg);
}

/* Trust strip */
.trust-strip {
  overflow: hidden;
  color: white;
  background: var(--black);
}

.trust-items {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  white-space: nowrap;
}

.trust-items span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.trust-items span::before {
  content: "•";
  color: var(--orange);
  margin-right: 18px;
}

/* Sections */
.section {
  padding: 115px 0;
}

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

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

.section-heading h2,
.differences-content h2,
.region-content h2,
.quote-content h2 {
  margin-top: 13px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-heading > p {
  margin-top: 18px;
  color: var(--gray);
  font-size: 1rem;
}

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

.service-card {
  position: relative;
  min-height: 395px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 32, 0.32);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: white;
  background:
    radial-gradient(circle at 110% 100%, rgba(255, 255, 255, 0.13), transparent 35%),
    linear-gradient(145deg, var(--orange), var(--orange-dark));
  border-color: transparent;
}

.service-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #adadad;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.6);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 27px 0 30px;
  color: white;
  background: var(--orange);
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 800;
}

.featured .service-icon {
  color: var(--orange);
  background: white;
}

.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card > p {
  color: var(--gray);
  margin-top: 12px;
  font-size: 0.89rem;
}

.featured > p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card ul {
  margin-top: auto;
  padding-top: 26px;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  color: #555;
  font-size: 0.78rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.featured li {
  color: rgba(255, 255, 255, 0.85);
}

.featured li::before {
  color: white;
}

/* Differences */
.dark-section {
  color: white;
  background: var(--black);
}

.differences-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.section-label.light {
  color: #ff806c;
}

.differences-content {
  position: sticky;
  top: 125px;
  height: max-content;
}

.differences-content p {
  max-width: 500px;
  margin-top: 22px;
  color: #aaaaaa;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #ff806c;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

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

.differences-list {
  display: flex;
  flex-direction: column;
}

.difference-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.difference-item:first-child {
  padding-top: 0;
}

.difference-item > span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.difference-item h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.difference-item p {
  margin-top: 9px;
  color: #a5a5a5;
  font-size: 0.9rem;
}

/* Process */
.process-section {
  background: #fafafa;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #e6e6e6);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
}

.process-number {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: white;
  background: var(--orange);
  border: 12px solid #fafafa;
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(255, 59, 32, 0.18);
}

.process-step h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.process-step p {
  margin-top: 8px;
  color: var(--gray);
  font-size: 0.85rem;
}

/* Region */
.region-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.region-map {
  position: relative;
  min-height: 490px;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #ff4c2f, #d82813);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 32px 80px rgba(210, 41, 18, 0.22);
  overflow: hidden;
}

.region-map::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -80px;
  border: 55px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.map-line {
  position: absolute;
  height: 4px;
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.line-one {
  width: 270px;
  left: 120px;
  top: 260px;
  transform: rotate(-27deg);
}

.line-two {
  width: 190px;
  left: 265px;
  top: 143px;
  transform: rotate(33deg);
}

.map-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
}

.map-point span {
  width: 25px;
  height: 25px;
  border: 7px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.16);
}

.map-point strong {
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.86);
  font-size: 0.68rem;
}

.point-main {
  left: 85px;
  bottom: 90px;
}

.point-two {
  left: 265px;
  top: 90px;
}

.point-three {
  right: 48px;
  bottom: 105px;
}

.region-content p {
  margin-top: 22px;
  color: var(--gray);
}

.region-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.region-cities span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #555;
  background: white;
  font-size: 0.77rem;
  font-weight: 700;
}

/* Quote */
.quote-section {
  padding-top: 40px;
}

.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  padding: 70px;
  color: white;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(140deg, var(--orange), var(--orange-dark));
  border-radius: 36px;
  box-shadow: 0 35px 100px rgba(210, 41, 18, 0.3);
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -200px;
  top: -230px;
  border: 80px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.quote-content {
  position: relative;
  z-index: 1;
}

.quote-content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.quote-contact strong {
  color: white;
  font-size: 0.95rem;
}

.quote-form {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: var(--black);
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(120, 18, 2, 0.2);
}

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

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
  color: #333;
  font-size: 0.76rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 11px;
  padding: 13px 14px;
  outline: none;
  color: #222;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 59, 32, 0.09);
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin-top: 13px;
  color: #888;
  text-align: center;
  font-size: 0.68rem;
}

.form-note code {
  color: var(--orange-dark);
}

/* Floating CTA */
.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  padding: 13px 19px;
  color: white;
  background: var(--orange);
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(217, 39, 18, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.floating-quote:hover {
  transform: translateY(-3px);
}

/* Footer */
.footer {
  padding: 75px 0 28px;
  color: white;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 80px;
}

.footer-brand img {
  width: 200px;
  height: 76px;
  padding: 7px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 20px;
  color: #969696;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #969696;
  font-size: 0.78rem;
}

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

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

.footer-bottom p {
  color: #777;
  font-size: 0.72rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

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

/* Responsive */
@media (max-width: 1000px) {
  .hero-grid,
  .differences-grid,
  .region-grid,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .differences-grid {
    gap: 60px;
  }

  .differences-content {
    position: static;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 20px;
  }

  .process-grid::before {
    display: none;
  }

  .region-grid {
    gap: 55px;
  }

  .quote-card {
    gap: 45px;
  }

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

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

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand-logo {
    width: 145px;
    height: 52px;
  }

  .menu-button {
    display: block;
    position: relative;
    z-index: 55;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 70px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-highlights {
    gap: 21px;
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 395px;
  }

  .truck-card {
    height: 370px;
    border-radius: 28px;
  }

  .truck {
    width: 310px;
    height: 155px;
    bottom: 70px;
  }

  .truck-box {
    width: 205px;
    height: 118px;
    padding: 24px;
  }

  .truck-box span {
    font-size: 2.45rem;
  }

  .truck-cabin {
    width: 108px;
    height: 91px;
    bottom: 37px;
  }

  .wheel {
    width: 52px;
    height: 52px;
    border-width: 9px;
    bottom: 10px;
  }

  .wheel-one {
    left: 43px;
  }

  .wheel-two {
    right: 32px;
  }

  .route-start {
    top: 36px;
    left: 24px;
  }

  .route-end {
    right: 20px;
    top: 73px;
  }

  .info-one {
    left: 18px;
    bottom: 18px;
  }

  .info-two {
    right: 18px;
    bottom: 18px;
  }

  .trust-items {
    overflow-x: auto;
    justify-content: flex-start;
  }

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

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

  .region-map {
    min-height: 390px;
  }

  .line-one {
    width: 180px;
    left: 78px;
    top: 215px;
  }

  .line-two {
    width: 130px;
    left: 180px;
    top: 140px;
  }

  .point-main {
    left: 35px;
    bottom: 62px;
  }

  .point-two {
    left: 175px;
    top: 92px;
  }

  .point-three {
    right: 20px;
    bottom: 83px;
  }

  .quote-card {
    padding: 48px 19px;
    border-radius: 27px;
  }

  .quote-form {
    padding: 22px 16px;
  }

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

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

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

  .floating-quote span {
    display: none;
  }

  .floating-quote::after {
    content: "Orçamento";
  }
}

@media (max-width: 430px) {
  .truck-card {
    transform: scale(0.93);
  }

  .floating-info {
    font-size: 0.64rem;
    padding: 9px 10px;
  }

  .map-point strong {
    font-size: 0.58rem;
  }
}

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

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