/* ==========================================================================
   Home page only — hero background and services grid tuning.
   Buttons/cards/section-headings/footer live in components.css for reuse.
   ========================================================================== */

/* ---- Hero ---- */
.hero {
  background: var(--gradient-hero);
  padding: var(--space-9) 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.hero-tagline {
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-6) auto;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ---- Intro / value prop ---- */
.intro {
  padding: var(--space-8) 0;
  text-align: center;
}

.intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ---- Services grid ---- */
.services {
  padding: var(--space-8) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
