/* ── FAQ PAGE ─────────────────────────────────────────────────────────────── */
.faq-hero {
  padding: 110px 5% 48px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(43,154,243,0.08) 0%, transparent 60%);
}
.faq-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.faq-hero p  { color: var(--text-muted); font-size: 1rem; }
.faq-hero a  { color: var(--accent); text-decoration: none; font-weight: 600; }
.faq-hero a:hover { text-decoration: underline; }

/* ── FAQ SECTION ─────────────────────────────────────────────────────────── */
.faq-section {
  max-width: 780px; margin: 0 auto; padding: 0 5% 60px;
  display: flex; flex-direction: column; gap: 40px;
}

.faq-category {}
.faq-cat-title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ── FAQ ITEM ─────────────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  background: var(--bg2);
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-item + .faq-item { margin-top: 8px; }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 18px;
  background: none; border: none; color: var(--text);
  font-size: 0.92rem; font-weight: 600; font-family: inherit;
  cursor: pointer; text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg3); }
.faq-q i { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

/* HeartSpace questions — pink accent */
.faq-q--hs { }
.faq-item:has(.faq-q--hs).open { border-color: #eb459e; }
.faq-item:has(.faq-q--hs) .faq-q:hover { background: rgba(235,69,158,0.05); }

.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 18px;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 18px 18px;
}
.faq-a strong { color: var(--text); }
.faq-a em { color: var(--text-muted); font-style: italic; }

/* flag list inside answer */
.faq-flag-list {
  list-style: none; margin-top: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.faq-flag-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.flag-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}

/* ── CONTACT SECTION ─────────────────────────────────────────────────────── */
.faq-contact {
  text-align: center; padding: 56px 5%;
  background: var(--bg2); border-top: 1px solid var(--border);
}
.faq-contact h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.faq-contact p  { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.faq-contact .btn-primary { display: inline-flex; align-items: center; gap: 8px; }
