/* =============================================
   Lorin Diesel — Landing Page (Premium)
   ============================================= */

:root,
html[data-theme="light"] {
  color-scheme: light;
  --color-page: #ffffff;
  --color-surface: #ffffff;
  --color-surface-muted: #f0f2f5;
  --color-bg: #0a0e14;
  --color-bg-soft: #121820;
  --color-bg-light: #f0f2f5;
  --color-bg-card: #151c28;
  --color-primary: #f0a020;
  --color-primary-dark: #d4880a;
  --color-primary-glow: rgba(240, 160, 32, 0.35);
  --color-accent: #2b7cb8;
  --color-accent-dark: #1a5580;
  --color-text: #141a22;
  --color-text-muted: #5c6778;
  --color-text-light: #b8c4d4;
  --color-white: #ffffff;
  --color-border: #dde3eb;
  --color-whatsapp: #25d366;
  --hero-bg: linear-gradient(180deg, #faf7f2 0%, #f3efe8 48%, #ebe6dc 100%);
  --hero-title: #141a22;
  --hero-text: rgba(20, 26, 34, 0.82);
  --hero-muted: rgba(20, 26, 34, 0.58);
  --marquee-bg: #ffffff;
  --spotlight-bg: rgba(240, 242, 245, 0.55);
  --form-bg: #ffffff;
  --topbar-h: 0px;
  --toolbar-h: 48px;
  --toolbar-gap: 24px;
  --site-header-h: calc(var(--toolbar-gap) + var(--toolbar-h) + 12px);

  --toolbar-bg: rgba(255, 255, 255, 0.94);
  --toolbar-bg-scrolled: rgba(255, 255, 255, 0.98);
  --toolbar-border: rgba(20, 26, 34, 0.14);
  --toolbar-border-scrolled: rgba(20, 26, 34, 0.18);
  --toolbar-shadow:
    0 1px 2px rgba(20, 26, 34, 0.06),
    0 8px 24px rgba(20, 26, 34, 0.12);
  --toolbar-shadow-scrolled:
    0 2px 8px rgba(20, 26, 34, 0.08),
    0 16px 40px rgba(20, 26, 34, 0.16);
  --toolbar-fg-muted: rgba(20, 26, 34, 0.62);
  --toolbar-fg: rgba(20, 26, 34, 0.88);
  --toolbar-fg-hover: #141a22;
  --toolbar-hover-bg: rgba(20, 26, 34, 0.06);
  --toolbar-nav-mobile-bg: rgba(255, 255, 255, 0.98);
  --toolbar-nav-mobile-border: rgba(20, 26, 34, 0.12);
  --toolbar-nav-mobile-shadow: 0 12px 40px rgba(20, 26, 34, 0.16);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --color-page: #0a0e14;
  --color-surface: #151c28;
  --color-surface-muted: #121820;
  --color-bg-light: #151c28;
  --color-bg-card: #1a2230;
  --color-text: #eef2f7;
  --color-text-muted: #8a96a8;
  --color-text-light: #b8c4d4;
  --color-border: rgba(255, 255, 255, 0.1);
  --hero-bg: linear-gradient(180deg, #0a0e14 0%, #121820 48%, #1a2030 100%);
  --hero-title: #ffffff;
  --hero-text: rgba(255, 255, 255, 0.85);
  --hero-muted: rgba(255, 255, 255, 0.55);
  --marquee-bg: #0a0e14;
  --spotlight-bg: rgba(18, 24, 32, 0.95);
  --form-bg: #151c28;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);

  --toolbar-bg: rgba(255, 255, 255, 0.07);
  --toolbar-bg-scrolled: rgba(10, 14, 20, 0.92);
  --toolbar-border: rgba(255, 255, 255, 0.12);
  --toolbar-border-scrolled: rgba(255, 255, 255, 0.14);
  --toolbar-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.18);
  --toolbar-shadow-scrolled:
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.35);
  --toolbar-fg-muted: rgba(255, 255, 255, 0.55);
  --toolbar-fg: rgba(255, 255, 255, 0.85);
  --toolbar-fg-hover: #ffffff;
  --toolbar-hover-bg: rgba(255, 255, 255, 0.08);
  --toolbar-nav-mobile-bg: rgba(10, 14, 20, 0.96);
  --toolbar-nav-mobile-border: rgba(255, 255, 255, 0.12);
  --toolbar-nav-mobile-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-page);
  overflow-x: hidden;
  transition: background-color 0.45s ease, color 0.45s ease;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffd080 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Reveal animation ---- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .hero__copy,
