/* ===== BLOCKATTACK – FAQ PAGE STYLES ===== */

/* ── PAGE HEADER BG ──────────────────────── */
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(75,123,236,0.12) 0%, transparent 65%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center bottom, black, transparent 80%);
}

/* ── FAQ LAYOUT ──────────────────────────── */
.faq-wrap { max-width: 820px; margin: 0 auto; padding: 0 2rem 8rem; }

/* ── CATEGORY GROUPS ─────────────────────── */
.faq-cat { margin-bottom: 3rem; }
.faq-cat-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
}
.faq-cat-icon { font-size: 1.3rem; }
.faq-cat h2 { font-family: 'Unbounded', sans-serif; font-size: 1.05rem; font-weight: 700; }
.cat-bar { height: 2px; flex: 1; border-radius: 2px; }
.cat-o .cat-bar { background: linear-gradient(90deg, var(--orange), transparent); }
.cat-b .cat-bar { background: linear-gradient(90deg, var(--blue), transparent); }
.cat-g .cat-bar { background: linear-gradient(90deg, var(--green), transparent); }
.cat-v .cat-bar { background: linear-gradient(90deg, var(--gray), transparent); }

/* ── ACCORDION ───────────────────────────── */
.acc-item {
  border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.75rem;
  overflow: hidden; transition: border-color 0.25s;
  animation: fadeUp 0.5s ease both;
  background: var(--bg2);
}
.acc-item:hover { border-color: rgba(255,255,255,0.15); }
.acc-item.open  { border-color: rgba(255,255,255,0.14); }

.acc-btn {
  width: 100%; background: transparent; border: none; color: var(--white);
  padding: 1.25rem 1.5rem; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  transition: background 0.2s;
}
.acc-btn:hover { background: rgba(255,255,255,0.04); }
.acc-item.open .acc-btn { background: rgba(255,255,255,0.04); }

.acc-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--gray);
  transition: transform 0.3s ease, color 0.2s;
}
.acc-item.open .acc-chevron { transform: rotate(180deg); color: var(--orange); }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-body.open { max-height: 500px; }

.acc-body-inner {
  padding: 1.1rem 1.5rem 1.5rem;
  color: var(--gray); font-size: 0.9rem; line-height: 1.75;
  border-top: 1px solid var(--border);
}
.acc-body-inner strong { color: var(--white); font-weight: 600; }
.acc-body-inner a { color: var(--blue); text-decoration: none; }
.acc-body-inner a:hover { text-decoration: underline; }

.hl-o { color: var(--orange); font-weight: 600; }
.hl-b { color: var(--blue);   font-weight: 600; }
.hl-g { color: var(--green);  font-weight: 600; }

/* ── CONTACT BANNER ──────────────────────── */
.contact-banner {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
  padding: 2.5rem; text-align: center; margin-top: 1rem; position: relative; overflow: hidden;
}
.contact-banner::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}
.contact-banner h3 { font-family: 'Unbounded', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-banner p { color: var(--gray); font-size: 0.9rem; }
.contact-banner strong { color: var(--blue); }
