@charset "UTF-8";
/*!
Theme Name: Accord Specialty Pharmacy
Theme URI: https://minnesotawebstudio.com/
Author: Minnesota Web Studio
Author URI: https://minnesotawebstudio.com/
Description: A highly optimized, custom-built WordPress theme tailored specifically for Accord Specialty Pharmacy. Featuring blazing-fast performance, localized SEO defaults, and an intuitive editing experience. DO NOT switch or delete this theme.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: mws-theme
*/
/* ==========================================
   GLOBAL VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --brand-primary: #3769A4; /* Ocean Deep */
  --brand-secondary: #41B4E1; /* Bright Sky */
  --brand-accent: #FF581B; /* Tiger Flame */
  --brand-highlight: #FF9B0A; /* Amber Glow */
  --brand-green: #1C9065; /* Sea Green */
  /* Text & Neutral Colors */
  --text-dark: #1A2D47;
  --text-body: #3D4F63;
  --text-muted: #8A97A6;
  /* Backgrounds */
  --bg-main: #F0F5FA;
  --bg-alt: #FFFFFF;
  --border-color: #D0DCE8;
  /* Spacing Framework */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1rem;
  /* 16px */
  --space-md: 2rem;
  /* 32px */
  --space-lg: 4rem;
  /* 64px */
  --space-xl: 6rem;
  /* 96px */
  /* Typography */
  --font-headings: 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================
   CSS RESET
   ========================================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 17px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================
   TYPOGRAPHY BASE
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--brand-secondary);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.mws-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ADMIN BAR OFFSET FIX */
body.admin-bar .mws-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .mws-nav {
    top: 46px;
  }
}
/* ── Fixed-nav content compensation ──────
   Prevents page content from sitting behind
   the fixed nav on non-hero pages.          */
.site-main {
  padding-top: 100px;
}

body.admin-bar .site-main {
  padding-top: 132px;
}

body.home .site-main,
body.home.admin-bar .site-main {
  padding-top: 0;
}

.site-main--inner {
  padding-top: 50px;
}

body.admin-bar .site-main--inner {
  padding-top: 50px;
}

@media (max-width: 900px) {
  .site-main {
    padding-top: 75px;
  }
  body.admin-bar .site-main {
    padding-top: 121px;
  }
  .site-main--inner {
    padding-top: 50px;
  }
  body.admin-bar .site-main--inner {
    padding-top: 50px;
  }
}
.mws-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  /* Spacious default height */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  transition: all 0.3s ease;
}

/* Logo Setup */
.mws-nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  z-index: 1002;
}

.mws-nav-logo img {
  height: 60px;
  width: auto;
  transition: height 0.3s ease;
}

/* Right-side group: nav (centered) + actions (far right) */
.mws-nav-right {
  display: flex;
  align-items: center;
  flex: 1;
}

.mws-desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mws-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Phone number */
.mws-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.mws-nav-phone svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.mws-nav-phone:hover {
  color: var(--brand-primary);
}

/* Referral CTA button in nav */
.mws-nav-referral-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 5px;
  background: var(--brand-accent);
  color: #fff;
  border: 2px solid var(--brand-accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.mws-nav-referral-btn:hover {
  background: transparent;
  color: var(--brand-accent);
}

/* Desktop Navigation */
.mws-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
  align-items: center;
}

.mws-nav-links a {
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* STICKY SCROLLED STATE (DESKTOP ONLY) */
@media (min-width: 901px) {
  .mws-nav-container.scrolled {
    height: 70px;
    max-width: 1050px;
  }
  .mws-nav-container.scrolled .mws-nav-logo img {
    height: 45px;
  }
  .mws-nav-container.scrolled .mws-nav-links a {
    font-size: 15px;
  }
}
/* Hover & Active States */
.mws-nav-links a:hover,
.mws-nav-links current-menu-item > a {
  color: var(--brand-primary);
}

.mws-nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.mws-nav-links a:hover::after,
.mws-nav-links .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Dropdown submenu ────────────────────── */
.mws-nav-links .menu-item-has-children {
  position: relative;
}

.mws-nav-links .menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
  display: none;
}

.mws-nav-links .menu-item-has-children:hover::before {
  display: block;
}

.mws-nav-links .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  position: static;
  bottom: auto;
  left: auto;
  width: 6px;
  height: 6px;
  background: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  margin-left: 7px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.mws-nav-links .menu-item-has-children:hover > a::after,
.mws-nav-links .menu-item-has-children:focus-within > a::after {
  transform: rotate(-135deg) translateY(2px);
}

.mws-nav-links .sub-menu {
  display: none;
}

.mws-desktop-nav {
  position: relative;
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 16px;
  width: min(760px, 90vw);
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 500;
}
.mega-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mws-desktop-nav:has(.menu-item-has-children:hover, .menu-item-has-children:focus-within) .mega-panel,
.mega-panel:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  padding: 1.5rem;
}

.mega-col + .mega-col {
  border-left: 1px solid var(--border-color);
  padding-left: 1.5rem;
  margin-left: 1.5rem;
}

.mega-col-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.mega-col--specialties ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col--specialties li + li {
  margin-top: 2px;
}

.mega-col--specialties a {
  display: block;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.mega-col--specialties a:hover {
  color: var(--brand-primary);
  background: var(--bg-main);
}

.mega-med-group + .mega-med-group {
  margin-top: 1rem;
}

.mega-med-group-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0 0 0.35rem;
}

.mega-med-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-med-group a {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.mega-med-group a span {
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
}
.mega-med-group a:hover {
  color: var(--brand-primary);
  background: var(--bg-main);
}

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */
.mws-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1003;
}

.mws-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mws-nav-toggle span:nth-child(1) {
  margin-bottom: 6px;
}

.mws-nav-toggle span:nth-child(3) {
  margin-top: 6px;
}

/* Hamburger to X Animation */
.mws-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mws-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mws-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Slide-in Panel */
.mws-nav-mobile {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  background: var(--bg-main);
  z-index: 1002;
  padding: 100px 30px 40px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mws-nav-mobile.active {
  right: 0;
}

.mws-nav-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mws-nav-mobile-links a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.mws-nav-mobile-links a:hover,
.mws-nav-mobile-links .current-menu-item > a {
  color: var(--brand-primary);
}

/* Submenu collapse (hidden by default) */
.mws-nav-mobile-links .sub-menu {
  list-style: none;
  padding: 0.5rem 0 0.25rem 1rem;
  margin: 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mws-nav-mobile-links .sub-menu.open {
  max-height: 800px;
}
.mws-nav-mobile-links .sub-menu a {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.78;
}

.mws-nav-mobile-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-primary);
  opacity: 0.7;
}
.mws-nav-mobile-group-label:not(:first-child) {
  margin-top: 0.5rem;
}

.mws-nav-mobile-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mws-nav-mobile-item-row > a {
  flex: 1;
}

.mws-nav-submenu-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-dark);
  flex-shrink: 0;
  padding: 0;
  transition: transform 0.25s ease, background 0.2s ease;
}
.mws-nav-submenu-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}
.mws-nav-submenu-toggle.open {
  transform: rotate(180deg);
}

/* Mobile nav CTA buttons */
.mws-nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}
.mws-nav-mobile-ctas .btn-primary,
.mws-nav-mobile-ctas .btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 10px 20px;
}

/* Phone number at bottom of mobile panel */
.mws-nav-mobile-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mws-nav-mobile-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mws-nav-mobile-phone:hover {
  color: var(--brand-secondary);
}

/* Dark Overlay behind menu */
.mws-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 51, 49, 0.5);
  /* Soft Charcoal RGB equivalent */
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mws-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/* Mobile Breakpoint */
@media (max-width: 900px) {
  .mws-desktop-nav,
  .mws-nav-actions {
    display: none;
  }
  .mws-nav-toggle {
    display: flex;
  }
  .mws-nav-container {
    height: 75px;
  }
}
/* ── Sticky mobile referral button ─────── */
.mws-mobile-referral-btn {
  display: none;
}

@media (max-width: 900px) {
  .mws-mobile-referral-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999;
    background: var(--brand-accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.65rem 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    transition: filter 0.2s ease, transform 0.2s ease;
  }
  .mws-mobile-referral-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .mws-mobile-referral-btn:hover, .mws-mobile-referral-btn:focus-visible {
    filter: brightness(1.1);
    transform: translateY(-2px);
  }
}
/* ==========================================
   FOOTER
   ========================================== */
.mws-footer {
  background-color: #0553C9;
  color: var(--bg-alt);
  font-family: var(--font-body);
}

.mws-footer-main {
  padding: 80px 0;
}

.mws-footer-container {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 48px;
}

/* Footer Logo */
.mws-footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}
.mws-footer-logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Brand Column Styling */
.mws-footer-brand h3 {
  color: var(--bg-alt);
  font-family: var(--font-headings);
  font-size: 26px;
  margin-bottom: 20px;
}

.mws-footer-summary {
  font-size: 15px;
  line-height: 1.8;
  color: var(--bg-alt);
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Contact Links (Phone/Email) */
.mws-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-alt);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--brand-secondary);
}

.footer-contact-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Actions Row (Policy & Social) */
.mws-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.footer-policy-link {
  color: var(--bg-alt);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: var(--brand-secondary);
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  /* Safe to leave as rgba for pure white alpha */
  color: var(--bg-alt);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background-color: var(--brand-secondary);
  transform: translateY(-2px);
}

.footer-social-icons svg {
  width: 18px;
  height: 18px;
}

/* Right Column Styling (Address & Hours) */
.footer-icon-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bg-alt);
  opacity: 0.9;
}

