:root {
  --purple-dark: #4b006e;
  --purple-main: #6b168f;
  --purple-accent: #9b4dca;
  --purple-soft: #f5ecfb;
  --white: #ffffff;
  --gray-bg: #f5f5f7;
  --gray-line: #e6e1ea;
  --gray-text: #333333;
  --muted: #6f6875;
  --black-soft: #111111;
  --steel: #2f4858;
  --success: #1d9c73;
  --shadow: 0 22px 55px rgba(37, 18, 54, 0.12);
  --shadow-hover: 0 26px 70px rgba(75, 0, 110, 0.2);
  --radius: 22px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--gray-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 225, 234, 0.75);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
  min-width: 176px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--black-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-main), var(--purple-accent));
  transition: width 0.25s ease;
}

.nav-menu > a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--purple-main), var(--purple-accent));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(107, 22, 143, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple-dark);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.btn-icon svg,
.card-icon svg,
.floating-whatsapp svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-line);
  border-radius: 14px;
  background: var(--white);
  color: var(--purple-main);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 84vh;
  padding: calc(var(--header-height) + 74px) 0 58px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background: url("assets/truck-main.png") center right / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 20%, rgba(155, 77, 202, 0.26), transparent 32%),
    linear-gradient(105deg, rgba(30, 0, 44, 0.95) 0%, rgba(75, 0, 110, 0.82) 34%, rgba(75, 0, 110, 0.42) 58%, rgba(17, 17, 17, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(260px, 360px);
  align-items: end;
  justify-content: space-between;
  min-height: calc(84vh - var(--header-height) - 132px);
  gap: 42px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-main);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

h1,
h2,
h3 {
  color: var(--black-soft);
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.12;
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 800;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.3rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.hero-text {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-panel div {
  min-width: 0;
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

.section:nth-of-type(even) {
  background: var(--gray-bg);
}

.split,
.fleet-layout,
.contact-layout,
.value-prop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 62px;
}

.section-copy h2,
.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-wrap: balance;
}

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

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

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

.mini-card,
.service-card,
.value-card,
.contact-form {
  border: 1px solid var(--gray-line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 20px;
  border-radius: 18px;
}

.mini-card span {
  display: block;
  color: var(--purple-main);
  font-weight: 900;
}

.mini-card p {
  margin-top: 6px;
  color: var(--gray-text);
  font-size: 0.92rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-frame::after,
.fleet-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(75, 0, 110, 0.42));
}

.image-frame img,
.fleet-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.cards-grid,
.value-grid,
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.value-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 77, 202, 0.5);
  box-shadow: var(--shadow-hover);
}

.card-icon,
.value-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-accent));
  color: var(--white);
  font-weight: 900;
}

.card-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3,
.value-card h3,
.fleet-list h3 {
  font-size: 1.15rem;
}

.service-card p,
.value-card p,
.fleet-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.fleet-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.fleet-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.fleet-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.fleet-badge strong,
.fleet-badge span {
  display: block;
}

.fleet-badge strong {
  color: var(--purple-dark);
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

.fleet-badge span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.fleet-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.fleet-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--gray-line);
  border-radius: 18px;
  background: var(--white);
}

.fleet-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--purple-soft);
  color: var(--purple-main);
  font-weight: 900;
}

.routes {
  overflow: hidden;
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  padding-top: 36px;
}

.route-line::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 9%;
  right: 9%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple-accent), var(--purple-main), var(--steel));
}

.route-point {
  position: relative;
  z-index: 1;
  min-height: 172px;
  padding: 48px 18px 22px;
  border: 1px solid var(--gray-line);
  border-radius: 22px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.route-point > span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--purple-main);
  box-shadow: 0 0 0 5px rgba(155, 77, 202, 0.18);
  transform: translate(-50%, -50%);
}

.route-main {
  border-color: rgba(155, 77, 202, 0.7);
  background: linear-gradient(180deg, var(--white), var(--purple-soft));
}

.route-point h3 {
  font-size: 1.08rem;
}

.route-point p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.route-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.route-notes p {
  padding: 20px;
  border-left: 4px solid var(--purple-accent);
  border-radius: 14px;
  background: var(--white);
  color: var(--gray-text);
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(17, 17, 17, 0.06);
}

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

