/* ── FAQ PAGE ── */

/* Hero */
.faq-hero {
  padding: 72px 40px 64px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_165445/882949de-954c-432e-b64e-158265900f92.jpg');
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(0, 0, 0, 0.72),
              repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(245, 166, 35, 0.025) 40px,
                rgba(245, 166, 35, 0.025) 41px
              );
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.faq-hero .pitch-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-hero .pitch-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.faq-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}

.faq-hero p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FAQ Content */
.faq-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

/* Bucket label */
.faq-bucket {
  margin-bottom: 48px;
}

.faq-bucket-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-bottom: 10px;
}

/* Section heading */
.faq-section-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* Accordion item */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  transition: none;
}

.faq-question:hover .faq-q-text {
  color: #fff;
}

.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.faq-toggle {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  display: none;
  padding-bottom: 28px;
  padding-right: 48px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Internal links — amber/gold accent, inline only */
.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
  transition: border-color 0.15s;
}

.faq-answer a:hover {
  border-color: var(--accent);
}

/* Bottom CTA on FAQ */
.faq-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.faq-cta-inner {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  background: var(--bg-card);
}

.faq-cta h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.faq-cta .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0D0D0F;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: opacity 0.15s;
}

.faq-cta .btn-primary:hover {
  opacity: 0.88;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .faq-hero {
    padding: 56px 24px 48px;
    background-position: center top;
  }

  .faq-content {
    padding: 40px 24px 56px;
  }

  .faq-cta {
    padding: 0 24px 56px;
  }

  .faq-cta-inner {
    padding: 28px 20px;
  }

  .faq-answer {
    padding-right: 0;
    padding-bottom: 24px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-q-text {
    font-size: 0.95rem;
  }
}