/* Doya Rental — GMC Premium Landing */

:root {
  --forest: #0a1f14;
  --forest-mid: #0f2e1c;
  --emerald: #1a5c3a;
  --emerald-light: #2d8f5c;
  --neon: #b8ff3c;
  --neon-dim: rgba(184, 255, 60, 0.15);
  --neon-glow: rgba(184, 255, 60, 0.45);
  --white: #f4f7f5;
  --grey: #9aab9e;
  --charcoal: #060a08;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, var(--charcoal) 0%, var(--forest) 40%, var(--charcoal) 100%),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 49px,
      rgba(184, 255, 60, 0.03) 49px,
      rgba(184, 255, 60, 0.03) 50px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 49px,
      rgba(184, 255, 60, 0.03) 49px,
      rgba(184, 255, 60, 0.03) 50px);
}

.text-glow {
  color: var(--neon);
  text-shadow: 0 0 40px var(--neon-glow);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--neon);
  color: var(--charcoal);
  box-shadow: 0 0 30px var(--neon-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--neon-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.btn--outline {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
}

.btn--outline:hover {
  background: var(--neon-dim);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.8rem;
}

.btn--glow {
  box-shadow: 0 0 40px var(--neon-glow), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.btn__arrow {
  margin-left: 0.35rem;
}

.btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
  margin-right: 0.5rem;
}

.glass-panel {
  background: rgba(8, 18, 12, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Glass cards */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(6, 10, 8, 0.75);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  isolation: isolate;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav--hero {
  background: rgba(6, 10, 8, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav--scrolled {
  background: rgba(6, 10, 8, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav--hero.nav--scrolled {
  background: rgba(6, 10, 8, 0.92);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
  position: relative;
  z-index: 1002;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__logo-icon,
.nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav__logo--text .nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo--text .nav__logo-text strong,
.nav__logo-text strong {
  color: var(--neon);
  font-weight: 700;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 0.5rem;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--neon);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__fleet-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.35rem 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}

.nav__fleet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (min-width: 1100px) {
  .nav__fleet-badge {
    display: flex;
  }
}

.nav__toggle {
  display: none;
  position: relative;
  z-index: 1005;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  color: var(--white);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.nav__toggle-icon {
  display: block;
  pointer-events: none;
}

.nav__toggle-line {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line--top {
  transform: translateY(5px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line--mid {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line--bot {
  transform: translateY(-5px) rotate(-45deg);
}

.nav__toggle:hover {
  border-color: rgba(184, 255, 60, 0.35);
  background: rgba(184, 255, 60, 0.12);
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.nav__book-mobile {
  display: none;
}

/* Mobile drawer overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
}

.nav__overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden;
}

.nav__overlay:not([hidden]) {
  display: block;
  pointer-events: auto;
}

.nav__overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__overlay.is-open .nav__overlay-backdrop {
  opacity: 1;
}

.nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 380px);
  display: flex;
  flex-direction: column;
  padding:
    calc(env(safe-area-inset-top, 0px) + 1rem)
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(1.5rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
  background:
    linear-gradient(165deg, rgba(14, 32, 22, 0.98) 0%, rgba(6, 12, 9, 0.99) 55%, rgba(4, 8, 6, 1) 100%);
  border-left: 1px solid rgba(184, 255, 60, 0.12);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav__overlay.is-open .nav__drawer {
  transform: translateX(0);
}

.nav__drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 60, 0.45), transparent);
  pointer-events: none;
}

.nav__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-shrink: 0;
}

.nav__drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__drawer-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow);
  flex-shrink: 0;
}

.nav__drawer-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.nav__drawer-close .icon-svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav__drawer-close:hover {
  border-color: rgba(184, 255, 60, 0.35);
  color: var(--neon);
  background: rgba(184, 255, 60, 0.08);
}

.nav__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.nav__drawer-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 52px;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.nav__drawer-link-index {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(184, 255, 60, 0.45);
  min-width: 1.35rem;
}

.nav__drawer-link-label {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav__drawer-link-arrow {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  color: var(--neon);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.nav__drawer-link:hover,
.nav__drawer-link:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav__drawer-link:hover .nav__drawer-link-arrow,
.nav__drawer-link:focus-visible .nav__drawer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav__drawer-link.is-active {
  background: rgba(184, 255, 60, 0.08);
  border-color: rgba(184, 255, 60, 0.22);
  color: var(--white);
  box-shadow: inset 3px 0 0 var(--neon);
}

.nav__drawer-link.is-active .nav__drawer-link-index {
  color: var(--neon);
}

.nav__drawer-link.is-active .nav__drawer-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav__overlay.is-open .nav__drawer-link {
  animation: nav-drawer-link-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.nav__overlay.is-open .nav__drawer-link:nth-child(1) { animation-delay: 0.06s; }
.nav__overlay.is-open .nav__drawer-link:nth-child(2) { animation-delay: 0.1s; }
.nav__overlay.is-open .nav__drawer-link:nth-child(3) { animation-delay: 0.14s; }
.nav__overlay.is-open .nav__drawer-link:nth-child(4) { animation-delay: 0.18s; }
.nav__overlay.is-open .nav__drawer-link:nth-child(5) { animation-delay: 0.22s; }

@keyframes nav-drawer-link-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

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

.nav__drawer-foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav__drawer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.nav__fleet-badge--drawer {
  display: inline-flex;
  width: fit-content;
}

.nav__drawer-tagline {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.nav__drawer-cta {
  justify-content: center;
}

body.nav-open {
  overflow: hidden;
}

.nav--open {
  background: rgba(6, 10, 8, 0.98);
  border-bottom-color: rgba(184, 255, 60, 0.12);
}

.nav--open .nav__book-mobile {
  display: none;
}

/* Hero — cinematic full-bleed slider */
.hero--cinema {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider__track {
  position: absolute;
  inset: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 10s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slider__slide--placeholder {
  background: linear-gradient(135deg, #0a1f14 0%, #1a3d28 50%, #0f2e1c 100%);
}

.hero-slider__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 10, 8, 0.55) 0%, rgba(6, 10, 8, 0.2) 38%, transparent 62%),
    linear-gradient(0deg, rgba(6, 10, 8, 0.65) 0%, transparent 32%),
    linear-gradient(180deg, rgba(6, 10, 8, 0.35) 0%, transparent 15%);
  pointer-events: none;
}

.hero-slider__grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  z-index: 3;
  background:
    linear-gradient(0deg, rgba(6, 10, 8, 0.9), transparent),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 48px,
      rgba(184, 255, 60, 0.06) 48px,
      rgba(184, 255, 60, 0.06) 49px),
    repeating-linear-gradient(0deg,
      transparent,
      transparent 48px,
      rgba(184, 255, 60, 0.04) 48px,
      rgba(184, 255, 60, 0.04) 49px);
  opacity: 0.6;
  pointer-events: none;
}

.hero__ui {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .hero--cinema .hero__bar:not(.is-ready-bar) {
    animation: hero-ui-in 0.9s ease 0.15s both;
  }
}

@keyframes hero-ui-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero__main {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  justify-content: center;
  padding-top: 1rem;
}

.hero__copy {
  position: relative;
  min-height: clamp(460px, 52vh, 580px);
  max-width: 560px;
  width: 100%;
}

.hero__controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 0.25rem;
  flex-shrink: 0;
}

/* Transparent hero content — crossfade synced to slider */
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  padding-left: clamp(0rem, 2vw, 1rem);
  max-width: 560px;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.55s;
  pointer-events: none;
  z-index: 1;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__content.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}

.hero__content.is-exiting {
  opacity: 0;
  transform: translateY(-8px);
  transition-delay: 0s;
  transition-duration: 0.45s;
  z-index: 3;
  pointer-events: none;
}

.hero__content.is-exiting .hero__actions,
.hero__content.is-exiting .hero__actions .btn {
  pointer-events: none;
}

/* After first paint, keep slide changes snappy and stable */
.hero__copy.is-ready .hero__content.is-active {
  transition-delay: 0.06s;
  transition-duration: 0.5s;
}

.hero__copy.is-ready .hero__content.is-exiting {
  transition-duration: 0.4s;
}

.hero__copy.is-transitioning .hero__actions .btn {
  transition: none;
}

.hero__copy.is-transitioning .btn--glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255, 255, 255, 0.12);
}

/* Inactive slides must not paint children on top of active slide */
.hero__content:not(.is-active):not(.is-exiting) {
  z-index: 0;
}

/* Staggered reveal — first paint only (see .hero__copy.is-ready) */
.hero__copy:not(.is-ready) .hero__content.is-active .eyebrow--hero {
  animation: hero-fade-up 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.hero__copy:not(.is-ready) .hero__content.is-active .hero__title {
  animation: hero-fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.18s both;
}

.hero__copy:not(.is-ready) .hero__content.is-active .hero__subtitle {
  animation: hero-fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.28s both;
}

.hero__copy:not(.is-ready) .hero__content.is-active .hero__chips {
  animation: hero-fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.38s both;
}

.hero__copy:not(.is-ready) .hero__content.is-active .hero__actions {
  animation: hero-fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.48s both;
}

.hero__content.is-active .hero__actions .btn {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.hero__ui.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  align-items: flex-start;
  padding-left: clamp(1.5rem, 6vw, 5rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.eyebrow--hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #52e88a;
  font-size: 0.7rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52e88a;
  box-shadow: 0 0 10px rgba(82, 232, 138, 0.8);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: #e8f5ef;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__title-accent {
  color: #e8f5ef;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(220, 235, 228, 0.82);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  border-radius: 14px;
  min-width: 168px;
  background: rgba(10, 30, 18, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.hero-chip:hover {
  background: rgba(10, 30, 18, 0.52);
  border-color: rgba(184, 255, 60, 0.2);
}

.hero-chip__icon {
  color: #52e88a;
  flex-shrink: 0;
}

.hero-chip strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e8f5ef;
}

.hero-chip span {
  font-size: 0.7rem;
  color: rgba(180, 200, 190, 0.85);
}

/* Subtle glass for stats / bottom bar only */
.hero-glass {
  background: rgba(10, 28, 18, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero--cinema .btn--glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.hero--cinema .btn--primary {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.25rem;
}

.hero__bar {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-top: 1.5rem;
  padding-top: 1rem;
  width: 100%;
}

.hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 30, 18, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
}

.hero__arrow:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 20px var(--neon-dim);
}

.hero__progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.hero__progress-item {
  width: 48px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero__progress-item.is-active {
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow);
  width: 56px;
}

.hero__values-wrap {
  position: relative;
  min-height: 72px;
  width: auto;
  max-width: 100%;
}

.hero__values {
  display: flex;
  gap: 0;
  padding: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  filter: blur(3px);
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.85s;
  pointer-events: none;
  z-index: 1;
}

.hero__values.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
  transition-delay: 0.2s;
}

.hero__values.is-exiting {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
  transition-delay: 0s;
  transition-duration: 0.5s;
}

.hero-value {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 140px;
}

.hero-value:last-child {
  border-right: none;
}

.hero-value strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-value span {
  font-size: 0.7rem;
  color: var(--grey);
}

/* Image slots — placeholders for your mockups */
.image-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px dashed rgba(184, 255, 60, 0.35);
  background: linear-gradient(145deg, var(--forest-mid), var(--forest));
  aspect-ratio: 16 / 9;
}

.image-slot--hero {
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--neon-dim);
}

/* Hide global grid behind cinematic hero */
body:has(.hero--cinema) .grid-bg {
  opacity: 0;
}

.image-slot--fleet {
  aspect-ratio: 21 / 9;
  max-height: 420px;
}

.image-slot--about {
  aspect-ratio: 4 / 5;
  min-height: 400px;
}

.image-slot--dest {
  aspect-ratio: 16 / 10;
  min-height: 160px;
}

.image-slot--book {
  margin-top: 1.5rem;
  aspect-ratio: 16 / 9;
}

.image-slot--wide {
  margin-top: 3rem;
}

.image-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.image-slot__img--empty,
.image-slot__img[src=""] {
  opacity: 0;
}

.image-slot .image-slot__overlay {
  opacity: 1;
}

.image-slot.has-image .image-slot__overlay {
  opacity: 0;
  pointer-events: none;
}

.image-slot.has-image:hover .image-slot__overlay--subtle {
  opacity: 1;
}

.image-slot__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
  background: rgba(6, 10, 8, 0.7);
  transition: opacity var(--transition);
  z-index: 2;
}

.image-slot__overlay--subtle {
  background: linear-gradient(to top, rgba(6, 10, 8, 0.85), transparent);
  justify-content: flex-end;
  opacity: 0;
}

.image-slot__overlay--subtle code {
  font-size: 0.65rem;
}

.image-slot__label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--neon);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.image-slot__overlay p {
  font-size: 0.8rem;
  color: var(--grey);
  max-width: 280px;
}

.image-slot__overlay code {
  font-size: 0.7rem;
  color: var(--neon);
  background: var(--neon-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

/* Promo */
.promo {
  padding: 2rem 0;
  border-block: 1px solid var(--glass-border);
  background: linear-gradient(90deg, var(--neon-dim), transparent, var(--neon-dim));
}

.promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.promo h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.promo p {
  color: var(--grey);
  font-size: 0.9rem;
}

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

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__header--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  max-width: none;
  gap: 1.5rem;
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section__desc {
  color: var(--grey);
  font-size: 1.05rem;
}

/* Services — Futuristic Eco-Mobility Showcase */
.services-v2 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26, 155, 108, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(34, 211, 238, 0.05), transparent 50%),
    var(--charcoal);
}

.services-v2__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-v2__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 15%, transparent 70%);
}

.services-v2__topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(34, 211, 238, 0.25);
}

.services-v2__aurora {
  position: absolute;
  top: -20%;
  left: -10%;
  right: -10%;
  height: 60%;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(26, 155, 108, 0.08) 45%,
      rgba(34, 211, 238, 0.06) 55%,
      rgba(212, 175, 55, 0.04) 65%,
      transparent 80%);
  animation: svcAurora 14s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes svcAurora {
  0%, 100% { transform: translateX(0) skewY(-2deg); opacity: 0.7; }
  50% { transform: translateX(4%) skewY(2deg); opacity: 1; }
}

.services-v2__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(6, 10, 8, 0.8), transparent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0 100 L0 60 Q240 30 480 55 T960 40 T1440 65 L1440 100 Z' fill='white'/%3E%3C/svg%3E");
  mask-size: cover;
  opacity: 0.45;
}

.services-v2__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.services-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: svcOrbFloat 12s ease-in-out infinite;
}

