@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,400..700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --brand-red: #e23325;
  --brand-blue: #173479;
  --text: #0f172a;
  --text-muted: #475569;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --hero-deep: #0b1430;
  --whatsapp: #25d366;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --nav-h: 72px;
}

body.dark-mode {
  --text: #e8eef7;
  --text-muted: #94a3b8;
  --bg: #0a0f1a;
  --surface: #121a2b;
  --surface-2: #1a2540;
  --border: #2a3a5c;
  --hero-deep: #060a14;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background 0.25s, color 0.25s;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

h1,
h2,
h3,
.section-kicker {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

/* Nav */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1002;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.site-nav .logo {
  min-width: 0;
  flex-shrink: 1;
}

.site-nav .logo img {
  width: min(148px, 38vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand-red);
  text-decoration: none;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.15s, border-color 0.15s;
}

.theme-toggle:hover {
  transform: scale(1.05);
  border-color: var(--brand-blue);
}

.mobile-menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* Hero */
.hero-v2 {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  background: radial-gradient(
      ellipse 120% 80% at 70% -20%,
      rgba(226, 51, 37, 0.18),
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 0% 100%,
      rgba(23, 52, 121, 0.35),
      transparent 55%
    ),
    linear-gradient(165deg, var(--hero-deep) 0%, #152a52 55%, #1e3a6f 100%);
  color: #f1f5f9;
}

.hero-v2 .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-width: 0;
}

.hero-v2 .container > div,
.hero-v2 .hero-card {
  min-width: 0;
}

@media (min-width: 900px) {
  .hero-v2 .container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.hero-kicker i {
  color: var(--brand-red);
}

.hero-v2 h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-lead {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}

.badge i {
  color: #86efac;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-cta-row .btn {
  flex: 1 1 auto;
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(226, 51, 37, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: var(--surface);
  color: var(--brand-blue);
  border: 1px solid var(--border);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.hero-meta {
  font-size: 0.85rem;
  color: #94a3b8;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.hero-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Trust strip */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1.25rem;
  text-align: center;
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--brand-red);
  margin-bottom: 0.35rem;
}

.trust-item strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 2rem;
}

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

/* Services */
.services-grid-v2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.service-card-v2 {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card-v2:hover {
  border-color: color-mix(in srgb, var(--brand-blue) 35%, var(--border));
  box-shadow: var(--shadow);
}

.service-card-v2 i {
  font-size: 1.75rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.service-card-v2 h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.service-card-v2 p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-card-v2.featured {
  border-color: color-mix(in srgb, var(--brand-red) 45%, var(--border));
  background: color-mix(in srgb, var(--brand-red) 6%, var(--surface-2));
}

.service-card-v2.featured i {
  color: var(--brand-red);
}

/* Anchors clear fixed nav */
main section[id] {
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}

/* Fleet — CSS-only filter */

.fleet-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fleet-toolbar label {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

#fleet-all:checked ~ .fleet-toolbar label[for="fleet-all"],
#fleet-cabs:checked ~ .fleet-toolbar label[for="fleet-cabs"],
#fleet-bus:checked ~ .fleet-toolbar label[for="fleet-bus"] {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

.fleet-grid-v2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.fleet-item-v2 {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s;
}

.fleet-item-v2:hover {
  transform: translateY(-4px);
}

.fleet-item-v2 img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--surface-2);
}

.fleet-item-v2 figcaption {
  padding: 1rem;
}

.fleet-item-v2 h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.fleet-item-v2 p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

#fleet:has(#fleet-all:checked) .fleet-grid-v2 .fleet-item-v2 {
  display: block;
}

#fleet:has(#fleet-cabs:checked) .fleet-grid-v2 .fleet-item-v2:not([data-cat="cabs"]) {
  display: none;
}

#fleet:has(#fleet-bus:checked) .fleet-grid-v2 .fleet-item-v2:not([data-cat="bus"]) {
  display: none;
}

/* Partners — infinite marquee (duplicate group in HTML for seamless loop) */
.partners-section .section-intro {
  margin-bottom: 1.5rem;
}

.partners-marquee-outer {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 0.75rem 0 1.25rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface-2) 65%, transparent) 0%,
    transparent 40%,
    transparent 60%,
    color-mix(in srgb, var(--surface-2) 50%, transparent) 100%
  );
}

