/* ============================================================
   faq.css — FAQ Accordion
   ============================================================ */

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grey-2);
  border: 1px solid var(--grey-2);
}

/* ── FAQ Item ── */
.faq-item {
  background: var(--black);
  transition: background 0.2s ease;
}
.faq-item.active {
  background: var(--grey-1);
}

/* ── Question Button ── */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: none;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--grey-1);
}
.faq-q span:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.6;
  flex: 1;
}

.faq-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--grey-3);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: color 0.2s;
  line-height: 1;
}
.faq-item.active .faq-icon {
  color: var(--white);
}

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

.faq-a-inner {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey-3);
  line-height: 1.9;
  letter-spacing: 0.5px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--grey-2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-q {
    padding: 16px;
  }
  .faq-q span:first-child {
    font-size: 10px;
  }
  .faq-a-inner {
    padding: 12px 16px 16px;
    font-size: 9px;
  }
}
