#faq{background:var(--s1)}
.faq-list{margin-top:40px;display:flex;flex-direction:column;gap:12px}
.faq-item{border-radius:var(--r);overflow:hidden;border:1px solid var(--gb)}
.faq-q{
  width:100%;padding:20px 24px;background:var(--g);
  display:flex;justify-content:space-between;align-items:center;
  cursor:pointer;text-align:left;border:none;color:var(--t);
  font-family:var(--ff);font-size:.9rem;font-weight:600;transition:background .2s;
}
.faq-q:hover{background:rgba(255,255,255,0.06)}
.faq-icon{
  width:24px;height:24px;border-radius:50%;border:1px solid var(--gb);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-left:16px;transition:transform .3s;
  color:var(--gold);font-size:1rem;font-weight:300;
}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;background:rgba(255,255,255,0.02)}
.faq-item.open .faq-a{max-height:300px}
.faq-a p{padding:16px 24px 20px;color:var(--tm);font-size:.87rem;line-height:1.75}
