/* ================================================================
   Iskra — landing styles (v2)
   Brand: lime #E8FF3E + dark #08090e
   ================================================================ */

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

:root {
  --bg: #08090e;
  --bg-soft: #0f1220;
  --bg-elev: #161A26;
  --bg-elev-2: #1B1F2E;
  --lime: #E8FF3E;
  --lime-deep: #B8D900;
  --text: #ffffff;
  --text-dim: #9BA0B0;
  --text-faint: #5B6275;
  --border: rgba(255,255,255,0.06);
  --border-lime: rgba(232,255,62,0.2);
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23noise)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s var(--ease-out);
}
.nav.scrolled {
  background: rgba(8, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.02em;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(232, 255, 62, 0.25);
}
.brand-mark svg { width: 18px; height: 18px; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--text-dim); font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.lang-switch {
  display: flex; gap: 2px; padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.lang-btn {
  padding: 6px 11px;
  background: transparent;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--lime); color: #08090e; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-glow {
  position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232, 255, 62, 0.12) 0%, transparent 60%);
  filter: blur(40px);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.spark {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime), 0 0 14px var(--lime);
}
.spark:nth-child(1) { top: 22%; left: 10%; animation: spark-drift 8s ease-in-out infinite; }
.spark:nth-child(2) { top: 70%; left: 18%; animation: spark-drift 11s ease-in-out infinite reverse; animation-delay: -3s; }
.spark:nth-child(3) { top: 38%; right: 12%; animation: spark-drift 9s ease-in-out infinite; animation-delay: -2s; }
.spark:nth-child(4) { top: 60%; right: 20%; animation: spark-drift 13s ease-in-out infinite reverse; animation-delay: -6s; }
.spark:nth-child(5) { top: 80%; left: 50%; animation: spark-drift 10s ease-in-out infinite; animation-delay: -4s; }
@keyframes spark-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(30px, -40px) scale(1.3); opacity: 1; }
  50% { transform: translate(-20px, 20px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(40px, 30px) scale(1.1); opacity: 0.9; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(232, 255, 62, 0.08);
  border: 1px solid var(--border-lime);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.hero-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-h1 .accent {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lime); position: relative;
}
.hero-h1 .accent::after {
  content: '⚡';
  -webkit-text-fill-color: var(--lime); color: var(--lime);
  margin-left: 8px; display: inline-block;
  animation: zap-tilt 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--lime));
}
@keyframes zap-tilt {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(8deg) scale(1.05); }
}
.hero-sub-tagline {
  font-family: var(--font-display); font-weight: 400;
  font-size: 18px; color: var(--text-faint);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px; line-height: 1.55;
  color: var(--text-dim);
  max-width: 520px; margin-bottom: 36px;
}

/* Coming soon label */
.coming-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.coming-soon-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.hero-ctas {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 48px; flex-wrap: wrap;
  align-items: flex-start;
}
.app-badges {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
}
/* App badges — simple, no clipping, no rounded mask */
.app-badges a {
  display: inline-block;
  transition: transform 0.25s var(--ease-out), filter 0.25s var(--ease-out);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}
.app-badges a:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 24px rgba(232,255,62,0.18));
}
.app-badges img {
  height: 56px;
  width: auto;
  display: block;
}

.hero-stats {
  display: flex; gap: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 6px;
}
.hero-stat-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--text);
}
.hero-stat-value .unit {
  font-size: 14px; color: var(--text-dim);
  font-weight: 500; margin-left: 4px;
}

/* ================================================================
   PHONE MOCKUP (hero)
   ================================================================ */
.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.phone {
  position: relative; width: 300px; height: 624px;
  background: #000; border-radius: 44px; padding: 8px;
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.8),
    0 0 0 2px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden; background: #0A0D14;
}
.phone-notch {
  position: absolute; left: 50%; top: 9px; transform: translateX(-50%);
  width: 92px; height: 26px; border-radius: 14px;
  background: #000; z-index: 10;
}
.phone-status {
  position: absolute; top: 0; left: 0; right: 0; height: 36px;
  padding: 0 26px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 700; z-index: 10;
}
.phone-status .icons { display: flex; gap: 4px; align-items: center; }
.phone-status .icons svg { width: 13px; height: 13px; }

