.how-hero,
.how-section,
.wallet-section {
  padding: clamp(4.5rem, 9vw, 8rem) max(1.5rem, calc((100% - 1120px) / 2));
}

.how-hero {
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, #016597, #08bbe7);
}

.how-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.how-hero .badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.how-hero h1,
.how-section h2,
.wallet-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.how-hero p {
  max-width: 650px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.how-section {
  background: #ffffff;
}

.how-section-heading {
  max-width: 690px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-section h2,
.wallet-section h2 {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.how-section-heading > p,
.wallet-copy > p {
  margin-top: 1rem;
  color: #64748b;
  font-size: 1.1rem;
}

.ride-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #dceaf0;
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(8, 187, 231, 0.08);
}

.ride-step {
  min-height: 255px;
  padding: 1.75rem;
  border-right: 1px solid #dceaf0;
}

.ride-step:last-child {
  border-right: 0;
}

.step-number,
.rental-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.1rem;
  padding: 0 0.7rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: #e6f9ff;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ride-step h3,
.rental-type h3 {
  color: #0f172a;
  font-size: 1.2rem;
}

.ride-step p,
.rental-type p,
.wallet-card p {
  margin-top: 0.75rem;
  color: #64748b;
  font-size: 0.96rem;
}

.wallet-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.75fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  color: #ffffff;
  background: #0f172a;
}

.wallet-section .section-eyebrow {
  color: #67e8f9;
}

.wallet-section h2 {
  color: #ffffff;
}

.wallet-copy > p {
  color: #cbd5e1;
}

.wallet-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 24px;
  background: linear-gradient(135deg, #1d4f67, #08bbe7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.wallet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  font-weight: 700;
}

.wallet-card-mark {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

.wallet-card strong {
  font-size: 1.15rem;
}

.wallet-card p {
  color: rgba(255, 255, 255, 0.82);
}

.rental-section {
  background: #f8fcfd;
}

.rental-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.rental-type {
  padding: 2rem;
  border: 1px solid #dceaf0;
  border-radius: 20px;
  background: #ffffff;
}

.rental-type-featured {
  border-color: #08bbe7;
  background: linear-gradient(145deg, #e6f9ff, #ffffff);
}

@media (max-width: 768px) {
  .ride-steps,
  .wallet-section,
  .rental-types {
    grid-template-columns: 1fr;
  }

  .ride-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #dceaf0;
  }

  .ride-step:last-child {
    border-bottom: 0;
  }

  .wallet-card {
    padding: 1.5rem;
  }

  .wallet-card-top {
    margin-bottom: 3rem;
  }
}
