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

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

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

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.faq-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

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

/* ─── FAQ List ───────────────────────────────────────────── */
.faq-list {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.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;
}

.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: 100px 20px 60px;
  }

  .nav-cta {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .lang-toggle {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .nav-links {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 90px 16px 40px;
  }

  .nav-cta {
    display: none;
  }

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

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