/* ============== DESIGN TOKENS ============== */
:root {
  --color-primary: #0EA5E9;
  --color-primary-dark: #0284C7;
  --color-secondary: #38BDF8;
  --color-cta: #E76F51;
  --color-cta-dark: #C9573B;
  --color-coral: #FB7185;
  --color-sand: #FEF3C7;
  --color-sunshine: #FCD34D;
  --color-bg: #F0F9FF;
  --color-bg-tint: #E0F2FE;
  --color-surface: #FFFFFF;
  --color-text: #0C4A6E;
  --color-text-muted: #475569;
  --color-border: #E2E8F0;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 165, 233, 0.18);
  --shadow-xl: 0 24px 48px rgba(14, 165, 233, 0.22);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --header-h: 68px;
  --container-max: 1100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global scale — desktop browsers at 100% zoom previously felt ~25% too big.
   1rem now = 14px (was 16px). Everything sized in rem scales automatically. */
html { font-size: 87.5%; }
@media (max-width: 520px) {
  /* Phones don't suffer from the desktop-too-big issue; restore typical size. */
  html { font-size: 100%; }
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); }

p { line-height: 1.7; }
.lead { font-size: 1.125rem; color: var(--color-text-muted); max-width: 60ch; }
.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cta);
  background: var(--color-sand);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section--tinted {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-tint) 50%, var(--color-bg) 100%);
}
.section--cta {
  background:
    radial-gradient(ellipse at top left, rgba(252, 211, 77, 0.15), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(14, 165, 233, 0.12), transparent 60%),
    var(--color-bg);
}
.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section__head .lead { margin: 1rem auto 0; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: all 200ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.4);
}
.btn--primary {
  background: var(--color-cta);
  color: #fff;
  box-shadow: 0 6px 14px rgba(231, 111, 81, 0.32);
}
.btn--primary:hover {
  background: var(--color-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 87, 59, 0.4);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}
.btn--lg { padding: 16px 32px; font-size: 1.0625rem; }
.btn--sm { padding: 8px 16px; font-size: 0.9375rem; }
.btn--block { width: 100%; }

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
  transition: all 200ms var(--ease);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-primary);
}
.brand__icon { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.brand__text span { font-size: 0.7rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.nav {
  display: flex;
  gap: var(--space-xl);
  font-weight: 600;
}
.nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--color-text);
  transition: color 200ms var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav a:hover { color: var(--color-primary); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Header language switcher */
.lang-switcher { position: relative; }
.lang-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.08);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all 200ms var(--ease);
}
.lang-switcher__current:hover { background: rgba(14, 165, 233, 0.16); }
.lang-switcher__caret { width: 10px; height: 6px; transition: transform 200ms var(--ease); }
.lang-switcher[aria-expanded="true"] .lang-switcher__caret,
.lang-switcher__current[aria-expanded="true"] .lang-switcher__caret { transform: rotate(180deg); }
.lang-switcher__globe { width: 16px; height: 16px; color: var(--color-primary); }
.lang-code {
  display: inline-block;
  min-width: 24px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-align: center;
}
.lang-code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--color-sand);
  color: var(--color-cta-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  flex: none;
  transition: all 200ms var(--ease);
}
.lang-btn:hover .lang-code-badge {
  background: var(--color-sunshine);
}
.lang-flag { font-size: 1.1rem; line-height: 1; }
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  list-style: none;
  padding: 6px;
  margin: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  z-index: 60;
}
.lang-switcher__menu[hidden] { display: none; }
.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  text-align: left;
  transition: background 150ms var(--ease);
}
.lang-switcher__item:hover { background: var(--color-bg); }
.lang-switcher__item[aria-selected="true"] { background: var(--color-sand); color: var(--color-cta-dark); }

/* Hamburger */
.hamburger { display: none; padding: 8px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all 200ms var(--ease);
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 74, 110, 0.55) 0%, rgba(14, 165, 233, 0.35) 50%, rgba(249, 115, 22, 0.25) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0 var(--space-3xl);
  max-width: 880px;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}