.services-v2__orb--1 {
  width: 380px;
  height: 380px;
  top: 10%;
  left: -6%;
  background: rgba(26, 155, 108, 0.14);
}

.services-v2__orb--2 {
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: -4%;
  background: rgba(212, 175, 55, 0.06);
  animation-delay: -6s;
}

@keyframes svcOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

.services-v2__container {
  position: relative;
  z-index: 2;
}

.services-v2__header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-v2__dashboard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(57, 255, 20, 0.12);
  background: rgba(8, 28, 18, 0.45) !important;
}

.services-v2__dash-stat span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.15rem;
}

.services-v2__dash-stat strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--neon);
}

.services-v2__dash-pulse {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--grey);
  justify-content: flex-end;
  min-width: 180px;
}

.services-v2__pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: svcPulseDot 2s ease-in-out infinite;
}

@keyframes svcPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.services-v2__network {
  position: relative;
}

.services-v2__glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  filter: blur(24px);
}

.services-v2__network:hover .services-v2__glow {
  opacity: 1;
}

.services-v2__connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.services-v2__conn-glow {
  fill: none;
  stroke: url(#svcConnGrad);
  stroke-width: 6;
  opacity: 0.12;
}

.services-v2__conn-line {
  fill: none;
  stroke: url(#svcConnGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 10 16;
  animation: svcConnFlow 2.5s linear infinite;
}

.services-v2__network.is-visible .services-v2__conn-line {
  animation: svcConnFlow 2.5s linear infinite, svcConnDraw 2s ease forwards;
}

@keyframes svcConnFlow {
  to { stroke-dashoffset: -52; }
}

@keyframes svcConnDraw {
  from { stroke-dasharray: 0 3000; }
  to { stroke-dasharray: 10 16; }
}

.services-v2__conn-pulse {
  fill: #39ff14;
  filter: drop-shadow(0 0 6px #39ff14);
}

.services-v2__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-v2__card {
  perspective: 900px;
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--svc-delay, 0) * 80ms);
}

.services-v2__network.is-visible .services-v2__card {
  opacity: 1;
  translate: 0 0;
}

.services-v2__card-inner {
  position: relative;
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(57, 255, 20, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.15s ease-out, border-color 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  animation: svcCardFloat 5s ease-in-out infinite;
  animation-delay: calc(var(--svc-delay, 0) * -0.7s);
}

@keyframes svcCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.services-v2__card:hover .services-v2__card-inner {
  border-color: rgba(57, 255, 20, 0.38);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), 0 0 36px rgba(57, 255, 20, 0.1);
  animation: none;
}

.services-v2__card--featured .services-v2__card-inner {
  border-color: rgba(34, 211, 238, 0.25);
  background: linear-gradient(155deg, rgba(34, 211, 238, 0.1), rgba(26, 155, 108, 0.06));
}

.services-v2__card--featured:hover .services-v2__card-inner {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), 0 0 36px rgba(34, 211, 238, 0.12);
}

