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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7ed;
  color: #111827;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  padding: 30px 8% 80px;
  color: white;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 214, 10, .95), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(0, 180, 216, .9), transparent 28%),
    linear-gradient(135deg, #fb5607, #ffbe0b 35%, #00b4d8 68%, #3a0ca3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  right: -180px;
  top: 120px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  font-size: 1.7rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  margin-top: 110px;
  position: relative;
  z-index: 2;
}

.tag, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  color: #fb5607;
  margin-bottom: 12px;
}

.hero .tag {
  display: inline-block;
  background: rgba(17,24,39,.28);
  color: white;
  padding: 9px 15px;
  border-radius: 999px;
}

h1 {
  font-size: 4.6rem;
  line-height: .98;
  margin-bottom: 25px;
  max-width: 900px;
  text-shadow: 0 12px 40px rgba(0,0,0,.2);
}

.lead {
  font-size: 1.28rem;
  max-width: 760px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.primary, .secondary {
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.primary {
  background: #111827;
  color: white;
}

.secondary {
  background: white;
  color: #111827;
}

.promo-card {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
}

.scooter {
  font-size: 6rem;
  margin-bottom: 10px;
}

.promo-card h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.mini-stats {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.mini-stats span {
  background: rgba(255,255,255,.25);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.section {
  padding: 80px 8%;
  text-align: center;
}

.section h2 {
  font-size: 2.8rem;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section > p {
  max-width: 900px;
  margin: auto;
  font-size: 1.13rem;
}

.cards, .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.card, .price {
  background: white;
  padding: 38px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(17,24,39,.12);
}

.card {
  color: white;
  text-align: left;
  min-height: 245px;
}

.hot { background: linear-gradient(135deg, #fb5607, #ffbe0b); }
.cool { background: linear-gradient(135deg, #0077b6, #00b4d8); }
.bold { background: linear-gradient(135deg, #3a0ca3, #b5179e); }

.card h3, .price h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.pricing {
  background: linear-gradient(135deg, #e0f2fe, #fff7ed);
}

.amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fb5607;
  margin: 15px 0;
}

.featured {
  border: 4px solid #ffbe0b;
  transform: scale(1.04);
}

.badge {
  display: inline-block;
  background: #111827;
  color: white;
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 12px;
}

.mission {
  background: white;
}

.vision {
  background:
    radial-gradient(circle at top right, rgba(255,190,11,.28), transparent 28%),
    linear-gradient(135deg, #111827, #3a0ca3);
  color: white;
}

.light {
  color: #ffd166;
}

.ambassador {
  background: #fff7ed;
}

.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pill-row span {
  background: white;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(17,24,39,.08);
}

.partners {
  background: linear-gradient(135deg, #ffffff, #e0f2fe);
}

.contact {
  color: white;
  background: linear-gradient(135deg, #ffbe0b, #fb5607);
}

.contact .eyebrow {
  color: white;
}

.contact a {
  color: white;
  font-weight: 900;
}

form {
  max-width: 650px;
  margin: 32px auto;
  display: grid;
  gap: 15px;
}

input, button {
  padding: 17px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
}

button {
  background: #111827;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

#message {
  font-weight: 900;
  margin-top: 15px;
}

footer {
  background: #111827;
  color: white;
  padding: 42px 8%;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid, .cards, .price-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: none;
  }
}
