/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.faq__bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.faq__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Accordion item */
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  background: var(--bg-card);
}

.faq-item.open {
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: 0 0 24px rgba(108, 99, 255, 0.08);
}

.faq-item__trigger {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal);
  line-height: 1;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* CTA at bottom of FAQ */
.faq__cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.faq__cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq__cta p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.faq__cta .btn-primary {
  padding: 16px 40px;
  font-size: 1rem;
}