.value-card {
  min-height: 230px;
}

.value-card:nth-child(7) {
  grid-column: 2 / span 2;
}

.value-prop {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(135deg, rgba(75, 0, 110, 0.97), rgba(30, 0, 44, 0.96)),
    url("assets/flyer-wide.jpg") center / cover no-repeat;
  color: var(--white);
}

.value-prop::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.value-prop .container {
  position: relative;
  z-index: 1;
}

.value-prop h2,
.value-prop p {
  color: var(--white);
}

.value-prop p {
  color: rgba(255, 255, 255, 0.76);
}

.section-kicker.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.prop-item {
  min-height: 96px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.contact-layout {
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--black-soft);
  font-weight: 800;
}

.contact-info span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--purple-soft);
  color: var(--purple-main);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 26px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  color: var(--black-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--gray-line);
  border-radius: 14px;
  background: var(--gray-bg);
  color: var(--black-soft);
  outline: none;
  padding: 14px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--purple-accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(155, 77, 202, 0.13);
}

.contact-form .btn {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  color: var(--success);
  font-weight: 800;
}

.site-footer {
  background: var(--black-soft);
  color: rgba(255, 255, 255, 0.76);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 36px;
  padding: 58px 0;
}

.site-footer img {
  width: 210px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-top: 9px;
  transition: color 0.2s ease;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-main), var(--purple-accent));
  color: var(--white);
  font-weight: 900;
}

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

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2fc267, #178f4a);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(23, 143, 74, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero .reveal-on-load {
  animation: heroEnter 0.72s ease both;
}

.reveal-on-load:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal-on-load:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal-on-load:nth-child(4) {
  animation-delay: 0.24s;
}

.reveal-on-load:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes heroEnter {
  from {
    opacity: 0.78;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(47, 194, 103, 0.36);
  }
  70% {
    transform: scale(1.04);
    box-shadow: 0 0 0 18px rgba(47, 194, 103, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(47, 194, 103, 0);
  }
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 14px;
    font-size: 0.86rem;
  }

  .brand {
    width: 188px;
  }

  .hero-content,
  .split,
  .fleet-layout,
  .contact-layout,
  .value-prop-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 680px;
  }

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

  .value-card:nth-child(7) {
    grid-column: auto;
  }

  .route-line {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .route-line::before {
    top: 24px;
    bottom: 24px;
    left: 22px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .route-point {
    min-height: auto;
    padding: 22px 22px 22px 58px;
    text-align: left;
  }

  .route-point > span {
    top: 28px;
    left: 23px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-toggle {
    display: block;
    flex: 0 0 46px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0);
    transition: max-height 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .nav-menu.is-open {
    max-height: 560px;
    border-color: var(--gray-line);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
  }

  .nav-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-line);
  }

  .nav-menu > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: calc(100% - 40px);
    margin: 18px 20px 20px;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 58px) 0 46px;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(30, 0, 44, 0.92), rgba(75, 0, 110, 0.78) 48%, rgba(17, 17, 17, 0.36)),
      linear-gradient(90deg, rgba(30, 0, 44, 0.82), rgba(75, 0, 110, 0.16));
  }

  .hero-content {
    min-height: 0;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .section-kicker {
    margin-inline: 0;
  }

  .image-frame img,
  .fleet-media img {
    min-height: 360px;
  }

  .fleet-media {
    min-height: 440px;
  }

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

@media (max-width: 620px) {
  .brand {
    flex: 0 1 168px;
    width: 168px;
    min-width: 150px;
  }

  .navbar {
    gap: 10px;
  }

  .hero-copy,
  .hero-subtitle,
  .hero-text {
    width: 100%;
    max-width: calc(100vw - 28px);
    overflow-wrap: break-word;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 1.16rem;
  }

  .hero-panel,
  .mini-grid,
  .cards-grid,
  .value-grid,
  .prop-grid,
  .route-notes,
  .form-row.two-columns,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 18px;
  }

  .service-card,
  .value-card {
    min-height: auto;
    padding: 24px;
  }

  .fleet-list article {
    grid-template-columns: 1fr;
  }

  .fleet-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-info a {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
