/* ═══════════════════════════════════════════════════
   ROBOTAXI UK — style.css
   Futuristic Autonomous Mobility Platform
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --cyan:      #00f0ff;
  --cyan-dim:  #00c4d4;
  --cyan-glow: rgba(0,240,255,0.18);
  --green:     #00ff88;
  --amber:     #ffc837;
  --red:       #ff3d5a;
  --wa-green:  #25D366;

  --bg:        #080d14;
  --bg-2:      #0d1520;
  --bg-3:      #111d2c;
  --surface:   #141f2e;
  --surface-2: #1a2840;
  --border:    rgba(0,240,255,0.12);
  --border-2:  rgba(0,240,255,0.25);

  --text:      #e8f4f8;
  --text-dim:  #7a9ab8;
  --text-muted:#4a6882;

  --font-display: 'Orbitron', monospace;
  --font-body:    'DM Sans', sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --radius-xl:24px;

  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-glow: 0 0 40px rgba(0,240,255,0.15);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
}

[data-theme="light"] {
  --bg:        #f0f6ff;
  --bg-2:      #e4edf8;
  --bg-3:      #d8e8f4;
  --surface:   #ffffff;
  --surface-2: #eaf2fb;
  --border:    rgba(0,120,200,0.15);
  --border-2:  rgba(0,120,200,0.3);
  --text:      #0a1828;
  --text-dim:  #3a5c7a;
  --text-muted:#6a8ca8;
  --cyan:      #0080c0;
  --cyan-dim:  #006090;
  --cyan-glow: rgba(0,128,192,0.12);
  --shadow-glow: 0 0 40px rgba(0,128,192,0.1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; }
select option { background: var(--bg-2); color: var(--text); }

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

.section {
  padding: 100px 0;
  position: relative;
}

.accent { color: var(--cyan); }

/* ── CUSTOM CURSOR ── */
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
#cursor-outline {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
body:has(a:hover) #cursor-outline,
body:has(button:hover) #cursor-outline {
  width: 56px; height: 56px;
  opacity: 0.8;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.preloader-logo span { color: var(--cyan); }
.preloader-bar {
  width: 200px; height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 2px;
  animation: fillBar 1.8s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }
.preloader-text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0.3; } }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
#navbar.scrolled {
  background: rgba(8,13,20,0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] #navbar.scrolled {
  background: rgba(240,246,255,0.92);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.logo-bracket { color: var(--text-muted); font-weight: 400; }
.logo-accent  { color: var(--cyan); }
.logo-uk {
  font-size: 0.7rem;
  background: var(--cyan);
  color: var(--bg);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.btn-nav-book {
  background: var(--cyan);
  color: var(--bg) !important;
  font-weight: 700;
  padding: 8px 18px;
}
.btn-nav-book:hover { background: var(--cyan-dim); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--trans);
}
.theme-toggle:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-whatsapp-nav {
  background: var(--wa-green);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--trans);
}
.btn-whatsapp-nav:hover { opacity: 0.9; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,240,255,0.015) 2px,
    rgba(0,240,255,0.015) 4px
  );
  pointer-events: none;
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,240,255,0.08);
  border: 1px solid var(--border-2);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.3s both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(0,255,136,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  grid-column: 1;
}
.title-line {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  animation: fadeUp 0.8s both;
}
.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.55s; color: var(--cyan); text-shadow: 0 0 60px rgba(0,240,255,0.3); }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.85s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 1s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.8s 1.1s both;
}
.stat-item {
  text-align: center;
  padding: 0 28px;
}
.stat-item:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.stat-plus { font-family: var(--font-display); font-size: 1.2rem; color: var(--cyan); }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border-2);
}

