/* ── Chiro Site Theme ── */
:root {
  /* Site-specific overrides could go here if needed */
}

/* ── Hero ── */
.hero {
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ── Trust Signals ── */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
  padding: var(--space-md);
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.trust-icon {
  color: var(--color-primary);
  font-size: var(--text-lg);
}

/* ── How It Works ── */
.how-it-works {
  padding: var(--space-4xl) 0;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.step-card {
  text-align: center;
  padding: var(--space-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

/* ── Section Dividers ── */
.section-intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--space-3xl);
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero h1 { font-size: var(--text-3xl); }
  .hero-ctas { flex-direction: column; }
  .trust-signals { flex-direction: column; gap: var(--space-md); align-items: center; }
}
