/* ---- RESET & TOKENS ---- */
:root {
  --bg: #0A0A0F;
  --carbon: #1C1C22;
  --carbon-light: #2A2A32;
  --red: #E63946;
  --red-dim: #B52D38;
  --offwhite: #F5F5F5;
  --muted: #8A8A9A;
  --border: #2C2C36;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--red);
}
.nav__tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,57,70,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,57,70,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.92;
  color: var(--offwhite);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 56px;
}
.hero__stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--red);
}
.hero__stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.15) 55%, rgba(230,57,70,0.12) 100%);
  pointer-events: none;
}
.hero__car-block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- HOW IT WORKS ---- */
.hiw {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.hiw__header {
  text-align: center;
  margin-bottom: 80px;
}
.hiw__title {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--offwhite);
  margin-bottom: 16px;
}
.hiw__desc {
  font-size: 16px;
  color: var(--muted);
}
.hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw__step {
  background: var(--carbon);
  padding: 48px 40px;
  position: relative;
}
.hiw__step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 24px;
}
.hiw__step-title {
  font-size: 20px;
  color: var(--offwhite);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.hiw__step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- FOR OWNERS ---- */
.forowners {
  padding: 120px 48px;
  background: var(--carbon);
  border-top: 1px solid var(--border);
}
.forowners__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.forowners__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.forowners__title {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 24px;
}
.forowners__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.forowners__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.forowners__list li {
  font-size: 14px;
  color: var(--offwhite);
  display: flex;
  align-items: center;
  gap: 12px;
}
.forowners__list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.forowners__visual {
  display: flex;
  align-items: center;
  gap: 32px;
}
.price-card__platform {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-card__fee {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 8px;
}
.forowners__price-card--accent .price-card__fee {
  color: var(--red);
}
.price-card__label {
  font-size: 13px;
  color: var(--muted);
}
.forowners__vs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--border);
}

/* ---- FOR RENTERS ---- */
.forrenters {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.forrenters__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.forrenters__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.forrenters__title {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 24px;
}
.forrenters__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.forrenters__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.forrenters__list li {
  font-size: 14px;
  color: var(--offwhite);
  display: flex;
  align-items: center;
  gap: 12px;
}
.forrenters__list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.forrenters__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  background: var(--carbon);
  border: 1px solid var(--border);
  padding: 12px 20px;
  font-size: 12px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  color: var(--offwhite);
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 120px 48px;
  background: var(--carbon);
  border-top: 1px solid var(--border);
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.manifesto__headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--offwhite);
  line-height: 1.05;
  margin-bottom: 40px;
}
.manifesto__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifesto__body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing__inner {
  max-width: 900px;
  margin: 0 auto;
}
.closing__headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 32px;
}
.closing__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing__tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--red);
}

/* ---- FOOTER ---- */
.footer {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 16px;
}
.footer__desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.footer__copy {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__content {
    padding: 60px 24px;
  }
  .hero__visual {
    height: 300px;
  }
  .hero__car-silhouette {
    width: 280px;
    height: 180px;
  }
  .hiw__steps {
    grid-template-columns: 1fr;
  }
  .forowners__inner,
  .forrenters__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .forowners__visual {
    flex-direction: column;
  }
  .nav {
    padding: 20px 24px;
  }
  .hiw, .forowners, .forrenters, .manifesto, .closing {
    padding: 80px 24px;
  }
  .footer {
    padding: 48px 24px;
  }
  .hero__stat-row {
    gap: 24px;
  }
}