/* ================================================================
   PROVIDER FAQ PAGE
   ================================================================ */

/* ---- HERO ---- */
.faq-hero {
  background: linear-gradient(180deg, #F8FAFC, #F0F5FB);
  border-bottom: 1px solid var(--sl-line);
}

.faq-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 56px;
  text-align: center;
}

.faq-hero-inner .hero-badge {
  margin: 0 auto 22px;
}

.faq-hero-h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--fg-1);
}

.faq-hero-h1 span {
  color: var(--sl-blue-600);
}

.faq-hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0 auto 32px;
}

.faq-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.faq-jump-links a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--sl-blue-300);
  color: var(--sl-blue-700);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 120ms, color 120ms;
}

.faq-jump-links a:hover {
  background: var(--sl-blue-600);
  border-color: var(--sl-blue-600);
  color: #fff;
}

/* ---- SECTION SPACING (anchors sit under sticky nav) ---- */
.faq-hero, #credentialing, #volume, #clients, #referrals, #authorizations, #claims {
  scroll-margin-top: 76px;
}

/* ---- CREDENTIAL / CLIENT TAGS ---- */
.faq-credential-tags,
.faq-client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--sl-blue-050);
  color: var(--sl-blue-800);
  font-size: 14px;
  font-weight: 700;
}

.faq-tag-alt {
  background: #fff;
  border: 1px solid var(--sl-line);
  color: var(--fg-2);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
}

.faq-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.6;
}

/* ---- PLAIN ANSWER LISTS ---- */
.faq-plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.faq-plain-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
}

.faq-plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sl-blue-600);
}

.faq-plain-list li a {
  font-weight: 600;
}