.phone-map { position: absolute; inset: 0; background: linear-gradient(180deg, #0f1220 0%, #08090e 100%); }
.phone-map-streets { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone-pin {
  position: absolute; width: 28px; height: 28px;
  border-radius: 50% 50% 50% 0; background: var(--lime);
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 255, 62, 0.5);
}
.phone-pin svg { transform: rotate(45deg); width: 12px; height: 12px; }
.phone-pin::before {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%; background: rgba(232, 255, 62, 0.35);
  transform: rotate(45deg);
  animation: pin-pulse 2s ease-out infinite; z-index: -1;
}
@keyframes pin-pulse {
  0% { transform: rotate(45deg) scale(0.8); opacity: 0.9; }
  100% { transform: rotate(45deg) scale(2.2); opacity: 0; }
}
.phone-user-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: #4A9EFF; border: 3px solid white;
  box-shadow: 0 0 10px rgba(74, 158, 255, 0.8);
}
.phone-search {
  position: absolute; top: 46px; left: 16px; right: 16px;
  background: rgba(22, 26, 38, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-dim); z-index: 5;
}
.phone-search svg { width: 14px; height: 14px; }
.phone-card {
  position: absolute; bottom: 90px; left: 12px; right: 12px;
  background: rgba(22, 26, 38, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 14px; z-index: 5;
}
.phone-card-eyebrow {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  color: var(--lime); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; justify-content: space-between;
}
.phone-card-content { display: flex; align-items: center; gap: 10px; }
.phone-card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(232, 255, 62, 0.2);
}
.phone-card-icon svg { width: 20px; height: 20px; }
.phone-card-text-main {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: -0.01em;
}
.phone-card-text-sub { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.phone-card-btn {
  padding: 8px 12px; background: var(--lime); color: #08090e;
  border-radius: 10px; font-size: 11px; font-weight: 700;
}
.phone-nav {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(22, 26, 38, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 8px;
  display: flex; align-items: center; justify-content: space-around;
  z-index: 5;
}
.phone-nav-btn {
  padding: 6px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 9px; color: var(--text-dim); font-weight: 700;
}
.phone-nav-btn.active { color: var(--lime); }
.phone-nav-btn svg { width: 18px; height: 18px; }
.phone-nav-fab {
  width: 46px; height: 46px; border-radius: 16px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(232, 255, 62, 0.4);
  margin-top: -20px;
}
.phone-nav-fab svg { width: 22px; height: 22px; }

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee {
  overflow: hidden; padding: 40px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  width: fit-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 36px; letter-spacing: -0.02em;
  color: var(--text); white-space: nowrap;
}
.marquee-item.accent { color: var(--lime); }

/* ================================================================
   SECTIONS — common
   ================================================================ */
.section { position: relative; padding: 120px 0; z-index: 2; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--lime);
}
.section-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.95; letter-spacing: -0.03em;
  max-width: 900px; margin-bottom: 24px;
}
.section-h2 .line { display: block; }
.section-h2 .accent { color: var(--lime); }
.section-intro {
  font-size: 17px; line-height: 1.6; color: var(--text-dim);
  max-width: 600px;
}

/* ================================================================
   HOW IT WORKS — 4 steps
   ================================================================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 64px;
}
.step {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px 32px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 255, 62, 0.2);
  background: var(--bg-elev-2);
}
.step::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,62,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.step:hover::before { opacity: 1; }
.step-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 80px; line-height: 1; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(232,255,62,0.25);
  margin-bottom: 40px;
}
.step-illustration {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px;
}
.step-desc { font-size: 13px; line-height: 1.55; color: var(--text-dim); }

.ill-map { position: relative; width: 120px; height: 120px; }
.ill-map-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(232,255,62,0.2);
}
.ill-map-ring.inner {
  inset: 22px;
  border: 1px solid rgba(232,255,62,0.3);
  animation: ring-rotate 20s linear infinite;
}
@keyframes ring-rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.ill-map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 50px; height: 50px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px rgba(232,255,62,0.3);
}
.ill-map-pin svg { transform: rotate(45deg); width: 20px; height: 20px; }
.ill-map-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
}
.ill-map-dot.d1 { top: 8%; left: 78%; }
.ill-map-dot.d2 { top: 70%; left: 10%; opacity: 0.6; }
.ill-map-dot.d3 { bottom: 14%; right: 8%; opacity: 0.4; }

.ill-qr {
  position: relative; width: 110px; height: 110px;
  background: var(--bg); border-radius: 16px;
  border: 2px solid rgba(232,255,62,0.3);
  padding: 12px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.ill-qr-code {
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><rect width='1' height='1' fill='%23E8FF3E'/><rect x='2' y='0' width='1' height='1' fill='%23E8FF3E'/><rect x='4' y='0' width='2' height='1' fill='%23E8FF3E'/><rect x='7' y='0' width='1' height='1' fill='%23E8FF3E'/><rect x='9' y='0' width='1' height='1' fill='%23E8FF3E'/><rect x='0' y='2' width='1' height='1' fill='%23E8FF3E'/><rect x='3' y='2' width='1' height='2' fill='%23E8FF3E'/><rect x='5' y='2' width='1' height='1' fill='%23E8FF3E'/><rect x='8' y='2' width='2' height='1' fill='%23E8FF3E'/><rect x='0' y='4' width='2' height='1' fill='%23E8FF3E'/><rect x='6' y='4' width='1' height='2' fill='%23E8FF3E'/><rect x='9' y='4' width='1' height='1' fill='%23E8FF3E'/><rect x='2' y='6' width='1' height='1' fill='%23E8FF3E'/><rect x='4' y='6' width='2' height='1' fill='%23E8FF3E'/><rect x='7' y='6' width='2' height='2' fill='%23E8FF3E'/><rect x='0' y='8' width='1' height='1' fill='%23E8FF3E'/><rect x='3' y='8' width='1' height='2' fill='%23E8FF3E'/><rect x='5' y='8' width='1' height='1' fill='%23E8FF3E'/><rect x='9' y='8' width='1' height='1' fill='%23E8FF3E'/></svg>");
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.ill-qr-scanline {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 12px var(--lime);
  animation: qr-scan 2.2s ease-in-out infinite;
}
@keyframes qr-scan {
  0%, 100% { top: 10%; opacity: 0.5; }
  50% { top: 85%; opacity: 1; }
}

.ill-battery { position: relative; width: 80px; height: 120px; }
.ill-battery-body {
  position: absolute; inset: 6px 0 0 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1f30 0%, #0f1220 100%);
  border: 2px solid rgba(232,255,62,0.35);
  padding: 7px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(232,255,62,0.12);
}
.ill-battery-cap {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 22px; height: 8px;
  background: rgba(232,255,62,0.4); border-radius: 2px 2px 0 0;
}
.ill-battery-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-deep) 100%);
  border-radius: 5px;
  animation: battery-fill 2.5s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(232,255,62,0.5);
  display: flex; align-items: center; justify-content: center;
}
.ill-battery-fill svg { width: 22px; height: 22px; }
@keyframes battery-fill {
  0% { height: 35%; }
  50% { height: 80%; }
  100% { height: 35%; }
}

.ill-station {
  position: relative; width: 90px; height: 130px;
  background: linear-gradient(145deg, #1b1f2e 0%, #0f1220 100%);
  border-radius: 12px;
  border: 1px solid rgba(232,255,62,0.2);
  padding: 10px; box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.ill-station-slot {
  width: 100%; height: 10px;
  background: rgba(0,0,0,0.4); border-radius: 3px;
  margin-bottom: 4px; position: relative;
}
.ill-station-slot.glow {
  background: rgba(232,255,62,0.25);
  box-shadow: inset 0 0 8px rgba(232,255,62,0.5);
}
.ill-station-slot.empty {
  background: transparent;
  border: 1px dashed rgba(232,255,62,0.4);
  animation: slot-empty-pulse 1.8s ease-in-out infinite;
}
@keyframes slot-empty-pulse {
  0%, 100% { border-color: rgba(232,255,62,0.3); }
  50% { border-color: rgba(232,255,62,0.8); box-shadow: inset 0 0 10px rgba(232,255,62,0.3); }
}
.ill-station-logo {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: 9px; color: var(--lime); letter-spacing: 0.05em;
}

/* ================================================================
   APP SHOWCASE — 3 phone mockups
   ================================================================ */
.showcase {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.showcase-bg-glow {
  position: absolute;
  top: 30%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,255,62,0.08) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  position: relative;
  z-index: 2;
  align-items: end;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.showcase-phone-frame {
  position: relative;
  width: 260px;
  height: 540px;
  background: #000;
  border-radius: 38px;
  padding: 7px;
  box-shadow:
    0 40px 80px -15px rgba(0,0,0,0.7),
    0 0 0 2px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.showcase-phone-frame.float-1 { animation: showcase-float-1 6.5s ease-in-out infinite; }
.showcase-phone-frame.float-2 { animation: showcase-float-2 7.2s ease-in-out infinite; }
.showcase-phone-frame.float-3 { animation: showcase-float-3 8s ease-in-out infinite; }
@keyframes showcase-float-1 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes showcase-float-2 {
  0%, 100% { transform: translateY(-4px) rotate(0.5deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}
@keyframes showcase-float-3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
}
.showcase-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #0A0D14;
}
.showcase-phone-notch {
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 76px; height: 22px; border-radius: 12px;
  background: #000; z-index: 10;
}
.showcase-phone-status {
  position: absolute; top: 0; left: 0; right: 0; height: 32px;
  padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; z-index: 10;
}
.showcase-phone-status .icons { display: flex; gap: 4px; align-items: center; }
.showcase-phone-status .icons svg { width: 11px; height: 11px; }

.showcase-caption {
  max-width: 280px;
}
.showcase-caption-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.showcase-caption-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.showcase-caption-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* === Mockup 1: Active rental === */
.mock-active {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0A0D14 0%, #0f1220 100%);
  padding: 44px 18px 18px;
  display: flex; flex-direction: column;
}
.mock-active-pill {
  align-self: center;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(232,255,62,0.1);
  border: 1px solid var(--border-lime);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mock-active-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.mock-active-timer-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}
.mock-active-timer-wrap svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.mock-active-timer-bg {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 6;
}
.mock-active-timer-progress {
  fill: none;
  stroke: var(--lime);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 502;
  stroke-dashoffset: 87;
  filter: drop-shadow(0 0 8px rgba(232,255,62,0.6));
}
.mock-active-timer-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.mock-active-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.mock-active-time-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
}
.mock-active-cost {
  text-align: center;
  margin-bottom: 16px;
}
.mock-active-cost-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.mock-active-cost-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.mock-active-pb {
  margin-top: auto;
  background: rgba(22, 26, 38, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.mock-active-pb-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-active-pb-icon svg { width: 14px; height: 14px; }
.mock-active-pb-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: -0.01em;
}
.mock-active-pb-id {
  font-family: var(--font-mono); font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-top: 1px;
}

/* === Mockup 2: Onboarding "15 min free" === */
.mock-onb {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0f1422 0%, #0A0D14 60%);
  padding: 44px 18px 18px;
  display: flex; flex-direction: column;
}
.mock-onb-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.mock-onb-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mock-onb-skip {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mock-onb-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 0;
}
.mock-onb-15 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 144px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--lime);
  filter: drop-shadow(0 0 30px rgba(232,255,62,0.4));
  animation: onb-15-float 3s ease-in-out infinite;
}
@keyframes onb-15-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.mock-onb-min {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: -16px;
}
.mock-onb-free-badge {
  position: absolute;
  top: 28%; right: 8%;
  background: var(--lime);
  color: #08090e;
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.05em;
  transform: rotate(12deg);
  box-shadow: 0 6px 16px rgba(232,255,62,0.3);
}
.mock-onb-bottom {
  text-align: center;
  margin-top: auto;
}
.mock-onb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.mock-onb-desc {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-dim);
  margin-bottom: 16px;
  padding: 0 8px;
}
.mock-onb-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}
.mock-onb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.mock-onb-dot.active {
  background: var(--lime);
  width: 18px;
  border-radius: 100px;
}
.mock-onb-cta {
  background: var(--lime);
  color: #08090e;
  border-radius: 12px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.01em;
  display: block;
  text-align: center;
}