.services-v2__card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.services-v2__card:hover .services-v2__card-shine {
  transform: translateX(100%);
}

.services-v2__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.services-v2__card--featured .services-v2__num {
  color: var(--neon);
}

.services-v2__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.18);
  color: var(--neon);
  margin-bottom: 1.1rem;
}

.services-v2__icon svg {
  width: 30px;
  height: 30px;
}

.services-v2__card--featured .services-v2__icon {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.25);
  color: #22d3ee;
}

.services-v2__anim-route {
  animation: svcRouteScan 2.5s ease-in-out infinite;
}

.services-v2__anim-bolt {
  animation: svcBoltPulse 1.8s ease-in-out infinite;
}

.services-v2__anim-wave {
  animation: svcWave 2s ease-in-out infinite;
}

.services-v2__anim-scan {
  animation: svcScan 2s ease-in-out infinite;
}

.services-v2__anim-bar {
  animation: svcBarGrow 2s ease-in-out infinite;
}

@keyframes svcRouteScan {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(4px); }
}

@keyframes svcBoltPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; filter: drop-shadow(0 0 4px #39ff14); }
}

@keyframes svcWave {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(4px); opacity: 0.9; }
}

@keyframes svcScan {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(4px); }
}

@keyframes svcBarGrow {
  0%, 100% { width: 6px; opacity: 0.5; }
  50% { width: 10px; opacity: 1; }
}

.services-v2__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.services-v2__card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.services-v2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.services-v2__tags span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.15);
  color: var(--neon);
}

.services-v2__card--featured .services-v2__tags span {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.2);
  color: #22d3ee;
}

.services-v2__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  transition: color 0.2s ease, translate 0.2s ease;
}

.services-v2__link:hover {
  color: #22d3ee;
  translate: 4px 0;
}

.services-v2__reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.services-v2__dashboard.services-v2__reveal {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}

@media (max-width: 1024px) {
  .services-v2__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-v2__connectors {
    display: none;
  }

  .services-v2__dash-pulse {
    justify-content: flex-start;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .services-v2__cards {
    grid-template-columns: 1fr;
  }

  .services-v2__dashboard {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

/* Fleet — Premium EV Showcase */
.fleet-v2 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(26, 155, 108, 0.11), transparent 55%),
    radial-gradient(ellipse 35% 30% at 0% 80%, rgba(34, 211, 238, 0.05), transparent 50%),
    var(--charcoal);
}

.fleet-v2__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fleet-v2__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 10%, transparent 72%);
}

.fleet-v2__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(57, 255, 20, 0.015) 3px, rgba(57, 255, 20, 0.015) 4px);
  opacity: 0.5;
}

.fleet-v2__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.fleet-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: fleetOrb 13s ease-in-out infinite;
}

.fleet-v2__orb--1 {
  width: 360px;
  height: 360px;
  top: 8%;
  right: -6%;
  background: rgba(57, 255, 20, 0.08);
}

.fleet-v2__orb--2 {
  width: 280px;
  height: 280px;
  bottom: 15%;
  left: -4%;
  background: rgba(34, 211, 238, 0.06);
  animation-delay: -6s;
}

@keyframes fleetOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 12px); }
}

.fleet-v2__container {
  position: relative;
  z-index: 2;
}

.fleet-v2__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fleet-v2__header-text {
  max-width: 560px;
}

.fleet-v2__header .section__desc {
  text-align: left;
  margin: 0;
}

.fleet-v2__showcase {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fleet-v2__showcase-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34, 211, 238, 0.06);
  aspect-ratio: 21 / 9;
  min-height: 220px;
  background: var(--forest);
}

