/* ============================================================
   KunaBox 2.0 — FAQ accordion section (#kbFaq)
   ============================================================ */

.kb-faq {
  position: relative;
  z-index: var(--z-content);
  padding: var(--space-3xl) var(--space-xl);
}

.kb-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.kb-faq__title {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
}

/* ── FAQ list wrapper ──────────────────────────────────────── */
.kb-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── FAQ item ──────────────────────────────────────────────── */
.kb-faq__item {
  background: rgba(20, 18, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 22px 24px;
  cursor: pointer;
  transition: border-color 0.25s;
}

.kb-faq__item[data-open="1"] {
  border-color: rgba(124, 58, 237, 0.3);
}

/* ── Question row ──────────────────────────────────────────── */
.kb-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.kb-faq__question-text {
  font-family: var(--font-grotesk);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Plus/close icon ───────────────────────────────────────── */
.kb-faq__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--color-purple-soft);
  transition: transform 0.3s;
}

/* ── Answer (collapsed by default, expanded by JS) ─────────── */
.kb-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s;
}