.partners-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(32px, 6vw, 72px);
  z-index: 2;
  pointer-events: none;
}

.partners-marquee-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.partners-marquee-fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

body.dark-mode .partners-marquee-fade--left {
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

body.dark-mode .partners-marquee-fade--right {
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.partners-marquee {
  overflow: hidden;
  width: 100%;
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partners-marquee-scroll 45s linear infinite;
  will-change: transform;
}

.partners-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: 0.5rem clamp(1rem, 3vw, 2rem);
  flex-shrink: 0;
}

.partners-marquee-group img {
  height: clamp(76px, 14vw, 120px);
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  opacity: 0.92;
  filter: grayscale(0.15);
  transition: opacity 0.2s, filter 0.2s, box-shadow 0.2s;
}

.partners-marquee-group img:hover {
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

body.dark-mode .partners-marquee-group img {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

@keyframes partners-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    row-gap: 1rem;
  }

  .partners-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .partners-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 1rem;
  }

  .partners-marquee-fade {
    display: none;
  }
}

/* Why us */
.why-us-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.why-us-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.why-us-card i {
  font-size: 1.85rem;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.why-us-card .why-us-card-char-icon {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.why-us-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* About split */
.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-split {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.about-split .prose p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.about-split .prose p:last-child {
  margin-bottom: 0;
}

/* FAQ — full-width “FAQ” kicker, then row: [title + lead | 3×2 cards] */
.faq-section-kicker {
  margin-bottom: 0.35rem;
}

.faq-container > .faq-layout {
  margin-top: 0.15rem;
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-main-heading {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: var(--text);
}

.faq-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36ch;
}

@media (min-width: 960px) {
  .faq-layout {
    grid-template-columns: minmax(0, min(320px, 32vw)) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }

  .faq-intro {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
    padding-top: 0;
    border-right: 1px solid var(--border);
    padding-right: clamp(1rem, 2.5vw, 1.75rem);
    min-width: 0;
  }

  .faq-main-heading {
    text-align: left;
    align-self: stretch;
    max-width: 100%;
  }

  .faq-lead {
    width: 100%;
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

.faq-list {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 700px) and (max-width: 959px) {
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }
}

@media (min-width: 960px) {
  .faq-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.1rem;
  }
}

.faq-list details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 1.1rem;
  min-height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-list details[open] {
  border-color: color-mix(in srgb, var(--brand-blue) 35%, var(--border));
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.95rem 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: left;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--brand-red);
  font-weight: 500;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand-red) 10%, transparent);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0.85rem 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
}

/* Contact */
.contact-grid-v2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid-v2 {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card i {
  font-size: 1.35rem;
  color: var(--brand-red);
  margin-top: 0.1rem;
}

.contact-card a {
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
}

.contact-form-v2 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--brand-blue) 45%, transparent);
  outline-offset: 1px;
}

.submit-btn-v2 {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-blue), #2563eb);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}

.submit-btn-v2:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--brand-red);
  font-weight: 500;
}

/* Floating */
.scroll-to-top,
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
  transition: opacity 0.25s, visibility 0.25s, transform 0.15s;
  z-index: 999;
  border: none;
  font-size: 1.35rem;
  color: #fff;
}

.scroll-to-top {
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  background: var(--brand-red);
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float {
  bottom: max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 4.25rem));
  right: max(1rem, env(safe-area-inset-right, 0px));
  background: var(--whatsapp);
  text-decoration: none;
}

.scroll-to-top:hover,
.whatsapp-float:hover {
  transform: scale(1.06);
  text-decoration: none;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1002;
  }

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

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .theme-toggle {
    margin-top: 0.75rem;
    width: 100%;
    height: 46px;
    align-self: stretch;
  }

  .mobile-menu-btn {
    display: flex;
    flex-shrink: 0;
  }

  .scroll-to-top,
  .whatsapp-float {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .scroll-to-top {
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    right: max(0.85rem, env(safe-area-inset-right, 0px));
  }

  .whatsapp-float {
    bottom: max(4.75rem, calc(env(safe-area-inset-bottom, 0px) + 3.85rem));
    right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 520px) {
  .section {
    padding: 2.75rem 0;
  }

  .hero-v2 {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 2.75rem;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .fleet-toolbar label {
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-nav .logo img {
    width: min(132px, 52vw);
  }
}
