.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq__item.open { border-color: var(--clr-gold); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.faq__q-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--clr-white);
}
.faq__icon {
  width: 22px; height: 22px;
  background: rgba(232,160,32,.1);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: rgba(232,160,32,.25); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item.open .faq__a { max-height: 500px; }
.faq__a-inner {
  padding: 0 22px 18px;
  font-size: .87rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}
