/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  user-select: none;
}
.faq-q:hover {
  color: var(--yellow);
}
.faq-arrow {
  transition: transform 0.3s;
  font-size: 0.8rem;
  color: var(--gray);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
  padding: 0 24px;
  color: var(--white2);
  font-size: 0.82rem;
  line-height: 1.8;
}
.faq-item.open .faq-q {
  color: var(--yellow);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
