/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: scaleIn 1.2s var(--transition) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 30%,
    rgba(8,8,8,0.7) 70%,
    rgba(8,8,8,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  animation: fadeUp 1s 0.3s var(--transition) both;
}

.hero-title {
  margin: 16px 0 24px;
  max-width: 700px;
}

.hero-sub {
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Floating cards */
.hero-float {
  position: absolute;
  z-index: 3;
  padding: 14px 18px;
}

.hero-float-1 {
  top: 30%;
  right: 8%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-float-2 {
  top: 50%;
  right: 12%;
  animation: float2 7s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-float-3 {
  top: 42%;
  right: 28%;
  animation: float3 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.float-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 12px #000803; }
  50% { box-shadow: 0 0 24px #22c55e, 0 0 40px rgba(34,197,94,0.3); }
}

.float-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.float-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

.float-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--white);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Steps ──────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px;
  border-radius: var(--radius);
  transition: transform 0.3s var(--transition);
}

.step-card:hover { transform: translateY(-4px); }

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 24px;
}

.step-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.03);
}

.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* ── Feature section ────────────────────────────────────── */
.feature-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 640px;
}

.feature-img {
  position: relative;
  height: 560px;
}

.feature-img-badge {
  position: absolute;
  bottom: 32px;
  left: 24px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

/* ── Cities ─────────────────────────────────────────────── */
.cities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.cities-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  height: 400px;
}

.city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: transform 0.4s var(--transition);
}

.city-card:hover { transform: scale(1.02); }

.city-img-wrap {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
}

.city-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.city-card:hover .city-img-wrap img { transform: scale(1.05); }

.city-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 18px;
}

.city-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.city-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ── Driver CTA ─────────────────────────────────────────── */
.driver-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.driver-bg {
  position: absolute;
  inset: 0;
}

.driver-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.driver-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.92) 40%, rgba(8,8,8,0.4) 100%);
}

.driver-content {
  position: relative;
  z-index: 2;
}

/* ── Download ───────────────────────────────────────────── */
.download-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 56px;
  border-radius: var(--radius);
}

.download-img {
  flex-shrink: 0;
  animation: float 6s ease-in-out infinite;
}

.download-img img {
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border-radius: 24px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-float-1, .hero-float-2, .hero-float-3 { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 64px 24px; }
  .feature-img { height: 360px; }
  .cities-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .cities-grid .city-card:first-child { grid-column: span 2; height: 280px; }
  .cities-grid .city-card:not(:first-child) { height: 200px; }
  .download-wrap { flex-direction: column; padding: 40px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 20px; }
  .hero-stats { gap: 20px; }
  .cities-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cities-grid { grid-template-columns: 1fr; height: auto; }
  .cities-grid .city-card:first-child { grid-column: span 1; height: 240px; }
  .cities-grid .city-card:not(:first-child) { height: 200px; }
}