/* ==========================================================================
   Homepage — Page-specific styles (overrides only)
   ========================================================================== */

/* Hero bottom divider */
.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-divider .grid {
  padding-top: 0;
  padding-bottom: 0;
}

/* Credibility bar spacing */
.section--credibility {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-divider);
}

/* Stats grid on homepage */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gutter);
}

@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials below stats */
.testimonials-group {
  margin-top: var(--space-3xl);
}

@media (max-width: 767px) {
  .testimonials-group {
    margin-top: var(--space-xl);
  }
}

/* About section — text-only wide layout */
.about-content p + p {
  margin-top: var(--space-md);
}

/* CTA styles moved to layout.css (shared across all pages) */