/* === Mockup 3: Station info sheet === */
.mock-station {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0f1220 0%, #08090e 100%);
}
.mock-station-map {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, #0d1322 0%, #0f1220 100%);
  overflow: hidden;
}
.mock-station-map svg {
  width: 100%; height: 100%;
}
.mock-station-map-pin {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
}
.mock-station-map-pin.selected {
  background: var(--lime);
  box-shadow: 0 6px 16px rgba(232,255,62,0.5);
  z-index: 3;
  top: 38%; left: 48%;
}
.mock-station-map-pin.selected::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(232,255,62,0.25);
  transform: rotate(45deg);
  animation: pin-pulse 2s ease-out infinite;
  z-index: -1;
}
.mock-station-map-pin svg {
  transform: rotate(45deg);
  width: 12px; height: 12px;
}
.mock-station-map-pin.dim {
  background: rgba(232,255,62,0.4);
  width: 18px; height: 18px;
}
.mock-station-map-pin.dim svg { width: 8px; height: 8px; }
.mock-station-map-pin.dim.p1 { top: 18%; left: 22%; }
.mock-station-map-pin.dim.p2 { top: 24%; left: 70%; }

.mock-station-sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-elev);
  border-radius: 22px 22px 0 0;
  padding: 12px 16px 18px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
  z-index: 10;
}
.mock-station-grip {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  margin: 0 auto 14px;
}
.mock-station-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}
.mock-station-addr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mock-station-addr-text {
  font-size: 11px;
  color: var(--text-dim);
}
.mock-station-distance {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--lime);
  letter-spacing: 0.08em;
}
.mock-station-batt {
  display: flex; gap: 4px;
  margin-bottom: 12px;
}
.mock-station-batt-cell {
  flex: 1;
  height: 10px;
  border-radius: 3px;
  background: rgba(232,255,62,0.25);
  box-shadow: inset 0 0 6px rgba(232,255,62,0.3);
}
.mock-station-batt-cell.empty {
  background: transparent;
  border: 1px dashed rgba(232,255,62,0.3);
  box-shadow: none;
}
.mock-station-batt-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mock-station-batt-label .accent { color: var(--lime); }

