/* ========================================
   tracxy — styles.css
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A1628;
  --navy-mid:   #0D1F3C;
  --navy-light: #122347;
  --blue:       #1565C0;
  --blue-btn:   #1976D2;
  --blue-light: #2196F3;
  --green:      #2E7D32;
  --green-light:#43A047;
  --yellow:     #FFC107;
  --red:        #E53935;
  --white:      #FFFFFF;
  --off-white:  #F4F6FA;
  --text-muted: #90A4BE;
  --border:     rgba(255,255,255,0.08);
  --font:       'Inter', system-ui, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --radius-pill:999px;
  --shadow:     0 4px 32px rgba(0,0,0,0.32);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  line-height: 1.3;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn small { display: block; font-weight: 400; font-size: 11px; opacity: 0.85; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-btn) 65%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(21,101,192,0.4);
}
.btn--primary:hover { box-shadow: 0 10px 26px rgba(21,101,192,0.55); }
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.4) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn--primary:hover::after { transform: translateX(130%); }

.btn--secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--pill {
  border-radius: var(--radius-pill);
  font-size: 13px;
  padding: 9px 18px;
}

/* ---------- Utility ---------- */
.text-accent { color: var(--yellow); }

/* ---------- STAFF LOGIN BANNER ---------- */
.staff-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--blue-btn);
  color: var(--white);
}
.staff-banner[hidden] { display: none; }
.staff-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 40px;
  font-size: 13px;
  text-align: center;
}
.staff-banner__icon { flex-shrink: 0; opacity: 0.9; }
.staff-banner__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.staff-banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.staff-banner__close:hover { opacity: 1; }

/* push the fixed nav / hero / mobile menu down while the banner is visible */
body.has-staff-banner .nav { top: var(--banner-height, 0px); }
body.has-staff-banner .hero { padding-top: calc(64px + var(--banner-height, 0px)); }
body.has-staff-banner .nav__links.open { top: calc(64px + var(--banner-height, 0px)); }

@media (max-width: 600px) {
  .staff-banner__inner { padding: 8px 36px; font-size: 12px; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, top 0.2s;
}
.nav.scrolled { background: rgba(10,22,40,0.99); box-shadow: 0 8px 24px rgba(0,0,0,0.28); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.nav__logo:hover { transform: translateY(-1px); }
.nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  transition: box-shadow 0.2s ease;
}
.nav__logo:hover .nav__logo-img { box-shadow: 0 0 0 3px rgba(33,150,243,0.35); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active {
  color: var(--blue-light);
  background: none;
}
.nav__link.active::after { transform: scaleX(1); }

.nav__cta { margin-left: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ---------- DECORATIVE PIN ---------- */
.pin-icon {
  position: absolute;
  width: 110px;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.45));
}
.pin-icon svg { width: 100%; display: block; }
.pin-icon__glow {
  position: absolute;
  left: 50%; bottom: -10px;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: radial-gradient(ellipse at center, rgba(33,150,243,0.55) 0%, rgba(33,150,243,0) 72%);
  filter: blur(2px);
}
.pin-icon--how  { top: 8%; right: 6%; width: 80px; opacity: 0.9; }
.pin-icon--hero { top: 14%; right: 8%; opacity: 0.9; z-index: 3; }

.pin-icon--hero .pin-icon__glow {
  animation: pinGlowPulse 3s ease-in-out infinite;
}
@keyframes pinGlowPulse {
  0%, 100% { opacity: 0.5;  transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.95; transform: translateX(-50%) scale(1.3); }
}

@media (max-width: 640px) {
  .pin-icon--how  { width: 56px; top: 4%; right: 4%; }
  .pin-icon--hero { width: 64px; top: 8%; right: 5%; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: 64px; /* clears the fixed nav so it never overlaps the image below */
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 600;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, #102544 0%, #050d1a 70%);
}

/* mount point for the 3D card carousel (populated by hero-carousel.js) */
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.carousel3d {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1350px;
}

.carousel3d__viewport {
  position: relative;
  transform-style: preserve-3d;
}

.carousel3d__card {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  backface-visibility: visible;
}

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

.c3d-face { position: absolute; inset: 0; }
.c3d-texture-diag {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 13px);
}
.c3d-texture-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at 85% 8%, rgba(255,255,255,0.16), transparent 60%);
}
.c3d-texture-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .carousel3d__card { transition: none !important; }
}

