/* ─── FAQ ACCORDION ─────────────────────────────────────────── */
.faq { background: var(--bg); }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

/* ─── Item ── */
.faq__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item:last-child { border-bottom: none; }

.faq__item.open {
  box-shadow: inset 2px 0 0 var(--accent);
}

/* ─── Question row ── */
.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  min-height: 64px;
  transition: background var(--transition);
}
.faq__question:hover           { background: #161616; }
.faq__item.open .faq__question { background: #161616; }

/* ─── Question text ── */
.faq__question-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
  flex: 1;
  transition: color var(--transition);
}
.faq__question:hover .faq__question-text     { color: var(--text); }
.faq__item.open .faq__question-text          { color: var(--text); }

/* ─── Icon [ + ] / [ - ] ── */
.faq__icon {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  flex-shrink: 0;
  white-space: nowrap;
  transition: color var(--transition);
  display: inline-flex;
  justify-content: center;
  width: 48px;
}
.faq__icon::before { content: '[ + ]'; }

.faq__question:hover .faq__icon    { color: var(--accent); }
.faq__item.open .faq__icon         { color: var(--accent); }
.faq__item.open .faq__icon::before { content: '[ - ]'; }

/* ─── Answer panel ── */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__item.open .faq__answer { max-height: 500px; }

.faq__answer-inner {
  padding: 20px 24px 26px;
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq__answer-inner a {
  color: var(--accent);
  border-bottom: 1px solid rgba(224, 90, 51, 0.3);
  transition: border-color var(--transition);
}
.faq__answer-inner a:hover { border-color: var(--accent); }