.mock-station-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
.mock-station-price-card {
  background: rgba(232,255,62,0.06);
  border: 1px solid var(--border-lime);
  border-radius: 10px;
  padding: 8px;
}
.mock-station-price-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.mock-station-price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--lime);
  letter-spacing: -0.01em;
}
.mock-station-cta {
  background: var(--lime);
  color: #08090e;
  border-radius: 12px;
  padding: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mock-station-cta svg { width: 12px; height: 12px; }

/* ================================================================
   STATIONS MAP
   ================================================================ */
.map-section { position: relative; overflow: hidden; }
.map-section-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center;
}
.belgrade-map {
  position: relative; width: 100%; aspect-ratio: 1.1;
  background: var(--bg-elev);
  border: 1px solid var(--border); border-radius: 28px;
  overflow: hidden; padding: 24px;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.5);
}
.belgrade-map-canvas { width: 100%; height: 100%; position: relative; }
.belgrade-map-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.station-pin { position: absolute; transform: translate(-50%, -100%); cursor: pointer; }
.station-pin-dot {
  width: 22px; height: 22px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-deep) 100%);
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,255,62,0.4);
  transition: transform 0.25s var(--ease-out);
}
.station-pin-dot::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; background: rgba(232,255,62,0.35);
  transform: rotate(45deg); z-index: -1;
  animation: pin-pulse 2.5s ease-out infinite;
}
.station-pin:hover .station-pin-dot { transform: rotate(-45deg) scale(1.2); }
.station-pin-label {
  position: absolute; bottom: calc(100% + 4px); left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  background: rgba(8, 9, 14, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: nowrap;
  font-size: 10px; color: var(--text); font-weight: 700;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.station-pin:hover .station-pin-label { opacity: 1; }

.map-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}
.map-stat {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px;
}
.map-stat-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 40px; line-height: 1; letter-spacing: -0.03em;
  color: var(--lime); margin-bottom: 6px;
}
.map-stat-label { font-size: 13px; color: var(--text-dim); }