.fleet-v2__showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.fleet-v2__showcase-visual:hover .fleet-v2__showcase-img {
  transform: scale(1.04);
}

.fleet-v2__showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 8, 0.85) 100%),
    linear-gradient(90deg, rgba(6, 10, 8, 0.5) 0%, transparent 40%);
  pointer-events: none;
}

.fleet-v2__hud {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.fleet-v2__hud-item {
  padding: 0.65rem 1rem !important;
  min-width: 90px;
  border: 1px solid rgba(57, 255, 20, 0.2) !important;
  background: rgba(8, 28, 18, 0.75) !important;
  backdrop-filter: blur(12px);
}

.fleet-v2__hud-item span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.15rem;
}

.fleet-v2__hud-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon);
}

.fleet-v2__hud-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--grey);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 28, 18, 0.7);
  border: 1px solid rgba(57, 255, 20, 0.15);
  backdrop-filter: blur(8px);
}

.fleet-v2__hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
  animation: fleetHudPulse 2s ease-in-out infinite;
}

@keyframes fleetHudPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.fleet-v2__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.fleet-v2__card {
  position: relative;
  perspective: 1000px;
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--fleet-delay, 0) * 100ms);
}

.fleet-v2__cards.is-visible .fleet-v2__card {
  opacity: 1;
  translate: 0 0;
}

.fleet-v2__card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(57, 255, 20, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease-out, border-color 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.fleet-v2__card:hover .fleet-v2__card-inner {
  border-color: rgba(57, 255, 20, 0.35);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), 0 0 32px rgba(57, 255, 20, 0.08);
}

.fleet-v2__card--featured .fleet-v2__card-inner {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 40px rgba(34, 211, 238, 0.08);
}

.fleet-v2__card--featured:hover .fleet-v2__card-inner {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), 0 0 48px rgba(34, 211, 238, 0.12);
}

.fleet-v2__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: linear-gradient(135deg, var(--neon), #1a9b6c);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.4);
}

.fleet-v2__badge--value {
  background: linear-gradient(135deg, #f5d76e, #d4a017);
  box-shadow: 0 0 16px rgba(245, 215, 110, 0.45);
}

.fleet-v2__card-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 92, 58, 0.2), var(--forest));
}

.fleet-v2__card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0.5rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-v2__card:hover .fleet-v2__card-visual img {
  transform: scale(1.06) translateY(-4px);
}

.fleet-v2__card-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(57, 255, 20, 0.25), transparent 70%);
  pointer-events: none;
  animation: fleetCardGlow 3s ease-in-out infinite;
}

.fleet-v2__card-glow--cyan {
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.25), transparent 70%);
}

@keyframes fleetCardGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.fleet-v2__card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-v2__tier {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #22d3ee;
  margin-bottom: 0.35rem;
}

.fleet-v2__card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.fleet-v2__tag {
  font-size: 0.78rem;
  color: var(--neon);
  margin-bottom: 1rem;
}

.fleet-v2__card--featured .fleet-v2__tag {
  color: #22d3ee;
}

.fleet-v2__specs {
  list-style: none;
  margin-bottom: 1.25rem;
  flex: 1;
}

.fleet-v2__specs li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fleet-v2__specs li:last-child {
  border-bottom: none;
}

.fleet-v2__specs span {
  color: var(--grey);
}

.fleet-v2__specs strong {
  font-weight: 600;
  color: var(--white);
}

.fleet-v2__price {
  margin-bottom: 1rem;
}

.fleet-v2__price > span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 0.2rem;
}

.fleet-v2__price div {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.fleet-v2__price strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
}

.fleet-v2__card--featured .fleet-v2__price strong {
  color: #22d3ee;
}

.fleet-v2__price small {
  font-size: 0.8rem;
  color: var(--grey);
}

.fleet-v2__pricing-note {
  text-align: center;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--grey);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.fleet-v2__pricing {
  padding: 2rem;
  border: 1px solid rgba(57, 255, 20, 0.12);
  background: rgba(8, 28, 18, 0.5) !important;
  overflow: hidden;
  position: relative;
}

.fleet-v2__pricing-head {
  margin-bottom: 1.5rem;
}

.fleet-v2__pricing-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--neon);
}

.fleet-v2__pricing-currency {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 500;
}

.fleet-v2__pricing-head p {
  font-size: 0.85rem;
  color: var(--grey);
}

.fleet-v2__pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.fleet-v2__pricing-tier {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.fleet-v2__pricing-tier:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fleet-v2__pricing-tier--featured {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.25);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.08);
}

.fleet-v2__pricing-tier--value {
  background: rgba(245, 215, 110, 0.08);
  border-color: rgba(245, 215, 110, 0.28);
  box-shadow: 0 0 32px rgba(245, 215, 110, 0.08);
}

.fleet-v2__pricing-tier--value .fleet-v2__pricing-value {
  color: #f5d76e;
}

.fleet-v2__pricing-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.35rem;
}

.fleet-v2__pricing-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--neon);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.fleet-v2__pricing-tier--featured .fleet-v2__pricing-value {
  color: #22d3ee;
}

.fleet-v2__pricing-tier small {
  font-size: 0.7rem;
  color: var(--grey);
}

.fleet-v2__pricing-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.fleet-v2__pricing-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1a9b6c, var(--neon), #22d3ee);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-v2__pricing.is-visible .fleet-v2__pricing-bar-fill {
  width: 100%;
}

.fleet-v2__reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.8s ease, translate 0.8s ease;
}

.fleet-v2__reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 1280px) {
  .fleet-v2__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin-inline: 0;
  }

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

@media (max-width: 1024px) {
  .fleet-v2__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .fleet-v2__card--featured {
    order: -2;
  }

  .fleet-v2__card[data-tier="trailblazer"] {
    order: -1;
  }

  .fleet-v2__showcase-visual {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .fleet-v2__header {
    flex-direction: column;
    align-items: stretch;
  }

  .fleet-v2__hud {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: -3rem;
    padding: 0 1rem 1rem;
  }

  .fleet-v2__showcase-visual {
    aspect-ratio: auto;
    min-height: 200px;
  }

  .fleet-v2__showcase-img {
    min-height: 200px;
  }

  .fleet-v2__hud-live {
    margin-left: 0;
    flex: 1 0 100%;
    justify-content: center;
  }

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

/* About — Cinematic Storytelling */
.about-v2 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(26, 92, 58, 0.15), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(34, 211, 238, 0.06), transparent 50%),
    var(--charcoal);
}

.about-v2__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-v2__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  transition: transform 0.1s linear;
}

.about-v2__peak--far { animation: aboutPeakDrift 20s ease-in-out infinite; }
.about-v2__peak--mid { animation: aboutPeakDrift 16s ease-in-out infinite reverse; }

@keyframes aboutPeakDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}

.about-v2__skyline {
  position: absolute;
  bottom: 18%;
  left: 0;
  right: 0;
  height: 80px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(57, 255, 20, 0.04) 40px,
    rgba(57, 255, 20, 0.04) 41px
  );
  mask-image: linear-gradient(to top, black, transparent);
  opacity: 0.6;
}

