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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: #2a2a2a;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --accent: #ff3b30;
  --accent-hover: #ff5147;
  --white: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
}
.logo span { color: var(--accent); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* Hero */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #1a0a0a 0%, var(--bg) 100%);
}
.hero-content { max-width: 640px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text-secondary); }
.btn-lg { padding: 16px 36px; font-size: 18px; }

/* Pricing */
.pricing {
  padding: 80px 24px;
  text-align: center;
}
.pricing h2, .how-it-works h2, .about-bike h2, .cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1a0808 0%, var(--surface) 100%);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.duration {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}
.note {
  font-size: 14px;
  color: var(--text-secondary);
}
.extra-hours {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 24px;
}

/* How It Works */
.how-it-works {
  padding: 80px 24px;
  background: var(--surface);
}
.how-it-works h2 { text-align: center; margin-bottom: 48px; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.step { text-align: center; }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* About the Bike */
.about-bike {
  padding: 80px 24px;
}
.bike-content {
  max-width: 560px;
  margin: 0 auto;
}
.bike-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
.specs {
  list-style: none;
  margin-bottom: 24px;
}
.specs li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
}
.specs li strong { color: var(--text); }
.bike-tagline {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-secondary);
}

/* CTA */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #1a0a0a 100%);
}
.cta-section p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 12px 0 32px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-brand {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--accent); }
footer p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-phone a {
  color: var(--accent);
  text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .hero { padding: 120px 20px 60px; }
  .pricing, .how-it-works, .about-bike, .cta-section { padding: 60px 20px; }
  .price-grid { grid-template-columns: 1fr; max-width: 320px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