/* soft, slowly drifting colour glow sitting over the carousel for extra depth */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(420px circle at 18% 22%, rgba(33,150,243,0.32), transparent 60%),
    radial-gradient(380px circle at 82% 78%, rgba(255,193,7,0.20), transparent 60%);
  mix-blend-mode: screen;
  animation: heroGlowDrift 13s ease-in-out infinite alternate;
}

@keyframes heroGlowDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1);    opacity: 0.7; }
  100% { transform: translate3d(3%, -4%, 0) scale(1.1); opacity: 1; }
}

/* one-time diagonal shine that sweeps across the carousel shortly after load */
.hero__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.4) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: heroShineSweep 2.6s ease-in-out 0.5s 1;
  mix-blend-mode: overlay;
}

@keyframes heroShineSweep {
  0%   { transform: translateX(-130%); }
  65%  { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}

.hero__overlay {
  display: none; /* no text sits on the image anymore, so no readability tint is needed */
}

.hero__content {
  width: 100%;
  padding: 56px 0 72px;
}

.hero__copy {
  max-width: 600px;
  text-align: left;
}


.hero__title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero__title--accent { color: var(--yellow); }

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero__btn { min-width: 168px; justify-content: center; }

.hero__stores {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* staggered entrance for the hero copy */
.hero__title,
.hero__sub,
.hero__ctas,
.hero__stores {
  opacity: 0;
  transform: translateY(22px);
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__title  { animation-delay: 0.1s; }
.hero__sub    { animation-delay: 0.28s; }
.hero__ctas   { animation-delay: 0.46s; }
.hero__stores { animation-delay: 0.64s; }

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

@media (prefers-reduced-motion: reduce) {
  .hero__bg::after,
  .hero__shine,
  .hero__title,
  .hero__sub,
  .hero__ctas,
  .hero__stores {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.store-col { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.store-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-badge img { height: 38px; border-radius: 6px; }
.store-badge--sm img { height: 32px; }

/* ---------- SECTIONS (generic) ---------- */
.section { padding: 72px 0; position: relative; }
.section--dark { background: var(--navy-mid); position: relative; overflow: hidden; }
.section--dark::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(33,150,243,0.16), transparent 70%);
  pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--white);
}

.eyebrow-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eyebrow-icon--blue { background: linear-gradient(135deg, var(--blue-light), var(--blue-btn)); box-shadow: 0 0 0 6px rgba(33,150,243,0.14), 0 8px 20px rgba(21,101,192,0.35); }
.eyebrow-icon--green { background: linear-gradient(135deg, var(--green-light), var(--green)); box-shadow: 0 0 0 6px rgba(67,160,71,0.14), 0 8px 20px rgba(46,125,50,0.35); }

/* ---------- MOTION LAYER ---------- */

/* film-grain texture sitting over the whole page for a premium, filmic feel */
.grain {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* custom cursor (desktop / pointer devices only) */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cursor-ring.is-active {
  width: 58px; height: 58px;
  border-color: var(--yellow);
  background: rgba(255,193,7,0.08);
}
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* hero headline word-mask reveal (spans injected by JS; harmless if JS never runs) */
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .word-inner { display: inline-block; }

/* infinite ticker band between the hero and the passenger section */
.marquee {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue-btn), var(--green-light));
  padding: 13px 0;
  transform: rotate(-1deg);
  margin: -16px 0 -14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee__dot { opacity: 0.6; font-size: 8px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring, .grain { display: none; }
}

/* ---------- OVERLAY SECTIONS (Passengers / Drivers) ---------- */
.overlay-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  aspect-ratio: 1600 / 600;
  display: flex;
  align-items: center;
}

.overlay-section > .container {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
}

.overlay-section--passengers > .container {
  justify-content: flex-start;
}

.overlay-section--drivers > .container {
  justify-content: flex-end;
}

.overlay-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.overlay-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.overlay-section__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlay-section--passengers {
  background: var(--navy-mid);
}
.overlay-section--passengers .overlay-section__gradient {
  background: linear-gradient(
    90deg,
    rgba(13,31,60,0.98) 0%,
    rgba(13,31,60,0.96) 28%,
    rgba(13,31,60,0.65) 48%,
    rgba(13,31,60,0.18) 70%,
    rgba(13,31,60,0.00) 100%
  );
}

.overlay-section--drivers {
  background: var(--navy);
}
.overlay-section--drivers .overlay-section__gradient {
  background: linear-gradient(
    270deg,
    rgba(10,22,40,0.98) 0%,
    rgba(10,22,40,0.96) 28%,
    rgba(10,22,40,0.65) 48%,
    rgba(10,22,40,0.18) 70%,
    rgba(10,22,40,0.00) 100%
  );
}

.overlay-section__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
}

.overlay-section--passengers .overlay-section__content {
  text-align: left;
}
.overlay-section--drivers .overlay-section__content {
  text-align: right;
}

.overlay-section--passengers .section__eyebrow,
.overlay-section--passengers .feature-row,
.overlay-section--passengers .feature-item__head {
  justify-content: flex-start;
}
.overlay-section--drivers .section__eyebrow,
.overlay-section--drivers .feature-row,
.overlay-section--drivers .feature-item__head {
  justify-content: flex-end;
}

.feature-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-item {
  flex: 1;
  min-width: 175px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.feature-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.feature-item__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.feature-item:hover .feature-item__icon { transform: scale(1.12) rotate(-6deg); }
.feature-item__icon--blue { background: linear-gradient(135deg, var(--blue-light), var(--blue-btn)); }
.feature-item__icon--green { background: linear-gradient(135deg, var(--green-light), var(--green)); }
.feature-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.feature-item__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--off-white);
  color: var(--navy);
  overflow: hidden;
}
.how__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.how__bg-img {
  position: absolute;
  right: 0; top: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(to left, black 0%, black 20%, transparent 95%);
  mask-image: linear-gradient(to left, black 0%, black 20%, transparent 95%);
}
.how__content { position: relative; z-index: 2; }

