.faq{margin-top:64px}
.faq-item{border:1px solid var(--border);border-radius:16px;margin-bottom:12px;overflow:hidden;background:var(--surface);transition:all .3s}
.faq-item:hover{border-color:rgba(212,168,69,.15)}
.faq-q{padding:20px 24px;font-weight:600;font-size:15px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;user-select:none}
.faq-q::after{content:'+';font-size:20px;font-weight:300;color:var(--dim);transition:transform .3s}
.faq-item.open .faq-q::after{transform:rotate(45deg);color:var(--gold)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-a{max-height:200px}
.faq-a p{padding:0 24px 20px;font-size:14px;color:var(--dim);line-height:1.7}