/* ============================================================
   ORBC — FAQ PAGE STYLES
   ============================================================ */

.faq-container {
  max-width: 860px;
}

.faq-intro {
  margin-bottom: 64px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category__title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--black-border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(200,16,46,0.4);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-item__question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-item__q-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.3;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.faq-item.open .faq-item__icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.75;
  border-top: 1px solid var(--black-border);
  padding-top: 20px;
}
