/* ============================================================
   NORTH HORIZON PARTNERS — faq.css
   ============================================================ */

.section-faq {
  padding: var(--section-py) 0;
}

.section-faq h2 {
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 760px;
  margin-top: 3rem;
  border-top: 1px solid var(--border-solid);
}

/* ── Item ───────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border-solid);
  border-radius: 6px;
  transition: background 0.22s ease;
}

.faq-item.open {
  background: rgba(200, 255, 0, 0.025);
}

/* ── Question button ────────────────────────────────────────── */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 500;
  color: var(--text-muted);
  text-align: left;
  min-height: 44px;
  transition: color 0.18s ease;
}

.faq-item.open .faq-question,
.faq-question:hover {
  color: var(--text);
}

/* ── Icon circle ────────────────────────────────────────────── */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-solid);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #080808;
  border-color: var(--accent);
}

/* ── Answer ─────────────────────────────────────────────────── */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.42s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding-bottom: 1.6rem;
  font-size: 0.93rem;
  line-height: 1.84;
}
