.rental-hero {
  position: relative;
}

.rental-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.rental-hero__content {
  max-width: 36rem;
}

.rental-hero__media {
  max-height: 480px;
}

.rental-hero__media img {
  height: 100%;
}

.section-header {
  max-width: 44rem;
  margin: 0 auto var(--space-8) auto;
}

.section-lead {
  font-size: var(--font-size-lg);
  color: rgba(245, 239, 230, 0.88);
}

.rental-cards {
  align-items: stretch;
}

.rental-card .card-body ul {
  margin-top: var(--space-3);
}

.rental-list {
  list-style: none;
}

.rental-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  color: rgba(245, 239, 230, 0.9);
  font-size: var(--font-size-sm);
}

.rental-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-accent-cyan), var(--color-accent-violet));
  box-shadow: 0 0 10px rgba(46, 196, 182, 0.7);
}

.rental-feature-grid {
  align-items: center;
  gap: var(--space-8);
}

.rental-feature-text {
  max-width: 36rem;
}

.rental-feature-text--secondary h3 {
  margin-bottom: var(--space-3);
}

.rental-steps {
  counter-reset: rental-step;
  list-style: none;
}

.rental-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-4);
}

.rental-steps li::before {
  counter-increment: rental-step;
  content: counter(rental-step);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-heading));
  color: #050608;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  box-shadow: var(--shadow-glow-gold);
}

.rental-steps strong {
  display: block;
  margin-bottom: var(--space-1);
}

.rental-steps p {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

.rental-gallery {
  max-width: 1100px;
}

.rental-final-cta {
  max-width: 44rem;
}

.rental-hero__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .rental-hero__grid {
    gap: var(--space-6);
  }

  .rental-hero__media {
    order: -1;
    max-height: none;
  }

  .rental-feature-grid {
    gap: var(--space-6);
  }
}
