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

#faq {
  border-top: 1px solid var(--border);
}

#faq .section-label {
  margin-bottom: 16px;
}

#faq h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

/* Remove default details marker */
details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

/* Summary row */
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--indigo);
}

/* Icon circle */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

details[open] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--indigo);
  color: var(--indigo);
}

/* Answer body */
.faq-answer {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  padding-bottom: 24px;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 500;
}

.faq-answer a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}
