/* ==========================================================================
   FAQ — centered accordion
   ========================================================================== */

.faq { padding: 80px 0; background: var(--surface-alt); }
.faq__inner { display: flex; flex-direction: column; align-items: center; }

.faq__head { text-align: center; margin-bottom: 56px; }
.faq__head .lead { max-width: 560px; margin: 16px auto 0; }

.faq__list { width: 100%; max-width: 960px; }

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 20px 0;
  font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q { line-height: 1.4; }

.faq-chevron {
  flex: none; width: 20px; height: 20px; margin-top: 2px;
  color: var(--text-mute);
  transition: transform .2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-item__answer { padding: 0 0 20px; }
.faq-item__answer p { font-size: 16px; line-height: 26px; color: var(--text-mute); max-width: 760px; }
.faq-item[open] .faq-item__answer { animation: faq-open .25s ease; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq__cta { margin-top: 48px; }

@media (prefers-reduced-motion: reduce) {
  .faq-chevron { transition: none; }
  .faq-item[open] .faq-item__answer { animation: none; }
}