.hero .hero__visual-col {
  opacity: 1;
  transform: none;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #e8940a 100%);
  color: var(--color-bg);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--color-primary-glow);
}

.btn--dark {
  background: var(--color-bg);
  color: var(--color-white);
  margin-top: 1.5rem;
}

.btn--dark:hover {
  background: var(--color-bg-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn--small {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* ---- Badge ---- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(240, 160, 32, 0.12);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  border: 1px solid rgba(240, 160, 32, 0.25);
}

.badge--pulse .badge__dot {
  width: 7px;
  height: 7px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.badge--outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.12);
}

.badge--dark {
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- Site header — Pill toolbar ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
}

.toolbar-wrap {
  padding: 12px 0;
}

.toolbar {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: var(--toolbar-h);
  padding: 0 1rem;
  background: var(--toolbar-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--toolbar-border);
  border-radius: 9999px;
  box-shadow: var(--toolbar-shadow);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.toolbar--scrolled,
.site-header--scrolled .toolbar {
  background: var(--toolbar-bg-scrolled);
  border-color: var(--toolbar-border-scrolled);
  box-shadow: var(--toolbar-shadow-scrolled);
}

.toolbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.25rem;
  flex-shrink: 0;
  color: var(--color-white);
}

.toolbar__brand-icon {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
}

.toolbar__brand-name {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.toolbar__divider {
  display: none;
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.toolbar__nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
}

.toolbar__link {
  padding: 0.375rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--toolbar-fg-muted);
  border-radius: 0.375rem;
  transition: color 0.15s ease, background 0.15s ease;
}

.toolbar__link:hover,
.toolbar__link.active {
  color: var(--toolbar-fg-hover);
  background: var(--toolbar-hover-bg);
}

.toolbar__link.active::after {
  display: none;
}

.toolbar__shop {
  display: none;
}

.toolbar__actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  flex-shrink: 0;
}

.toolbar__action {
  display: none;
  align-items: center;
  height: 1.75rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--toolbar-fg-muted);
  border-radius: 9999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.toolbar__action:hover {
  color: var(--toolbar-fg-hover);
  background: var(--toolbar-hover-bg);
}

.toolbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 1.75rem;
  padding: 0 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-bg);
  background: linear-gradient(180deg, #f5b024 0%, var(--color-primary) 100%);
  border-radius: 9999px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.toolbar__cta:hover {
  filter: brightness(1.08);
  box-shadow:
    0 2px 8px rgba(240, 160, 32, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.toolbar__cta:active {
  filter: brightness(0.95);
  transform: translateY(0);
}

.toolbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  color: var(--toolbar-fg);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.toolbar__menu:hover {
  color: var(--toolbar-fg-hover);
  background: var(--toolbar-hover-bg);
}

.toolbar__menu.active .toolbar__menu-icon {
  opacity: 0.6;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
}

.logo--footer .logo__img {
  height: 40px;
  max-width: 200px;
}

.logo__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-primary), #c87a00);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.logo__mark::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 1px solid rgba(240, 160, 32, 0.3);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo__text small {
  font-size: 0.65rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 640px) {
  .toolbar__action {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .toolbar__divider {
    display: block;
  }

  .toolbar__nav {
    display: flex;
  }

  .toolbar__nav[hidden] {
    display: flex !important;
  }

  .toolbar__menu {
    display: none;
  }
}

/* ---- Theme toggle ---- */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid var(--toolbar-border);
  border-radius: 999px;
  background: var(--toolbar-hover-bg);
  color: var(--toolbar-fg);
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.theme-toggle:hover {
  color: var(--toolbar-fg-hover);
  background: var(--toolbar-hover-bg);
  border-color: var(--toolbar-border-scrolled);
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle__icon {
  display: block;
  flex-shrink: 0;
}

.theme-toggle__icon--sun {
  display: none;
}

.theme-toggle[aria-checked="true"] .theme-toggle__icon--moon {
  display: none;
}

.theme-toggle[aria-checked="true"] .theme-toggle__icon--sun {
  display: block;
}

.theme-toggle--toolbar {
  display: inline-flex;
}

html[data-theme="dark"] .theme-toggle--toolbar {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

html[data-theme="dark"] .theme-toggle--toolbar:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="light"] .theme-toggle--toolbar {
  border-color: rgba(20, 26, 34, 0.14);
  background: rgba(20, 26, 34, 0.05);
  color: rgba(20, 26, 34, 0.82);
}

html[data-theme="light"] .theme-toggle--toolbar:hover {
  color: #141a22;
  background: rgba(20, 26, 34, 0.08);
  border-color: rgba(20, 26, 34, 0.2);
}

@media (max-width: 767px) {
  html[data-theme="light"] .toolbar {
    background: #ffffff;
    border-color: rgba(20, 26, 34, 0.2);
    box-shadow:
      0 2px 6px rgba(20, 26, 34, 0.1),
      0 12px 32px rgba(20, 26, 34, 0.14);
  }

  html[data-theme="light"] .toolbar__menu {
    color: var(--toolbar-fg-hover);
  }

  html[data-theme="light"] .theme-toggle--toolbar {
    background: rgba(20, 26, 34, 0.06);
    border-color: rgba(20, 26, 34, 0.16);
    color: #141a22;
  }

  .toolbar__actions {
    gap: 0.5rem;
  }
}

/* ---- Hero (editorial) ---- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--site-header-h));
  padding: calc(var(--site-header-h) + 2.5rem) 0 4rem;
  background: var(--hero-bg);
  overflow: hidden;
  transition: background 0.45s ease;
}

.hero__banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  transform: scale(1.04);
}

.hero__banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.72) 0%, rgba(235, 230, 220, 0.92) 100%);
  pointer-events: none;
}

html[data-theme="dark"] .hero__banner-photo {
  opacity: 0.22;
}

html[data-theme="dark"] .hero__banner-scrim {
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.72) 0%, rgba(10, 14, 20, 0.92) 100%);
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(20, 26, 34, 0.06) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
}

.hero__fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero__fog--a {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -6%;
  background: rgba(240, 160, 32, 0.14);
}

.hero__fog--b {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: -8%;
  background: rgba(43, 124, 184, 0.1);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.hero--brand .hero__grid {
  max-width: none;
}

.hero__title--brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em;
  max-width: none;
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__brand-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.5rem);
  filter: blur(10px);
}

.hero__brand-word--lorin {
  background: linear-gradient(
    120deg,
    #b86a08 0%,
    #f0a020 35%,
    #ffd080 55%,
    #f0a020 75%,
    #c87810 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation:
    hero-brand-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards,
    hero-brand-shimmer 7s ease-in-out 1.1s infinite;
}

.hero__brand-word--diesel {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
  animation:
    hero-brand-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards,
    hero-brand-glow 5s ease-in-out 1.3s infinite;
}

html[data-theme="light"] .hero__brand-word--diesel {
  color: #141a22;
  text-shadow: none;
  animation: hero-brand-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

html[data-theme="light"] .hero__title--brand {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes hero-brand-enter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-brand-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-brand-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  }
  50% {
    text-shadow: 0 0 36px rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 767px) {
  .hero.hero--brand {
    min-height: 100dvh;
    min-height: 100svh;
    padding: 0;
    justify-content: center;
    transition: opacity 0.4s ease;
  }

  .hero__grid {
    width: 100%;
    min-height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .hero__title--brand {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero__scroll-hint {
    position: absolute;
    left: 50%;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .hero__scroll-hint-text {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
    animation: hero-scroll-text 2.4s ease-in-out infinite;
  }

  .hero__scroll-hint-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
  }

  .hero__scroll-hint-line {
    display: block;
    width: 1px;
    height: 1.75rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
    transform-origin: top center;
    animation: hero-scroll-line 1.8s ease-in-out infinite;
  }

  body.is-scrolled .hero__scroll-hint {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
  }

  html[data-theme="light"] .hero.hero--brand:not(.hero--has-banner) .hero__scroll-hint {
    color: var(--hero-muted);
  }

  html[data-theme="light"] .hero.hero--brand:not(.hero--has-banner) .hero__scroll-hint-icon {
    color: var(--hero-muted);
    filter: none;
  }

  html[data-theme="light"] .hero.hero--brand:not(.hero--has-banner) .hero__scroll-hint-text {
    text-shadow: none;
  }

  html[data-theme="light"] .hero.hero--brand:not(.hero--has-banner) .hero__scroll-hint-line {
    background: linear-gradient(180deg, rgba(20, 26, 34, 0.55), rgba(20, 26, 34, 0));
  }

  body.is-scrolled .hero.hero--brand {
    opacity: 0.92;
  }

  .toolbar__shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-right: auto;
    padding: 0;
    border: 0;
    border-radius: 0.375rem;
    color: var(--toolbar-fg-muted);
    background: transparent;
    flex-shrink: 0;
    transition: color 0.15s ease, background 0.15s ease;
  }

  .toolbar__shop:hover,
  .toolbar__shop.is-active {
    color: var(--toolbar-fg-hover);
    background: var(--toolbar-hover-bg);
  }

  .toolbar__shop.is-active {
    color: var(--color-primary);
  }

  .toolbar__link--menu-shop {
    display: none;
  }

  .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }

  body.is-scrolled .whatsapp-float {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  [data-reveal] {
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.hero__scroll-hint {
  display: none;
}

@keyframes hero-scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes hero-scroll-line {
  0%, 100% {
    opacity: 0.35;
    transform: scaleY(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes hero-scroll-text {
  0%, 100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint-text,
  .hero__scroll-hint-icon,
  .hero__scroll-hint-line {
    animation: none;
  }
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.hero__label {
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--hero-muted);
  margin-bottom: 1.25rem;
  transition: color 0.45s ease;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--hero-title);
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  text-transform: none;
  text-shadow: none;
  transition: color 0.45s ease;
}

.hero__destaque {
  display: inline;
  background:
    linear-gradient(rgba(20, 26, 34, 0.45) 0%, rgba(20, 26, 34, 0.08) 55%, transparent 100%),
    linear-gradient(135deg, #c87810 0%, #f0a020 38%, #ffd080 72%, #e88820 100%);
  background-size: cover;
  background-position: 50% 40%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(240, 160, 32, 0.22));
}

.hero__lead {
  max-width: 34rem;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--hero-text);
  margin-bottom: 2rem;
  text-shadow: none;
  transition: color 0.45s ease;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: 1rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.hero__btn--primary {
  background: var(--color-primary);
  color: #1a1208;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 28px -14px rgba(240, 160, 32, 0.75);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 18px 36px -14px rgba(240, 160, 32, 0.85);
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--hero-muted);
  transition: color var(--transition);
}

.hero__link span {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 5px;
  text-decoration-color: rgba(20, 26, 34, 0.22);
}

.hero__link:hover {
  color: var(--hero-title);
}

.hero__link:hover span {
  text-decoration-color: rgba(240, 160, 32, 0.55);
}

.hero__note {
  font-size: 0.875rem;
  color: var(--hero-muted);
  margin-bottom: 1.75rem;
  transition: color 0.45s ease;
}

.hero__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.hero__proof-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--hero-text);
  transition: color 0.45s ease;
}

.hero__proof-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(20, 26, 34, 0.12);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__proof-text strong {
  color: var(--hero-title);
  font-weight: 600;
  transition: color 0.45s ease;
}

.hero__visual-col {
  position: relative;
  width: 100%;
  max-width: 28rem;
  min-height: 16rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

/* Hero visual — road & vehicle */

.hero-visual {
  position: relative;
  width: min(100%, 34rem);
  margin-inline: auto;
}

.hero-visual__toggle {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.1875rem;
  border: 1px solid rgba(20, 26, 34, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-visual__toggle:hover {
  border-color: rgba(20, 26, 34, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

.hero-visual__toggle-option {
  padding: 0.3125rem 0.6875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(20, 26, 34, 0.45);
  transition: color 0.2s ease, background 0.2s ease;
}

.hero-visual__toggle[aria-pressed="true"] .hero-visual__toggle-option[data-vehicle-option="truck"] {
  background: transparent;
  color: rgba(20, 26, 34, 0.45);
}

.hero-visual__toggle[aria-pressed="true"] .hero-visual__toggle-option[data-vehicle-option="bus"] {
  background: rgba(20, 26, 34, 0.08);
  color: rgba(20, 26, 34, 0.88);
}

.hero-visual__toggle[aria-pressed="false"] .hero-visual__toggle-option[data-vehicle-option="truck"] {
  background: rgba(20, 26, 34, 0.08);
  color: rgba(20, 26, 34, 0.88);
}

.hero-visual__toggle[aria-pressed="false"] .hero-visual__toggle-option[data-vehicle-option="bus"] {
  background: transparent;
  color: rgba(20, 26, 34, 0.45);
}

html[data-theme="dark"] .hero-visual__toggle {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 20, 0.55);
}

html[data-theme="dark"] .hero-visual__toggle:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(10, 14, 20, 0.72);
}

html[data-theme="dark"] .hero-visual__toggle-option {
  color: rgba(255, 255, 255, 0.42);
}

html[data-theme="dark"] .hero-visual__toggle[aria-pressed="false"] .hero-visual__toggle-option[data-vehicle-option="truck"],
html[data-theme="dark"] .hero-visual__toggle[aria-pressed="true"] .hero-visual__toggle-option[data-vehicle-option="bus"] {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

html[data-theme="dark"] .hero-visual__toggle[aria-pressed="false"] .hero-visual__toggle-option[data-vehicle-option="bus"],
html[data-theme="dark"] .hero-visual__toggle[aria-pressed="true"] .hero-visual__toggle-option[data-vehicle-option="truck"] {
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
}

.hero-visual__scene {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(20, 26, 34, 0.08);
  box-shadow:
    0 1px 2px rgba(20, 26, 34, 0.06),
    0 24px 48px -28px rgba(20, 26, 34, 0.28);
}

.hero-visual__road {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual__road-surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(74, 85, 100, 0.15) 0%, transparent 28%),
    linear-gradient(180deg, #4a5564 0%, #343c48 100%);
  z-index: 0;
}

.hero-visual__road-track {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  display: flex;
  width: max-content;
  transform: translateY(-50%);
  animation: hero-road-scroll 1.8s linear infinite;
}

.hero-visual__road-lines {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.hero-visual__road-lines span {
  flex-shrink: 0;
  width: 3.5rem;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

@keyframes hero-road-scroll {
  from { transform: translateY(-50%) translateX(0); }
  to { transform: translateY(-50%) translateX(-50%); }
}

.hero-visual__vehicle {
  position: absolute;
  left: 50%;
  bottom: 28%;
  z-index: 2;
  width: 68%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-visual__vehicle.is-active {
  opacity: 1;
  animation: hero-vehicle-drive 1.8s linear infinite;
}

.hero-visual__vehicle--bus.is-active {
  width: 78%;
}

@keyframes hero-vehicle-drive {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.hero-visual__svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual__wheel {
  animation: hero-wheel-spin 1.8s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes hero-wheel-spin {
  to { transform: rotate(360deg); }
}

.hero-visual__exhaust {
  position: absolute;
  left: 8%;
  bottom: 42%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(200, 210, 220, 0.35);
  filter: blur(6px);
  animation: hero-exhaust 1.8s ease-out infinite;
}

@keyframes hero-exhaust {
  0% { opacity: 0.5; transform: translateX(0) scale(0.6); }
  100% { opacity: 0; transform: translateX(-24px) scale(1.4); }
}

@media (min-width: 1024px) {
  .hero {
    min-height: calc(100vh - var(--site-header-h));
    padding-top: calc(var(--site-header-h) + 3rem);
    padding-bottom: 5rem;
  }

  .hero--brand .hero__title--brand {
    font-size: clamp(5rem, 8vw, 8.5rem);
  }

  .hero__grid {
    max-width: 72rem;
    gap: 3.5rem;
  }

  .hero__title {
    margin-top: 0.5rem;
    font-size: clamp(3.25rem, 4.8vw, 6.25rem);
    max-width: 16ch;
  }

  .hero__lead {
    max-width: 46rem;
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .hero__proof {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 2rem;
  }

  .hero__visual-col {
    max-width: 100%;
    min-height: 20rem;
  }

  .hero-visual {
    width: min(100%, 58rem);
  }

  .hero-visual__scene {
    aspect-ratio: 21 / 9;
    min-height: 18rem;
  }

  .hero-visual__vehicle {
    bottom: 30%;
    width: 42%;
    max-width: 28rem;
  }

  .hero-visual__vehicle--bus.is-active {
    width: 46%;
    max-width: 30rem;
  }
}

/* ---- Marquee marcas ---- */

.marquee-section {
  background: var(--marquee-bg);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.45s ease, border-color 0.45s ease;
}

.marquee-section__wrap {
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
  padding: 2rem 1.5rem 1.5rem;
}

.marquee-section__label {
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(20, 26, 34, 0.55);
}

.marquee-section__dot {
  color: rgba(20, 26, 34, 0.3);
  padding: 0 0.25rem;
}

.marquee-section__mask {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-section__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  padding: 0.25rem 0;
  animation: marquee-v2 35s linear infinite;
}

.marquee-section__track:hover {
  animation-play-state: paused;
}

.marquee-section__item {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.625rem;
  opacity: 0.9;
  filter: grayscale(1);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.marquee-section__item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.marquee-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  font-family: ui-monospace, monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
}

.marquee-section__name {
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(20, 26, 34, 0.75);
}

@keyframes marquee-v2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Spotlight (problema + gráfico) ---- */

.spotlight {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  background: var(--spotlight-bg);
  padding: 8rem 1.5rem 6rem;
  transition: background 0.45s ease, border-color 0.45s ease;
}

@media (min-width: 768px) {
  .spotlight {
    padding: 11rem 1.5rem 7rem;
  }
}

@media (min-width: 1024px) {
  .spotlight {
    display: flex;
    align-items: center;
    min-height: 52rem;
    padding: 12rem 1.5rem 4rem;
  }
}

.spotlight__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 58% at 84% 50%, rgba(255, 110, 26, 0.11) 0%, transparent 60%);
}

.spotlight__curve {
  pointer-events: none;
  user-select: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  color: rgba(240, 160, 32, 0.12);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .spotlight__curve {
    top: -2rem;
  }
}

@media (min-width: 1024px) {
  .spotlight__curve {
    top: -3rem;
  }
}

.spotlight__curve-svg {
  display: block;
  width: 100%;
  aspect-ratio: 1440 / 220;
  overflow: visible;
}

.spotlight__visual-lg {
  display: none;
}

@media (min-width: 1024px) {
  .spotlight__visual-lg {
    display: block;
    pointer-events: none;
    position: absolute;
    inset-block: 0;
    left: 50%;
    right: 0;
    z-index: 0;
  }

  .spotlight__visual-inner {
    position: absolute;
    inset-block: 0;
    right: 5vw;
    width: 100%;
    max-width: 960px;
  }
}

.spotlight__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
}

.spotlight__content {
  max-width: 26rem;
}

.spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.spotlight__text {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .spotlight__text {
    font-size: 1.0625rem;
  }
}

.spotlight__list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.spotlight__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(20, 26, 34, 0.85);
}

@media (min-width: 768px) {
  .spotlight__list li {
    font-size: 1rem;
  }
}

.spotlight__list-mark {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1px;
  margin-top: 0.65rem;
  background: rgba(240, 160, 32, 0.7);
}

.spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  transition: color 0.2s ease;
}

.spotlight__cta:hover {
  color: #a66a08;
}

.spotlight__cta svg {
  transition: transform 0.2s ease;
}

.spotlight__cta:hover svg {
  transform: translate(2px, -2px);
}

.spotlight__mobile-chart {
  margin-top: 3rem;
}

.spotlight__mobile-chart .spotlight-chart {
  max-width: 32rem;
  margin-inline: auto;
  aspect-ratio: 5 / 4;
}

@media (min-width: 1024px) {
  .spotlight__mobile-chart {
    display: none;
  }
}

.spotlight__canais-label {
  margin-top: 1.25rem;
  text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.spotlight__canais {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.625rem;
}

.spotlight__canal {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid hsl(26, 42%, 86%);
  background: hsl(26, 68%, 93%);
  font-size: 0.65625rem;
  font-weight: 500;
  color: rgba(20, 26, 34, 0.8);
}

/* Chart card */

.spotlight-chart {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.spotlight__visual-inner .spotlight-chart {
  position: absolute;
  left: 32%;
  top: 29%;
  width: 54%;
  height: 42%;
  min-height: 0;
}

.spotlight-chart__header {
  flex-shrink: 0;
  padding: 1rem 1.25rem 0.625rem;
}

.spotlight-chart__header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.spotlight-chart__header span {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.spotlight-chart__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 0 1.25rem 1.125rem;
  gap: 1rem;
}

.spotlight-chart__compare {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-chart__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spotlight-chart__row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.spotlight-chart__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.spotlight-chart__label--brand {
  color: var(--color-text);
}

.spotlight-chart__value {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.spotlight-chart__value--brand {
  color: var(--color-primary-dark);
}

.spotlight-chart__track {
  height: 0.625rem;
  border-radius: 999px;
  background: rgba(20, 26, 34, 0.06);
  overflow: hidden;
}

.spotlight-chart__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.spotlight-chart__bar--new {
  background: rgba(92, 103, 120, 0.45);
}

.spotlight-chart__bar--used {
  background: linear-gradient(90deg, #c87810, #f0a020);
}

.spotlight-chart__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(240, 160, 32, 0.1);
  border: 1px solid rgba(240, 160, 32, 0.18);
}

.spotlight-chart__badge strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary-dark);
}

.spotlight-chart__badge span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.spotlight-chart__note {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

html[data-theme="dark"] .spotlight-chart {
  background: var(--color-bg-card);
}

html[data-theme="dark"] .spotlight-chart__track {
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .spotlight-chart__bar--new {
  background: rgba(255, 255, 255, 0.22);
}

html[data-theme="dark"] .spotlight-chart__value--brand,
html[data-theme="dark"] .spotlight-chart__badge strong {
  color: var(--color-primary);
}

/* ---- Sections ---- */

.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--color-bg-light);
}

.section--dark {
  background: var(--color-bg);
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.875rem;
}

.section-label--light {
  color: var(--color-primary);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header--light h2 {
  color: var(--color-white);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.section--dark .section-header p {
  color: var(--color-text-light);
}

/* ---- About ---- */

.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.6) 0%, transparent 50%);
}

.about__experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--color-primary), #c87a00);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__experience strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about__experience span {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.about__content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin: 1.75rem 0;
}

.about__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: #141a22;
}

.about__check {
  flex-shrink: 0;
  color: var(--color-primary-dark);
  font-weight: 700;
}

html[data-theme="dark"] .about__item {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  color: #141a22;
}

html[data-theme="dark"] .about__check {
  color: #c87810;
}

html[data-theme="dark"] .about__content p {
  color: var(--color-text-muted);
}

/* ---- DETRAN credential ---- */

.detran-cred__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.detran-cred__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.detran-cred__content p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 34rem;
}

.detran-cred__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.detran-cred__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 520px);
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(20, 26, 34, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 2px rgba(20, 26, 34, 0.05),
    0 10px 28px rgba(20, 26, 34, 0.08);
}

.detran-cred__badge-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}

.detran-cred__shield {
  display: inline-flex;
  flex-shrink: 0;
  color: #f0a020;
}

.detran-cred__badge-text {
  margin: 0;
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.35;
  color: #3d4654;
}

.detran-cred__badge-text strong {
  color: #f0a020;
  font-weight: 700;
}

.detran-cred__badge-divider {
  width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  background: rgba(20, 26, 34, 0.12);
}

.detran-cred__badge-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0.05em;
  line-height: 1.05;
  overflow: visible;
  padding-block: 0.1em;
}

.detran-cred__logo-lorin,
.detran-cred__logo-diesel {
  display: block;
  overflow: visible;
  line-height: 1.05;
  padding-inline: 0.04em;
}

.detran-cred__logo-lorin {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #f0a020;
}

.detran-cred__logo-diesel {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #141a22;
}

html[data-theme="dark"] .detran-cred__badge {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 20, 0.72);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .detran-cred__badge-text {
  color: rgba(255, 255, 255, 0.88);
}

html[data-theme="dark"] .detran-cred__badge-divider {
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .detran-cred__logo-diesel {
  color: #ffffff;
}

/* ---- SEO FAQ ---- */

.seo-faq__list {
  display: grid;
  gap: 0.875rem;
  max-width: 820px;
  margin: 2rem auto 0;
}

.seo-faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-faq__item[open] {
  border-color: rgba(200, 120, 16, 0.35);
  box-shadow: var(--shadow-md);
}

.seo-faq__question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #141a22;
  cursor: pointer;
  list-style: none;
}

.seo-faq__question::-webkit-details-marker {
  display: none;
}

.seo-faq__question::after {
  content: '+';
  float: right;
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
}

.seo-faq__item[open] .seo-faq__question::after {
  content: '−';
}

.seo-faq__answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--color-text-muted);
}

