/* =========================
   FAQ – 567Free
   ========================= */

:root{
  --accent: #E23B35;
  --bg-dark: #0b0c0f;
  --card: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.9);
  --muted: rgba(255,255,255,.7);
}

.faq-page{
  background: var(--bg-dark);
  color: var(--text);
  padding: 96px 0 96px;
}

.faq-hero{
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  padding: 48px;
  border-radius: 28px;
  background: radial-gradient(1200px 700px at 10% 0%, rgba(255,255,255,.08), transparent 60%), var(--card);
  border: 1px solid var(--border);
}

.faq-pill{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}

.faq-hero h1{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  margin: 16px 0;
}

.faq-hero p{
  max-width: 52ch;
  line-height: 1.7;
  color: var(--muted);
}

.faq-actions{
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-primary{
  background: var(--accent);
  color: #0b0c0f;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-ghost{
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
}

.faq-hero-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.faq-hero-card h4{
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* FAQ LIST */
.faq-list{
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-toggle{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after{
  content:"";
  position:absolute;
  background:#fff;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
}

.faq-toggle::before{ width:12px; height:2px; }
.faq-toggle::after{ width:2px; height:12px; }

details[open] .faq-toggle::after{ display:none; }

.faq-answer{
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 920px){
  .faq-hero{
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