.about-v2__fog {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 8, 0.4) 85%, var(--charcoal) 100%);
}

.about-v2__energy {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  height: 200px;
  opacity: 0.5;
}

.about-v2__energy-line {
  fill: none;
  stroke: url(#aboutEnergyGrad);
  stroke-width: 1;
  stroke-dasharray: 8 16;
  animation: aboutEnergyFlow 3s linear infinite;
}

.about-v2__energy-line--2 {
  animation-delay: -1.5s;
  opacity: 0.5;
}

@keyframes aboutEnergyFlow {
  to { stroke-dashoffset: -48; }
}

.about-v2__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.about-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: aboutOrbFloat 14s ease-in-out infinite;
}

.about-v2__orb--1 {
  width: 400px;
  height: 400px;
  top: 5%;
  right: -8%;
  background: rgba(212, 175, 55, 0.08);
}

.about-v2__orb--2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -5%;
  background: rgba(26, 155, 108, 0.12);
  animation-delay: -7s;
}

@keyframes aboutOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

.about-v2__container {
  position: relative;
  z-index: 2;
}

.about-v2__hero {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.about-v2__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about-v2__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey);
  line-height: 1.75;
  max-width: 640px;
  margin-inline: auto;
}

.about-v2__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-v2__stat {
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(57, 255, 20, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-v2__stat:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(57, 255, 20, 0.08);
}

.about-v2__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--neon);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.about-v2__stat--gold strong {
  color: #d4af37;
}

.about-v2__stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.about-v2__timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
}

.about-v2__timeline-track {
  position: absolute;
  top: 1.65rem;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), #22d3ee, var(--neon));
  opacity: 0.3;
  border-radius: 1px;
}

.about-v2__timeline-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.6), transparent);
  animation: aboutTimelinePulse 3s ease-in-out infinite;
}

@keyframes aboutTimelinePulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.about-v2__timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.about-v2__timeline-item.is-active,
.about-v2__timeline-item:hover {
  opacity: 1;
}

.about-v2__timeline-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--neon);
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.about-v2__timeline-item.is-active .about-v2__timeline-dot {
  background: var(--neon);
  animation: aboutDotPulse 2s ease-in-out infinite;
}

@keyframes aboutDotPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(57, 255, 20, 0.4); }
  50% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.7); }
}

.about-v2__timeline-item time {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 0.25rem;
}

.about-v2__timeline-item p {
  font-size: 0.72rem;
  color: var(--grey);
  line-height: 1.4;
  max-width: 140px;
  margin-inline: auto;
}

.about-v2__chapters {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.about-v2__chapter {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-v2__chapter--reverse {
  grid-template-columns: 1.4fr 1fr;
}

.about-v2__chapter--reverse .about-v2__chapter-visual {
  order: 2;
}

.about-v2__chapter--reverse .about-v2__chapter-body {
  order: 1;
}

.about-v2__chapter--wide {
  grid-template-columns: 1fr;
}

.about-v2__chapter-icon,
.about-v2__route-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 200px;
  border: 1px solid rgba(57, 255, 20, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-v2__chapter:hover .about-v2__chapter-icon,
.about-v2__chapter:hover .about-v2__route-card {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(57, 255, 20, 0.08);
}

.about-v2__chapter-icon svg {
  width: 56px;
  height: 56px;
  color: var(--neon);
  margin-bottom: 1rem;
}

.about-v2__chapter-icon--gold svg {
  color: #d4af37;
}

.about-v2__chapter-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #22d3ee;
}

.about-v2__chapter-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.about-v2__chapter-body p {
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-v2__chapter-intro {
  font-size: 1.05rem !important;
  color: var(--white) !important;
  opacity: 0.9;
}

.about-v2__values {
  list-style: none;
  margin-top: 1rem;
}

.about-v2__values li {
  padding: 0.5rem 0 0.5rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--grey);
}

.about-v2__values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.about-v2__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-v2__pillar {
  padding: 1.25rem;
  border: 1px solid rgba(57, 255, 20, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.about-v2__pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.28);
}

.about-v2__pillar-icon {
  display: flex;
  width: 36px;
  height: 36px;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.about-v2__pillar-icon svg {
  width: 100%;
  height: 100%;
}

.about-v2__pillar strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.about-v2__pillar p {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}

.about-v2__route-svg {
  width: 100%;
  max-width: 200px;
  margin-bottom: 0.75rem;
}

.about-v2__route-path {
  fill: none;
  stroke: url(#aboutRouteGrad);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: aboutEnergyFlow 2s linear infinite;
}

.about-v2__route-node {
  fill: var(--neon);
  filter: drop-shadow(0 0 4px var(--neon));
}

.about-v2__route-rider {
  fill: #22d3ee;
  filter: drop-shadow(0 0 6px #22d3ee);
}

.about-v2__cta {
  text-align: center;
  padding-top: 1rem;
}

.about-v2__cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--grey);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-v2__reveal {
  opacity: 0;
  translate: 0 32px;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-v2__reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (max-width: 1024px) {
  .about-v2__stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-v2__chapter,
  .about-v2__chapter--reverse {
    grid-template-columns: 1fr;
  }

  .about-v2__chapter--reverse .about-v2__chapter-visual,
  .about-v2__chapter--reverse .about-v2__chapter-body {
    order: unset;
  }

  .about-v2__timeline {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .about-v2__timeline-track {
    display: none;
  }

  .about-v2__timeline-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .about-v2__stats,
  .about-v2__pillars {
    grid-template-columns: 1fr;
  }

  .about-v2__timeline-item {
    flex: 0 0 100%;
  }
}

.page-about .about-v2 {
  padding-top: calc(var(--nav-h) + 2rem);
}

.page-about .nav--scrolled {
  background: rgba(6, 10, 8, 0.92);
}

.how-v2 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 155, 108, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(34, 211, 238, 0.06), transparent 50%),
    var(--charcoal);
}

.how-v2__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.how-v2__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
}

.how-v2__topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(57, 255, 20, 0.35);
  opacity: 0.6;
}

.how-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: howOrbFloat 12s ease-in-out infinite;
}

.how-v2__orb--1 {
  width: 420px;
  height: 420px;
  top: -10%;
  left: -5%;
  background: rgba(26, 155, 108, 0.18);
}

.how-v2__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -15%;
  right: -5%;
  background: rgba(34, 211, 238, 0.1);
  animation-delay: -6s;
}

@keyframes howOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.how-v2__silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(6, 10, 8, 0.95), transparent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath d='M0 120 L0 80 Q200 40 400 70 T800 50 T1200 75 L1440 60 L1440 120 Z' fill='white'/%3E%3C/svg%3E");
  mask-size: cover;
  opacity: 0.5;
}

.how-v2__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.how-v2__container {
  position: relative;
  z-index: 2;
}

.how-v2__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.how-v2__network {
  position: relative;
  min-height: clamp(520px, 55vw, 620px);
  margin-bottom: 2rem;
}

.how-v2__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.12) 0%, rgba(34, 211, 238, 0.06) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  filter: blur(20px);
}