.seo-faq__answer p {
  margin: 0;
}

html[data-theme="dark"] .seo-faq__item {
  background: #ffffff;
}

/* ---- Company gallery ---- */

.company-section {
  padding: 0;
}

.company-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: clamp(240px, 38vw, 480px);
  max-height: 560px;
  overflow: hidden;
  background: var(--color-surface-muted);
}

.company-hero__media {
  position: absolute;
  inset: 0;
}

.company-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
  transform: scale(1.02);
}

.company-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.88) 100%);
  pointer-events: none;
}

html[data-theme="dark"] .company-hero {
  background: var(--color-bg-soft);
}

html[data-theme="dark"] .company-hero__photo {
  opacity: 0.22;
}

html[data-theme="dark"] .company-hero__scrim {
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.72) 0%, rgba(10, 14, 20, 0.92) 100%);
}

.company-hero__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding-block: 2.5rem;
  text-align: center;
}

.company-hero__content .section-label {
  margin-bottom: 0.75rem;
}

.company-hero__content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
}

.company-hero__content > p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
}

.company-hero__cta {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .company-hero {
    aspect-ratio: 16 / 10;
    min-height: 280px;
    max-height: none;
  }

  .company-hero__content {
    padding-block: 2rem;
  }

  .company-hero__photo {
    opacity: 0.26;
  }

  html[data-theme="dark"] .company-hero__photo {
    opacity: 0.18;
  }
}

