/* ===== FAQ HERO ===== */
.faq-hero {
  background: var(--sapphire);
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
}

.faq-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-solid);
  margin-bottom: 14px;
}

.faq-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}

.faq-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--sapphire-dark);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #14365c;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(192,200,208,0.5);
}

.faq-item--open {
  border-color: var(--chrome-solid);
  box-shadow: 0 4px 20px rgba(192,200,208,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}

.faq-q-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  color: var(--chrome-solid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ===== CTA STRIP ===== */
.faq-cta {
  padding: 64px 0;
  background: var(--sapphire-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.faq-cta p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}

.faq-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.faq-cta-actions .btn-outline {
  border-color: rgba(192,200,208,0.6);
  color: var(--chrome-solid);
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.faq-cta-actions .btn-outline:hover {
  background: rgba(192,200,208,0.12);
  border-color: var(--chrome-solid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .faq-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .faq-cta-actions {
    justify-content: center;
  }

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

  .faq-answer p {
    padding: 0 20px 20px;
  }
}