/* ── HERO VEHICLE ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s 0.5s both;
}

.vehicle-showcase {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-glow {
  position: absolute;
  width: 280px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,240,255,0.18) 0%, transparent 70%);
  bottom: 20%;
  animation: glowPulse 3s infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scaleX(1); }
  50%       { opacity: 1;   transform: scaleX(1.1); }
}

.vehicle-body {
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.vehicle-top {
  width: 140px; height: 50px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border-radius: 14px 14px 0 0;
  margin: 0 auto;
  border: 1px solid var(--border-2);
}
.vehicle-cabin {
  width: 220px; height: 70px;
  background: linear-gradient(135deg, var(--surface), var(--bg-3));
  border-radius: 8px;
  border: 1px solid var(--border-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  margin-top: -1px;
}
.cabin-window {
  width: 100px; height: 36px;
  background: linear-gradient(135deg, rgba(0,240,255,0.25), rgba(0,240,255,0.05));
  border-radius: 4px;
  border: 1px solid var(--border-2);
}
.cabin-sensor {
  width: 28px; height: 28px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sensor-ring {
  position: absolute;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  animation: sensorSpin 2.5s linear infinite;
}
.sensor-ring:nth-child(1) { width: 28px; height: 28px; }
.sensor-ring-2 { width: 16px; height: 16px; animation-direction: reverse; animation-duration: 1.5s; border-color: var(--green); }
@keyframes sensorSpin { to { transform: rotate(360deg); } }

.vehicle-base {
  width: 240px; height: 30px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px 0;
  margin-top: -1px;
}
.wheel {
  width: 44px; height: 22px;
  background: var(--surface-2);
  border-radius: 0 0 22px 22px;
  border: 1.5px solid var(--cyan);
  border-top: none;
  transform: translateY(8px);
  box-shadow: 0 4px 16px rgba(0,240,255,0.2);
}

.scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanVehicle 2s linear infinite;
  opacity: 0.7;
}
@keyframes scanVehicle {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.route-dots {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
}
.dot-2 { animation-delay: 0.3s; background: var(--green); }
.dot-3 { animation-delay: 0.6s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.2); }
}

.data-readout {
  position: absolute;
  top: 10%;
  right: -10%;
  background: rgba(13,21,32,0.9);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.readout-line {
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: blink 1.5s infinite;
}
.readout-line:nth-child(2) { color: var(--green); animation-delay: 0.5s; }
.readout-line:nth-child(3) { color: var(--amber); animation-delay: 1s; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TICKER BAR ── */
.ticker-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.ticker-sep { color: var(--cyan); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--trans);
  border: none;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--cyan-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,240,255,0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  transition: all var(--trans);
}
.btn-secondary:hover { background: var(--surface); border-color: var(--cyan); color: var(--cyan); }

.btn-whatsapp-hero,
.btn-whatsapp-banner,
.btn-whatsapp-form,
.btn-whatsapp-sidebar,
.btn-whatsapp-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: none;
  transition: all var(--trans);
}
.btn-whatsapp-hero:hover,
.btn-whatsapp-banner:hover,
.btn-whatsapp-form:hover,
.btn-whatsapp-sidebar:hover,
.btn-whatsapp-small:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ── SERVICES GRID ── */
.services-section { background: var(--bg-2); }
.services-grid,
.delivery-grid,
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transition: transform var(--trans);
}
.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 48px; height: 48px;
  background: var(--cyan-glow);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card-tag {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.card-desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.card-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-feature {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-feature::before {
  content: '◈';
  color: var(--cyan);
  font-size: 0.6rem;
}

/* ── WHATSAPP BANNER ── */
.whatsapp-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(0,240,255,0.08));
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.wa-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wa-text h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.wa-text p  { color: var(--text-dim); font-size: 0.9rem; }

/* ── DELIVERY SECTION ── */
.delivery-section { background: var(--bg); }

/* ── BUSINESS SECTION ── */
.business-section { background: var(--bg-2); }

.enterprise-cta-box {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ecta-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.ecta-content p { color: var(--text-dim); max-width: 480px; margin-bottom: 24px; line-height: 1.7; }
.ecta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.ecta-visual { min-width: 200px; }
.ecta-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--cyan), rgba(0,240,255,0.2));
  border-radius: 3px 3px 0 0;
  position: relative;
  animation: barRise 1s var(--trans-slow) both;
}
@keyframes barRise { from { transform: scaleY(0); transform-origin: bottom; } }
.chart-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%; transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--text-muted);
  font-family: var(--font-display);
}
.ecta-chart-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

/* ── BOOKING SECTION ── */
.booking-section { background: var(--bg); overflow: hidden; }
.booking-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0,240,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,255,136,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.booking-tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 24px;
}
.booking-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.booking-tab.active {
  background: var(--cyan);
  color: var(--bg);
}
.booking-tab:hover:not(.active) { color: var(--text); background: var(--surface-2); }

.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form-textarea + .input-icon { top: 14px; transform: none; }
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 12px 10px 38px;
  border-radius: var(--radius);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-textarea { padding-top: 12px; resize: vertical; padding-left: 38px; }
.select-wrap .form-input { cursor: pointer; }
.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,240,255,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:invalid:not(:placeholder-shown) { border-color: var(--red); }

