#faq {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 760px;
  margin-top: 3rem;
}

.faq-item { border-bottom: 1px solid rgba(255,45,120,0.1); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  gap: 1rem;
}
.faq-q-text { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--text); }
.faq-arrow  { font-family: var(--font-mono); color: var(--pink); font-size: 0.9rem; min-width: 1em; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-a strong { color: var(--pink-light); }
