/* ============================================
   How It Works Page
   ============================================ */

.how-hero {
  padding: 100px 0 40px;
  text-align: center;
}

.how-hero h1 {
  margin: 12px 0 16px;
}

.how-lead {
  font-size: 1.15rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.how-steps {
  padding: 60px 0;
}

.step-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-family-title);
}

.step-content h2 {
  margin: 0 0 4px;
  font-size: 1.8rem;
}

.step-subtitle {
  color: #666;
  font-size: 1.05rem;
  margin: 0 0 12px;
}

.step-content > p {
  color: #444;
  line-height: 1.6;
  max-width: 640px;
}

.step-details {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #555;
  line-height: 1.8;
}

.step-details li strong {
  color: #333;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

/* Audience section */
.how-audience {
  padding: 60px 0;
  background: #f8f9fa;
}

.how-audience h2 {
  text-align: center;
  margin: 0 0 40px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
}

.audience-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.audience-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* CTA section */
.how-cta {
  padding: 80px 0;
  text-align: center;
}

.how-cta h2 {
  margin: 0 0 12px;
}

.how-cta p {
  color: #555;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ============================================
   Legal Pages (Privacy / Terms)
   ============================================ */

.legal-page {
  padding: 100px 0 80px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  margin: 0 0 8px;
}

.legal-updated {
  color: #888;
  font-size: 0.9rem;
  margin: 0 0 40px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
  color: #333;
}

.legal-content p {
  color: #444;
  line-height: 1.7;
}

.legal-content ul {
  color: #444;
  line-height: 1.7;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--green);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Section eyebrow (shared) */
.section-eyebrow {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ============================================
   Responsive
   ============================================ */

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

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .step-block {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}