.form-footer {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-submit { flex: 1; justify-content: center; padding: 14px 24px; font-size: 0.95rem; }

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}
.form-message.success {
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  color: var(--green);
}
.form-message.error {
  background: rgba(255,61,90,0.1);
  border: 1px solid rgba(255,61,90,0.3);
  color: var(--red);
}

.booking-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.booking-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.booking-perks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.booking-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.perk-icon {
  font-size: 1.3rem;
  min-width: 28px;
  line-height: 1;
}
.booking-perks strong { font-size: 0.875rem; display: block; margin-bottom: 3px; }
.booking-perks p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }
.btn-whatsapp-sidebar { width: 100%; justify-content: center; }

/* ── AREAS SECTION ── */
.areas-section { background: var(--bg-2); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.area-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.area-flag { font-size: 1.8rem; margin-bottom: 8px; }
.area-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.area-status {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 8px;
}
.status-active { background: rgba(0,255,136,0.15); color: var(--green); }
.status-soon   { background: rgba(255,200,55,0.15); color: var(--amber); }
.area-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

/* ── ABOUT ── */
.about-section { background: var(--bg); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-pillars { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--trans);
}
.pillar:hover { border-color: var(--border-2); }
.pillar-icon {
  font-size: 1.2rem;
  color: var(--cyan);
  min-width: 24px;
  margin-top: 2px;
}
.pillar h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.pillar p  { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* ── TECH DISPLAY ── */
.about-visual { display: flex; align-items: center; justify-content: center; }
.tech-display {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.tech-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  animation: rotate 20s linear infinite;
}
.tech-ring-1 { width: 100%; height: 100%; animation-duration: 30s; }
.tech-ring-2 { width: 75%;  height: 75%;  animation-direction: reverse; animation-duration: 20s; border-color: rgba(0,240,255,0.3); }
.tech-ring-3 { width: 50%;  height: 50%;  animation-duration: 15s; border-color: rgba(0,255,136,0.2); }
@keyframes rotate { to { transform: rotate(360deg); } }

.tech-core {
  position: relative; z-index: 1;
  text-align: center;
  background: var(--surface);
  border: 2px solid var(--cyan);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0,240,255,0.2);
}
.core-label { font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--cyan); }
.core-sub   { font-family: var(--font-display); font-size: 0.45rem; color: var(--text-muted); letter-spacing: 0.15em; }

.tech-nodes {
  position: absolute;
  inset: 0;
}
.tech-node {
  position: absolute;
  top: 50%; left: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(var(--deg)) translateY(-150px) rotate(calc(-1 * var(--deg)));
}

/* ── FAQ ── */
.faq-section { background: var(--bg-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: none;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform var(--trans);
  min-width: 20px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: all var(--trans);
}
.contact-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.contact-icon {
  width: 60px; height: 60px;
  background: rgba(37,211,102,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--wa-green);
}
.contact-icon-email { background: var(--cyan-glow); color: var(--cyan); }
.contact-icon-coverage { background: rgba(255,200,55,0.1); color: var(--amber); }
.contact-card h3 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 16px; line-height: 1.6; }
.contact-link {
  font-weight: 600;
  color: var(--cyan);
  font-size: 0.875rem;
  transition: opacity var(--trans);
  word-break: break-all;
}
.contact-link:hover { opacity: 0.8; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,240,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 20px; line-height: 1.6; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--trans);
}
.footer-contact-item:hover { color: var(--cyan); }
.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links-group li { margin-bottom: 8px; }
.footer-links-group a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color var(--trans);
}
.footer-links-group a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-disclaimer {
  font-size: 0.72rem !important;
  max-width: 640px;
  line-height: 1.5;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.footer-bottom-links a:hover { color: var(--cyan); }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--wa-green);
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--trans);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: floatPulse 2.5s infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  100%      { transform: scale(1.5); opacity: 0; }
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text-dim);
  width: 40px; height: 40px;
  border-radius: var(--radius);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE HERO STRIP (hidden on desktop) ── */