.hero__title {
  color: #fff;
  text-shadow: 0 2px 24px rgba(12, 74, 110, 0.35);
  margin-bottom: var(--space-lg);
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.35rem);
  max-width: 620px;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.95);
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}
.hero__stats {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.hero__stats > div {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-sunshine);
  line-height: 1;
}
.hero__stats span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin-top: 4px; }

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
}
.hero__wave-back { fill: #7DD3FC; opacity: 0.55; }
.hero__wave-front { fill: var(--color-bg); }

/* ============== FLEET ============== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}
.scooter-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 300ms var(--ease);
  display: flex;
  flex-direction: column;
}
.scooter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.scooter-card--featured {
  border: 2px solid var(--color-cta);
  transform: translateY(-4px);
}
.scooter-card--featured:hover { transform: translateY(-10px); }
.scooter-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-tint);
}
.scooter-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.scooter-card:hover .scooter-card__media img { transform: scale(1.08); }
.scooter-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.scooter-card__star {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: var(--color-cta);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
}

/* Multi-brand split media (50cc shows both brands) */
.scooter-card__media--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-surface);
}
.scooter-card__media--split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.scooter-card:hover .scooter-card__media--split img { transform: scale(1.04); }
.scooter-card__multi {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 4px 10px;
  background: rgba(12, 74, 110, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}
.scooter-card__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}
.scooter-card__body h3 { margin-bottom: 4px; }
.scooter-card__body p { color: var(--color-text-muted); font-size: 0.95rem; }
.scooter-card__specs {
  list-style: none;
  padding: var(--space-md) 0;
  margin: 0;
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scooter-card__specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.scooter-card__specs span { color: var(--color-text-muted); }
.scooter-card__specs strong { font-weight: 600; color: var(--color-text); }
.scooter-card__body .btn { margin-top: auto; }

/* ============== STEPS (How it works) ============== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background:
    repeating-linear-gradient(90deg,
      var(--color-secondary) 0,
      var(--color-secondary) 6px,
      transparent 6px,
      transparent 14px);
  z-index: 0;
}
.step {
  position: relative;
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 250ms var(--ease);
  z-index: 1;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}
.step__num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--color-cta);
  background: var(--color-sand);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-tint), var(--color-bg));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px rgba(14, 165, 233, 0.06);
}
.step__icon svg { width: 26px; height: 26px; }
.step h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.step p { color: var(--color-text-muted); font-size: 0.95rem; max-width: 30ch; margin: 0 auto; }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .steps::before { display: none; }
}

/* ============== FEATURES ============== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}
.feature-card {
  background: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 250ms var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-secondary);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-sand), var(--color-sunshine));
  color: var(--color-cta-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ============== REVIEWS / TESTIMONIALS ============== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.review-card {
  background: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all 250ms var(--ease);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-secondary);
}
.review-card__head {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: 4px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}
.review-card__head strong { display: block; font-size: 0.98rem; }
.review-card__date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}
.review-card__google { width: 22px; height: 22px; display: inline-flex; }
.review-card__google svg { width: 100%; height: 100%; }
.review-card__stars {
  color: var(--color-sunshine);
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  line-height: 1;
}
.review-card p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}
.btn--ghost-dark {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn--ghost-dark:hover {
  background: var(--color-bg);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ============== MAP ============== */
.map-wrap {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
  background: var(--color-bg-tint);
}
.map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 880px) {
  .map-wrap { aspect-ratio: 16 / 10; }
}

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-md);
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-tint);
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 140px; }
  .gallery-item--lg { grid-column: span 3; grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1.05rem;
}
.contact-list svg { width: 24px; height: 24px; color: var(--color-primary); flex: none; }
.contact-list a { transition: color 150ms var(--ease); }
.contact-list a:hover { color: var(--color-cta); }

.socials { display: flex; gap: var(--space-md); margin-top: var(--space-md); }
.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all 200ms var(--ease);
}
.social:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social svg { width: 22px; height: 22px; }

