/* ═══════════════════════════════════════════════════════════
   FAQ Page — Styles
   ═══════════════════════════════════════════════════════════ */

.faq-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 140px 24px 80px;
  position: relative;
  z-index: 1;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--primary-glow-strong) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.faq-section .container {
  width: 100%;
  max-width: 1200px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.6s ease-out;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FAQ List ───────────────────────────────────────────── */
.faq-list {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  columns: 2;
  column-gap: 20px;
}

.faq-item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
  break-inside: avoid;
  margin-bottom: 16px;
}

.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.3);
}

.faq-item summary {
  padding: 18px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--primary);
}

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

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-section {
    padding: 120px 20px 50px;
  }
  .faq-list {
    columns: 1;
  }
}

@media (max-width: 480px) {

  .faq-item summary {
    padding: 14px 18px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 18px 14px;
    font-size: 0.82rem;
  }
}
