/* ═══════════════════════════════════ */
/* FAQ ACCORDION COMPONENT             */
/* ═══════════════════════════════════ */

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  gap: 16px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  transition: background .2s ease;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--muted);
  width: 18px;
  height: 18px;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 12px 20px 16px 20px;
}
