/* =========================================================
   FAQ — sits between the CTA band and the site footer
   ========================================================= */
.faq-section{
  background:var(--bg);
  padding:76px 0 88px;
}
.faq-inner{ max-width:860px; }

/* ---- head ---- */
.faq-head{ text-align:center; margin:0 auto 46px; }
.faq-head .kicker{ justify-content:center; }
.faq-title{
  font-size:clamp(2rem,3.4vw,2.7rem);
  line-height:1.08;
  color:var(--white);
  margin:0 0 16px;
}
.faq-title .script{ display:block; font-size:1.1em; margin-top:4px; }
.faq-sub{
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
  max-width:520px;
  margin:0 auto;
}
.faq-sub a{ color:var(--gold); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.faq-sub a:hover{ color:var(--gold-2); }

/* ---- accordion list ---- */
.faq-list{ display:grid; gap:14px; }
.faq-item{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  padding:0 26px;
  transition:border-color .2s ease, background .2s ease;
}
.faq-item[open]{ background:var(--panel-2); border-color:rgba(247,179,29,.35); }

.faq-item summary{
  list-style:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
  padding:22px 0;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::marker{ content:""; }

.faq-q{
  font-family:var(--sans); font-weight:600; font-size:1.02rem;
  color:var(--white); line-height:1.4;
}
.faq-item[open] .faq-q{ color:var(--gold-2); }

.faq-toggle{
  position:relative; flex:none;
  width:30px; height:30px; border-radius:50%;
  border:1.4px solid rgba(247,179,29,.55);
  transition:transform .28s ease, background .2s ease, border-color .2s ease;
}
.faq-toggle::before,
.faq-toggle::after{
  content:""; position:absolute; left:50%; top:50%;
  background:var(--gold); border-radius:2px;
  transform:translate(-50%,-50%);
}
.faq-toggle::before{ width:12px; height:2px; }
.faq-toggle::after{ width:2px; height:12px; transition:opacity .2s ease; }
.faq-item[open] .faq-toggle{ transform:rotate(180deg); background:var(--gold); border-color:var(--gold); }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after{ background:var(--bg); }
.faq-item[open] .faq-toggle::after{ opacity:0; }

.faq-a{ padding:0 0 24px; margin-top:-6px; }
.faq-a p{
  margin:0; color:var(--muted); font-size:.96rem; line-height:1.65;
  max-width:640px;
}
.faq-a a{ color:var(--gold); font-weight:600; }
.faq-a a:hover{ color:var(--gold-2); }

/* smooth open/close for browsers that support it */
@media (prefers-reduced-motion: no-preference){
  .faq-item summary{ transition:padding .2s ease; }
}

@media (max-width:640px){
  .faq-section{ padding:56px 0 64px; }
  .faq-item{ padding:0 18px; }
  .faq-q{ font-size:.96rem; }
}

/* ---- standalone FAQ page ---- */
.faq-page{ padding-top:150px; padding-bottom:110px; min-height:calc(100vh - 420px); }
@media (max-width:640px){ .faq-page{ padding-top:118px; padding-bottom:72px; } }