.hero-mobile-strip {
  display: none;
  align-items: center;
  gap: 16px;
  background: rgba(0,240,255,0.05);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-top: 8px;
}
.mstrip-vehicle { position: relative; flex-shrink: 0; }
.mstrip-top {
  width: 60px; height: 18px;
  background: var(--surface-2);
  border-radius: 6px 6px 0 0;
  margin: 0 auto;
  border: 1px solid var(--border-2);
}
.mstrip-cabin {
  width: 90px; height: 28px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  margin-top: -1px;
}
.mstrip-window {
  width: 44px; height: 14px;
  background: rgba(0,240,255,0.2);
  border-radius: 2px;
  border: 1px solid var(--border-2);
}
.mstrip-sensor {
  width: 14px; height: 14px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mstrip-base {
  width: 100px; height: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 6px;
  margin-top: -1px;
}
.mstrip-wheel {
  width: 18px; height: 9px;
  background: var(--surface-2);
  border-radius: 0 0 9px 9px;
  border: 1px solid var(--cyan);
  border-top: none;
  transform: translateY(4px);
}
.mstrip-readout {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mstrip-line {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  animation: blink 1.5s infinite;
}
.mstrip-line-2 { color: var(--green); animation-delay: 0.5s; }
.mstrip-line-3 { color: var(--amber); animation-delay: 1s; }

/* show only on mobile */
@media (max-width: 700px) {
  .hero-mobile-strip { display: flex; }
}

/* ══════════════════════════════════════════
   ══════════════════════════════════════════ */

/* ── Tablet / large mobile nav ── */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right var(--trans-slow);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 10px 16px; width: 100%; }
  .btn-nav-book { text-align: center; }
  .hamburger { display: flex; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  /* Hero: stack to single column, text first */
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    text-align: center;
  }
  /* Text block first */
  .hero-badge      { animation-delay: 0.2s; }
  .hero-title      { grid-column: 1; }
  .hero-subtitle   { max-width: 100%; margin: 0 auto 28px; }
  .hero-cta        { justify-content: center; }
  .hero-stats      { justify-content: center; }
  /* Vehicle visual second */
  .hero-visual     { order: 2; }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-info   { position: static; }
  .about-layout   { grid-template-columns: 1fr; gap: 40px; }
  .about-visual   { order: -1; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ── */
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Hero full rewrite for mobile */
  .hero {
    padding: 90px 16px 48px;
    align-items: flex-start;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .hero-badge {
    font-size: 0.55rem;
    padding: 6px 12px;
  }
  .title-line {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-cta > * {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .stat-item { padding: 0 14px; }
  .stat-item:first-child { padding-left: 0; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; }

  /* Hide big vehicle on very small screens, show compact version */
  .hero-visual { display: none; }

  /* Ticker */
  .ticker-track { font-size: 0.6rem; gap: 24px; }

  /* Section headers */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Services */
  .services-grid,
  .delivery-grid,
  .business-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-card { padding: 20px; }

  /* WhatsApp banner */
  .wa-banner-content { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-whatsapp-banner { width: 100%; justify-content: center; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-card  { padding: 16px 12px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 12px; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .booking-form { padding: 20px 16px; }
  .booking-tabs { gap: 2px; }
  .booking-tab { font-size: 0.72rem; padding: 7px 8px; gap: 4px; }

  /* Enterprise CTA */
  .enterprise-cta-box { flex-direction: column; padding: 24px; }
  .ecta-visual { width: 100%; }
  .ecta-actions { flex-direction: column; }
  .ecta-actions > * { width: 100%; justify-content: center; }

  /* About */
  .about-pillars { gap: 12px; }
  .pillar { padding: 16px; }
  .tech-display { width: 240px; height: 240px; }
  .tech-node {
    transform: translate(-50%, -50%) rotate(var(--deg)) translateY(-108px) rotate(calc(-1 * var(--deg)));
    font-size: 0.5rem;
    padding: 3px 7px;
  }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; justify-content: center; }

  /* Data readout */
  .data-readout { display: none; }

  /* Floating WA */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ── Small mobile (≤ 420px) ── */
@media (max-width: 420px) {
  .hero { padding: 80px 16px 40px; }
  .title-line { font-size: clamp(1.8rem, 10vw, 2.4rem); }

  .nav-logo { font-size: 0.9rem; }
  .logo-uk  { font-size: 0.6rem; padding: 2px 5px; }
  .btn-whatsapp-nav { padding: 6px 10px; font-size: 0.75rem; }

  .stat-item   { padding: 0 10px; }
  .stat-num    { font-size: 1.3rem; }

  .areas-grid  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-card   { padding: 12px 8px; }
  .area-flag   { font-size: 1.4rem; }
  .area-name   { font-size: 0.8rem; }

  .booking-tabs .booking-tab span:not(.sr-only) { display: none; }
  .booking-tab svg { display: block; }

  .form-footer { flex-direction: column; }
  .btn-submit  { width: 100%; }
  .btn-whatsapp-form { width: 100%; justify-content: center; }

  .scroll-top { bottom: 80px; right: 14px; }
}
