/* Hero background gradient */
.consumer-home .hero {
  background: linear-gradient(
    135deg,
    rgba(230, 244, 234, 0.9),
    rgba(255, 255, 255, 0.95)
  );
  padding-bottom: 5rem;
}

/* Clear transition from hero to next section */
.consumer-home .hero + section {
  padding-top: 5rem;
}

/* Hero CTA layout */
.consumer-home .hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.consumer-home .cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Final CTA tweaks */
.consumer-home .final-cta {
  padding: 3rem 0;
  text-align: center;
}

.consumer-home .final-cta .btn {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}