/* ---- Cards ---- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(240, 160, 32, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card:hover::before {
  opacity: 1;
}

.card__num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.card__icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition);
}

.card__link:hover {
  color: #ffd080;
}

/* ---- Process ---- */

.process {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-bg) 100%);
  color: var(--color-white);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process__item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

.process__item:hover {
  transform: translateY(-4px);
}

.process__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.process__item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.process__item p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ---- Features ---- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.feature:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(240, 160, 32, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ---- CTA Banner ---- */

.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 520px;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-shrink: 0;
}

/* ---- Contact ---- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.contact__info > p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact__card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact__card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.contact__card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact__card strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.contact__card a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact__card a:hover {
  color: var(--color-primary-dark);
}

.contact__card span {
  font-size: 0.875rem;
  color: var(--color-text);
}

.contact__form {
  background: var(--form-bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transition: background 0.45s ease, border-color 0.45s ease;
}

.contact__form-header {
  margin-bottom: 1.75rem;
}

.contact__form-header h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.contact__form-header p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface-muted);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition), background 0.45s ease, color 0.45s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(43, 124, 184, 0.15);
  background: var(--color-surface);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-alert {
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: var(--radius);
  color: #9b1c1c;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #c0392b;
}

.form-group--error input,
.form-group--error textarea {
  border-color: #e74c3c;
}

/* ---- Footer ---- */

