.faq-section { padding: clamp(60px,8vw,100px) 5%; position: relative; z-index: 1; }
.faq-container { max-width: 720px; margin: 0 auto; text-align: center; }
.faq-container .section-node { margin-left: auto; margin-right: auto; }
.faq-container .section-title { text-align: center; }
.faq-list { margin-top: 48px; text-align: left; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0; background: none; border: none;
  color: #fff; font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; text-align: left; transition: color .2s;
}
.faq-q:hover { color: #a78bfa; }
.faq-q[aria-expanded="true"] { color: #a78bfa; }
.faq-chevron {
  font-size: 22px; color: #4924F5; flex-shrink: 0;
  transition: transform .2s; line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; }
.faq-a p { font-size: 14px; color: var(--gray); line-height: 1.9; }
