@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg: #0c0e12;
  --bg-card: #14171d;
  --bg-elevated: #1a1e26;
  --fg: #e8e9eb;
  --fg-muted: #8a8f9a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --accent-glow: rgba(245, 158, 11, 0.3);
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-family: 'Space Grotesk', sans-serif;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 900px;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ========== STATS BAR ========== */
.stats-bar {
  padding: 60px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== FLEET GRID ========== */
.fleet {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.fleet h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.fleet-intro {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 550px;
  margin-bottom: 56px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.fleet-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.fleet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.fleet-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.fleet-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.fleet-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

.card-price {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 6px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 56px;
  letter-spacing: -1px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  position: relative;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
}

/* ========== WHY SECTION ========== */
.why {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.why h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 56px;
  letter-spacing: -1px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item {
  padding: 28px 0;
  border-top: 2px solid var(--accent-dim);
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--fg-muted);
  font-size: 15px;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 19px;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.footer-location {
  color: var(--fg-muted);
  font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; min-height: 70vh; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fleet { padding: 72px 24px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 72px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .why { padding: 72px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .stats-bar { padding: 40px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .stat-number { font-size: 32px; }
}