.how-v2__network:hover .how-v2__glow {
  opacity: 1;
}

.how-v2__path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.how-v2__path-glow {
  fill: none;
  stroke: url(#howPathGrad);
  stroke-width: 8;
  stroke-linecap: round;
  opacity: 0.15;
  filter: url(#howPathGlow);
}

.how-v2__path-line {
  fill: none;
  stroke: url(#howPathGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 12 18;
  animation: howEnergyFlow 2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.5));
}

.how-v2__network.is-visible .how-v2__path-line {
  animation: howEnergyFlow 2s linear infinite, howPathDraw 2.4s ease forwards;
}

@keyframes howEnergyFlow {
  to { stroke-dashoffset: -60; }
}

@keyframes howPathDraw {
  from { stroke-dasharray: 0 2000; stroke-dashoffset: 0; }
  to { stroke-dasharray: 12 18; stroke-dashoffset: 0; }
}

.how-v2__path-pulse {
  fill: #39ff14;
  filter: drop-shadow(0 0 8px #39ff14);
}

.how-v2__path-pulse--cyan {
  fill: #22d3ee;
  filter: drop-shadow(0 0 8px #22d3ee);
}

.how-v2__nodes {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.how-v2__node {
  position: absolute;
  left: var(--node-x);
  top: var(--node-y);
  transform: translate(-50%, -50%);
  width: min(200px, 18vw);
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    translate 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--step-delay, 0) * 120ms);
}

.how-v2__network.is-visible .how-v2__node {
  opacity: 1;
  translate: 0 0;
}

.how-v2__node-inner {
  position: relative;
  padding: 1.25rem 1rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(57, 255, 20, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(34, 211, 238, 0.05);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}

.how-v2__node-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.06), transparent 50%, rgba(34, 211, 238, 0.04));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.how-v2__node:hover .how-v2__node-inner,
.how-v2__node.is-active .how-v2__node-inner {
  transform: scale(1.06) translateY(-4px);
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(57, 255, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.how-v2__node:hover .how-v2__node-inner::before,
.how-v2__node.is-active .how-v2__node-inner::before {
  opacity: 1;
}

.how-v2__node-beam {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--neon), #22d3ee, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.how-v2__node:hover .how-v2__node-beam,
.how-v2__node.is-active .how-v2__node-beam {
  opacity: 1;
  animation: howBeamPulse 1.5s ease-in-out infinite;
}

@keyframes howBeamPulse {
  0%, 100% { opacity: 0.6; filter: blur(0); }
  50% { opacity: 1; filter: blur(1px); }
}

.how-v2__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  animation: howIconFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--step-delay, 0) * -0.8s);
}

.how-v2__icon svg {
  width: 28px;
  height: 28px;
}

@keyframes howIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.how-v2__icon-holo {
  animation: howHoloScan 2s ease-in-out infinite;
}

@keyframes howHoloScan {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(8px); opacity: 0.6; }
}

.how-v2__icon-pulse {
  animation: howDotPulse 1.5s ease-in-out infinite;
}

.how-v2__icon-scan {
  stroke-dasharray: 40;
  animation: howScanLine 2s ease-in-out infinite;
}

@keyframes howScanLine {
  0% { stroke-dashoffset: 40; opacity: 0; }
  30% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.how-v2__icon-ring {
  animation: howRingSpin 8s linear infinite;
  transform-origin: 24px 24px;
}

@keyframes howRingSpin {
  to { transform: rotate(360deg); }
}

.how-v2__icon-battery {
  animation: howBatteryCharge 2s ease-in-out infinite;
}

@keyframes howBatteryCharge {
  0%, 100% { opacity: 0.5; width: 8px; }
  50% { opacity: 1; width: 12px; }
}

.how-v2__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #22d3ee;
  margin-bottom: 0.35rem;
}

.how-v2__node h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  text-align: center;
}

.how-v2__node p {
  font-size: 0.72rem;
  color: var(--grey);
  line-height: 1.45;
  text-align: center;
}

.how-v2__dashboard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(57, 255, 20, 0.12);
  background: rgba(8, 28, 18, 0.5) !important;
}

.how-v2__dash-item span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.15rem;
}

.how-v2__dash-item strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.how-v2__dash-battery {
  flex: 1;
  min-width: 160px;
}

.how-v2__dash-battery span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.35rem;
}

.how-v2__dash-battery .battery-visual {
  max-width: 200px;
}

.how-v2__battery-pulse {
  animation: howBatteryPulse 3s ease-in-out infinite;
}

@keyframes howBatteryPulse {
  0%, 100% { box-shadow: 0 0 8px var(--neon-glow); }
  50% { box-shadow: 0 0 20px var(--neon-glow); }
}

.how-v2__node:focus-visible .how-v2__node-inner {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.how-v2__path-svg--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .how-v2__path-svg--desktop {
    display: none;
  }

  .how-v2__path-svg--mobile {
    display: block;
  }

  .how-v2__network {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 2.5rem;
  }

  .how-v2__path-svg--mobile {
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 100%;
  }

  .how-v2__nodes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-block: 0.5rem;
  }

  .how-v2__node {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 420px;
  }

  .how-v2__node-inner {
    padding: 1.5rem;
  }

  .how-v2__node h3 {
    font-size: 1rem;
  }

  .how-v2__node p {
    font-size: 0.85rem;
  }

  .how-v2__path-pulse {
    display: none;
  }
}

@media (max-width: 768px) {
  .how-v2__dashboard {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .how-v2__network {
    padding-left: 1.5rem;
  }
}

/* Destinations — EV Route Planner */
.destinations .container {
  max-width: 1280px;
}

.route-planner {
  --rp-panel-bg: rgba(8, 28, 18, 0.82);
  --rp-map-filter: none;
  margin-top: 1rem;
}

.route-planner--light {
  --rp-panel-bg: rgba(255, 255, 255, 0.88);
  --rp-map-filter: saturate(1.05) brightness(1.05);
}

.route-planner--light .route-planner__panel,
.route-planner--light .route-planner__timeline,
.route-planner--light .route-planner__weather {
  color: #0a1f14;
  border-color: rgba(0, 0, 0, 0.08);
}

.route-planner--light .route-planner__stat span,
.route-planner--light .route-planner__progress-meta span,
.route-planner--light .route-planner__speed span,
.route-planner--light .route-planner__label {
  color: #4a6358;
}

.route-planner--light .route-planner__stat strong,
.route-planner--light .route-planner__title,
.route-planner--light .route-timeline__name {
  color: #0a1f14;
}

.route-planner__map-shell {
  position: relative;
  border-radius: var(--radius-lg, 1.25rem);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(57, 255, 20, 0.08);
  min-height: min(78vh, 720px);
  background: #061510;
}

.route-planner__map {
  width: 100%;
  height: min(78vh, 720px);
  z-index: 1;
  filter: var(--rp-map-filter);
}

.route-planner__panel {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 500;
  width: min(320px, calc(100% - 2rem));
  padding: 1.25rem;
  background: var(--rp-panel-bg) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(57, 255, 20, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(57, 255, 20, 0.06);
  animation: routePanelGlow 4s ease-in-out infinite;
}

@keyframes routePanelGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(57, 255, 20, 0.05); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 32px rgba(57, 255, 20, 0.12); }
}

