/* Page hero */
.page-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* How it works */
.how-it-works {
  max-width: 60rem;
  margin: 3rem auto;
  padding: 0 1rem;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.step__number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ */
.faq {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 0 1rem;
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-item {
  border-bottom: 0.5px solid var(--color-border);
  padding: 1rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.25rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  text-align: center;
  margin: 3rem auto;
  padding: 0 1rem;
}
.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.cta-button:hover,
.cta-button:focus-visible {
  background: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

/* Fine print */
.fine-print {
  max-width: 48rem;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
  text-align: center;
}
.fine-print p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}
