/* ── FAQ PAGE ──────────────────────────────────────────── */

.faq-container { max-width: 740px; margin: 0 auto; }
.faq-group { margin-bottom: 44px; }
.faq-group__label {
  font-family: var(--font-mono); font-size: 0.73rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border-light);
}
.faq__item { border-bottom: 1px solid var(--border-light); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 0; font-family: var(--font-head); font-size: 0.98rem; font-weight: 600;
  color: var(--text-dark); text-align: left; cursor: pointer; transition: color var(--transition);
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  font-size: 1.3rem; font-weight: 300; color: var(--accent); flex-shrink: 0;
  transition: transform var(--transition); line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__item.open .faq__q { color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq__a > * { padding-bottom: 18px; }
.faq__a p { font-size: 0.95rem; color: var(--text-dark-2); line-height: 1.75; }
.faq__a p + p { margin-top: 7px; }
.faq__a strong { color: var(--text-dark); }
.faq__a code {
  font-family: var(--font-mono); font-size: 0.82em;
  background: var(--bg-light-2); padding: 2px 5px;
  border-radius: 4px; border: 1px solid var(--border-light);
}

.faq-cta {
  background: var(--bg-light-2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px; text-align: center; margin-top: 12px;
}
.faq-cta h3 { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 9px; }
.faq-cta p  { font-size: 0.97rem; color: var(--text-dark-2); }