.route-planner__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.route-planner__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon);
  margin-bottom: 0.2rem;
}

.route-planner__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.route-planner__theme-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--neon);
  cursor: pointer;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.route-planner__theme-btn:hover {
  background: rgba(57, 255, 20, 0.12);
  transform: scale(1.05);
}

.route-planner__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.route-planner__stat {
  padding: 0.6rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.route-planner__stat span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 0.15rem;
}

.route-planner__stat strong {
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.route-planner__stat--eco strong {
  color: var(--neon);
}

.route-planner__progress-wrap,
.route-planner__battery-sim {
  margin-bottom: 0.85rem;
}

.route-planner__progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--grey);
  margin-bottom: 0.35rem;
}

.route-planner__progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.route-planner__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1a9b6c, var(--neon));
  border-radius: 3px;
  box-shadow: 0 0 10px var(--neon-glow);
  transition: width 0.15s linear;
}

.route-planner__live {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.route-planner__speed {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.route-planner__speed span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--grey);
}

.route-planner__speed strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon);
}

.route-planner__weather {
  flex: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem !important;
  background: rgba(26, 155, 108, 0.12) !important;
}

.route-planner__weather-icon {
  font-size: 1.25rem;
}

.route-planner__weather strong {
  display: block;
  font-size: 0.9rem;
}

.route-planner__weather small {
  font-size: 0.65rem;
  color: var(--grey);
}

.route-planner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.route-planner__map-tools {
  display: flex;
  gap: 0.5rem;
}

.route-planner__tool-btn {
  flex: 1;
  padding: 0.45rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.route-planner__tool-btn:hover,
.route-planner__tool-btn.is-active {
  background: rgba(57, 255, 20, 0.12);
  border-color: rgba(57, 255, 20, 0.35);
  color: var(--neon);
}

/* Bottom timeline */
.route-planner__timeline {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 500;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem !important;
  overflow-x: auto;
  background: var(--rp-panel-bg) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(57, 255, 20, 0.15);
  scrollbar-width: thin;
}

.route-timeline__item {
  flex: 0 0 auto;
  min-width: 9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: inherit;
  font: inherit;
}

.route-timeline__item:hover {
  background: rgba(57, 255, 20, 0.08);
}

.route-timeline__item.is-active {
  border-color: rgba(57, 255, 20, 0.45);
  background: rgba(57, 255, 20, 0.1);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.12);
}

.route-timeline__item.is-done .route-timeline__dot {
  background: var(--neon);
  color: #061510;
}

.route-timeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 0.3rem;
}

.route-timeline__name {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.route-timeline__meta {
  display: block;
  font-size: 0.62rem;
  color: var(--grey);
}

/* Leaflet markers */
.route-stop-marker,
.ev-rider-marker {
  background: none !important;
  border: none !important;
}

.route-stop-marker__pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a9b6c, #0d4d35);
  border: 2px solid var(--neon);
  color: var(--white);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.route-stop-marker__pin--start {
  background: linear-gradient(135deg, var(--neon), #1a9b6c);
  color: #061510;
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(57, 255, 20, 0.4); }
  50% { box-shadow: 0 0 22px rgba(57, 255, 20, 0.7); }
}

.ev-rider-marker__bike {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #061510;
  border: 2px solid var(--neon);
  color: var(--neon);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.55);
  animation: riderGlow 1.2s ease-in-out infinite;
}

@keyframes riderGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Leaflet popup styling */
.route-leaflet-popup .leaflet-popup-content-wrapper {
  background: rgba(8, 28, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 0.85rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.route-leaflet-popup .leaflet-popup-tip {
  background: rgba(8, 28, 18, 0.92);
  border: 1px solid rgba(57, 255, 20, 0.25);
}

.map-popup h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--neon);
}

.map-popup p {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}

.map-popup ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.map-popup li {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}

.map-popup li span {
  color: var(--grey);
}

.map-popup__stars {
  color: #ffd166;
  letter-spacing: 0.05em;
}

.route-planner--light .route-leaflet-popup .leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.95);
  color: #0a1f14;
}

.route-planner--light .map-popup p,
.route-planner--light .map-popup li span {
  color: #4a6358;
}

/* Book */
.book {
  background: linear-gradient(180deg, transparent, var(--forest-mid) 50%, transparent);
}

.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.book__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.book__info>p {
  color: var(--grey);
  margin-bottom: 2rem;
}

