/* faq.css */
.faq-wrap { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: var(--border); }
.faq-item:first-child { border-top: var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-chevron { font-size: 14px; color: var(--gray-400); transition: transform var(--ease); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-body { padding: 0 0 var(--sp-5); font-size: var(--text-sm); color: var(--gray-600); line-height: var(--leading-relaxed); }
