/* ============================================================
   FAQ DEDICATED PAGE — Enterprise styling
   Mirrors the FAQ section on /services/mail for consistency
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.faq-page-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #4a00e0 60%, #8e2de2 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.faq-page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.faq-page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.faq-hero-content {
  z-index: 1;
}
.faq-page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.faq-page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Main FAQ section ─────────────────────────────────────── */
.faq-enterprise {
  background: #f3f4f6;
  padding: 5rem 0;
}
.faq-enterprise .faq-category-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a00e0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  padding-left: 0.25rem;
  border-left: 3px solid #7c3aed;
  padding-left: 0.6rem;
}
.faq-enterprise .faq-category-heading:first-child {
  margin-top: 0;
}
.faq-enterprise .faq-item {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-enterprise .faq-item:hover { box-shadow: 0 4px 16px rgba(74,0,224,0.07); }
.faq-enterprise .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e1b4b;
  user-select: none;
}
.faq-enterprise .faq-question .faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ede9fe;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-left: 1rem;
}
.faq-enterprise .faq-question .faq-toggle i { color: #7c3aed; font-size: 0.75rem; }
.faq-enterprise .faq-item.open .faq-question .faq-toggle {
  background: #7c3aed;
  transform: rotate(45deg);
}
.faq-enterprise .faq-item.open .faq-question .faq-toggle i { color: #fff; }
.faq-enterprise .faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  border-top: 1px solid #f3f4f6;
}
.faq-enterprise .faq-item.open .faq-answer { display: block; }
.faq-enterprise .faq-answer p:last-child { margin-bottom: 0; }
.faq-enterprise .faq-answer a { color: #7c3aed; }

/* ── Empty state ──────────────────────────────────────────── */
.faq-empty-state {
  text-align: center;
  padding: 4rem 1rem;
}
.faq-empty-state .faq-empty-icon {
  font-size: 3.5rem;
  color: #c4b5fd;
  margin-bottom: 1rem;
}
.faq-empty-state h4 { color: #1e1b4b; font-weight: 700; }
.faq-empty-state p  { color: #6b7280; max-width: 480px; margin: 0 auto; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .faq-page-hero { padding: 3.5rem 0 3rem; }
  .faq-page-hero h1 { font-size: 2rem; }
  .faq-enterprise { padding: 3.5rem 0; }
}
@media (max-width: 767px) {
  .faq-page-hero { padding: 3rem 0 2.5rem; }
  .faq-page-hero h1 { font-size: 1.7rem; }
  .faq-enterprise { padding: 2.5rem 0; }
  .faq-enterprise .faq-question { font-size: 0.9rem; padding: 0.9rem 1.1rem; }
  .faq-enterprise .faq-answer   { padding: 0 1.1rem 1rem; font-size: 0.88rem; }
}
@media (max-width: 575px) {
  .faq-page-hero h1 { font-size: 1.4rem; }
  .faq-enterprise { padding: 2rem 0; }
  .faq-enterprise .faq-question { font-size: 0.85rem; padding: 0.8rem 1rem; }
  .faq-enterprise .faq-answer   { padding: 0 1rem 0.9rem; font-size: 0.85rem; }
  .faq-enterprise .faq-question .faq-toggle { width: 24px; height: 24px; }
}