/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  position: relative; padding: 140px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0d1020 50%, var(--bg) 100%);
  overflow: hidden;
}
.pricing-inner { text-align: center; }
.pricing-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(100px, 20vw, 260px);
  line-height: 0.9; letter-spacing: -0.05em;
  color: var(--lime);
  filter: drop-shadow(0 0 80px rgba(232,255,62,0.25));
  margin-bottom: 16px;
  animation: pricing-glow 4s ease-in-out infinite;
}
@keyframes pricing-glow {
  0%, 100% { filter: drop-shadow(0 0 60px rgba(232,255,62,0.2)); }
  50% { filter: drop-shadow(0 0 100px rgba(232,255,62,0.4)); }
}
.pricing-unit {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); color: var(--text);
  letter-spacing: 0.1em; margin-bottom: 48px;
}
.pricing-divider {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin-bottom: 40px;
}
.pricing-divider::before, .pricing-divider::after {
  content: ''; flex: 0 0 80px; height: 1px; background: var(--border);
}
.pricing-details {
  display: flex; justify-content: center; gap: 72px; flex-wrap: wrap;
}
.pricing-detail { text-align: center; }
.pricing-detail-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pricing-detail-value .unit {
  font-size: 16px; font-weight: 500;
  color: var(--text-dim); margin-left: 2px;
}
.pricing-detail-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.pricing-footnote {
  margin-top: 56px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-dim); letter-spacing: 0.1em;
}

