/* ============================================================
   FAQ — Accordion
   ============================================================ */

.faq {
  border-top: 1px solid var(--color-bg-3);
  padding-block: 64px;
}

.faq .section-badge {
  padding: 9px 18px;
  font-size: 12px;
  margin-bottom: 16px;
}

.faq__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #2C2C2C;
  border-radius: 16px;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid #2C2C2C;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  transition: background 0.2s ease;
  gap: 16px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq__icon {
  flex-shrink: 0;
  color: #E24B4A;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

details[open] .faq__icon {
  transform: rotate(45deg);
}

details[open] .faq__question {
  color: #E24B4A;
}

.faq__answer {
  padding: 0 28px 24px;
  animation: faq-open 0.3s ease;
}

.faq__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #888780;
  margin: 0;
  max-width: 100%;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__cta {
  padding: 28px;
  border-top: 1px solid #2C2C2C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq__cta-text {
  font-size: 14px;
  color: #D3D1C7;
  margin: 0;
}

.faq__cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer { animation: none; }
  .faq__icon { transition: none; }
}