.book__dashboard {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.book__dashboard h4 {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.battery-visual {
  height: 8px;
  background: var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.battery-visual__bar {
  height: 100%;
  width: var(--level, 50%);
  background: linear-gradient(90deg, var(--emerald), var(--neon));
  border-radius: 4px;
  box-shadow: 0 0 12px var(--neon-glow);
}

.book__contact {
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.book__contact h4 {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.book__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.book__contact-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--glass-border);
}

.book__contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.book__contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book__contact-value {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}

.book__contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.book__contact-value a:hover {
  color: var(--neon);
}

.book__contact-sep {
  margin: 0 0.35rem;
  color: var(--grey);
}

.book__contact-value--pending {
  color: var(--grey);
}

.book__form {
  padding: 2rem;
}

.book__form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.book__scooters {
  border: none;
  margin-bottom: 1.5rem;
}

.book__scooters legend {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.scooter-option {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.scooter-option input {
  position: absolute;
  opacity: 0;
}

.scooter-option__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.scooter-option input:checked+.scooter-option__card {
  border-color: var(--neon);
  background: var(--neon-dim);
}

.book__summary {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(57, 255, 20, 0.14);
  background: rgba(8, 28, 18, 0.45) !important;
}

.book__summary h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.book__summary-list {
  margin: 0;
}

.book__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.book__summary-row:last-child {
  border-bottom: none;
}

.book__summary-row dt {
  color: var(--grey);
  font-weight: 500;
}

.book__summary-row dd {
  margin: 0;
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

.book__summary-row--total dd {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--neon);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px var(--neon-dim);
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.book__honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: var(--neon);
}

.form-status--error {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ff8a8a;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--neon);
  margin: 0.75rem 0;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--grey);
}

.footer h4 {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer a,
.footer p {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

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

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--grey);
}

/* Responsive */
@media (max-width: 1024px) {

  /* Hide hero slide controls on touch layouts — slides auto-advance */
  .hero__controls,
  .hero__arrow,
  .hero__progress,
  .hero__progress-item {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

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

  .route-planner__panel {
    width: min(280px, calc(100% - 1.5rem));
    padding: 1rem;
    max-height: calc(100% - 5rem);
    overflow-y: auto;
  }

  .route-planner__map {
    height: min(70vh, 640px);
  }

  .route-planner__timeline {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 768px) {

  .nav__links,
  .nav__actions {
    display: none;
  }

  .container {
    width: min(1200px, calc(100% - 2rem));
  }

  .section {
    padding: clamp(3.5rem, 9vw, 5rem) 0;
  }

  .section__header {
    margin-bottom: clamp(2rem, 5vw, 2.75rem);
  }

  .section__header h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .section__desc {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .btn {
    min-height: 44px;
  }

  .nav__toggle {
    display: flex;
  }

  /* Single header row — drawer must not duplicate logo / close controls */
  .nav__drawer-head {
    display: none;
  }

  .nav__drawer {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 0.75rem);
  }

  .nav__book-mobile {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    min-height: 36px;
    margin-left: auto;
    margin-right: 0.5rem;
    box-shadow: 0 0 20px rgba(184, 255, 60, 0.25);
  }

  .nav__inner {
    gap: 0.75rem;
  }

  .nav__logo-img {
    width: 42px;
    height: 42px;
  }

  .nav__drawer-brand-logo {
    width: 36px;
    height: 36px;
  }

  html {
    scroll-behavior: auto;
  }

  /* Hero — balanced mobile layout (desktop unchanged above 768px) */
  .hero--cinema {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    overflow: visible;
    touch-action: pan-y;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    margin-bottom: 0;
    box-sizing: border-box;
  }

  .hero--cinema + .promo {
    margin-top: 0;
  }

  .hero-slider__slide {
    background-position: center center;
    transform: none !important;
    transition: opacity 0.65s ease !important;
  }

  .hero-slider__slide.is-active {
    transform: none !important;
  }

  .hero--cinema .hero__content {
    animation: none;
  }

  .hero__ui {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-height: auto;
    padding:
      calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 0.75rem)
      max(1rem, env(safe-area-inset-right, 0px))
      max(1.25rem, env(safe-area-inset-bottom, 0px))
      max(1rem, env(safe-area-inset-left, 0px));
    gap: 0;
  }

  .hero__ui.container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    min-height: auto;
    margin-inline: 0;
    justify-content: center;
  }

  .hero__main {
    flex: 0 1 auto;
    justify-content: center;
    padding-top: 0;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__copy {
    position: relative;
    min-height: auto;
    height: auto;
    max-width: 100%;
    width: 100%;
    padding-bottom: 0.25rem;
  }

  /* Opacity crossfade — avoid display toggling (prevents button flicker) */
  .hero__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 0;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: none;
    transform: translateY(10px);
    transition:
      opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.5s;
    z-index: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .hero__content.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 2;
    transition-delay: 0.08s;
  }

  .hero__content.is-exiting {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    z-index: 1;
    transition-delay: 0s;
    transition-duration: 0.4s;
  }

  .hero__content:not(.is-active):not(.is-exiting) {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }

  .hero__content.is-active .eyebrow--hero,
  .hero__content.is-active .hero__title,
  .hero__content.is-active .hero__subtitle,
  .hero__content.is-active .hero__chips,
  .hero__content.is-active .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__content.is-exiting .hero__actions,
  .hero__content.is-exiting .hero__actions .btn {
    pointer-events: none;
  }

  .eyebrow--hero {
    font-size: 0.62rem;
    margin-bottom: 0.65rem;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    margin-bottom: 0.65rem;
    line-height: 1.14;
    max-width: 18ch;
  }

  .hero__subtitle {
    font-size: clamp(0.84rem, 3.6vw, 0.92rem);
    margin-bottom: 1rem;
    line-height: 1.55;
    max-width: 100%;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .hero__chips {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    margin-inline: 0;
    padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .hero__chips::-webkit-scrollbar {
    display: none;
  }

  .hero-chip {
    min-width: 9.25rem;
    flex-shrink: 0;
    padding: 0.65rem 0.85rem;
    scroll-snap-align: start;
  }

  .hero-chip__icon .icon-svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    touch-action: manipulation;
  }

  /* Hero slide controls hidden at ≤1024px — see top of responsive block */
  .hero__bar {
    display: none;
  }

  .hero__values:not(.is-active) {
    display: none !important;
  }

  .hero-slider__shade {
    background:
      linear-gradient(180deg, rgba(6, 10, 8, 0.72) 0%, rgba(6, 10, 8, 0.4) 45%, rgba(6, 10, 8, 0.78) 100%),
      linear-gradient(90deg, rgba(6, 10, 8, 0.5) 0%, rgba(6, 10, 8, 0.15) 55%, transparent 85%);
  }

  .hero-slider__grid-floor {
    height: 22%;
    opacity: 0.35;
  }

  .promo {
    border-top: none;
    padding-top: 1.75rem;
  }

  .promo__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
  }

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

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

@media (max-width: 480px) {
  .container {
    width: min(1200px, calc(100% - 1.5rem));
  }

  .nav__drawer {
    width: 100%;
    border-left: none;
    box-shadow: none;
  }

  .nav__drawer-link-label {
    font-size: 1rem;
  }

  .hero__ui,
  .hero__ui.container {
    padding-left: max(0.875rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.875rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .hero__title {
    font-size: clamp(1.6rem, 8.2vw, 1.95rem);
    max-width: 16ch;
  }

  .hero__subtitle {
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
  }

  .hero-chip {
    min-width: 8.5rem;
    padding: 0.6rem 0.75rem;
    gap: 0.6rem;
  }

  .hero-chip strong {
    font-size: 0.76rem;
  }

  .hero-chip span {
    font-size: 0.66rem;
  }

  .hero--cinema .btn--lg {
    min-height: 48px;
    padding: 0.85rem 1.1rem;
    font-size: 0.82rem;
  }

  .book__contact-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .route-planner__panel {
    width: calc(100% - 1rem);
    top: 0.5rem;
    left: 0.5rem;
    max-height: 42vh;
  }

  .route-planner__live {
    flex-direction: column;
  }

  .route-planner__map {
    height: 75vh;
    min-height: 420px;
  }

  .route-planner__timeline {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem !important;
  }

  .route-timeline__item {
    min-width: 7.5rem;
  }

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

@media (max-width: 360px) {
  .hero__title {
    font-size: 1.5rem;
    max-width: 15ch;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero-chip {
    min-width: 7.75rem;
    padding: 0.55rem 0.65rem;
  }

  .eyebrow--hero {
    font-size: 0.58rem;
  }
}

/* Tablet: compact bottom bar, no overlap */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__copy {
    min-height: 480px;
  }

  .hero__values-wrap {
    max-width: 55%;
  }

  .hero-value {
    min-width: 110px;
    padding: 0.75rem 1rem;
  }

  .hero-value strong {
    font-size: 0.78rem;
  }

  .hero-value span {
    font-size: 0.65rem;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Production: accessibility & performance ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--neon);
  color: var(--charcoal);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.route-planner__fallback {
  padding: 2rem;
  text-align: center;
  color: var(--grey);
  font-size: 0.9rem;
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero-slider__slide,
  .hero-slider__slide.is-active {
    transform: none !important;
    transition: opacity 0.35s ease !important;
  }

  .nav__toggle-line {
    transition-duration: 0.15s !important;
  }
}

@media (max-width: 768px) {
  .services-v2__card-inner,
  .fleet-v2__card-inner {
    transform: none !important;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(1200px, 90vw);
  }
}