/* ================================================================
   PARTNERS
   ================================================================ */
.partners { position: relative; padding: 120px 0; }
.partners-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.partners-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 28px; padding: 40px;
  overflow: hidden;
}
.partners-card::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,62,0.12) 0%, transparent 70%);
}
.partners-benefits {
  list-style: none; margin-top: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.partners-benefit { display: flex; align-items: flex-start; gap: 16px; }
.partners-benefit-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(232,255,62,0.1);
  border: 1px solid var(--border-lime);
  display: flex; align-items: center; justify-content: center;
}
.partners-benefit-icon svg { width: 18px; height: 18px; color: var(--lime); }
.partners-benefit-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; margin-bottom: 4px; letter-spacing: -0.01em;
}
.partners-benefit-desc { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

.partners-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease-out);
}
.btn-primary {
  background: var(--lime); color: #08090e;
  box-shadow: 0 8px 24px rgba(232, 255, 62, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232, 255, 62, 0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ================================================================
   DOWNLOAD section
   ================================================================ */
.download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.download-cta .app-badges img { height: 60px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  position: relative; padding: 80px 0 40px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}
.footer-brand { max-width: 400px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.6; margin-bottom: 24px;
}
.footer-coming-soon {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-coming-soon::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.footer-apps { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-apps a {
  transition: transform 0.2s, filter 0.2s;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  display: inline-block;
}
.footer-apps a:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(232,255,62,0.18));
}
.footer-apps img {
  height: 46px;
  display: block;
}
.footer-col-title {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 13px; color: var(--text-dim);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--lime); }
.footer-links a svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-faint);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-right {
  display: flex; gap: 24px; align-items: center;
  flex-wrap: wrap;
}
.footer-bottom-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-bottom-right a:hover { color: var(--lime); }
.footer-bottom-right svg { width: 14px; height: 14px; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-wrap { justify-content: center; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; gap: 60px; }
  .showcase-phone-frame { width: 280px; height: 580px; }
  .map-section-inner { grid-template-columns: 1fr; }
  .partners-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 80px 0; }
  .showcase { padding: 80px 0 60px; }
  .nav-links { gap: 12px; }
  .nav-links .hide-mobile { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-details { gap: 32px; }
  .pricing { padding: 90px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .marquee-item { font-size: 28px; }
  .app-badges img { height: 50px; }
  .footer-apps img { height: 42px; }
  .download-cta .app-badges img { height: 52px; }
  .partners-ctas { flex-direction: column; align-items: stretch; }
  .partners-ctas .btn { justify-content: center; }
}