.how__heading {
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--navy-mid);
  margin-bottom: 44px;
}

.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 190px;
  transition: transform 0.25s ease;
}
.how__step:hover { transform: translateY(-4px); }

.how__step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.how__step:hover .how__step-num { transform: scale(1.08); }
.how__step-num--blue { background: linear-gradient(135deg, var(--blue-light), var(--blue-btn)); box-shadow: 0 8px 20px rgba(21,101,192,0.35); }
.how__step-num--green { background: linear-gradient(135deg, var(--green-light), var(--green)); box-shadow: 0 8px 20px rgba(46,125,50,0.35); }

.how__step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 6px;
  line-height: 1.35;
}
.how__step-desc { font-size: 12.5px; color: #5C6E89; }

.how__connector {
  flex: 0 0 32px;
  align-self: flex-start;
  margin-top: 19px;
  height: 2px;
  border: none;
  background: repeating-linear-gradient(
    to right,
    rgba(21,101,192,0.45) 0 6px,
    transparent 6px 12px
  );
}

@media (max-width: 900px) {
  .how__connector { display: none; }
  .how__step { width: 160px; }
}
@media (max-width: 600px) {
  .how__steps { gap: 28px; }
  .how__step { width: 100%; max-width: 280px; }
}

.how__showcase {
  margin: 56px auto 0;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.how__showcase-featured {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(13,31,60,0.18), 0 0 0 1px rgba(13,31,60,0.06);
  border: 1px solid rgba(13,31,60,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.how__showcase-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(13,31,60,0.22), 0 0 0 1px rgba(13,31,60,0.08);
}
.how__showcase-featured iframe { width: 100%; height: 100%; border: 0; display: block; }

.how__showcase-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  max-width: 100%;
  scrollbar-width: thin;
}
.how__thumb {
  flex: 0 0 auto;
  width: 52px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  border: 2px solid transparent;
  background-color: var(--navy-mid);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
  padding: 0;
}
.how__thumb:hover { opacity: 0.85; transform: translateY(-2px); }

.how__showcase--blue .how__thumb.is-active {
  opacity: 1;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(33,150,243,0.22);
}
.how__showcase--green .how__thumb.is-active {
  opacity: 1;
  border-color: var(--green-light);
  box-shadow: 0 0 0 2px rgba(67,160,71,0.22);
}

/* ---------- IN ACTION: PASSENGER + DRIVER VIDEOS ---------- */
.videos {
  background: var(--off-white);
  color: var(--navy);
  padding: 72px 0;
}
.videos__heading {
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--navy-mid);
  margin-bottom: 8px;
}
.videos__subheading {
  text-align: center;
  color: #5C6E89;
  font-size: 14px;
  margin-bottom: 44px;
}
.videos__groups {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}
.videos__group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.videos__group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--navy-mid);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.videos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.videos__dot--blue { background: var(--blue-light); }
.videos__dot--green { background: var(--green-light); }