.contact-form {
  background: var(--color-surface);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-form h3 { margin-bottom: var(--space-sm); }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 200ms var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form__status {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--color-primary);
}

/* Scooter picker (radio cards with info tooltip) */
.scooter-picker {
  border: 0;
  padding: 0;
  margin: 0;
}
.scooter-picker__legend {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 0 8px 0;
  color: var(--color-text);
}
.scooter-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 520px) {
  .scooter-picker__grid { grid-template-columns: 1fr; }
}

.scooter-option {
  position: relative;
}
.scooter-option__label {
  display: block;
  cursor: pointer;
}
.scooter-option__label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.scooter-option__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  padding-right: 32px; /* room for info button */
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: all 200ms var(--ease);
  min-height: 60px;
}
.scooter-option__label:hover .scooter-option__inner {
  border-color: var(--color-secondary);
  background: #fff;
}
.scooter-option__label input[type="radio"]:checked ~ .scooter-option__inner {
  border-color: var(--color-cta);
  background: linear-gradient(135deg, #FFF, var(--color-sand));
  box-shadow: 0 4px 12px rgba(231, 111, 81, 0.18);
}
.scooter-option__label input[type="radio"]:focus-visible ~ .scooter-option__inner {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}
.scooter-option__thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: none;
}
.scooter-option__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.scooter-option__cc {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  line-height: 1.1;
}
.scooter-option__title {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Info button */
.scooter-option__info {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms var(--ease);
  z-index: 2;
}
.scooter-option__info:hover,
.scooter-option__info[aria-expanded="true"] {
  background: var(--color-primary);
  color: #fff;
}
.scooter-option__info svg { width: 14px; height: 14px; }

/* Tooltip */
.scooter-option__tip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: 280px;
  max-width: calc(100vw - 32px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text);
  animation: popIn 200ms var(--ease);
}
.scooter-option__tip[hidden] { display: none; }
.scooter-option__tip::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 9px;
  width: 14px;
  height: 14px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  transform: rotate(45deg);
}
.scooter-option__tip strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--color-text);
}
.scooter-option__tip p {
  margin: 0 0 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.scooter-option__tip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--color-border);
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scooter-option__tip li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.scooter-option__tip li span { color: var(--color-text-muted); }
.scooter-option__tip li strong { display: inline; font-family: inherit; font-size: 0.82rem; margin: 0; }

@media (max-width: 520px) {
  .scooter-option__tip { width: calc(100% + 8px); right: -4px; }
}

/* Booking detail row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: var(--space-md);
}
.form-field { min-width: 0; }
.form-field input { width: 100%; }
.form-field__hint {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.3;
}
.form-field__hint a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Native date picker tweaks */
.contact-form input[type="date"] {
  color: var(--color-text);
  font-family: inherit;
  cursor: pointer;
}
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(5) hue-rotate(170deg);
  cursor: pointer;
  opacity: 0.7;
}
.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.contact-form input[type="number"] { font-variant-numeric: tabular-nums; }
.contact-form__status.is-success { color: #059669; }
.contact-form__status.is-error { color: #DC2626; }
.contact-form__status.is-pending { color: var(--color-primary); }

/* ============== FOOTER ============== */
.footer {
  background: linear-gradient(180deg, var(--color-bg-tint) 0%, #DBEAFE 100%);
  padding: var(--space-3xl) 0 var(--space-lg);
  margin-top: var(--space-3xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(14, 165, 233, 0.18);
}
.footer__brand strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__brand p { color: var(--color-text-muted); font-size: 0.95rem; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.footer__col a, .footer__col span {
  font-size: 0.95rem;
  transition: color 150ms var(--ease);
}
.footer__col a:hover { color: var(--color-cta); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============== LANGUAGE MODAL ============== */
.lang-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 74, 110, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  animation: fadeIn 300ms var(--ease);
}
@media (max-width: 520px) {
  .lang-modal-overlay { padding: var(--space-lg); }
}
.lang-modal-overlay[hidden] { display: none; }

.lang-modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: popIn 350ms var(--ease);
}
.lang-modal__sun {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--color-sunshine) 0%, var(--color-sand) 60%, transparent 70%);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}
.lang-modal__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.lang-modal__subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  position: relative;
}
.lang-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  transition: all 200ms var(--ease);
}
.lang-btn:hover {
  border-color: var(--color-primary);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.lang-btn .lang-flag { font-size: 1.5rem; }
.lang-btn .lang-name { font-family: 'Outfit', sans-serif; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============== REVEAL ANIMATIONS ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--color-border);
  }
  .header__actions .btn { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 720px) {
  .hero .container { padding-left: var(--space-xl); padding-right: var(--space-xl); }
  .hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { gap: var(--space-sm); }
  .hero__actions .btn { flex: 1; min-width: 0; }
}

