/* ═══════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════ */
:root {
  --accent: #6FBEF0;
  --ink: #0E0E0E;
  --muted: #5b5b62;
  --line: rgba(14, 14, 14, .08);
  --shadow: 0 30px 80px -30px rgba(14, 14, 14, .25);
}

.faq-head,
.faq-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
  width: min(1000px, 92%);
  margin-inline: auto;
}

/* ── HERO ─────────────────────────────────── */
.faq-head {
  position: relative;
  padding: 170px 0 90px;
  background: #0E0E0E;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.faq-head::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 190, 240, .22), transparent 70%);
  filter: blur(50px);
  animation: faqFloat 14s ease-in-out infinite;
}

@keyframes faqFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(40px); }
}

.faq-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  border-radius: 40px;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.faq-head .eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: faqPulse 2s infinite;
}

@keyframes faqPulse {
  50% { opacity: .4; }
}

.faq-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 18px 0 16px;
  position: relative;
  z-index: 2;
}

.faq-head h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.faq-head .head-sub {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── LIST ─────────────────────────────────── */
.faq-section {
  padding: 90px 0 120px;
  background: #fff;
}

.faq-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, background .3s;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

/* QUESTION ROW */
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.faq-num {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
}

.faq-q-text {
  flex: 1;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(111, 190, 240, .12);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
  background: var(--accent);
  color: #fff;
}

/* ANSWER */
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.2, .8, .2, 1);
}

.faq-item.open .faq-a-wrap {
  grid-template-rows: 1fr;
}

.faq-a {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px 0 68px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  transition: padding .4s ease;
}

.faq-item.open .faq-a {
  padding-bottom: 24px;
}

.faq-a a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}

.faq-a a:hover {
  border-bottom-color: var(--accent);
}

/* ── REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 600px) {
  .faq-head {
    padding: 140px 0 70px;
  }

  .faq-section {
    padding: 60px 0 90px;
  }

  .faq-q {
    padding: 18px 18px;
    gap: 12px;
  }

  .faq-num {
    display: none;
  }

  .faq-q-text {
    font-size: 15px;
  }

  .faq-a {
    padding: 0 18px;
    font-size: 14.5px;
  }

  .faq-item.open .faq-a {
    padding-bottom: 20px;
  }
}