.faq__inner { max-width: 46rem; margin-inline: auto; }
.faq__head { text-align: center; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.faq__head .eyebrow { color: var(--glow); margin-bottom: 0.75rem; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item:first-child { border-top: 1px solid var(--color-border); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .icon { flex-shrink: 0; transition: transform var(--dur) var(--ease); color: var(--glow); }
.faq__item details[open] .faq__q .icon { transform: rotate(180deg); }
.faq__a { padding-bottom: 1.15rem; color: var(--color-text-muted); }