@media (max-width: 520px) {
  .hero__stats { gap: var(--space-lg); }
  .hero__stats strong { font-size: 1.75rem; }
  .lang-list { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Honeypot field (spam guard) — visually hidden, still in form */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* reCAPTCHA widget spacing */
.contact-form .g-recaptcha {
  margin: 4px 0 0;
}

/* ============== POLICY PAGE (cookies / privacy) ============== */
.policy {
  padding-top: calc(var(--header-h) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  min-height: calc(100vh - 400px);
}
.policy .container { max-width: 820px; }
.policy__back {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--space-md);
  transition: color 150ms var(--ease);
}
.policy__back:hover { color: var(--color-cta); }
.policy h1 {
  margin-bottom: var(--space-xs);
}
.policy__updated {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}
.policy .lead { margin-bottom: var(--space-2xl); }
.policy__section {
  margin-bottom: var(--space-2xl);
}
.policy__section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.policy__section p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.policy__section p:last-child { margin-bottom: 0; }
.policy__section ul {
  padding-left: 1.25rem;
  margin: 0 0 var(--space-md);
}
.policy__section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.policy code {
  background: var(--color-bg-tint);
  color: var(--color-primary-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
  padding: 1px 6px;
  border-radius: 4px;
}
.policy a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy a:hover { color: var(--color-cta-dark); }
.policy__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin: var(--space-md) 0;
}
.policy__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: 0.92rem;
}
.policy__table th,
.policy__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.policy__table th {
  background: var(--color-bg);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}
.policy__table tbody tr:last-child td { border-bottom: 0; }
.policy__table code { background: transparent; color: var(--color-primary); padding: 0; }
.policy__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.policy__contact li {
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.policy__contact li:last-child { margin-bottom: 0; }

/* ============== COOKIE CONSENT ============== */
.cookies {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  width: calc(100% - 32px);
  max-width: 720px;
  animation: slideUp 350ms var(--ease);
}
.cookies[hidden] { display: none; }
.cookies__inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border);
  padding: 18px 20px;
}
.cookies__compact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.cookies__text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.cookies__text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.cookies__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookies__actions .btn { white-space: nowrap; }

.cookies__expanded { display: flex; flex-direction: column; gap: 14px; }
.cookies__expanded > strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}
.cookies__category {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.cookies__cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.cookies__cat-row--toggle { cursor: pointer; }
.cookies__category p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.cookies__pill {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cookies__pill--on { background: var(--color-sand); color: var(--color-cta-dark); }

/* Toggle switch */
.cookies__cat-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cookies__switch {
  width: 36px;
  height: 20px;
  background: #cbd5e1;
  border-radius: 999px;
  position: relative;
  transition: background 200ms var(--ease);
  flex: none;
}
.cookies__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.cookies__cat-row input:checked ~ .cookies__switch { background: var(--color-cta); }
.cookies__cat-row input:checked ~ .cookies__switch::after { transform: translateX(16px); }
.cookies__cat-row input:focus-visible ~ .cookies__switch {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 640px) {
  .cookies { bottom: 8px; }
  .cookies__inner { padding: 14px 16px; }
  .cookies__compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cookies__actions { justify-content: stretch; }
  .cookies__actions .btn { flex: 1; }
}

/* ============== ACCESSIBILITY ============== */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
