/* ── FAQ ── */
#faq-label{
  max-width:1100px;
  margin:0 auto;
  padding:160px 24px 0;
}
#faq-label .section-label{margin:0}
#faq{
  padding:30px 24px 80px;
  max-width:860px;
  margin:0 auto;
}
.faq-header{
  position:relative;
  text-align:center;
  margin-bottom:40px;
}
.faq-header-icon{
  display:block;
  margin:0 auto 12px;
  width:80px;height:auto;
  position:relative;
  z-index:2;
}
.faq-hero-title{
  font-size:clamp(28px,4vw,40px);
  font-weight:900;
  letter-spacing:-1px;
  margin:0;
  position:relative;
  z-index:1;
}
.faq-subtitle{
  margin:10px 0 0;
  font-size:16px;
  font-weight:600;
  position:relative;
  z-index:1;
  background:linear-gradient(120deg,#854d0e,#eab308,#fde047,#facc15,#fde047,#eab308,#854d0e);
  background-size:300% 100%;
  -webkit-text-fill-color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
  animation:faqSubtitleYellowShimmer 6s ease-in-out infinite;
}
@keyframes faqSubtitleYellowShimmer{
  0%{background-position:0% 0;}
  50%{background-position:100% 0;}
  100%{background-position:0% 0;}
}
.faq-header::before{
  content:'';
  position:absolute;
  left:50%;
  top:55%;
  transform:translate(-50%,-50%);
  width:520px;
  height:260px;
  border-radius:999px;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(250,204,21,.92) 0%, rgba(253,224,71,.72) 18%, rgba(253,224,71,0) 40%),
    radial-gradient(ellipse at 50% 55%, rgba(234,179,8,.60) 0%, rgba(250,204,21,.40) 38%, rgba(161,98,7,0) 72%),
    radial-gradient(ellipse at 50% 70%, rgba(133,77,14,.50) 0%, rgba(133,77,14,.08) 55%, rgba(113,63,18,0) 85%);
  filter:blur(22px);
  opacity:.85;
  mix-blend-mode:screen;
  pointer-events:none;
  z-index:0;
}
.faq-category{
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--surface);
  margin-bottom:10px;
  overflow:hidden;
  transition:border-color .25s;
}
.faq-category:last-child{margin-bottom:0}
.faq-category.open{border-color:rgba(250,204,21,.35)}
.faq-category-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 22px;
  font-size:15px;
  font-weight:700;
  color:var(--text);
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  line-height:1.4;
  transition:color .2s;
}
.faq-category-btn:hover{color:rgba(234,179,8,1)}
.faq-category-btn::after{
  content:'';
  flex-shrink:0;
  width:20px;height:20px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  transition:transform .3s;
}
.faq-category.open .faq-category-btn::after{transform:rotate(180deg)}
.faq-category-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-category-body-inner{
  padding:0 22px 20px;
  opacity:0;
  transform:translate3d(0,10px,0);
  transition:opacity .28s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  will-change:opacity, transform;
}
.faq-category.open .faq-category-body-inner{
  opacity:1;
  transform:translate3d(0,0,0);
  transition-delay:.08s;
}
.faq-qa{
  padding:12px 0;
  border-top:1px solid var(--border);
}
.faq-qa:first-child{border-top:none;padding-top:0}
.faq-qa-q{
  font-size:14px;
  font-weight:600;
  color:var(--text);
  margin:0 0 4px;
  line-height:1.45;
}
.faq-qa-a{
  font-size:13.5px;
  line-height:1.6;
  color:var(--text-dim);
  margin:0;
}
@media(max-width:640px){
  .faq-category-btn{font-size:14px;padding:16px 16px}
  .faq-category-body-inner{padding:0 16px 16px}
  .faq-qa-q{font-size:13px}
  .faq-qa-a{font-size:12.5px}
}
