/* ===================================
   FAQ Page-Specific Styles
   Complements faq-preview.css with page-level layout
   =================================== */

/* Hero Section */
.faq-hero {
  text-align: center;
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.faq-hero h1 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

.faq-hero__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

/* Category Sections */
.faq-section {
  padding: var(--spacing-2xl) 0;
}

.faq-section:not(:first-of-type) {
  border-top: 1px solid var(--color-border);
}

.faq-section__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-lg);
}

/* Bottom CTA Section */
.faq-cta {
  text-align: center;
  padding: var(--spacing-3xl) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--spacing-2xl);
}

.faq-cta__heading {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

.faq-cta__text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-md);
  }

  .faq-hero h1 {
    font-size: var(--font-size-2xl);
  }

  .faq-hero__subtitle {
    font-size: var(--font-size-base);
  }

  .faq-section {
    padding: var(--spacing-xl) 0;
  }

  .faq-section__heading {
    font-size: var(--font-size-lg);
  }

  .faq-cta {
    padding: var(--spacing-2xl) 0;
  }

  .faq-cta__heading {
    font-size: var(--font-size-xl);
  }

  .faq-cta__text {
    font-size: var(--font-size-base);
  }

  .faq-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .faq-cta__actions .cta-button {
    width: 100%;
  }
}