.footer {
  background: var(--color-bg);
  color: var(--color-text-light);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 340px;
  line-height: 1.65;
}

.logo--footer .logo__text strong {
  font-size: 1.125rem;
}

.footer__social {
  margin-top: 1.25rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: all var(--transition);
}

.footer__social-link:hover {
  color: var(--color-white);
  border-color: rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.12);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-text-muted);
}

/* ---- WhatsApp Float ---- */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

/* ---- Responsive ---- */

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .detran-cred__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .detran-cred__content p {
    margin-inline: auto;
  }

  .detran-cred__badge {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem;
  }

  .detran-cred__badge-main {
    justify-content: center;
    text-align: left;
  }

  .detran-cred__badge-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .detran-cred__badge-logo {
    align-items: center;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .toolbar__nav {
    display: flex;
    position: fixed;
    top: calc(12px + var(--toolbar-h) + 8px);
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    flex: none;
    padding: 0.5rem;
    background: var(--toolbar-nav-mobile-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--toolbar-nav-mobile-border);
    border-radius: 1rem;
    box-shadow: var(--toolbar-nav-mobile-shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 190;
  }

  .toolbar__nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .toolbar__nav.open[hidden] {
    display: flex !important;
  }

  .toolbar__link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero__title {
    max-width: 12ch;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .hero__btn {
    width: auto;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__experience {
    right: 10px;
    bottom: -10px;
  }

  .cards,
  .features,
  .contact__cards {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions {
    width: 100%;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .contact__form {
    padding: 1.5rem;
  }
}

/* ---- Dark theme component overrides ---- */

html[data-theme="dark"] .hero__grain {
  opacity: 0.15;
}

html[data-theme="dark"] .hero__fog--a {
  background: rgba(240, 160, 32, 0.08);
}

html[data-theme="dark"] .hero__fog--b {
  background: rgba(43, 124, 184, 0.06);
}

html[data-theme="dark"] .hero__proof-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text-light);
}

html[data-theme="dark"] .hero-visual__scene {
  background: rgba(10, 14, 20, 0.35);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .marquee-section__label,
html[data-theme="dark"] .marquee-section__name {
  color: rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .marquee-section__icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

html[data-theme="dark"] .spotlight__title,
html[data-theme="dark"] .spotlight__text,
html[data-theme="dark"] .spotlight__list li {
  color: var(--color-text);
}

html[data-theme="dark"] .spotlight__curve {
  color: rgba(240, 160, 32, 0.08);
}

html[data-theme="dark"] .section:not(.section--dark) .section-header h2,
html[data-theme="dark"] .about__content h2,
html[data-theme="dark"] .contact__info h2 {
  color: var(--color-text);
}

html[data-theme="dark"] .feature {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

html[data-theme="dark"] .feature h3 {
  color: var(--color-text);
}

html[data-theme="dark"] .contact__card {
  background: var(--color-bg-card);
  border-color: var(--color-border);
}

html[data-theme="dark"] .contact__card strong,
html[data-theme="dark"] .contact__card span,
html[data-theme="dark"] .contact__card a {
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-visual__road-track,
  .hero-visual__wheel,
  .hero-visual__vehicle.is-active,
  .hero-visual__exhaust,
  .hero__brand-word,
  .hero__brand-word--lorin,
  .hero__brand-word--diesel {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
