/* ── FAQ Page Styles ─────────────────────────────────────────────── */

/* Hero */
.faq-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}
.faq-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a0808 50%, #0f0707 100%);
  z-index: 0;
}
.faq-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(212,175,55,.04) 79px, rgba(212,175,55,.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(212,175,55,.04) 79px, rgba(212,175,55,.04) 80px);
}
.faq-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.faq-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin: .75rem 0 1rem;
}
.faq-hero__title span { color: var(--gold); }
.faq-hero__sub {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Main */
.faq-main {
  background: var(--dark);
  padding: 5rem 0 6rem;
}
.faq-container {
  max-width: 820px;
}

/* Group */
.faq-group {
  margin-bottom: 3.5rem;
}
.faq-group__title {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(212,175,55,.2);
}

/* FAQ item */
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(255,255,255,.06);
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}

.faq-answer p {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin: 0;
}
.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--white); }

/* CTA */
.faq-cta {
  background: var(--crimson);
  padding: 5rem 0;
  text-align: center;
}
.faq-cta h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.faq-cta p {
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.faq-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-cta .btn--gold {
  background: var(--white);
  color: var(--crimson);
  border-color: var(--white);
}
.faq-cta .btn--gold:hover {
  background: var(--light);
  border-color: var(--light);
}
.faq-cta .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.faq-cta .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Responsive */
@media (max-width: 640px) {
  .faq-question { font-size: .95rem; }
}
