/* ══════════════════════════════
   FAQ SECTION
══════════════════════════════ */

#faq {
  background: var(--black);
  padding: 100px 64px;
  min-height: auto;
}

.faq-inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-header {
  margin-bottom: 52px;
  text-align: center;
}

.faq-header h2 {
  color: var(--white);
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-top: 10px;
}

.faq-title-accent {
  color: var(--sky-mid);
}

/* ── LIST ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── ITEM ── */
.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(200,230,245,0.1);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item:hover {
  border-color: rgba(126,200,227,0.22);
  background: rgba(255,255,255,0.035);
}
.faq-item.open {
  border-color: rgba(126,200,227,0.3);
  background: rgba(126,200,227,0.04);
}

/* ── QUESTION ROW ── */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  user-select: none;
}

.faq-question span:first-child {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13px, 1.6vw, 15.5px);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.faq-chevron {
  font-size: 22px;
  color: var(--sky-mid);
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* ── ANSWER ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 28px 20px;
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}
.faq-answer p + p {
  padding-top: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #faq { padding: 80px 32px; }
}
@media (max-width: 600px) {
  #faq { padding: 72px 20px; }
  .faq-question { padding: 18px 20px; }
  .faq-answer p { padding: 0 20px 18px; }
}
