/* ===== FAQ Section ===== */
.FAQSection{
  position: relative;
  padding: 80px 20px 100px;
  color: #eee;
  background:
    radial-gradient(900px 600px at 85% 0%, rgba(186,85,211,.10), transparent 60%),
    radial-gradient(700px 500px at 10% 100%, rgba(186,85,211,.08), transparent 60%);
}

.faq-wrap{ max-width: 900px; margin: 0 auto; }

.faq-title{
  text-align:center;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: .3px;
}
.faq-sub{
  text-align:center;
  opacity: .85;
  margin: 0 0 28px;
}

.faq-list{ display: grid; gap: 12px; }

/* Accordion card */
.faq{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(6px);
}

.faq[open]{
  border-color: rgba(186,85,211,.45);
  box-shadow: 0 12px 30px rgba(0,0,0,.45), 0 0 22px rgba(186,85,211,.25) inset;
}

/* Header row */
.faq > summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.faq > summary::-webkit-details-marker{ display:none; }

.faq .q{
  font-weight: 700;
  letter-spacing: .2px;
}

/* Chevron / plus-minus */
.faq .chev{
  width: 22px; height: 22px; border-radius: 6px;
  position: relative;
  background: linear-gradient(135deg, rgba(186,85,211,.85), rgba(130,60,200,.85));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.faq .chev::before, .faq .chev::after{
  content:""; position:absolute; left: 50%; top: 50%;
  width: 12px; height: 2px; background:#fff; border-radius:2px;
  transform: translate(-50%,-50%);
  transition: transform .25s ease, opacity .25s ease;
}
.faq .chev::after{ transform: translate(-50%,-50%) rotate(90deg); }
.faq[open] .chev::after{ opacity: 0; transform: translate(-50%,-50%) rotate(90deg) scale(.6); }

/* Answer body */
.faq .a{
  padding: 0 20px 18px 20px;
  color: #e9e6ee;
  opacity: .95;
  line-height: 1.6;
}

/* nicer open/close motion (height fade) */
.faq .a{ animation: faq-fade .24s ease; }
@keyframes faq-fade{
  from{ opacity:0; transform: translateY(-4px); }
  to{ opacity:1; transform: translateY(0); }
}

/* spacing to separate from previous section */
.FAQSection{ scroll-margin-top: 80px; } /* nice anchor offset for #faq */

/* responsive tweaks */
@media (max-width: 700px){
  .FAQSection{ padding: 64px 16px 80px; }
}
