/* ── ACCORDION ── */
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}
.faq-trigger:hover .faq-q { color: #C9A844; }
.faq-q {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #1a2744;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #1A2744;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; color: #fff; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: #C9A844; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-body-inner {
  padding-bottom: 20px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.85;
}
.faq-body-inner ul { margin-top: 10px; }
.faq-body-inner li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 6px;
}
.faq-body-inner li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #C9A844;
  flex-shrink: 0;
  margin-top: 6px;
}