.videos .how__showcase { margin-top: 0; }

@media (max-width: 700px) {
  .videos__groups { gap: 48px; }
}

/* ---------- DOWNLOAD ---------- */
.download__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.download__left { min-width: 200px; }
.download__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.download__sub { color: var(--text-muted); font-size: 15px; }

.download__apps {
  display: flex;
  gap: 24px;
  flex: 1;
  flex-wrap: wrap;
}

.app-card {
  flex: 1;
  min-width: 220px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.app-card__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.app-card__icon--blue { background: linear-gradient(135deg, var(--blue-light), var(--blue-btn)); }
.app-card__icon--green { background: linear-gradient(135deg, var(--green-light), var(--green)); }

.app-card--link {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.app-card--link:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.app-card--link:hover .app-card__icon { transform: scale(1.08); }

.app-card__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.app-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.download__sa {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
}
.download__sa svg { transition: transform 0.3s ease; }
.download__sa:hover svg { transform: rotate(-4deg) scale(1.05); }
.download__sa-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.download__sa-sub { font-size: 12px; color: var(--text-muted); }
.download__flag { font-size: 22px; display: block; margin-top: 6px; }

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--yellow));
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo { margin-bottom: 12px; }
.footer__tagline { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--white); }
.footer__email { word-break: break-all; }

.footer__socials { display: flex; gap: 12px; margin-top: 16px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.footer__social:hover {
  color: var(--white);
  background: var(--blue-btn);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 18px rgba(21,101,192,0.4);
}
.footer__social--whatsapp {
  color: #25D366;
}
.footer__social--whatsapp:hover {
  color: var(--white);
  background: #25D366;
  box-shadow: 0 8px 18px rgba(37,211,102,0.4);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero__content {
    padding: 40px 0 56px;
  }

  .overlay-section--drivers .overlay-section__content,
  .overlay-section--passengers .overlay-section__content {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }

  .overlay-section--drivers > .container,
  .overlay-section--passengers > .container {
    justify-content: flex-start;
  }

  .overlay-section--drivers .section__eyebrow,
  .overlay-section--drivers .feature-row,
  .overlay-section--drivers .feature-item__head,
  .overlay-section--passengers .section__eyebrow,
  .overlay-section--passengers .feature-row,
  .overlay-section--passengers .feature-item__head {
    justify-content: flex-start;
  }

  .overlay-section {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .overlay-section__bg-img {
    object-fit: contain;
    object-position: center center;
  }

  .overlay-section--passengers .overlay-section__gradient {
    background: linear-gradient(
      90deg,
      rgba(13,31,60,0.98) 0%,
      rgba(13,31,60,0.96) 60%,
      rgba(13,31,60,0.93) 100%
    );
  }

  .overlay-section--drivers .overlay-section__gradient {
    background: linear-gradient(
      270deg,
      rgba(10,22,40,0.98) 0%,
      rgba(10,22,40,0.96) 60%,
      rgba(10,22,40,0.93) 100%
    );
  }

  .download__inner { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy-mid);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
}

@media (max-width: 600px) {
  .hero__content {
    text-align: center;
    padding: 32px 0 48px;
  }
  .hero__copy { text-align: center; max-width: 100%; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__btn { min-width: unset; width: 100%; max-width: 320px; }
  .hero__stores { justify-content: center; }

  .feature-row { flex-direction: column; gap: 22px; }

  .overlay-section__bg-img { opacity: 0.14; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { justify-content: center; }

  .download__apps { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}