.footer-icon-block a {
  color: var(--bg-alt);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-icon-block a:hover {
  color: var(--brand-secondary);
}

.footer-icon-block svg {
  width: 20px;
  height: 20px;
  stroke: var(--bg-alt);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-icon-content a {
  display: block;
}

.footer-icon-content strong {
  display: block;
  color: var(--bg-alt);
  opacity: 1;
  /* Override opacity for bold text */
}

.footer-icon-content p {
  margin-bottom: 5px;
}

/* Footer Bottom (Menu & Copyright) */
.mws-footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
  /* Safe shadow layer */
  padding: 30px 0;
}

/* Inline Bottom Menu */
.mws-footer-inline-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.mws-footer-inline-menu a {
  color: var(--bg-alt);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mws-footer-inline-menu a:hover {
  color: var(--brand-secondary);
}

/* Copyright Text */
.mws-footer-bottom p {
  font-size: 12px;
  color: var(--bg-alt);
  opacity: 0.7;
  margin: 0;
}

.mws-footer-bottom a {
  color: var(--bg-alt);
  opacity: 0.9;
  text-decoration: none;
  font-weight: 600;
}

.mws-footer-bottom a:hover {
  color: var(--bg-alt);
  opacity: 1;
  text-decoration: underline;
}

/* Accreditation Badges */
.footer-accreditation {
  margin-top: 24px;
}

.footer-accreditation-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-accreditation-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.footer-accreditation-badge {
  display: block;
  height: 96px;
  width: auto;
  object-fit: contain;
}

/* Footer Nav Columns */
.footer-nav-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.mws-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mws-footer-nav a {
  color: var(--bg-alt);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.mws-footer-nav a:hover {
  opacity: 1;
  color: var(--brand-secondary);
}
.mws-footer-nav .menu-item-has-children {
  position: relative;
}
.mws-footer-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.mws-footer-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.mws-footer-nav .menu-item-has-children:hover > a::after {
  transform: rotate(-135deg) translateY(2px);
}
.mws-footer-nav .menu-item-has-children > .sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: #0346A2;
  border-radius: 6px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 200;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
}
.mws-footer-nav .menu-item-has-children > .sub-menu a {
  display: block;
  padding: 0.45rem 1.1rem;
  font-size: 0.825rem;
  white-space: nowrap;
}
.mws-footer-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1050px) {
  .mws-footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .mws-footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mws-footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Standard padding for large bands/sections */
.section-padding {
  padding: var(--space-xl) 0;
}

/* Responsive padding for mobile */
@media (max-width: 768px) {
  .section-padding {
    padding: var(--space-lg) 0;
  }
}
.band-hero {
  position: relative;
  background: linear-gradient(150deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.band-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 144, 101, 0.45) 0%, transparent 68%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.hero-brand {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 280px 20px 180px;
  position: relative;
  z-index: 1;
}

.hero-brand-inner {
  max-width: 960px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}

.hero-award-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.3rem 0.85rem 0.3rem 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-award-line svg {
  width: 13px;
  height: 13px;
  color: var(--brand-highlight);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-headings);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 0;
}

.hero-award {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero-award-img {
  height: 100px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.hero-audience-ctas {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.hero-cta--solid {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid #fff;
}
.hero-cta--solid:hover {
  background: transparent;
  color: #fff;
}
.hero-cta--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.hero-cta--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.hero-service-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: rgba(10, 28, 58, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -8px 0 0 transparent;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.hero-service-card:last-child {
  border-right: none;
}
.hero-service-card:hover {
  background: rgba(10, 28, 58, 0.94);
  box-shadow: inset 0 -8px 0 0 var(--card-accent);
}
.hero-service-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: -3px;
  background: rgba(10, 28, 58, 0.94);
  box-shadow: inset 0 -8px 0 0 var(--card-accent);
}
.hero-service-card--sky {
  --card-accent: #41B4E1;
}
.hero-service-card--green {
  --card-accent: #1C9065;
}
.hero-service-card--flame {
  --card-accent: #FF581B;
}
.hero-service-card--amber {
  --card-accent: #FF9B0A;
}

.hero-service-icon {
  width: 36px;
  height: 36px;
  color: var(--card-accent);
  margin-bottom: 1rem;
}
.hero-service-icon svg {
  width: 100%;
  height: 100%;
}

.hero-service-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}
.hero-service-card:hover .hero-service-title {
  color: var(--card-accent);
}

.hero-service-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.hero-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease;
}
.hero-service-cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.hero-service-card:hover .hero-service-cta {
  background: var(--card-accent);
  color: #fff;
}
.hero-service-card:hover .hero-service-cta svg {
  transform: translateX(3px);
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow {
    opacity: 0;
    animation: hero-fade-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  }
  .hero-award-line {
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
  }
  .hero-headline {
    opacity: 0;
    animation: hero-fade-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
  }
  .hero-sub {
    opacity: 0;
    animation: hero-fade-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
  }
  .hero-audience-ctas {
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 1.35s forwards;
  }
  .hero-service-card {
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero-service-card:nth-child(1) {
    animation-delay: 1.4s;
  }
  .hero-service-card:nth-child(2) {
    animation-delay: 1.6s;
  }
  .hero-service-card:nth-child(3) {
    animation-delay: 1.8s;
  }
  .hero-service-card:nth-child(4) {
    animation-delay: 2s;
  }
}
@media (max-width: 900px) {
  .band-hero {
    background: linear-gradient(150deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
  }
  .hero-brand {
    padding-top: 110px;
    padding-bottom: 48px;
  }
  .hero-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-service-card {
    border-right: none;
  }
  .hero-service-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media (max-width: 500px) {
  .hero-brand {
    padding-top: 100px;
    padding-bottom: 32px;
  }
  .hero-services {
    grid-template-columns: 1fr;
  }
  .hero-service-card {
    border-right: none;
  }
  .hero-service-card:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}
@media (max-width: 782px) {
  body.admin-bar .hero-brand {
    padding-top: 156px;
  }
}
.band-mission {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.band-mission .container {
  max-width: 900px;
}

.band-mission h2 {
  font-family: var(--font-headings);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.mission-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.mission-content p:last-child {
  margin-bottom: 0;
}

.mission-diagram {
  position: relative;
  max-width: 700px;
  height: 580px;
  margin: 4rem auto 0;
}

.diagram-svg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .diagram-travel-dot {
    display: none;
  }
}
.diagram-hub {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(150deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 8px 36px rgba(55, 105, 164, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  z-index: 2;
}
.diagram-hub::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(55, 105, 164, 0.5);
  animation: hub-pulse 3s ease-out infinite;
}

@keyframes hub-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .diagram-hub::after {
    display: none;
  }
}
.diagram-hub-logo {
  width: 90px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}

.diagram-hub-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 2px;
}

.diagram-hub-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.diagram-node {
  position: absolute;
  width: 155px;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  z-index: 2;
}
.diagram-node--patient {
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 8px solid var(--brand-secondary);
}
.diagram-node--provider {
  bottom: 25px;
  left: 0;
  border-top: 8px solid var(--brand-green);
}
.diagram-node--payer {
  bottom: 25px;
  right: 0;
  border-top: 8px solid var(--brand-accent);
}

.diagram-node-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 0.6rem;
  color: var(--brand-secondary);
}
.diagram-node-icon svg {
  width: 100%;
  height: 100%;
}
.diagram-node--provider .diagram-node-icon {
  color: var(--brand-green);
}
.diagram-node--payer .diagram-node-icon {
  color: var(--brand-accent);
}

.diagram-node-title {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.diagram-node-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.mission-testimonials {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.mission-testimonials-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-secondary);
  opacity: 0.18;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  padding-top: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-attribution {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}
.testimonial-attribution strong {
  font-weight: 700;
  color: var(--text-dark);
}

@media (max-width: 680px) {
  .mission-diagram {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .diagram-svg-lines {
    display: none;
  }
  .diagram-hub::after {
    display: none;
  }
  .diagram-hub {
    position: static;
    transform: none;
    order: -1;
    margin-bottom: 0.25rem;
  }
  .diagram-node {
    position: static;
    transform: none;
    width: 100%;
    max-width: 340px;
  }
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}
.mission-accolades {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.accolade-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.accolade-card {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.accolade-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.accolade-card-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.accolade-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

.accolade-caption {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .accolade-cards {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   BUTTON COMPONENTS
   ========================================== */
/* Base Button Structure */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button (For Light Backgrounds) */
.btn-primary {
  background-color: var(--brand-accent);
  color: var(--bg-alt) !important;
  border: 2px solid var(--brand-accent);
}

.btn-primary:hover {
  background-color: var(--brand-highlight);
  color: var(--text-dark) !important;
  border-color: var(--brand-highlight);
}

/* Secondary Button (For Dark Backgrounds) */
.btn-secondary {
  background-color: transparent;
  color: var(--bg-main) !important;
  border: 2px solid var(--bg-main);
}

.btn-secondary:hover {
  background-color: var(--bg-main);
  color: var(--brand-primary) !important;
  border-color: var(--bg-main);
}

/* Outline Button (For Light Backgrounds) */
.btn-outline {
  background-color: transparent;
  color: var(--brand-primary) !important;
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background-color: var(--brand-primary);
  color: #fff !important;
}

/* _fluent-forms.scss */
.fluentform .ff-el-form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  padding: 0.75rem 1rem;
  width: 100%;
}
.fluentform .ff-el-form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 1px var(--brand-primary);
  outline: none;
}
.fluentform .ff-btn-submit {
  background-color: var(--brand-primary);
  color: var(--bg-alt);
  border-radius: 4px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.fluentform .ff-btn-submit:hover {
  background-color: var(--brand-secondary);
}

.band-breadcrumb {
  background: var(--bg-main);
  padding: 8px 0 12px;
  position: relative;
}
.band-breadcrumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.page-breadcrumb {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.page-breadcrumb a {
  color: var(--brand-primary);
  text-decoration: none;
}
.page-breadcrumb a:hover {
  text-decoration: underline;
}
.page-breadcrumb .sep {
  margin: 0 0.4rem;
  opacity: 0.45;
}

.band-page-hero {
  background: var(--bg-alt);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.band-page-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 180, 225, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 0.75rem;
}

.page-hero-headline {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-svg .ph-travel-dot,
  .page-hero-svg .ph-progress-line {
    display: none;
  }
}
.band-page-hero--photo {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 460px;
  padding: 4.5rem 0;
}
.band-page-hero--photo::after {
  content: none;
}
.band-page-hero--photo .page-hero-inner {
  display: block;
}
.band-page-hero--photo .page-hero-content {
  max-width: 620px;
}

.band-page-hero--photo-right .page-hero-content {
  margin-left: auto;
}

@media (max-width: 900px) {
  .band-page-hero--photo {
    min-height: 0;
    padding: 3rem 0;
  }
}
@media (max-width: 960px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-visual {
    display: none;
  }
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-headings);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 0;
}

.band-how-it-works {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
  padding: var(--space-xl) 0;
}
.band-how-it-works .section-eyebrow {
  color: #FF9B0A;
}
.band-how-it-works .section-heading,
.band-how-it-works .section-intro {
  color: #fff;
}
.band-how-it-works .process-step-number {
  color: #fff;
  opacity: 0.12;
}
.band-how-it-works .process-step h3 {
  color: #fff;
}
.band-how-it-works .process-step p {
  color: rgba(255, 255, 255, 0.65);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.process-step {
  position: relative;
}

.process-step-number {
  font-family: var(--font-headings);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--brand-secondary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.process-step h3 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

.band-specialty-areas {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.specialty-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.specialty-area-card {
  background: var(--bg-main);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1.25rem 1.375rem;
  border-left: 8px solid transparent;
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.specialty-area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}
.specialty-area-card--sky {
  border-left-color: var(--brand-secondary);
}
.specialty-area-card--primary {
  border-left-color: var(--brand-primary);
}
.specialty-area-card--green {
  border-left-color: var(--brand-green);
}
.specialty-area-card--amber {
  border-left-color: var(--brand-highlight);
}
.specialty-area-card--flame {
  border-left-color: var(--brand-accent);
}

.specialty-area-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}
.specialty-area-card:hover .specialty-area-title {
  color: var(--brand-primary);
}

.specialty-area-conditions {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.band-faq {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.band-faq .container {
  max-width: 840px;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: 8px;
  margin-bottom: 0.625rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  user-select: none;
  transition: color 0.18s ease;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question:hover {
  color: var(--brand-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-main);
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-primary);
  color: #fff;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}
.faq-answer p {
  margin: 0;
}

.dmepos-notice {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.dmepos-notice .dmepos-accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.82rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.dmepos-notice .dmepos-accordion summary::-webkit-details-marker {
  display: none;
}
.dmepos-notice .dmepos-accordion summary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-top: -3px;
}
.dmepos-notice .dmepos-accordion[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.dmepos-notice .dmepos-accordion-body {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light, #e5e7eb);
}
.dmepos-notice strong {
  display: block;
  font-weight: 600;
  color: var(--text-body);
  font-size: 0.82rem;
}
.dmepos-notice .dmepos-section-heading {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.dmepos-notice p {
  margin: 0.5rem 0 0;
}
.dmepos-notice ol {
  margin: 0.75rem 0 0;
  padding-left: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.band-page-hero--compact {
  padding: 2.5rem 0 3rem;
}
.band-page-hero--compact .contact-hero {
  max-width: 620px;
}
.band-page-hero--compact .contact-hero .page-hero-sub {
  margin-bottom: 0;
}

.band-contact-routing {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.contact-routing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-routing-card {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-color);
  border-top: 8px solid transparent;
  display: flex;
  flex-direction: column;
}
.contact-routing-card--patients {
  border-top-color: var(--brand-secondary);
}
.contact-routing-card--providers {
  border-top-color: var(--brand-primary);
}
.contact-routing-card--partners {
  border-top-color: var(--brand-accent);
}

.contact-routing-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand-primary);
}
.contact-routing-icon svg {
  width: 22px;
  height: 22px;
}

.contact-routing-heading {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}

.contact-routing-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.contact-routing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
}
.contact-routing-actions .btn {
  align-self: stretch;
  text-align: center;
}

.contact-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-routing-alt {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  padding: 0.25rem 0;
}
.contact-routing-alt:hover {
  text-decoration: underline;
}

.contact-routing-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.band-contact-info {
  background: var(--bg-main);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-color);
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-info-icon {
  color: var(--brand-secondary);
}
.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info-value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.45;
}
.contact-info-value[href]:hover {
  color: var(--brand-primary);
}

@media (max-width: 960px) {
  .contact-routing-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .contact-info-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.band-about-340b {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.about-340b-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.about-340b-content p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-340b-content p:last-child {
  margin-bottom: 0;
}

.about-340b-callout {
  background: var(--bg-main);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  border-top: 8px solid var(--brand-primary);
  padding: 1.75rem 1.5rem;
}

.callout-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.callout-agency {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.callout-abbr {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.callout-body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.callout-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}
.callout-link:hover {
  text-decoration: underline;
}

.band-entity-types {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.entity-type-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.entity-type-item {
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  border-left: 8px solid var(--brand-secondary);
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.entity-type-abbr {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

.entity-type-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.band-hiv-services {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.hiv-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.hiv-services-copy p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.hiv-services-copy p:last-child {
  margin-bottom: 0;
}

.hiv-services-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.hiv-feature {
  background: var(--bg-main);
  border-radius: 8px;
  padding: 1.125rem 1rem;
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--brand-secondary);
}

.hiv-feature-label {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.hiv-feature p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .about-340b-inner,
  .hiv-services-inner {
    grid-template-columns: 1fr;
  }
  .entity-type-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .entity-type-list {
    grid-template-columns: 1fr;
  }
  .hiv-services-features {
    grid-template-columns: 1fr;
  }
}
.band-referral-form {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}
.band-referral-form--alt {
  background: var(--bg-main);
}

.jotform-embed {
  margin-top: 2rem;
}
.jotform-embed iframe {
  width: 100% !important;
  border: none !important;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(26, 45, 71, 0.07);
}

.jotform-placeholder {
  margin-top: 2rem;
  background: var(--bg-main);
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.jotform-placeholder-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--brand-secondary);
  opacity: 0.55;
}

.jotform-placeholder h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}

.jotform-placeholder p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 1.5rem;
}

.jotform-placeholder-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.jotform-placeholder-dev-note {
  margin-top: 1.5rem !important;
  font-size: 0.72rem !important;
  opacity: 0.5;
  font-family: monospace !important;
}
.jotform-placeholder-dev-note code {
  font-size: inherit;
}

.referral-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.referral-external-trigger {
  gap: 0.5rem;
}

.referral-external-icon {
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .referral-path-grid {
    grid-template-columns: 1fr;
  }
}
.band-provider-survey {
  background: var(--bg-main);
  padding: 0 0 var(--space-xl);
}

.band-provider-survey .container {
  max-width: 840px;
}

.survey-accordion {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.survey-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.survey-accordion-trigger::-webkit-details-marker {
  display: none;
}

.survey-accordion-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-main);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.survey-accordion-icon svg {
  width: 20px;
  height: 20px;
}

.survey-accordion-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.survey-accordion-text strong {
  font-family: var(--font-headings);
  font-size: 1rem;
  color: var(--text-dark);
}
.survey-accordion-text span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.survey-accordion-chevron {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.survey-accordion[open] .survey-accordion-chevron {
  transform: rotate(-135deg);
}

.survey-accordion-body {
  padding: 0 1.5rem 1.75rem;
}
.survey-accordion-body .jotform-embed {
  margin-top: 0;
}

.band-cta-strip {
  background: linear-gradient(150deg, #1269E0 0%, #0553C9 100%);
  padding: var(--space-lg) 0;
  text-align: center;
}

.band-cta-strip .container {
  max-width: 680px;
}

.cta-strip-heading {
  font-family: var(--font-headings);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.875rem;
}

.cta-strip-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--brand-primary) !important;
  border: 2px solid #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff !important;
}

.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--brand-primary) !important;
  border-color: #fff;
}

@media (max-width: 960px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .specialty-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .specialty-area-grid {
    grid-template-columns: 1fr;
  }
}
.band-page-hero--compact .page-hero-actions {
  margin-top: 1.75rem;
}

.band-ds-conditions {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.condition-card {
  background: var(--bg-main);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border-left: 8px solid var(--brand-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.condition-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.4rem;
}

.condition-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.band-ds-support {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.ds-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ds-support-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18, 105, 224, 0.11) 0%, rgba(5, 83, 201, 0.05) 100%);
  border: 1px solid rgba(18, 105, 224, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1.125rem;
}
.ds-support-icon svg {
  width: 26px;
  height: 26px;
}
.ds-support-icon svg > path:first-child,
.ds-support-icon svg > circle:first-child,
.ds-support-icon svg > rect:first-child {
  fill: rgba(18, 105, 224, 0.1);
}

.ds-support-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.4rem;
}

.ds-support-desc {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.band-ds-medications {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.medications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.medication-card {
  background: var(--bg-main);
  border-radius: 8px;
  padding: 1.25rem;
  border-top: 3px solid var(--border-light, #e5e7eb);
}
.medication-card--linked {
  border-top-color: var(--brand-primary);
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.medication-card--linked:hover {
  box-shadow: 0 6px 20px rgba(18, 105, 224, 0.15);
  transform: translateY(-2px);
}
.medication-card--linked:hover .medication-brand {
  color: var(--brand-primary);
}
.medication-card--linked:hover .med-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.medication-brand {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
  transition: color 0.15s;
}

.medication-generic {
  font-size: 0.8125rem;
  color: var(--text-muted, #6b7280);
  font-style: italic;
  margin: 0 0 0.6rem;
}

.medication-indication {
  display: block;
  width: fit-content;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

.medications-note {
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted, #6b7280);
}
.medications-note a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.medications-subheading {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 2.25rem 0 0;
}
.medications-subheading + .medications-grid {
  margin-top: 0.875rem;
}
.medications-subheading--secondary {
  color: var(--text-muted, #6b7280);
  margin-top: 2rem;
}

.med-route {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.225rem 0.6rem 0.225rem 0.45rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.med-route svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.med-route--oral {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.3);
}
.med-route--injection {
  color: #d97706;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.3);
}
.med-route--infusion {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.med-card-arrow {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--brand-primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.condition-meds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.875rem;
}

.condition-med-tag {
  display: inline-block;
  padding: 0.175rem 0.5rem;
  background: rgba(18, 105, 224, 0.06);
  border: 1px solid rgba(18, 105, 224, 0.2);
  border-radius: 100px;
  font-size: 0.675rem;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.02em;
}
.condition-med-tag--linked {
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.condition-med-tag--linked:hover {
  background: rgba(18, 105, 224, 0.14);
  border-color: rgba(18, 105, 224, 0.45);
}

.band-ds-illustration {
  padding: 2.75rem 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(18, 105, 224, 0.08);
  border-bottom: 1px solid rgba(18, 105, 224, 0.08);
  overflow: hidden;
}

.ds-illustration-wrap {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.ds-illustration-figure {
  flex: 0 0 300px;
  margin: 0;
}
.ds-illustration-figure svg {
  display: block;
  width: 100%;
  height: auto;
}

.ds-illustration-caption {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 680px) {
  .ds-illustration-wrap {
    flex-direction: column;
    gap: 1.75rem;
  }
  .ds-illustration-figure {
    flex: none;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
@keyframes derm-cell-pulse {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}
@keyframes derm-line-flow {
  from {
    stroke-dashoffset: 14;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.derm-cell {
  animation: derm-cell-pulse 3.2s ease-in-out infinite;
}
.derm-cell--1 {
  animation-delay: 0s;
}
.derm-cell--2 {
  animation-delay: 0.45s;
}
.derm-cell--3 {
  animation-delay: 0.9s;
}
.derm-cell--4 {
  animation-delay: 1.35s;
}
.derm-cell--5 {
  animation-delay: 1.8s;
}
.derm-cell--6 {
  animation-delay: 2.25s;
}

.derm-line {
  animation: derm-line-flow 2s linear infinite;
}
.derm-line--2 {
  animation-delay: 0.33s;
}
.derm-line--3 {
  animation-delay: 0.67s;
}
.derm-line--4 {
  animation-delay: 1s;
}
.derm-line--5 {
  animation-delay: 1.33s;
}
.derm-line--6 {
  animation-delay: 1.67s;
}

@media (prefers-reduced-motion: reduce) {
  .derm-cell,
  .derm-line {
    animation: none;
  }
}
.band-ds-illustration--gi {
  position: relative;
  height: 160px;
  padding: 0;
  background: var(--bg-alt);
  border-top: none;
  border-bottom: none;
}

.gi-wave-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes gi-wave-sway-1 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-55px);
  }
}
@keyframes gi-wave-sway-2 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
}
@keyframes gi-wave-sway-3 {
  0%, 100% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(45px);
  }
}
@keyframes gi-wave-sway-4 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
}
.gi-wave-1 {
  fill: none;
  animation: gi-wave-sway-1 8s ease-in-out infinite;
}

.gi-wave-2 {
  fill: none;
  animation: gi-wave-sway-2 10s ease-in-out infinite;
}

.gi-wave-3 {
  fill: none;
  animation: gi-wave-sway-3 6.5s ease-in-out infinite;
}

.gi-wave-4 {
  fill: none;
  animation: gi-wave-sway-4 11s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .gi-wave-1,
  .gi-wave-2,
  .gi-wave-3,
  .gi-wave-4 {
    animation: none;
  }
}
.band-ds-illustration--neuro {
  position: relative;
  height: 160px;
  padding: 0;
}

.neuro-fiber-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes neuro-signal-ltr {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 1908;
  }
}
@keyframes neuro-signal-rtl {
  from {
    stroke-dashoffset: 1908;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.neuro-sig-1 {
  animation: neuro-signal-ltr 6s linear infinite;
}

.neuro-sig-2 {
  animation: neuro-signal-rtl 7.5s linear infinite 1.5s;
}

.neuro-sig-3 {
  animation: neuro-signal-ltr 5.5s linear infinite 3s;
}

.neuro-sig-4 {
  animation: neuro-signal-rtl 8s linear infinite 0.5s;
}

.neuro-sig-5 {
  animation: neuro-signal-ltr 6.5s linear infinite 4s;
}

@media (prefers-reduced-motion: reduce) {
  .neuro-sig-1,
  .neuro-sig-2,
  .neuro-sig-3,
  .neuro-sig-4,
  .neuro-sig-5 {
    animation: none;
    opacity: 0;
  }
}
.onco-hero-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.onco-hero-text {
  flex: 0 0 58%;
}

.onco-hero-visual {
  flex: 1;
  align-self: stretch;
  position: relative;
  min-height: 260px;
}
@media (max-width: 768px) {
  .onco-hero-visual {
    display: none;
  }
}

.onco-field-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes onco-pulse {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
@keyframes onco-ring-cw {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -188;
  }
}
@keyframes onco-ring-ccw {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 163;
  }
}
@keyframes onco-ring-cw2 {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -176;
  }
}
.onco-ring-a {
  animation: onco-ring-cw 12s linear infinite;
}

.onco-ring-b {
  animation: onco-ring-ccw 9s linear infinite;
}

.onco-ring-c {
  animation: onco-ring-cw2 15s linear infinite;
}

.onco-p-1 {
  animation: onco-pulse 3s ease-in-out infinite 0s;
}

.onco-p-2 {
  animation: onco-pulse 3.8s ease-in-out infinite 0.6s;
}

.onco-p-3 {
  animation: onco-pulse 2.6s ease-in-out infinite 1.2s;
}

.onco-p-4 {
  animation: onco-pulse 4.2s ease-in-out infinite 0.3s;
}

.onco-p-5 {
  animation: onco-pulse 3.3s ease-in-out infinite 1.8s;
}

.onco-p-6 {
  animation: onco-pulse 2.9s ease-in-out infinite 0.5s;
}

.onco-p-7 {
  animation: onco-pulse 3.6s ease-in-out infinite 2.1s;
}

.onco-p-8 {
  animation: onco-pulse 4s ease-in-out infinite 1.5s;
}

.onco-p-9 {
  animation: onco-pulse 2.7s ease-in-out infinite 0.9s;
}

.onco-p-10 {
  animation: onco-pulse 3.5s ease-in-out infinite 2.7s;
}

.onco-p-11 {
  animation: onco-pulse 3.1s ease-in-out infinite 1.4s;
}

.onco-p-12 {
  animation: onco-pulse 4.4s ease-in-out infinite 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .onco-p-1, .onco-p-2, .onco-p-3, .onco-p-4,
  .onco-p-5, .onco-p-6, .onco-p-7, .onco-p-8,
  .onco-p-9, .onco-p-10, .onco-p-11, .onco-p-12,
  .onco-ring-a, .onco-ring-b, .onco-ring-c {
    animation: none;
  }
}
.band-ds-illustration--dna {
  height: 160px;
  padding: 0;
  display: flex;
  align-items: center;
  border-top: none;
  border-bottom: none;
  overflow: visible;
}

.dna-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2.5rem;
}

.nucleobase {
  display: inline-block;
  position: relative;
  isolation: isolate;
  width: 14px;
  height: 14px;
}
.nucleobase::before, .nucleobase::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.nucleobase::before {
  background-color: #7ab2ed;
  animation: dna-before 3.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
.nucleobase::after {
  background-color: #6bbea6;
  animation: dna-after 3.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
.nucleobase:nth-child(1)::before, .nucleobase:nth-child(1)::after {
  animation-delay: -0.3996s;
}
.nucleobase:nth-child(2)::before, .nucleobase:nth-child(2)::after {
  animation-delay: -0.7992s;
}
.nucleobase:nth-child(3)::before, .nucleobase:nth-child(3)::after {
  animation-delay: -1.1988s;
}
.nucleobase:nth-child(4)::before, .nucleobase:nth-child(4)::after {
  animation-delay: -1.5984s;
}
.nucleobase:nth-child(5)::before, .nucleobase:nth-child(5)::after {
  animation-delay: -1.998s;
}
.nucleobase:nth-child(6)::before, .nucleobase:nth-child(6)::after {
  animation-delay: -2.3976s;
}
.nucleobase:nth-child(7)::before, .nucleobase:nth-child(7)::after {
  animation-delay: -2.7972s;
}
.nucleobase:nth-child(8)::before, .nucleobase:nth-child(8)::after {
  animation-delay: -3.1968s;
}
.nucleobase:nth-child(9)::before, .nucleobase:nth-child(9)::after {
  animation-delay: -3.5964s;
}
.nucleobase:nth-child(10)::before, .nucleobase:nth-child(10)::after {
  animation-delay: -3.996s;
}
.nucleobase:nth-child(11)::before, .nucleobase:nth-child(11)::after {
  animation-delay: -4.3956s;
}
.nucleobase:nth-child(12)::before, .nucleobase:nth-child(12)::after {
  animation-delay: -4.7952s;
}
.nucleobase:nth-child(13)::before, .nucleobase:nth-child(13)::after {
  animation-delay: -5.1948s;
}
.nucleobase:nth-child(14)::before, .nucleobase:nth-child(14)::after {
  animation-delay: -5.5944s;
}
.nucleobase:nth-child(15)::before, .nucleobase:nth-child(15)::after {
  animation-delay: -5.994s;
}
.nucleobase:nth-child(16)::before, .nucleobase:nth-child(16)::after {
  animation-delay: -6.3936s;
}
.nucleobase:nth-child(17)::before, .nucleobase:nth-child(17)::after {
  animation-delay: -6.7932s;
}
.nucleobase:nth-child(18)::before, .nucleobase:nth-child(18)::after {
  animation-delay: -7.1928s;
}
.nucleobase:nth-child(19)::before, .nucleobase:nth-child(19)::after {
  animation-delay: -7.5924s;
}
.nucleobase:nth-child(20)::before, .nucleobase:nth-child(20)::after {
  animation-delay: -7.992s;
}
.nucleobase:nth-child(21)::before, .nucleobase:nth-child(21)::after {
  animation-delay: -8.3916s;
}
.nucleobase:nth-child(22)::before, .nucleobase:nth-child(22)::after {
  animation-delay: -8.7912s;
}
.nucleobase:nth-child(23)::before, .nucleobase:nth-child(23)::after {
  animation-delay: -9.1908s;
}
.nucleobase:nth-child(24)::before, .nucleobase:nth-child(24)::after {
  animation-delay: -9.5904s;
}
.nucleobase:nth-child(25)::before, .nucleobase:nth-child(25)::after {
  animation-delay: -9.99s;
}
.nucleobase:nth-child(26)::before, .nucleobase:nth-child(26)::after {
  animation-delay: -10.3896s;
}
.nucleobase:nth-child(27)::before, .nucleobase:nth-child(27)::after {
  animation-delay: -10.7892s;
}
.nucleobase:nth-child(28)::before, .nucleobase:nth-child(28)::after {
  animation-delay: -11.1888s;
}
.nucleobase:nth-child(29)::before, .nucleobase:nth-child(29)::after {
  animation-delay: -11.5884s;
}
.nucleobase:nth-child(30)::before, .nucleobase:nth-child(30)::after {
  animation-delay: -11.988s;
}
.nucleobase:nth-child(31)::before, .nucleobase:nth-child(31)::after {
  animation-delay: -12.3876s;
}
.nucleobase:nth-child(32)::before, .nucleobase:nth-child(32)::after {
  animation-delay: -12.7872s;
}
.nucleobase:nth-child(33)::before, .nucleobase:nth-child(33)::after {
  animation-delay: -13.1868s;
}
.nucleobase:nth-child(34)::before, .nucleobase:nth-child(34)::after {
  animation-delay: -13.5864s;
}
.nucleobase:nth-child(35)::before, .nucleobase:nth-child(35)::after {
  animation-delay: -13.986s;
}
.nucleobase:nth-child(36)::before, .nucleobase:nth-child(36)::after {
  animation-delay: -14.3856s;
}

@keyframes dna-before {
  0% {
    top: -28px;
    z-index: 1;
  }
  25% {
    transform: scale(1.2);
    z-index: 1;
  }
  50% {
    top: 28px;
    z-index: -1;
  }
  75% {
    transform: scale(0.8);
    z-index: -1;
  }
  100% {
    top: -28px;
    z-index: -1;
  }
}
@keyframes dna-after {
  0% {
    top: 28px;
    z-index: -1;
  }
  25% {
    transform: scale(0.8);
    z-index: -1;
  }
  50% {
    top: -28px;
    z-index: 1;
  }
  75% {
    transform: scale(1.2);
    z-index: 1;
  }
  100% {
    top: 28px;
    z-index: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nucleobase::before {
    animation: none;
    top: -21px;
    opacity: 0.55;
  }
  .nucleobase::after {
    animation: none;
    top: 21px;
    opacity: 0.55;
  }
}
.rheum-hero-layout {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rheum-hero-text {
  flex: 2;
  min-width: 0;
}

.rheum-hero-visual {
  flex: 1;
  align-self: stretch;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rheum-hero-visual {
    display: none;
  }
}

.rheum-cont {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rheum-ab {
  position: absolute;
  color: rgba(18, 105, 224, 0.42);
  animation: rheum-float 7s ease-in-out infinite;
}
.rheum-ab svg {
  display: block;
  width: 52px;
  height: 65px;
}

@keyframes rheum-float {
  0% {
    transform: rotate(var(--rot, 0deg)) translateY(-10px);
  }
  50% {
    transform: rotate(var(--rot, 0deg)) translateY(10px);
  }
  100% {
    transform: rotate(var(--rot, 0deg)) translateY(-10px);
  }
}
.rheum-ag {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.6);
}
.rheum-ag--free {
  transform: translate(-50%, -50%);
  animation: rheum-ag-pulse 3.4s ease-in-out infinite;
}
.rheum-ag--bound {
  animation: rheum-ag-capture 4s ease-in-out infinite;
}
.rheum-ag--left {
  top: 8px;
  left: 4px;
}
.rheum-ag--right {
  top: 8px;
  right: 4px;
}

@keyframes rheum-ag-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0.9;
  }
}
@keyframes rheum-ag-capture {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rheum-ab {
    animation: none;
    transform: rotate(var(--rot, 0deg));
  }
  .rheum-ag {
    animation: none;
  }
}
.band-dual-cta {
  padding: 0;
}

.dual-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dual-cta-panel {
  padding: 3.5rem 3rem;
}
.dual-cta-panel--patients {
  background: linear-gradient(150deg, #1269E0 0%, #0553C9 100%);
}
.dual-cta-panel--providers {
  background: #0d1f4e;
}

.dual-cta-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.75rem;
}

.dual-cta-heading {
  font-family: var(--font-headings);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.dual-cta-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  max-width: 380px;
}

@media (max-width: 1100px) {
  .ds-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .medications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  .medications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dual-cta-inner {
    grid-template-columns: 1fr;
  }
  .dual-cta-panel {
    padding: 2.5rem 2rem;
  }
  .dual-cta-sub {
    max-width: none;
  }
}
@media (max-width: 520px) {
  .medications-grid {
    grid-template-columns: 1fr;
  }
  .ds-support-grid {
    grid-template-columns: 1fr;
  }
}
.band-referral-steps {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.referral-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.referral-step strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.referral-step p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}
.referral-step a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.referral-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.band-referral-forms {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.referral-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.referral-form-card {
  background: var(--bg-alt);
  border-radius: 10px;
  border-top: 8px solid var(--brand-secondary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.referral-form-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}
.referral-form-card--amber {
  border-top-color: #D97706;
}
.referral-form-card--green {
  border-top-color: var(--brand-green);
}
.referral-form-card--sky {
  border-top-color: #0EA5E9;
}
.referral-form-card--flame {
  border-top-color: #EA580C;
}
.referral-form-card--primary {
  border-top-color: var(--brand-primary);
}

.referral-form-card-body {
  padding: 1.25rem 1.25rem 1rem;
  flex: 1;
}

.referral-form-specialty {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 0.35rem;
}

.referral-form-conditions {
  font-size: 0.8125rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.55;
  margin: 0;
}

.referral-form-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
  cursor: pointer;
}
.referral-form-download:hover {
  background: var(--brand-primary-dark, #0441a3);
  color: #fff;
}
.referral-form-download svg {
  flex-shrink: 0;
}
.referral-form-download--pending {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: default;
}
.referral-form-download--pending:hover {
  background: #e5e7eb;
  color: #9ca3af;
}

.band-required-docs {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.required-docs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.required-docs-inner p {
  color: var(--text-body);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.required-docs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  align-content: start;
  margin-top: 2.75rem;
}
.required-docs-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}
.required-docs-list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-secondary);
  flex-shrink: 0;
}

.band-fax-strip {
  background: var(--bg-main);
  border-top: 1px solid var(--border-light, #e5e7eb);
  padding: 2.5rem 0;
}

.fax-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.fax-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 2.5rem;
  flex: 1;
  min-width: 160px;
}
.fax-strip-item--primary .fax-strip-value {
  color: var(--brand-primary);
  font-size: 1.2rem;
}

.fax-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #6b7280);
}

.fax-strip-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}
.fax-strip-value:is(a):hover {
  color: var(--brand-primary);
}

.fax-strip-divider {
  width: 1px;
  height: 3rem;
  background: var(--border-light, #e5e7eb);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .referral-form-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .referral-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .referral-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .required-docs-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .required-docs-list {
    margin-top: 0;
  }
  .fax-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .fax-strip-item {
    padding: 0;
  }
  .fax-strip-divider {
    display: none;
  }
}
@media (max-width: 520px) {
  .referral-form-grid {
    grid-template-columns: 1fr;
  }
  .required-docs-list {
    grid-template-columns: 1fr;
  }
}
.band-mission {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.mission-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.mission-mark {
  font-family: var(--font-headings);
  font-size: 6rem;
  line-height: 0.75;
  color: var(--brand-primary);
  opacity: 0.25;
  flex-shrink: 0;
  user-select: none;
}

.mission-statement {
  font-family: var(--font-headings);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}

.band-values {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  border-top: 8px solid transparent;
}
.value-item:nth-child(1) {
  border-top-color: var(--brand-primary);
}
.value-item:nth-child(2) {
  border-top-color: var(--brand-secondary);
}
.value-item:nth-child(3) {
  border-top-color: var(--brand-green);
}
.value-item:nth-child(4) {
  border-top-color: #D97706;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(18, 105, 224, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.band-team {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-grid--placeholders .team-card {
  opacity: 0.7;
}

.team-card {
  background: var(--bg-main);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.team-card--placeholder {
  border: 2px dashed #d1d5db;
  box-shadow: none;
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e5e7eb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f1f5f9;
}

.team-card-body {
  padding: 1.25rem;
}

.team-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.team-card-name--ph {
  color: #9ca3af;
}

.team-card-creds {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-primary);
}

.team-card-title {
  font-size: 0.875rem;
  color: var(--text-muted, #6b7280);
  margin: 0 0 0.75rem;
}

.team-card-bio {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}
.team-card-bio--ph {
  color: #9ca3af;
  font-style: italic;
}

.about-dev-note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: #d97706;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  padding: 0.65rem 1rem;
}

.band-accreditations {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 1.5rem;
}

.accreditation-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accreditation-card-icon {
  display: flex;
  flex-shrink: 0;
}

.accreditation-card-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

.accreditation-note {
  font-size: 0.8125rem;
  color: var(--text-muted, #6b7280);
  margin: 0;
}

@media (max-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accreditation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .mission-mark {
    display: none;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .accreditation-list {
    grid-template-columns: 1fr;
  }
}
.policy-effective {
  font-size: 0.875rem;
  color: var(--text-muted, #6b7280);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.band-policy {
  background: var(--bg-main);
  padding: var(--space-xl) 0 4rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 120px;
}

.policy-toc-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #6b7280);
  margin: 0 0 0.75rem;
}

.policy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--border-light, #e5e7eb);
}
.policy-toc-list li {
  padding: 0;
}
.policy-toc-list a {
  display: block;
  padding: 0.35rem 0 0.35rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s ease, border-color 0.15s ease;
  border-left: 2px solid transparent;
  margin-left: -2px;
}
.policy-toc-list a:hover {
  color: var(--brand-primary);
  border-left-color: var(--brand-primary);
}

.policy-body {
  max-width: 740px;
}

.policy-section {
  margin-bottom: 3rem;
}
.policy-section:last-child {
  margin-bottom: 0;
}
.policy-section h2 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light, #e5e7eb);
}
.policy-section h3 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}
.policy-section p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0 0 1rem;
}
.policy-section p:last-child {
  margin-bottom: 0;
}
.policy-section ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}
.policy-section ul li {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.policy-section a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.policy-section a:hover {
  text-decoration: none;
}

.policy-contact {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 2;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  display: block;
}
.policy-contact a {
  color: var(--brand-primary);
}

@media (max-width: 860px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .policy-toc {
    position: static;
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .policy-section h2 {
    font-size: 1.15rem;
  }
}
.band-service-states {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.service-states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 1.5rem;
}

.service-state-pill {
  background: #fff;
  border: 1px solid rgba(18, 105, 224, 0.22);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}
.service-state-pill--filled {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.service-states-note {
  font-size: 0.875rem;
  color: var(--text-muted, #6b7280);
  margin: 0;
}
.service-states-note a {
  color: var(--brand-primary);
}

.band-service-map {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
  padding: var(--space-xl) 0;
}
.band-service-map .section-eyebrow {
  color: #FF9B0A;
}
.band-service-map .section-heading,
.band-service-map .section-intro {
  color: #fff;
}
.band-service-map .service-states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2rem 0 1.5rem;
}
.band-service-map .service-state-pill {
  text-align: center;
}
.band-service-map .service-state-pill--filled {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.band-service-map .service-states-note {
  color: rgba(255, 255, 255, 0.6);
}
.band-service-map .service-states-note a {
  color: #FF9B0A;
}

.accord-states-map {
  width: 100%;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0 1.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.accord-states-map .leaflet-container {
  background: var(--bg-main) !important;
  height: 100%;
  border-radius: 12px;
}

.leaflet-tooltip.accord-map-tooltip {
  background: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.3rem 0.7rem;
}
.leaflet-tooltip.accord-map-tooltip::before {
  border-top-color: #fff;
}

@media (max-width: 768px) {
  .band-service-map .service-states-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .accord-states-map {
    height: 260px;
  }
}
.band-patient-form {
  padding: 3rem 0 4.5rem;
  background: var(--bg-main);
}
.band-patient-form .container {
  max-width: 860px;
}

.patient-form-embed iframe,
.patient-form-embed [data-jotform-widget] {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

.patient-form-placeholder {
  background: var(--bg-alt);
  border: 1.5px dashed rgba(55, 105, 164, 0.3);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
}
.patient-form-placeholder p {
  color: var(--text-body);
  font-size: 1rem;
  margin: 0;
}
.patient-form-placeholder p a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.patient-form-placeholder p a:hover {
  text-decoration: underline;
}

.band-patient-resources {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.patient-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.patient-resource-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  border-radius: 10px;
  border-top: 8px solid transparent;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.patient-resource-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
  text-decoration: none;
}
.patient-resource-card--blue {
  border-top-color: var(--brand-primary);
}
.patient-resource-card--green {
  border-top-color: var(--brand-green);
}
.patient-resource-card--sky {
  border-top-color: var(--brand-secondary);
}

.patient-resource-icon {
  line-height: 0;
}
.patient-resource-icon--blue {
  color: var(--brand-primary);
}
.patient-resource-icon--green {
  color: var(--brand-green);
}
.patient-resource-icon--sky {
  color: var(--brand-secondary);
}

.patient-resource-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.patient-resource-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.patient-resource-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.patient-resource-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-primary);
}
.patient-resource-card--green .patient-resource-cta {
  color: var(--brand-green);
}
.patient-resource-card--sky .patient-resource-cta {
  color: var(--brand-secondary);
}

@media (max-width: 900px) {
  .patient-resources-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
@media (max-width: 600px) {
  .patient-resources-grid {
    max-width: 100%;
  }
  .band-patient-form {
    padding: 2rem 0 3rem;
  }
}
.band-drug-hero {
  background: var(--bg-main);
  padding: 2.5rem 0 3rem;
}

.drug-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.drug-hero-content {
  flex: 1 1 0;
  min-width: 0;
}

.drug-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 0.75rem;
}

.drug-hero-headline {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.drug-hero-roa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--brand-accent);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.drug-hero-roa svg {
  flex-shrink: 0;
}

.drug-hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 600px;
  margin: 0;
}

.drug-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.drug-glance-card {
  flex: 0 0 272px;
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(10, 28, 58, 0.22);
}

.drug-glance-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-highlight);
  margin-bottom: 1.1rem;
}

.drug-glance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drug-glance-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.drug-glance-item:first-child {
  padding-top: 0;
}
.drug-glance-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.drug-glance-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.drug-glance-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.drug-card-cite {
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.72rem;
  color: var(--brand-primary);
  opacity: 0.65;
}

.band-drug-reviewer {
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
}

.drug-reviewer-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-body);
}

.drug-reviewer-label {
  font-weight: 700;
  color: var(--text-dark);
}

.drug-reviewer-sep {
  color: rgba(0, 0, 0, 0.2);
}

.band-drug-indications {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.drug-indications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.drug-indications-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
.drug-indications-grid--1col {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.drug-indication-card {
  background: #fff;
  border-radius: 10px;
  border-left: 6px solid var(--brand-primary);
  padding: 1.5rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.drug-indication-card--gist {
  border-left-color: var(--brand-green);
}
.drug-indication-card--all {
  border-left-color: var(--brand-accent);
}
.drug-indication-card--rare {
  border-left-color: var(--brand-secondary);
}

.drug-indication-icon {
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
  line-height: 0;
}
.drug-indication-card--gist .drug-indication-icon {
  color: var(--brand-green);
}
.drug-indication-card--all .drug-indication-icon {
  color: var(--brand-accent);
}
.drug-indication-card--rare .drug-indication-icon {
  color: var(--brand-secondary);
}

.drug-indication-name {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.drug-indication-abbr {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-primary);
  margin-bottom: 0.65rem;
}
.drug-indication-card--gist .drug-indication-abbr {
  color: var(--brand-green);
}
.drug-indication-card--all .drug-indication-abbr {
  color: var(--brand-accent);
}
.drug-indication-card--rare .drug-indication-abbr {
  color: var(--brand-secondary);
}

.drug-indication-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 0.85rem;
}

.drug-indication-subs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.drug-indication-subs li {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-body);
  padding-left: 1.1rem;
  position: relative;
}
.drug-indication-subs li::before {
  content: "›";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--brand-primary);
}
.drug-indication-card--gist .drug-indication-subs li::before {
  color: var(--brand-green);
}
.drug-indication-card--all .drug-indication-subs li::before {
  color: var(--brand-accent);
}
.drug-indication-card--rare .drug-indication-subs li::before {
  color: var(--brand-secondary);
}

.band-drug-about {
  padding: var(--space-xl) 0;
  background: var(--bg-main);
}

.drug-about-layout--has-image {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: center;
}

.drug-about-figure {
  margin: 0;
}

.drug-about-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.drug-about-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.drug-about-body p:last-child {
  margin-bottom: 0;
}
.drug-about-body p a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-about-body p a:hover {
  text-decoration: underline;
}
.drug-about-body sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
  color: var(--brand-primary);
}

.drug-about-lead {
  font-size: 1.1rem !important;
  font-weight: 500;
  line-height: 1.78 !important;
  color: var(--text-dark) !important;
  border-left: 3px solid var(--brand-primary);
  padding-left: 1.1rem;
  margin-bottom: 1.5rem !important;
}

.band-drug-pa {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.drug-pa-layout {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.drug-pa-prose-col {
  flex: 2;
  min-width: 0;
}

.drug-pa-timeline-col {
  flex: 1;
}

.drug-pa-body {
  margin-bottom: 0;
}
.drug-pa-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.drug-pa-body p:last-child {
  margin-bottom: 0;
}
.drug-pa-body p a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-pa-body p a:hover {
  text-decoration: underline;
}
.drug-pa-body sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
  color: var(--brand-primary);
}

.drug-pa-timeline-wrap {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2rem 2rem;
  box-shadow: none;
}

.drug-pa-timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 1.75rem;
}

.drug-pa-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drug-pa-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.75rem;
}
.drug-pa-step:last-child {
  padding-bottom: 0;
}
.drug-pa-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(55, 105, 164, 0.35) 0%, rgba(55, 105, 164, 0.1) 100%);
  z-index: 0;
}

.drug-pa-step-text {
  display: flex;
  flex-direction: column;
  padding-top: 0.15rem;
}

.drug-pa-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(55, 105, 164, 0.32);
}
.drug-pa-step-circle--appeal {
  background: rgb(255, 255, 255);
  color: var(--brand-primary);
  box-shadow: none;
  border: 1.5px dashed var(--brand-primary);
}

.drug-pa-step-label {
  margin: 0 0 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.drug-pa-step-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-body);
}

.drug-pa-appeal-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-body);
}
.drug-pa-appeal-note strong {
  color: var(--text-dark);
}

.band-drug-cost {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.drug-cost-intro {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.drug-cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.drug-cost-card {
  background: var(--bg-alt);
  border-radius: 10px;
  border-top: 8px solid var(--brand-primary);
  padding: 1.5rem;
}
.drug-cost-card--green {
  border-top-color: var(--brand-green);
}
.drug-cost-card--amber {
  border-top-color: var(--brand-highlight);
}
.drug-cost-card--sky {
  border-top-color: var(--brand-secondary);
}

.drug-cost-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.3rem;
}
.drug-cost-card--green .drug-cost-type {
  color: var(--brand-green);
}
.drug-cost-card--amber .drug-cost-type {
  color: var(--brand-highlight);
}
.drug-cost-card--sky .drug-cost-type {
  color: var(--brand-secondary);
}

.drug-cost-program {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.drug-cost-amount {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
}
.drug-cost-card--green .drug-cost-amount {
  color: var(--brand-green);
}
.drug-cost-card--amber .drug-cost-amount {
  color: var(--brand-highlight);
}
.drug-cost-card--sky .drug-cost-amount {
  color: var(--brand-secondary);
}

.drug-cost-qualifier {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.drug-cost-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.drug-cost-footnote {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-body);
}
.drug-cost-footnote a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-cost-footnote a:hover {
  text-decoration: underline;
}

.band-drug-process {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
  padding: var(--space-xl) 0;
}
.band-drug-process .section-eyebrow {
  color: var(--brand-highlight);
}
.band-drug-process .section-heading {
  color: #fff;
}

.drug-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.drug-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.drug-process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-highlight);
  margin-bottom: 0.9rem;
  flex-shrink: 0;
}

.drug-process-label {
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.drug-process-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.band-drug-effects {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}

.drug-effects-intro {
  max-width: 740px;
  margin-bottom: 2rem;
}
.drug-effects-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 0.85rem;
}
.drug-effects-intro p:last-child {
  margin-bottom: 0;
}
.drug-effects-intro p a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-effects-intro p a:hover {
  text-decoration: underline;
}

.drug-effects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.drug-effects-group {
  --bullet-color: var(--brand-accent);
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.drug-effects-group--monitor {
  --bullet-color: var(--brand-primary);
}
.drug-effects-group--special {
  --bullet-color: var(--brand-green);
}

.drug-effects-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}
.drug-effects-tag--common {
  background: rgba(255, 88, 27, 0.1);
  color: var(--brand-accent);
}
.drug-effects-tag--monitor {
  background: rgba(55, 105, 164, 0.1);
  color: var(--brand-primary);
}
.drug-effects-tag--special {
  background: rgba(28, 144, 101, 0.1);
  color: var(--brand-green);
}

.drug-effects-group-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.drug-effect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.drug-effect-item {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-body);
  padding-left: 1.1rem;
  position: relative;
}
.drug-effect-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bullet-color);
}

.band-drug-related {
  padding: 2.5rem 0;
  background: var(--bg-main);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.drug-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.drug-related-card {
  display: block;
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 4px solid var(--brand-primary);
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.drug-related-card:hover {
  background: rgba(55, 105, 164, 0.06);
  border-left-color: var(--brand-accent);
  text-decoration: none;
}

.drug-related-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.drug-related-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.35;
}

.band-drug-references {
  padding: 1.75rem 0 2rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.drug-ref-accordion summary {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
}
.drug-ref-accordion summary::-webkit-details-marker {
  display: none;
}
.drug-ref-accordion summary::before {
  content: "▸";
  font-size: 0.7rem;
  color: var(--brand-primary);
  transition: transform 0.2s;
}
.drug-ref-accordion[open] summary::before {
  transform: rotate(90deg);
}

.drug-ref-list {
  margin-top: 1rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.drug-ref-list li {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-body);
}
.drug-ref-list li em {
  font-style: italic;
}
.drug-ref-list li a {
  color: var(--brand-primary);
  text-decoration: none;
  word-break: break-all;
}
.drug-ref-list li a:hover {
  text-decoration: underline;
}

.band-drug-fact-table {
  padding: var(--space-xl) 0;
  background: var(--bg-main);
}

.drug-fact-table-scroll {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.drug-fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--bg-main);
}
.drug-fact-table thead tr {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
}
.drug-fact-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.95rem 1.35rem;
  white-space: nowrap;
}
.drug-fact-table td {
  padding: 0.85rem 1.35rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.5;
  vertical-align: top;
}
.drug-fact-table tbody tr:nth-child(even) td {
  background: var(--bg-alt);
}
.drug-fact-table tbody tr:last-child td {
  border-bottom: none;
}
.drug-fact-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}
.drug-fact-table td:first-child sup {
  font-size: 0.65em;
  font-weight: 700;
  vertical-align: super;
  color: var(--brand-primary);
  margin-left: 0.1em;
}
.drug-fact-table--compare th:nth-child(2), .drug-fact-table--compare td:nth-child(2) {
  background: rgba(55, 105, 164, 0.07);
}
.drug-fact-table--compare td:nth-child(2) {
  font-weight: 600;
  color: var(--text-dark);
}
.drug-fact-table--compare th:nth-child(2) {
  position: relative;
}
.drug-fact-table--compare th:nth-child(2)::after {
  content: "Accord Dispensed";
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--brand-highlight);
  margin-top: 0.2rem;
}

@media (max-width: 960px) {
  .drug-hero-inner {
    flex-direction: column;
  }
  .drug-glance-card {
    flex: none;
    width: 100%;
    max-width: 480px;
  }
  .drug-indications-grid {
    grid-template-columns: 1fr;
  }
  .drug-cost-grid {
    grid-template-columns: 1fr;
  }
  .drug-effects-grid {
    grid-template-columns: 1fr;
  }
  .drug-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .drug-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drug-pa-layout {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .drug-pa-timeline-col {
    flex: none;
    width: 100%;
  }
  .drug-about-layout--has-image {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .drug-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .drug-related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .drug-process-steps {
    grid-template-columns: 1fr;
  }
  .drug-pa-timeline-wrap {
    padding: 1.5rem;
  }
}
.drug-hero-inner--hub .drug-hero-sub {
  max-width: 780px;
}

.drug-hero-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.drug-hero-route-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(55, 105, 164, 0.12);
  color: var(--brand-primary);
}
.drug-hero-route-badge--scig {
  background: rgba(28, 144, 101, 0.12);
  color: var(--brand-green);
}

.drug-indication-route {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  background: rgba(55, 105, 164, 0.1);
  color: var(--brand-primary);
  margin-top: 0.75rem;
}
.drug-indication-card--gist .drug-indication-route {
  background: rgba(28, 144, 101, 0.1);
  color: var(--brand-green);
}
.drug-indication-card--all .drug-indication-route {
  background: rgba(255, 88, 27, 0.1);
  color: var(--brand-accent);
}
.drug-indication-card--rare .drug-indication-route {
  background: rgba(65, 180, 225, 0.1);
  color: var(--brand-secondary);
}

.drug-indications-grid--3col > :last-child:nth-child(3n+1) {
  grid-column: 2;
}

.band-drug-comparison {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.drug-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.drug-comparison-card {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  border-top: 6px solid var(--brand-primary);
}
.drug-comparison-card--scig {
  border-top-color: var(--brand-green);
}

.drug-comparison-route-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(55, 105, 164, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.drug-comparison-route-badge--scig {
  color: var(--brand-green);
  background: rgba(28, 144, 101, 0.1);
}

.drug-comparison-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.drug-comparison-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.drug-comparison-meta-row {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.drug-comparison-meta-row strong {
  color: var(--text-dark);
  font-weight: 600;
  min-width: 72px;
  flex-shrink: 0;
}
.drug-comparison-meta-row span {
  color: var(--text-body);
  line-height: 1.45;
}

.drug-comparison-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  opacity: 0.55;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.drug-comparison-group-label--cons {
  margin-top: 1.1rem;
}

.drug-comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.drug-comparison-list li {
  font-size: 0.845rem;
  line-height: 1.5;
  color: var(--text-body);
  padding-left: 1.1rem;
  position: relative;
}
.drug-comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.drug-comparison-list--pros li::before {
  background: var(--brand-green);
}
.drug-comparison-list--cons li::before {
  background: rgba(0, 0, 0, 0.2);
}

.drug-comparison-note {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(55, 105, 164, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--brand-primary);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-body);
}
.drug-comparison-note a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-comparison-note a:hover {
  text-decoration: underline;
}

.drug-effects-route:not(:first-child) {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.drug-effects-route-heading {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.drug-effects-route-heading span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: rgba(55, 105, 164, 0.1);
  color: var(--brand-primary);
  vertical-align: middle;
}
.drug-effects-route-heading span.scig {
  background: rgba(28, 144, 101, 0.1);
  color: var(--brand-green);
}

.drug-effects-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.band-drug-working {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
}

.drug-working-intro {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.drug-working-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.drug-working-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--brand-primary);
}
.drug-working-card--pi {
  border-top-color: var(--brand-green);
}
.drug-working-card--acute {
  border-top-color: var(--brand-secondary);
}

.drug-working-condition {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.drug-working-card--pi .drug-working-condition {
  color: var(--brand-green);
}
.drug-working-card--acute .drug-working-condition {
  color: var(--brand-secondary);
}

.drug-working-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.drug-working-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

.drug-working-footnote {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
}
.drug-working-footnote a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-working-footnote a:hover {
  text-decoration: underline;
}

.band-drug-brands {
  background: var(--bg-main);
  padding: var(--space-xl) 0;
}

.drug-brand-intro {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.drug-brand-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.drug-brand-callout {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
  border-radius: 12px;
  padding: 1.75rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 28, 58, 0.16);
  display: flex;
  flex-direction: column;
}

.drug-brand-callout-route {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-highlight);
  margin-bottom: 0.65rem;
}

.drug-brand-callout-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.drug-brand-callout-mfr {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.drug-brand-callout-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  flex: 1;
}

.drug-brand-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drug-brand-accordion {
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.drug-brand-accordion summary {
  font-family: var(--font-headings);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.5rem;
  user-select: none;
}
.drug-brand-accordion summary::-webkit-details-marker {
  display: none;
}
.drug-brand-accordion summary::before {
  content: "▸";
  font-size: 0.72rem;
  color: var(--brand-primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.drug-brand-accordion[open] summary::before {
  transform: rotate(90deg);
}

.drug-brand-accordion-inner {
  padding: 0 1.5rem 1.5rem;
  overflow-x: auto;
}

.drug-brand-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.845rem;
}
.drug-brand-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  opacity: 0.6;
  padding: 0.65rem 1rem 0.65rem 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
  white-space: nowrap;
}
.drug-brand-table td {
  padding: 0.7rem 1rem 0.7rem 0;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.45;
  vertical-align: top;
}
.drug-brand-table tr:last-child td {
  border-bottom: none;
}
.drug-brand-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.drug-brand-table-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-body);
  font-style: italic;
}

@media (max-width: 960px) {
  .drug-comparison-grid {
    grid-template-columns: 1fr;
  }
  .drug-working-cards {
    grid-template-columns: 1fr;
  }
  .drug-brand-featured {
    grid-template-columns: 1fr;
  }
  .drug-effects-grid--2col {
    grid-template-columns: 1fr;
  }
  .drug-indications-grid--3col > :last-child:nth-child(3n+1) {
    grid-column: auto;
  }
}
@media (max-width: 680px) {
  .drug-brand-accordion summary {
    padding: 1rem 1.1rem;
  }
  .drug-brand-accordion-inner {
    padding: 0 1.1rem 1.25rem;
  }
}
.drug-section {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}
.drug-section--alt {
  background: var(--bg-main);
}

.drug-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 0.75rem;
}

.drug-section-title {
  font-family: var(--font-headings);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.drug-section-title--references {
  font-size: 1.1rem;
  font-weight: 700;
}

.drug-section-intro {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.drug-hero {
  background: var(--bg-alt);
  padding: 2.5rem 0 3rem;
}

.drug-hero-text {
  flex: 1 1 0;
  min-width: 0;
}

.drug-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.drug-hero-brand {
  font-weight: 400;
  color: var(--text-body);
}

.drug-hero-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 600px;
  margin: 0.75rem 0 1rem;
}

.drug-roa-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
  border: 1px solid rgba(255, 88, 27, 0.35);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
}
.drug-roa-badge + .drug-roa-badge {
  margin-left: 0.35rem;
}

.drug-hero-glance {
  margin-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 1.1rem;
}

.drug-glance-row {
  display: flex;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.drug-glance-row:last-child {
  border-bottom: none;
}
.drug-glance-row .drug-glance-label {
  color: var(--text-body);
  opacity: 0.65;
  min-width: 130px;
  flex-shrink: 0;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
}
.drug-glance-row .drug-glance-value {
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.drug-hero-cta {
  flex: 0 0 240px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-self: flex-start;
  position: sticky;
  top: 100px;
}
.drug-hero-cta .btn-primary,
.drug-hero-cta .btn-outline {
  display: block;
  text-align: center;
}

.drug-hero-cta-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.drug-hero-cta-phone {
  font-size: 0.78rem;
  color: var(--text-body);
  margin-top: 0.15rem;
}
.drug-hero-cta-phone a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-hero-cta-phone a:hover {
  text-decoration: underline;
}

.drug-reviewer {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.drug-reviewer-text {
  font-size: 0.78rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.drug-reviewer-name {
  color: var(--text-dark);
  font-weight: 600;
}

.drug-reviewer-date {
  opacity: 0.7;
}

.drug-about-inner--with-image {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: center;
}

.drug-about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}
.drug-about-content p:last-child {
  margin-bottom: 0;
}

.drug-about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.drug-effects-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.drug-effects-footer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
}
.drug-effects-footer a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-effects-footer a:hover {
  text-decoration: underline;
}

.drug-pa-intro {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.drug-pa-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  counter-reset: pa-step;
}
.drug-pa-steps li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  padding-left: 3rem;
  position: relative;
  counter-increment: pa-step;
}
.drug-pa-steps li::before {
  content: counter(pa-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.875rem;
  height: 1.875rem;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.drug-pa-footer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
}
.drug-pa-footer a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-pa-footer a:hover {
  text-decoration: underline;
}

.drug-cost-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.3rem;
}
.drug-cost-card--green .drug-cost-card-label {
  color: var(--brand-green);
}
.drug-cost-card--amber .drug-cost-card-label {
  color: var(--brand-highlight);
}
.drug-cost-card--sky .drug-cost-card-label {
  color: var(--brand-secondary);
}

.drug-cost-title {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.drug-cost-footer {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-body);
}
.drug-cost-footer a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-cost-footer a:hover {
  text-decoration: underline;
}

.drug-expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.drug-expect-card {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.drug-expect-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(55, 105, 164, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  margin-bottom: 1rem;
}
.drug-expect-icon--clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233769A4' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}
.drug-expect-icon--chart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233769A4' stroke-width='1.8' stroke-linecap='round'%3E%3Cline x1='18' y1='20' x2='18' y2='10'/%3E%3Cline x1='12' y1='20' x2='12' y2='4'/%3E%3Cline x1='6' y1='20' x2='6' y2='14'/%3E%3C/svg%3E");
}
.drug-expect-icon--calendar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233769A4' stroke-width='1.8' stroke-linecap='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}
.drug-expect-icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233769A4' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.drug-expect-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.drug-expect-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

.drug-faq-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.drug-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.25rem 0;
}

.drug-faq-question {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.drug-faq-answer {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
}
.drug-faq-answer a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
}
.drug-faq-answer a:hover {
  text-decoration: underline;
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.dual-cta-card {
  border-radius: 12px;
  padding: 2.5rem;
}
.dual-cta-card--primary {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
}
.dual-cta-card--secondary {
  background: var(--bg-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.dual-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.dual-cta-card--primary .dual-cta-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.dual-cta-card--secondary .dual-cta-eyebrow {
  color: var(--brand-secondary);
}

.dual-cta-title {
  font-family: var(--font-headings);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.dual-cta-card--primary .dual-cta-title {
  color: #fff;
}
.dual-cta-card--secondary .dual-cta-title {
  color: var(--text-dark);
}

.dual-cta-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.dual-cta-card--primary .dual-cta-desc {
  color: rgba(255, 255, 255, 0.7);
}
.dual-cta-card--secondary .dual-cta-desc {
  color: var(--text-body);
}

.drug-reference-list {
  padding-left: 1.5rem;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drug-reference-item {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-body);
}

.drug-reference-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(55, 105, 164, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--brand-primary);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-body);
  font-style: italic;
}

@media (max-width: 960px) {
  .drug-hero-cta {
    flex: none;
    width: 100%;
    position: static;
  }
  .drug-effects-groups {
    grid-template-columns: 1fr;
  }
  .dual-cta-grid {
    grid-template-columns: 1fr;
  }
  .drug-expect-grid {
    grid-template-columns: 1fr;
  }
  .drug-about-inner--with-image {
    grid-template-columns: 1fr;
  }
}
.band-drug-ask {
  background: linear-gradient(150deg, #1a3357 0%, #0e2040 100%);
  padding: 2.5rem 0;
}

.drug-ask-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.drug-ask-text {
  flex: 1 1 0;
  min-width: 0;
}

.drug-ask-heading {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.drug-ask-trigger {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .drug-ask-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .drug-ask-trigger {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
