/* ===== FAQ HERO ===== */
.faq-hero {
  padding: 7rem 0 3rem;
  text-align: center;
}

.faq-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.faq-hero__subtitle {
  font-size: 1.125rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.75;
}

.faq-hero__link {
  text-decoration: underline;
  font-weight: 600;
}

/* ===== JUMP NAV ===== */
.faq-jumpnav {
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.75rem 0;
  position: sticky;
  top: 64px;
  z-index: 90;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.85);
}

[data-theme="dark"] .faq-jumpnav {
  background: rgba(7,11,22,0.85);
  border-color: rgba(255,255,255,0.06);
}

.faq-jumpnav__list {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
}

.faq-jumpnav__list::-webkit-scrollbar { display: none; }

.faq-jumpnav__list a {
  display: block;
  color: inherit;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  transition: opacity 0.2s, background 0.2s;
}

.faq-jumpnav__list a:hover {
  opacity: 1;
  background: rgba(11,30,102,0.06);
}

[data-theme="dark"] .faq-jumpnav__list a:hover {
  background: rgba(182,255,46,0.08);
}

/* ===== FAQ SECTIONS ===== */
.faq-section {
  padding: 4rem 0;
}

.faq-section--alt {
  background: rgba(11,30,102,0.025);
}

[data-theme="dark"] .faq-section--alt {
  background: rgba(255,255,255,0.02);
}

.faq-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-section__title svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #0B1E66;
}

[data-theme="dark"] .faq-section__title svg {
  color: #B6FF2E;
}

/* ===== FAQ ACCORDION ===== */
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

[data-theme="dark"] .faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}

.faq-item[open] {
  border-color: #0B1E66;
  box-shadow: 0 0 0 1px rgba(11,30,102,0.15), 0 4px 16px rgba(11,30,102,0.08);
}

[data-theme="dark"] .faq-item[open] {
  border-color: #B6FF2E;
  box-shadow: 0 0 0 1px rgba(182,255,46,0.2), 0 4px 16px rgba(182,255,46,0.06);
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  -webkit-user-select: none;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  color: #0B1E66;
  transition: transform 0.2s ease;
}

[data-theme="dark"] .faq-item__q::after {
  color: #B6FF2E;
}

.faq-item[open] .faq-item__q::after {
  content: '\2212';
}

.faq-item__a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  opacity: 0.7;
}

.faq-item__a p { margin: 0 0 0.75rem; }
.faq-item__a p:last-child { margin-bottom: 0; }

.faq-item__a ul,
.faq-item__a ol {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
}

.faq-item__a li { margin-bottom: 0.4rem; }

.faq-item__a a {
  color: #0B1E66;
  text-decoration: underline;
  font-weight: 500;
}

[data-theme="dark"] .faq-item__a a {
  color: #B6FF2E;
}

.faq-item__a strong {
  opacity: 1;
  font-weight: 600;
}

@media (max-width: 640px) {
  .faq-hero {
    padding: 4.25rem 0 2.25rem;
    text-align: left;
  }

  .faq-hero__title {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .faq-hero__subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }

  .faq-jumpnav {
    top: 64px;
    padding: 0.625rem 0;
  }

  .faq-jumpnav__list {
    flex-wrap: nowrap;
    padding-bottom: 0.1rem;
  }

  .faq-jumpnav__list a {
    padding: 0.5rem 0.75rem;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .faq-section__title {
    align-items: flex-start;
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .faq-item__q {
    padding: 1rem;
    align-items: flex-start;
    line-height: 1.4;
  }

  .faq-item__a {
    padding: 0 1rem 1rem;
    line-height: 1.65;
  }
}
