@font-face {
    font-family: Marcellus-Regular;
    src: url("../fonts/Marcellus-Regular.woff2") format("woff2"), url("../fonts/Marcellus-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: Montserrat-Medium;
    src: url("../fonts/monserat/Montserrat-Medium.woff2") format("woff2"), url("../fonts/monserat/Montserrat-Medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url("../fonts/monserat/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/monserat/Montserrat-SemiBold.ttf") format("truetype");
    font-display: swap;
}
:root {
  --hq-teal: #0a3d38;
  --hq-teal-dark: #072623;
  --hq-teal-soft: #0f4c46;
  --hq-coral: #e8673a;
  --hq-coral-dark: #d04e22;
  --hq-coral-soft: #fce7da;
  --hq-gold: #f4a55a;
  --hq-gold-soft: #fceed9;
  --hq-cream: #faf4ed;
  --hq-cream-deep: #f3eada;
  --hq-bd: #e0d6c7;
  --hq-tx: #1f2828;
  --hq-tx2: #3f5252;
  --hq-tx3: #5f7575;
  --hq-mu: #8a9a9a;
  --hq-mental: #5b4d8f;
  --hq-mental-soft: #ebe7f5;
  --hq-physical: #2d6b7e;
  --hq-physical-soft: #e2eef1;
  --hq-family: #d17f5c;
  --hq-family-soft: #f5e2d5;
  --hq-student: #7b96c0;
  --hq-student-soft: #e4eaf3;
  --hq-green: #3e9c7a;
  --hq-green-soft: #dceee6;
  --hq-red: #b92c2c;
  --hq-red-soft: #f8dcdc;
  --hq-orange: #e0772a;
  --hq-orange-soft: #fbe3d0;
  --hq-yellow: #d4a93e;
  --hq-yellow-soft: #fbefc7;
  --hq-sh: 0 8px 24px rgba(10, 61, 56, 0.06);
  --hq-sh-lg: 0 24px 60px rgba(10, 61, 56, 0.1);
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: Montserrat-Medium;
  color: var(--hq-tx);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fh) !important;
    text-transform: capitalize;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--hq-teal);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--hq-coral);
}
button {
  font-family: Montserrat-SemiBold;
  cursor: pointer;
  border: none;
  background: none;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--hq-teal);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Announcement */
.announce-bar {
  background: linear-gradient(90deg, var(--hq-coral), var(--hq-gold));
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 95;
}
.announce-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.announce-bar .close-x {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Utility bar */
.util-bar {
  background: var(--hq-teal-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.util-bar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.util-bar a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.15s;
}
.util-bar a:hover {
  color: var(--hq-gold);
}
.util-emergency {
  color: var(--hq-gold) !important;
  font-weight: 700 !important;
}

/* Nav */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--hq-bd);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(10, 61, 56, 0.04);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 22px;
}
.nav-logo {
  font-family: var(--fh);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--hq-teal);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hq-coral);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  padding: 9px 13px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hq-tx2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: all 0.18s;
}
.nav-item > a::after {
  content: "▾";
  font-size: 0.65rem;
  opacity: 0.6;
}
.nav-item.no-arrow > a::after {
  display: none;
}
.nav-item:hover > a {
  background: var(--hq-cream);
  color: var(--hq-teal);
}
.mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  box-shadow: var(--hq-sh-lg);
  padding: 22px;
  min-width: 520px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s;
  z-index: 80;
}
.mega.wide {
  min-width: 720px;
}
.mega.xwide {
  min-width: 900px;
}
.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mega.wide .mega-grid,
.mega .mega-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.mega-col h6 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--hq-coral);
  font-weight: 800;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--hq-bd);
}
.mega-col ul {
  list-style: none;
}
.mega-col li a {
  display: block;
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--hq-tx2);
  border-radius: 5px;
  line-height: 1.35;
}
.mega-col li a:hover {
  color: var(--hq-coral);
  background: var(--hq-cream);
  padding-left: 6px;
}
.mega-col .desc {
  color: var(--hq-mu);
  font-size: 0.7rem;
  display: block;
  margin-top: 1px;
}
.mega-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--hq-bd);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.view-all {
  color: var(--hq-coral);
  font-weight: 700;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--hq-cream);
  border: 1px solid var(--hq-bd);
  padding: 7px 12px;
  border-radius: 22px;
  min-width: 210px;
}
.nav-search input {
  border: none;
  background: transparent;
  font-family: Montserrat-SemiBold;
  font-size: 0.86rem;
  flex: 1;
  outline: none;
  color: var(--hq-tx);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--hq-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.nav-login {
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--hq-teal);
}
.nav-cta {
  background: var(--hq-coral);
  color: #fff;
  padding: 10px 18px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--hq-coral-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(232, 103, 58, 0.35);
}
.nav-mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--hq-teal);
  background: none;
  border: none;
  padding: 5px 10px;
}

/* Compliance strip */
.compliance-strip {
  background: var(--hq-cream);
  border-bottom: 1px solid var(--hq-bd);
  padding: 9px 0;
  border-top: 1px solid var(--hq-bd);
}
.compliance-strip .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cs-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--hq-tx3);
  font-weight: 700;
font-family: var(--fh);
}
.cs-badge {
  background: #fff;
  border: 1px solid var(--hq-bd);
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--hq-teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cs-badge .ic {
  font-size: 0.9rem;
}

/* Sections */
.sec {
  padding: 70px 0;
}
.sec-white {
  background: #fff;
}
.sec-cream {
  background: var(--hq-cream);
}
.sec-mental {
  background: linear-gradient(180deg, var(--hq-mental-soft), #fff);
}
.sec-student {
  background: linear-gradient(180deg, var(--hq-student-soft), #fff);
}
.sec-eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hq-coral);
  font-weight: 800;
  margin-bottom: 9px;
}
.sec-center {
  text-align: center;
}
.sec-title {
  font-family: var(--fh);
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--hq-teal);
  text-align: center;
  margin-bottom: 11px;
  line-height: 1.2;
}
.sec-title em {
  font-style: italic;
  color: var(--hq-coral);
}
.sec-lede {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
  color: var(--hq-tx2);
  line-height: 1.65;
}

/* Content Sensitivity Notice */
.sensitivity-notice {
  background: var(--hq-gold-soft);
  border-left: 4px solid var(--hq-gold);
  padding: 14px 20px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--hq-tx2);
  font-family: Montserrat-Medium;
}
.sensitivity-notice b {
  color: var(--hq-teal);
      font-family: var(--fh) ;
}

/* Hero */
.hero {
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--hq-cream) 50%,
    var(--hq-student-soft) 100%
  );
  padding: 38px 0 68px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 25px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--hq-bd);
  padding: 6px 14px;
  border-radius: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--hq-teal);
  margin-bottom: 16px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hq-green);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 156, 122, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(62, 156, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 156, 122, 0);
  }
}
.hero h1 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 .gradient {
  background: linear-gradient(90deg, var(--hq-coral), var(--hq-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero-sub {
  color: var(--hq-tx2);
  font-size: 16px;
    margin-bottom: 25px;
    font-family: Montserrat-Medium;
}
.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
  list-style: none;
}
.hero-checks li {
  padding-left: 26px;
  position: relative;
  font-size: 0.86rem;
  color: var(--hq-tx2);
}
.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--hq-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
}
.hero-cta-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-hero-pri {
  background: var(--hq-coral);
  color: #fff;
  padding: 14px 10px;
  border-radius: 11px;
  font-weight: 700;
   font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s;
font-family: Montserrat-SemiBold;
}
.btn-hero-pri:hover {
  background: var(--hq-coral-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 103, 58, 0.35);
}
.btn-hero-sec {
  background: #fff;
  border: 1.5px solid var(--hq-teal);
  color: var(--hq-teal);
  padding: 12.5px 10px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
      font-family: Montserrat-SemiBold;
}
.btn-hero-sec:hover {
  background: var(--hq-teal);
  color: #fff;
}
.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--hq-tx3);
}
.hero-trust b {
  color: var(--hq-teal);
}

/* Cross-link */
.adult-adhd-banner {
  background: linear-gradient(135deg, var(--hq-cream), var(--hq-gold-soft));
  border: 1px solid var(--hq-bd);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.adult-adhd-banner b {
  color: var(--hq-teal);
}
.adult-adhd-banner a {
  color: var(--hq-coral);
  font-weight: 700;
  white-space: nowrap;
}

/* Booking widget */
.booking-widget {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 20px;
  box-shadow: var(--hq-sh-lg);
  padding: 24px;
}
.bw-tabs {
  display: flex;
  gap: 6px;
  background: var(--hq-cream);
  padding: 5px;
  border-radius: 11px;
  margin-bottom: 18px;
}
.bw-tab {
  flex: 1;
  padding: 9px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--hq-tx3);
  text-align: center;
  transition: all 0.18s;
}
.bw-tab.on {
  background: #fff;
  color: var(--hq-teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.bw-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--hq-coral);
  font-weight: 800;
  margin-bottom: 6px;
}
.bw-title {
  font-family: var(--fh);
  font-size: 1.24rem;
  color: var(--hq-teal);
  font-weight: 700;
  margin-bottom: 14px;
}
.bw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 12px;
}
.bw-field label {
  display: block;
  font-size: 0.74rem;
  color: var(--hq-tx3);
  margin-bottom: 4px;
  font-weight: 600;
}
.bw-field select,
.bw-field input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--hq-bd);
  border-radius: 8px;
  font-family: Montserrat-SemiBold;
  font-size: 0.86rem;
  background: #fff;
  color: var(--hq-tx);
}
.bw-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.bw-slot {
  padding: 9px 4px;
  border: 1.5px solid var(--hq-bd);
  border-radius: 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  background: #fff;
  color: var(--hq-tx2);
  cursor: pointer;
  transition: all 0.18s;
}
.bw-slot small {
  display: block;
  font-size: 0.65rem;
  color: var(--hq-mu);
  margin-top: 1px;
  font-weight: 500;
}
.bw-slot:hover {
  border-color: var(--hq-coral);
  color: var(--hq-coral);
}
.bw-slot.on {
  background: var(--hq-coral);
  color: #fff;
  border-color: var(--hq-coral);
}
.bw-slot.on small {
  color: rgba(255, 255, 255, 0.85);
}
.bw-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--hq-cream);
  border-radius: 9px;
  margin-bottom: 12px;
}
.bw-fee .lbl {
  font-size: 0.76rem;
  color: var(--hq-tx3);
}
.bw-fee .amt {
  font-weight: 800;
  color: var(--hq-teal);
  font-size: 1.15rem;
}
.bw-fee .strike {
  color: var(--hq-mu);
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 6px;
  font-size: 0.85rem;
}
.bw-cta {
  display: block;
  background: var(--hq-coral);
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: all 0.22s;
}
.bw-cta:hover {
  background: var(--hq-coral-dark);
  color: #fff;
}
.bw-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--hq-mu);
  margin-top: 10px;
}
.bw-footer a {
  color: var(--hq-teal);
  font-weight: 700;
}

/* Trust bar */
.trust-bar {
  background: var(--hq-cream);
  border-top: 1px solid var(--hq-bd);
  border-bottom: 1px solid var(--hq-bd);
  padding: 14px 0;
}
.trust-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--hq-tx2);
  align-items: center;
}
.trust-bar b {
  color: var(--hq-teal);
}
/* Quick Action Strip - post hero interactive CTAs */
.qa-strip {
  background: linear-gradient(135deg, var(--hq-cream) 0%, #fff 100%);
  padding: 32px 0;
  border-bottom: 1px solid var(--hq-bd);
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.qa-card {
  background: #fff;
  border: 2px solid var(--hq-bd);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.24s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.qa-card:hover {
  border-color: var(--hq-coral);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(226, 90, 68, 0.14);
}
.qa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hq-coral), var(--hq-orange));
}
.qa-card .qa-ic {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.qa-card .qa-title {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.qa-card .qa-desc {
  font-size: 0.78rem;
  color: var(--hq-tx3);
  line-height: 1.4;
  margin-bottom: 10px;
}
.qa-card .qa-cta {
  display: inline-block;
  background: var(--hq-coral);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.18s;
}
.qa-card:hover .qa-cta {
  background: var(--hq-orange);
}
.qa-card.qa-primary {
  border-color: var(--hq-coral);
  background: linear-gradient(135deg, #fff 0%, var(--hq-coral-soft) 100%);
}
.qa-card.qa-primary::before {
  height: 5px;
}
.qa-card .qa-badge {
  display: inline-block;
  background: var(--hq-yellow-soft);
  color: var(--hq-orange);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* Mid-page CTA Banner */
.mid-cta {
  background: linear-gradient(135deg, var(--hq-teal) 0%, #0f5951 100%);
  color: #fff;
  padding: 36px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(226, 90, 68, 0.16) 0%,
    transparent 65%
  );
  border-radius: 50%;
}
.mid-cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.mid-cta .mid-cta-txt {
  flex: 1;
  min-width: 260px;
}
.mid-cta h4 {
  font-family: var(--fh);
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: #fff;
  font-weight: 700;
}
.mid-cta h4 em {
  color: var(--hq-yellow);
  font-style: normal;
}
.mid-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.mid-cta .mid-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mid-cta .mid-btn-pri {
  background: var(--hq-coral);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(226, 90, 68, 0.28);
}
.mid-cta .mid-btn-pri:hover {
  background: var(--hq-orange);
  transform: translateY(-2px);
}
.mid-cta .mid-btn-sec {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.mid-cta .mid-btn-sec:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Inline "match me" mini-picker */
.mini-picker {
  background: var(--hq-cream);
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 22px auto 0;
  max-width: 900px;
}
.mini-picker h5 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.05rem;
  margin: 0 0 12px;
  font-weight: 700;
  text-align: center;
}
.mini-picker .mp-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mini-picker .mp-opt {
  background: #fff;
  border: 1.5px solid var(--hq-bd);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  font-family: Montserrat-SemiBold;
  font-size: 0.82rem;
  color: var(--hq-tx2);
}
.mini-picker .mp-opt:hover {
  border-color: var(--hq-coral);
  color: var(--hq-teal);
  background: var(--hq-coral-soft);
}
.mini-picker .mp-opt b {
  display: block;
  color: var(--hq-teal);
  font-size: 0.86rem;
  margin-bottom: 3px;
}
.mini-picker .mp-result {
  margin-top: 14px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--hq-coral);
  display: none;
  font-size: 0.86rem;
  color: var(--hq-tx2);
  line-height: 1.55;
}
.mini-picker .mp-result.on {
  display: block;
  animation: fadeIn 0.32s ease-out;
}
.mini-picker .mp-result a {
  color: var(--hq-coral);
  font-weight: 700;
  text-decoration: none;
}
.mini-picker .mp-result a:hover {
  text-decoration: underline;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Comorbidity Screening Suite - additional scales */
.css-intro {
  background: linear-gradient(135deg, var(--hq-student-soft) 0%, #fff 100%);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 24px;
  border-left: 4px solid var(--hq-student);
}
.css-intro h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.css-intro p {
  color: var(--hq-tx2);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}
.css-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.css-badges .badge {
  background: #fff;
  color: var(--hq-student);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid var(--hq-student);
}

/* Scenario Trigger Quiz - situational */
.scenario-quiz {
  background: #fff;
  border: 2px solid var(--hq-bd);
  border-radius: 16px;
  padding: 26px;
  max-width: 960px;
  margin: 0 auto;
}
.scenario-quiz h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.2rem;
  margin: 0 0 16px;
}
.sq-scenario {
  background: var(--hq-cream);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--hq-tx);
  line-height: 1.6;
  border-left: 4px solid var(--hq-coral);
      font-weight: 500;
}
.sq-scenario .sq-tag {
  display: inline-block;
  background: var(--hq-coral);
  color: #fff;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 8px;
}
.sq-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.sq-opt {
  background: #fff;
  border: 1.5px solid var(--hq-bd);
  border-radius: 10px;
  padding: 11px 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s;
  font-family: Montserrat-SemiBold;
  font-size: 0.84rem;
  color: var(--hq-tx2);
}
.sq-opt:hover {
  border-color: var(--hq-coral);
  background: var(--hq-coral-soft);
}
.sq-opt.on {
  border-color: var(--hq-coral);
  background: var(--hq-coral-soft);
  color: var(--hq-teal);
  font-weight: 600;
}
.sq-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.sq-btn {
  background: var(--hq-coral);
  color: #fff;
  padding: 10px 20px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: Montserrat-SemiBold;
  transition: background 0.18s;
}
.sq-btn:hover {
  background: var(--hq-orange);
}
.sq-btn.disabled {
  background: var(--hq-bd);
  color: var(--hq-mu);
  cursor: not-allowed;
}
.sq-progress {
  font-size: 0.78rem;
  color: var(--hq-tx3);
}
.sq-result {
  margin-top: 16px;
  padding: 20px;
  background: linear-gradient(135deg, var(--hq-teal) 0%, #0f5951 100%);
  border-radius: 12px;
  color: #fff;
  display: none;
}
.sq-result.on {
  display: block;
}
.sq-result h5 {
  font-family: var(--fh);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: #fff;
}
.sq-result p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.sq-result .sq-r-cta {
  display: inline-block;
  background: var(--hq-coral);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  margin-right: 8px;
}

/* Sticky bottom action bar */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  display: none;
  z-index: 100;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 40px);
}
.sticky-cta.on {
  display: flex;
}
.sticky-cta .st-txt {
  font-size: 0.82rem;
  color: var(--hq-tx2);
  font-weight: 600;
  white-space: nowrap;
}
.sticky-cta .st-btn {
  background: var(--hq-coral);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
}
.sticky-cta .st-btn:hover {
  background: var(--hq-orange);
}
.sticky-cta .st-btn.st-sec {
  background: #25d366;
}
.sticky-cta .st-btn.st-sec:hover {
  background: #1fb955;
}
.sticky-cta .st-close {
  background: none;
  border: none;
  color: var(--hq-mu);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 4px;
  font-family: Montserrat-SemiBold;
}

/* Responsive */
@media (max-width: 768px) {
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mini-picker .mp-opts {
    grid-template-columns: 1fr;
  }
  .sq-opts {
    grid-template-columns: 1fr;
  }
  .mid-cta .wrap {
    flex-direction: column;
    text-align: center;
  }
  .mid-cta .mid-cta-actions {
    justify-content: center;
  }
  .sticky-cta {
    bottom: 12px;
    padding: 10px 12px;
    gap: 8px;
  }
  .sticky-cta .st-txt {
    display: none;
  }
}

/* What is Anger */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card {
    background: #f4fefd87;
    border: 1px solid #16deca3d;
    border-radius: 14px;
    padding: 22px;
    transition: all 0.22s;
}
.info-card:hover {
  border-color: var(--hq-student);
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.info-card .code {
  display: inline-block;
  background: var(--hq-student-soft);
  color: var(--hq-student);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Courier New", monospace;
  margin-bottom: 8px;
}
.info-card h3 {
  font-family: var(--fh);
     color: var(--hq-teal);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 24px;
}
.info-card p {
    font-size: 14px;
    color: var(--hq-tx2);
    line-height: 1.6;
    margin-bottom: 6px;
}
.info-card ul {
  margin-top: 9px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--hq-tx2);
}
.info-card ul li {
  padding-left: 18px;
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
}
.info-card ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--hq-coral);
  font-weight: 800;
}

/* Age tabs */
.age-tabs {
  display: flex;
  gap: 0;
  background: var(--hq-cream);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.age-tab {
  flex: 1;
  padding: 12px 16px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--hq-tx3);
  text-align: center;
  transition: all 0.18s;
  font-family: Montserrat-SemiBold;
      border: 1px solid #ccc;
    margin: 0 10px;
}
.age-tab.on {
  background: #fff;
  color: var(--hq-teal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8673a;
}
.age-tab span {
  display: block;
  font-size: 0.68rem;
  color: var(--hq-mu);
  font-weight: 500;
  margin-top: 2px;
}
.age-tab.on span {
  color: var(--hq-coral);
}
.age-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 16px;
  padding: 26px;
}
.age-panel.on {
  display: block;
}
.age-panel h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.symptoms-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.symp-block {
  background: var(--hq-cream);
  border-radius: 11px;
  padding: 16px;
}
.symp-block h5 {
  color: var(--hq-mental);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.symp-block ul {
  list-style: none;
  font-size: 0.86rem;
  color: var(--hq-tx2);
}
.symp-block li {
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.55;
}
.symp-block li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hq-coral);
  font-weight: 800;
}

/* Screener */
.screener {
  background: linear-gradient(135deg, #fff, var(--hq-student-soft));
  border: 1px solid var(--hq-student);
  border-radius: 20px;
  padding: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.screener h3 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-weight: 700;
  text-align: center;
}
.screener .subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--hq-tx3);
  margin-bottom: 18px;
}
.screener .instr {
  background: var(--hq-cream);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--hq-tx2);
  margin-bottom: 18px;
}
.screener .instr b {
  color: var(--hq-teal);
}
.q-row {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 11px;
  padding: 14px 16px;
  margin-bottom: 9px;
}
.q-row .q-text {
  font-size: 0.9rem;
  color: var(--hq-tx);
  font-weight: 600;
  margin-bottom: 9px;
  line-height: 1.45;
  font-family: var(--fh);
}
.q-row .q-text .n {
  color: var(--hq-coral);
  font-weight: 800;
  margin-right: 6px;
}
.q-opts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.q-opt {
  padding: 7px 4px;
  border: 1.5px solid var(--hq-bd);
  border-radius: 7px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--hq-tx2);
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
  font-family: Montserrat-SemiBold;
}
.q-opt:hover {
  border-color: var(--hq-coral);
}
.q-opt.on {
  background: var(--hq-coral);
  color: #fff;
  border-color: var(--hq-coral);
}
.screener-cta {
  background: var(--hq-teal);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: Montserrat-SemiBold;
  display: block;
  margin: 16px auto 0;
  transition: all 0.22s;
}
.screener-cta:hover {
  background: var(--hq-teal-dark);
  transform: translateY(-2px);
}
.screener-result {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  display: none;
}
.screener-result.on {
  display: block;
}
.screener-result.green {
  background: var(--hq-green-soft);
  border: 1px solid var(--hq-green);
}
.screener-result.amber {
  background: var(--hq-yellow-soft);
  border: 1px solid var(--hq-yellow);
}
.screener-result.red {
  background: var(--hq-red-soft);
  border: 1px solid var(--hq-red);
}
.screener-result h5 {
  font-family: var(--fh);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.screener-result.green h5 {
  color: var(--hq-green);
}
.screener-result.amber h5 {
  color: var(--hq-orange);
}
.screener-result.red h5 {
  color: var(--hq-red);
}
.screener-result p {
  font-size: 0.88rem;
  color: var(--hq-tx);
  line-height: 1.6;
  margin-bottom: 10px;
}
.screener-result a {
  display: inline-block;
  background: var(--hq-coral);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  margin-right: 8px;
}
.screener-disclaimer {
  font-size: 0.72rem;
  color: var(--hq-mu);
  text-align: center;
  margin-top: 14px;
  line-height: 1.55;
  font-style: italic;
}

/* Scale battery — tabbed multi-scale screener */
.scale-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 22px;
  max-width: 900px;
}
.scale-tab {
  background: #fff;
  border: 1.5px solid var(--hq-bd);
  color: var(--hq-tx2);
  padding: 10px 16px;
  border-radius: 11px;
  font-size: 0.83rem;
  font-weight: 700;
  font-family: Montserrat-SemiBold;
  cursor: pointer;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 180px;
}
.scale-tab:hover {
  border-color: var(--hq-teal);
  color: var(--hq-teal);
  transform: translateY(-2px);
}
.scale-tab.on {
  background: var(--hq-teal);
  color: #fff;
  border-color: var(--hq-teal);
}
.scale-tab .st-name {
  font-size: 0.86rem;
  font-weight: 800;
}
.scale-tab .st-desc {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}
.scale-tab.on .st-desc {
  color: #fff;
  opacity: 0.9;
}
.scale-panel {
  display: none;
}
.scale-panel.on {
  display: block;
  animation: hqFade 0.35s ease;
}
.scale-meta {
  background: var(--hq-cream);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.8rem;
  color: var(--hq-tx2);
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}
.scale-meta b {
  color: var(--hq-teal);
}
.scale-meta .cite {
  font-style: italic;
  color: var(--hq-mu);
  font-size: 0.72rem;
}
.q-domain {
  background: var(--hq-teal-soft);
  color: var(--hq-teal);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 8px;
  margin: 14px 0 10px;
  display: inline-block;
}
.q-scale-hint {
  font-size: 0.72rem;
  color: var(--hq-mu);
  text-align: center;
  margin: 6px 0 0;
  font-style: italic;
}
.wfirs-domain-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.wfirs-ds-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.wfirs-ds-card .lbl {
  font-size: 0.72rem;
  color: var(--hq-tx3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.wfirs-ds-card .val {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hq-teal);
}
.wfirs-ds-card.high .val {
  color: var(--hq-red);
}
.wfirs-ds-card.mod .val {
  color: var(--hq-orange);
}
.wfirs-ds-card.low .val {
  color: var(--hq-green);
}

/* Assessment toolkit comparison table */
.tk-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--hq-sh);
}
.tk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 900px;
}
.tk-table thead th {
  background: var(--hq-teal);
  color: #fff;
  padding: 14px 12px;
  text-align: left;
  font-weight: 700;
  font-family: var(--fh);
  font-size: 0.86rem;
  position: sticky;
  top: 0;
}
.tk-table tbody td {
  padding: 12px;
  border-bottom: 1px solid var(--hq-bd);
  vertical-align: top;
  line-height: 1.5;
  color: var(--color-4) !important;
    font-weight: 500;
}
.tk-table tbody tr:hover {
  background: var(--hq-cream);
}
.tk-table tbody tr.hq-uses {
  background: linear-gradient(90deg, var(--hq-teal-soft), transparent);
  border-left: 4px solid var(--hq-teal);
}
.tk-table td .tk-name {
  font-weight: 800;
  color: var(--hq-teal);
}
.tk-table td .tk-abbr {
  color: var(--hq-mu);
  font-size: 0.72rem;
  font-weight: 500;
  margin-left: 4px;
}
.tk-table td.tk-free {
  color: var(--hq-green);
  font-weight: 700;
}
.tk-table td.tk-paid {
  color: var(--hq-orange);
  font-weight: 700;
}
.tk-badge-uses {
  background: var(--hq-teal);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* Anger by the numbers - deep stats grid */
.abn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.abn-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}
.abn-card:hover {
  border-color: var(--hq-teal);
  transform: translateY(-4px);
  box-shadow: var(--hq-sh-lg);
}
.abn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hq-teal), var(--hq-coral));
}
.abn-num {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  color: var(--hq-teal);
  line-height: 1;
  margin-bottom: 6px;
}
.abn-num small {
  font-size: 0.9rem;
  color: var(--hq-tx2);
  font-weight: 500;
}
.abn-lbl {
  font-weight: 700;
  color: var(--hq-tx);
font-size: 17px;
  margin-bottom: 6px;
      font-family: var(--fh);
}
.abn-desc {
  font-size: 0.78rem;
  color: var(--hq-tx2);
  line-height: 1.55;
  margin-bottom: 8px;
}
.abn-cite {
  font-size: 0.7rem;
  color: var(--hq-mu);
  font-style: italic;
  padding-top: 6px;
  border-top: 1px dashed var(--hq-bd);
}
.abn-category {
  background: var(--hq-teal);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1rem;
  margin: 24px 0 14px;
  display: inline-block;
}

/* Landmark studies */
.ls-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--hq-sh);
  margin-top: 18px;
}
.ls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 900px;
}
.ls-table thead th {
  background: var(--hq-coral);
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-weight: 700;
  font-family: var(--fh);
  font-size: 0.82rem;
}
.ls-table tbody td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--hq-bd);
  vertical-align: top;
  line-height: 1.5;
}
.ls-table tbody tr:hover {
  background: var(--hq-cream);
}
.ls-table .ls-year {
  font-weight: 800;
  color: var(--hq-teal);
  white-space: nowrap;
}
.ls-table .ls-journal {
  color: var(--hq-mu);
  font-style: italic;
  font-size: 0.72rem;
  display: block;
  margin-top: 2px;
}
.ls-table .ls-finding {
color: var(--muted);
  font-weight: 600;
}
.ls-table .ls-n {
  color: var(--hq-tx3);
  white-space: nowrap;
  font-size: 0.74rem;
}
.ls-category {
  background: linear-gradient(90deg, var(--hq-coral), var(--hq-orange));
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.98rem;
  margin: 22px 0 12px;
  display: inline-block;
}

/* Long-term outcomes cards */
.lto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.lto-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-left: 5px solid var(--hq-teal);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.22s;
}
.lto-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hq-sh-lg);
}
.lto-card h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.lto-card .lto-stat {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--hq-coral);
  line-height: 1.05;
  margin: 8px 0;
}
.lto-card .lto-desc {
  font-size: 0.86rem;
  color: var(--hq-tx);
  line-height: 1.6;
  margin-bottom: 10px;
}
.lto-card .lto-mech {
  background: var(--hq-teal-soft);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.78rem;
  color: var(--hq-tx2);
  margin: 8px 0;
}
.lto-card .lto-mech b {
  color: var(--hq-teal);
}
.lto-card .lto-cite {
  font-size: 0.72rem;
  color: var(--hq-mu);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px dashed var(--hq-bd);
}

/* Refs categorized */
.refs-category {
  color: var(--hq-teal);
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.98rem;
  margin: 18px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--hq-teal-soft);
}
.refs-block ol {
  counter-reset: ref;
  list-style: none;
  padding-left: 0;
}
.refs-block ol li {
  counter-increment: ref;
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--hq-tx2);
}
.refs-block ol li::before {
  content: counter(ref) ".";
  position: absolute;
left: -17px;
    top: 3px;
  font-weight: 800;
  color: var(--hq-teal);
}

@media (max-width: 900px) {
  .scale-tab {
    min-width: calc(50% - 8px);
  }
  .abn-grid,
  .lto-grid,
  .wfirs-domain-scores {
    grid-template-columns: 1fr;
  }
}
@keyframes hqFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured experts */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.expert-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  transition: all 0.22s;
}
.expert-card:hover {
  border-color: var(--hq-coral);
  transform: translateY(-4px);
  box-shadow: var(--hq-sh-lg);
}
.expert-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hq-mental), var(--hq-teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto 12px;
  overflow: hidden;
}
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-name {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.expert-cred {
  font-size: 0.78rem;
  color: var(--hq-tx3);
  margin-bottom: 6px;
}
.expert-rating {
  color: var(--hq-gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.expert-rating .reviews {
  color: var(--hq-mu);
  font-weight: 500;
  font-size: 0.74rem;
}
.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 11px;
}
.expert-tag {
  background: var(--hq-mental-soft);
  color: var(--hq-mental);
  padding: 3px 9px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
}
.expert-fee {
  font-size: 0.78rem;
  color: var(--hq-tx3);
  margin-bottom: 10px;
}
.expert-fee b {
  color: var(--hq-teal);
}
.expert-cta {
  background: var(--hq-teal);
  color: #fff;
  padding: 9px 18px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-block;
}
.expert-cta:hover {
  background: var(--hq-coral);
  color: #fff;
}

/* Treatment approaches */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.treatment-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.22s;
}
.treatment-card:hover {
  border-color: var(--hq-coral);
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.treatment-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--hq-mental-soft);
  color: var(--hq-mental);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 11px;
  font-family: var(--fh);
}
.treatment-card h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.treatment-card p {
  font-size: 0.85rem;
  color: var(--hq-tx2);
  line-height: 1.6;
}
.treatment-card .cite {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--hq-bd);
  font-size: 0.72rem;
  color: var(--hq-mu);
  font-style: italic;
}
.treatment-card .cite b {
  color: var(--hq-tx3);
}

/* Integrated Care callout */
.integrated-callout {
  background: linear-gradient(135deg, var(--hq-teal-dark), var(--hq-teal));
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}
.integrated-callout .eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hq-gold);
  font-weight: 800;
  margin-bottom: 10px;
}
.integrated-callout h3 {
  font-family: var(--fh);
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.integrated-callout h3 em {
  color: var(--hq-gold);
  font-style: italic;
}
.integrated-callout p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 18px;
}
.cooccur-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.cooccur-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}
.cooccur-chip b {
  display: block;
  color: var(--hq-gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--hq-bd);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  transition: all 0.22s;
}
.price-card.popular {
  border-color: var(--hq-coral);
  background: linear-gradient(180deg, var(--hq-coral-soft), #fff 25%);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.price-card .badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hq-coral);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.price-card h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.price-card .desc {
  font-size: 0.76rem;
  color: var(--hq-tx3);
  margin-bottom: 12px;
  min-height: 32px;
}
.price-card .amount {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--hq-teal);
  margin-bottom: 2px;
}
.price-card .amount .cur {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
}
.price-card .amount .per {
  font-size: 0.74rem;
  color: var(--hq-mu);
  font-weight: 500;
  margin-left: 3px;
}
.price-card ul {
  list-style: none;
  margin: 14px 0;
  font-size: 0.82rem;
  color: var(--hq-tx2);
}
.price-card li {
  padding: 5px 0 5px 20px;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hq-green);
  font-weight: 800;
}
.price-card .btn {
  display: block;
  background: var(--hq-teal);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.84rem;
  margin-top: 14px;
  transition: all 0.22s;
}
.price-card .btn:hover {
  background: var(--hq-coral);
  color: #fff;
}
.price-card.popular .btn {
  background: var(--hq-coral);
}
.price-card.popular .btn:hover {
  background: var(--hq-coral-dark);
}

/* Steps */
.steps-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hq-coral), var(--hq-gold));
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.step h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.step p {
  font-size: 0.82rem;
  color: var(--hq-tx2);
  line-height: 1.55;
}

/* Parent Guide + School Support (side-by-side) */
.two-col-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.big-block {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 16px;
  padding: 28px 20px;
}
.big-block .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--hq-coral);
  font-weight: 800;
  margin-bottom: 8px;
}
.big-block h3 {
    font-family: var(--fh);
    color: var(--hq-teal);
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 28px;
}
.big-block p {
  font-size: 0.9rem;
  color: var(--hq-tx2);
  line-height: 1.65;
  margin-bottom: 12px;
}
.big-block ul {
  list-style: none;
  font-size: 0.86rem;
  color: var(--hq-tx2);
}
.big-block li {
  padding: 7px 0 7px 26px;
  position: relative;
  line-height: 1.55;
}
.big-block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--hq-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
}
.big-block .cite {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--hq-mu);
  font-style: italic;
}

/* Sample case study */
.case-card {
  background: linear-gradient(135deg, var(--hq-cream), #fff);
  border: 1px solid var(--hq-bd);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.case-card .sample-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--hq-yellow-soft);
  color: var(--hq-orange);
  border: 1px solid var(--hq-yellow);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.case-card .quote {
font-family: var(--fh);
    font-style: italic;
    font-size: 16px;
    color: var(--hq-teal);
    line-height: 1.55;
    margin-bottom: 16px;
    padding-left: 15px;
    border-left: 3px solid var(--hq-coral);
}
.case-card .attribution {
  font-size: 0.82rem;
  color: var(--hq-tx3);
  margin-bottom: 18px;
}
.case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--hq-bd);
}
.case-outcome {
  text-align: center;
}
.case-outcome .metric {
  font-family: var(--fh);
  font-size: 1.6rem;
  color: var(--hq-coral);
  font-weight: 800;
}
.case-outcome .label {
  font-size: 0.74rem;
  color: var(--hq-tx3);
  margin-top: 2px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 12px;
  margin-bottom: 9px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--hq-teal);
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
  font-family: var(--fh);
}
.faq-q:hover {
  background: var(--hq-cream);
}
.faq-q .arr {
  font-size: 1.1rem;
  color: var(--hq-coral);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.on .faq-q .arr {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.28s;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item.on .faq-a {
  padding: 0 20px 18px;
  max-height: 800px;
}

/* Related grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rel-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.22s;
}
.rel-card:hover {
  border-color: var(--hq-coral);
  transform: translateY(-3px);
}
.rel-card .ic {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.rel-card h5 {
  font-size: 0.9rem;
  color: var(--hq-teal);
  font-weight: 700;
  margin-bottom: 4px;
}
.rel-card p {
  font-size: 0.76rem;
  color: var(--hq-tx3);
}

/* Trust reassurance */
.trust-reassure {
  background: linear-gradient(135deg, var(--hq-teal-dark), var(--hq-teal));
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}
.trust-reassure h3 {
  font-family: var(--fh);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 11px;
  line-height: 1.25;
}
.trust-reassure p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto 18px;
}
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}
.trust-pillar {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  padding: 13px;
  font-size: 0.82rem;
  color: #fff;
}
.trust-pillar b {
  display: block;
  color: var(--hq-gold);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 3px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--hq-coral), var(--hq-gold));
  color: #fff;
  border-radius: 22px;
  padding: 44px 32px;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--fh);
  color: #fff;
  font-size: 2rem;
  margin-bottom: 11px;
  line-height: 1.2;
}
.final-cta h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}
.final-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.final-cta .btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta .btn-row .pri {
  background: #fff;
  color: var(--hq-coral);
  padding: 14px 26px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.final-cta .btn-row .pri:hover {
  background: var(--hq-cream);
  color: var(--hq-coral-dark);
}
.final-cta .btn-row .sec {
  background: transparent;
  color: #fff;
  padding: 13px 24px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.94rem;
}
.final-cta .btn-row .sec:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Geo cluster */
.geo-strip {
  background: var(--hq-cream);
  padding: 24px 0;
  border-top: 1px solid var(--hq-bd);
  border-bottom: 1px solid var(--hq-bd);
}
.geo-strip .wrap {
  text-align: center;
}
.geo-strip h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
    font-size: 28px;
    margin-bottom: 14px;
    font-weight: 700;
    text-align: center;
}
.geo-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.geo-chip {
  background: #fff;
  border: 1px solid var(--hq-bd);
  padding: 6px 14px;
  border-radius: 22px;
  font-size: 0.82rem;
  color: var(--hq-tx2);
  font-weight: 600;
}
.geo-chip:hover {
  background: var(--hq-coral);
  color: #fff;
  border-color: var(--hq-coral);
}

/* Footer */
.footer {
  background: var(--hq-teal-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 11px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--hq-coral);
}
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 6px;
}
.footer-col li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-col li a:hover {
  color: var(--hq-gold);
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
}
.grievance {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.grievance b {
  color: #fff;
}
.grievance a {
  color: var(--hq-gold);
}

/* Floating */
.float-side {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 50;
}
.float-side a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}
.float-side a:hover {
  transform: scale(1.08);
}
.float-side .wa {
  background: #25d366;
}
.float-side .ph {
  background: var(--hq-teal);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--hq-sh-lg);
  z-index: 99;
  display: none;
  font-size: 0.8rem;
  line-height: 1.55;
  border: 1px solid var(--hq-bd);
}
.cookie-banner.on {
  display: block;
}
.cookie-banner p {
  color: var(--hq-tx2);
  margin-bottom: 12px;
}
.cookie-banner a {
  color: var(--hq-coral);
  font-weight: 700;
}
.cookie-banner .row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  flex: 1;
  font-family: Montserrat-SemiBold;
  border: none;
}
.cookie-banner .accept {
  background: var(--hq-coral);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--hq-coral-dark);
}
.cookie-banner .reject {
  background: var(--hq-cream);
  color: var(--hq-tx2);
  border: 1px solid var(--hq-bd);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--hq-teal);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.72rem;
  flex-basis: 100%;
  padding: 5px;
  text-align: center;
}

/* Responsive */
@media (min-width: 1601px) {
  .wrap {
    max-width: 1500px;
  }
}
@media (max-width: 1280px) {
  .nav-search {
    min-width: 170px;
  }
  .nav-links {
    gap: 0;
  }
  .nav-item > a {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .info-grid,
  .experts-grid,
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid,
  .steps-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid,
  .cooccur-grid,
  .trust-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .nav-search {
    display: none;
  }
  .two-col-blocks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .sec {
    padding: 52px 0;
  }
  .sec-title {
    font-size: 1.65rem;
  }

  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .util-bar .wrap {
    justify-content: center;
  }
  .compliance-strip .wrap {
    gap: 6px;
    font-size: 0.68rem;
  }
  .cs-badge {
    font-size: 0.66rem;
    padding: 4px 8px;
  }
  .cs-label {
    display: none;
  }
  .booking-widget {
    padding: 18px;
  }
  .bw-slots {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .final-cta {
    padding: 32px 22px;
  }
  .final-cta h2 {
    font-size: 1.5rem;
  }
  .symptoms-two-col {
    grid-template-columns: 1fr;
  }
  .case-outcomes {
    grid-template-columns: 1fr;
  }
  .integrated-callout {
    padding: 26px 20px;
  }
}
@media (max-width: 640px) {
  .info-grid,
  .experts-grid,
  .treatment-grid,
  .pricing-grid,
  .steps-strip,
  .related-grid,
  .cooccur-grid,
  .trust-pillars {
    grid-template-columns: 1fr;
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .hero-cta-row a {
    width: 100%;
    justify-content: center;
  }
  .q-opts {
    grid-template-columns: repeat(2, 1fr);
  }
  .age-tabs {
    flex-direction: column;
  }
  .age-tab {
    padding: 9px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .bw-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .sec-title {
    font-size: 1.4rem;
  }

  .integrated-callout h3 {
    font-size: 1.3rem;
  }
  .float-side {
    bottom: 12px;
    left: 12px;
  }
  .float-side a {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}
@media (max-width: 380px) {
  .wrap {
    padding: 0 16px;
  }
  .sec {
    padding: 44px 0;
  }
  .price-card .amount {
    font-size: 1.7rem;
  }
}
/* v2 advanced components */

/* Brain science visual */
.brain-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
}
.brain-visual {
  background: linear-gradient(135deg, var(--hq-mental-soft), var(--hq-cream));
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brain-visual .brain-emoji {
  font-size: 5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(91, 77, 143, 0.3));
}
.brain-visual .brain-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.brain-lbl {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 11px;
  padding: 11px 12px;
  text-align: left;
  font-size: 0.82rem;
}
.brain-lbl b {
  display: block;
  color: var(--hq-mental);
  font-family: var(--fh);
  margin-bottom: 3px;
}
.brain-lbl p {
  font-size: 0.76rem;
  color: var(--hq-tx3);
  margin: 0;
  line-height: 1.45;
}
.brain-text h3 {
  font-family: var(--fh);
  font-size: 1.5rem;
  color: var(--hq-teal);
  margin-bottom: 12px;
  font-weight: 700;
}
.brain-text p {
  font-size: 0.94rem;
  color: var(--hq-tx2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.brain-text p b {
  color: var(--hq-mental);
}
.brain-fact {
  background: var(--hq-mental-soft);
  border-left: 4px solid var(--hq-mental);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--hq-tx);
}
.brain-fact b {
  color: var(--hq-mental);
}

/* Executive function grid */
.ef-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ef-card {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 14px;
  padding: 18px;
  transition: all 0.22s;
}
.ef-card:hover {
  border-color: var(--hq-mental);
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.ef-card .ef-ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--hq-mental-soft);
  color: var(--hq-mental);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.ef-card h5 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 0.98rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.ef-card p {
  font-size: 0.78rem;
  color: var(--hq-tx2);
  line-height: 1.55;
  margin-bottom: 8px;
}
.ef-card .example {
  font-size: 0.72rem;
  color: var(--hq-mu);
  font-style: italic;
  padding-top: 7px;
  border-top: 1px dashed var(--hq-bd);
}
.ef-card .example b {
  color: var(--hq-coral);
  font-style: normal;
}

/* Treatment comparison matrix */
.matrix-scroll {
  overflow-x: auto;
  margin: 0 -8px;
  padding: 0 8px;
}
.matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hq-sh);
  min-width: 640px;
}
.matrix-table th,
.matrix-table td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid var(--hq-bd);
  font-size: 13px;
  vertical-align: top;
  font-family: Montserrat-SemiBold;
}
.matrix-table thead th {
  background: var(--hq-teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  text-align: center;
  padding: 16px 8px;
  font-family: var(--fh);
}
.matrix-table thead th:first-child {
  background: var(--hq-teal-dark);
  text-align: left;
}
.matrix-table thead th.best {
  background: var(--hq-coral);
  position: relative;
}
.matrix-table thead th.best::after {
  content: "★ Recommended";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hq-gold);
  color: var(--hq-teal-dark);
 font-size: 7.5px;
  padding: 2px 9px;
  border-radius: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.matrix-table tbody tr:last-child td {
  border-bottom: none;
}
.matrix-table tbody td:first-child {
  background: var(--hq-cream);
  font-weight: 700;
  color: var(--hq-teal);
  font-size: 0.84rem;
}
.matrix-table td.rating-hi {
  background: var(--hq-green-soft);
  color: var(--hq-green);
  font-weight: 700;
  text-align: center;
}
.matrix-table td.rating-med {
  background: var(--hq-yellow-soft);
  color: var(--hq-orange);
  font-weight: 700;
  text-align: center;
}
.matrix-table td.rating-lo {
  background: var(--hq-red-soft);
  color: var(--hq-red);
  font-weight: 700;
  text-align: center;
}
.matrix-table td.txt-cell {
  text-align: center;
  color: var(--hq-tx2);
}
.matrix-legend {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--hq-tx3);
  text-align: center;
  font-style: italic;
}

/* Medication cards */
.med-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.med-card {
 background: var(--t7);
    border: 1.5px solid #a7dad561;
    border-radius: 16px;
    padding: 22px;
    position: relative;
    transition: all 0.22s;
}
.med-card.first-line {
  border-color: var(--hq-mental);
}
.med-card.first-line::before {
  content: "AAP First-line · Age 6+";
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--hq-mental);
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
      margin: auto;
    left: 0;
    right: 0;
    width: 162px;
}
.med-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.med-card h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
    font-size: 17px;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 23px;
}
.med-card .class {
 font-size: 11px;
    color: var(--hq-mu);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 700;
}
.med-row {
  padding: 8px 0;
  border-bottom: 1px dashed var(--hq-bd);
  font-size: 0.82rem;
}
.med-row:last-child {
  border-bottom: none;
}
.med-row .lbl {
  font-size: 0.7rem;
  color: var(--hq-mu);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  margin-bottom: 2px;
}
.med-row .val {
      color: var(--color-3);
    line-height: 1.5;
    font-weight: 500;
}
.med-row .val.pos {
  color: var(--hq-green);
}
.med-row .val.warn {
  color: var(--hq-orange);
}

/* AI Care Roadmap Builder */
.roadmap-wrap {
  background: linear-gradient(135deg, #fff, var(--hq-mental-soft));
  border: 1.5px solid var(--hq-mental);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.roadmap-wrap::before {
  content: "🤖 AI-Powered";
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--hq-mental);
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.roadmap-steps-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 8px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hq-bd);
}
.rm-step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--hq-mu);
  font-weight: 600;
  flex: 1;
}
.rm-step .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--hq-cream);
  color: var(--hq-mu);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.rm-step.done .num,
.rm-step.on .num {
  background: var(--hq-coral);
  color: #fff;
}
.rm-step.done,
.rm-step.on {
  color: var(--hq-teal);
}
.rm-step .arrow {
  color: var(--hq-bd);
  margin: 0 4px;
}
.rm-panel {
  display: none;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--hq-bd);
}
.rm-panel.on {
  display: block;
}
.rm-panel h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.rm-panel .sub {
  font-size: 0.84rem;
  color: var(--hq-tx3);
  margin-bottom: 16px;
}
.rm-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.rm-opt {
  padding: 13px;
  border: 1.5px solid var(--hq-bd);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 0.86rem;
  font-family: Montserrat-SemiBold;
  transition: all 0.18s;
  color: var(--hq-tx);
}
.rm-opt:hover {
  border-color: var(--hq-coral);
}
.rm-opt.on {
  background: var(--hq-coral-soft);
  border-color: var(--hq-coral);
  color: var(--hq-coral-dark);
  font-weight: 700;
}
.rm-opt b {
  display: block;
  color: var(--hq-teal);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.rm-opt.on b {
  color: var(--hq-coral-dark);
}
.rm-opt small {
  display: block;
  font-size: 0.72rem;
  color: var(--hq-mu);
  margin-top: 2px;
}
.rm-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.rm-check {
  padding: 10px 12px;
  border: 1.5px solid var(--hq-bd);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 0.78rem;
  font-family: Montserrat-SemiBold;
  transition: all 0.18s;
  color: var(--hq-tx);
  display: flex;
  align-items: center;
  gap: 7px;
}
.rm-check::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--hq-mu);
  border-radius: 4px;
  flex-shrink: 0;
}
.rm-check.on {
  border-color: var(--hq-coral);
  background: var(--hq-coral-soft);
  color: var(--hq-coral-dark);
}
.rm-check.on::before {
  background: var(--hq-coral);
  border-color: var(--hq-coral);
  content: "✓";
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rm-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  gap: 10px;
}
.rm-btn {
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.86rem;
  font-family: Montserrat-SemiBold;
  cursor: pointer;
  transition: all 0.2s;
}
.rm-btn.back {
  background: var(--hq-cream);
  color: var(--hq-tx2);
  border: 1px solid var(--hq-bd);
}
.rm-btn.next {
  background: var(--hq-coral);
  color: #fff;
}
.rm-btn.next:hover {
  background: var(--hq-coral-dark);
}
.rm-btn.next:disabled,
.rm-btn.next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.rm-result {
  display: none;
  background: linear-gradient(135deg, var(--hq-teal), var(--hq-teal-dark));
  color: #fff;
  border-radius: 16px;
  padding: 26px;
  margin-top: 20px;
}
.rm-result.on {
  display: block;
}
.rm-result h4 {
  color: #fff;
  font-family: var(--fh);
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.rm-result .prescription {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--hq-gold);
  font-style: italic;
}
.rm-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.rm-plan-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 14px;
}
.rm-plan-card .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--hq-gold);
  letter-spacing: 0.8px;
  font-weight: 800;
  margin-bottom: 4px;
}
.rm-plan-card .val {
  font-family: var(--fh);
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}
.rm-plan-card .sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.rm-milestones {
  list-style: none;
  margin: 12px 0;
}
.rm-milestones li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
.rm-milestones li:last-child {
  border-bottom: none;
}
.rm-milestones li::before {
  content: "●";
  position: absolute;
  left: 8px;
  top: 9px;
  color: var(--hq-gold);
  font-size: 1.15rem;
  line-height: 1;
}
.rm-milestones li b {
  color: var(--hq-gold);
  display: block;
  margin-bottom: 2px;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.88rem;
}
.rm-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.rm-cta-pri {
  background: var(--hq-coral);
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rm-cta-pri:hover {
  background: var(--hq-coral-dark);
  color: #fff;
}
.rm-cta-sec {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rm-cta-sec:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Cost Calculator */
.calc-wrap {
  background: linear-gradient(135deg, #fff, var(--hq-cream));
  border: 1.5px solid var(--hq-bd);
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.calc-controls h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.calc-row {
  margin-bottom: 16px;
}
.calc-row label {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--hq-tx);
  margin-bottom: 6px;
}
.calc-row label .num {
  color: var(--hq-coral);
  font-family: var(--fh);
  font-weight: 800;
  font-size: 0.98rem;
}
.calc-row input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--hq-bd);
  outline: none;
  -webkit-appearance: none;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hq-coral);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232, 103, 58, 0.4);
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hq-coral);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(232, 103, 58, 0.4);
}
.calc-toggle {
  display: flex;
  gap: 8px;
}
.calc-tog {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--hq-bd);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hq-tx2);
  font-family: Montserrat-SemiBold;
  transition: all 0.15s;
}
.calc-tog.on {
  background: var(--hq-teal);
  color: #fff;
  border-color: var(--hq-teal);
}
.calc-toggle-3 {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 6px;
}
.calc-result {
  background: var(--hq-teal-dark);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
}
.calc-result h4 {
  color: var(--hq-gold);
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.calc-line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
}
.calc-line:last-child {
  border-bottom: none;
}
.calc-line b {
  color: #fff;
  font-weight: 700;
}
.calc-total {
  background: rgba(244, 165, 90, 0.15);
  border: 1px solid var(--hq-gold);
  border-radius: 11px;
  padding: 12px 14px;
  margin-top: 14px;
  text-align: center;
}
.calc-total .lbl {
  font-size: 0.72rem;
  color: var(--hq-gold);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 800;
}
.calc-total .amt {
  font-family: var(--fh);
  font-size: 1.85rem;
  color: #fff;
  font-weight: 800;
  margin-top: 3px;
}
.calc-total .amt small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-left: 4px;
}
.calc-comparison {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}
.calc-cta {
  display: block;
  background: var(--hq-coral);
  color: #fff;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  margin-top: 14px;
}
.calc-cta:hover {
  background: var(--hq-coral-dark);
  color: #fff;
}

/* Comorbidity deep cards */
.como-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.como-card {
  background: #fff;
      border: 1px solid #ffb487;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.22s;
}
.como-card:hover {
  border-color: var(--hq-coral);
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.como-card .ic {
    font-size: 1.7rem;
    margin-bottom: 8px;
    width: 60px;
    height: 60px;
    background: var(--hq-coral-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffb487;
    border-radius: 10px;
}
.como-card h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.como-card .prev {
  font-size: 0.72rem;
  color: var(--hq-coral);
  font-weight: 800;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.como-card p {
  font-size: 0.82rem;
  color: var(--hq-tx2);
  line-height: 1.6;
  margin-bottom: 9px;
}
.como-card .care-plan {
  background: var(--hq-cream);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}
.como-card .care-plan b {
  color: var(--hq-teal);
  display: block;
  margin-bottom: 3px;
  font-family: var(--fh);
}

/* Board tabs */
.board-tabs {
  display: flex;
  gap: 0;
  background: var(--hq-cream);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 22px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.board-tab {
  flex: 1;
  padding: 11px 12px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--hq-tx3);
  text-align: center;
  transition: all 0.18s;
  font-family: Montserrat-SemiBold;
     min-width: 140px;
    border: 1px solid #ccc;
    margin: 0 5px;
    background: #fff;
}
.board-tab.on {
background: #e8673a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8673a;
}
.board-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 16px;
  padding: 26px;
}
.board-panel.on {
  display: block;
}
.board-panel h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.15rem;
  margin-bottom: 11px;
  font-weight: 700;
}
.board-steps {
  list-style: none;
  counter-reset: board-step;
  margin-bottom: 16px;
}
.board-steps li {
  padding: 11px 0 11px 44px;
  position: relative;
  font-size: 0.86rem;
  color: var(--hq-tx2);
  line-height: 1.55;
  border-bottom: 1px dashed var(--hq-bd);
  counter-increment: board-step;
}
.board-steps li::before {
  content: counter(board-step);
  position: absolute;
  left: 0;
  top: 11px;
  width: 30px;
  height: 30px;
  background: var(--hq-mental);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}
.board-steps li:last-child {
  border-bottom: none;
}
.board-steps li b {
  color: var(--hq-teal);
  display: block;
  margin-bottom: 2px;
}
.board-accom {
  background: var(--hq-green-soft);
  border-left: 4px solid var(--hq-green);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--hq-tx);
}
.board-accom b {
  color: var(--hq-green);
}

/* Myths vs Facts */
.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.myth-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 12px;
  padding: 16px 18px;
  grid-column: span 2;
  align-items: center;
}
.myth-col {
  padding: 0 6px;
}
.myth-col.myth b {
  color: var(--hq-red);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 800;
  margin-bottom: 5px;
}
.myth-col.fact b {
  color: var(--hq-green);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 800;
  margin-bottom: 5px;
}
.myth-col p {
  font-size: 0.86rem;
     color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.myth-col.myth p {
  text-decoration: line-through;
  color: var(--hq-tx3);
}
.myth-arrow {
  font-size: 1.5rem;
  color: var(--hq-coral);
  font-weight: 800;
}

.myth-col b{
        font-family: var(--fh);
}

/* Indian context */
.india-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.india-stat-block {
  background: linear-gradient(135deg, var(--hq-cream), #fff);
  border: 1px solid var(--hq-bd);
  border-radius: 16px;
  padding: 22px;
}
.india-stat-block h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.india-stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hq-bd);
  align-items: center;
}
.india-stat-row:last-child {
  border-bottom: none;
}
.india-stat-num {
  font-family: var(--fh);
  font-size: 20px;
  color: var(--hq-coral);
  font-weight: 800;
  line-height: 1;
  min-width: 80px;
}
.india-stat-txt {
  font-size: 0.82rem;
  color: var(--hq-tx2);
  line-height: 1.5;
}
.india-stat-txt b {
  color: var(--hq-teal);
}
.india-culture {
  background: #fff;
  border: 1px solid var(--hq-bd);
  border-radius: 16px;
  padding: 22px;
}
.india-culture h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.india-culture ul {
  list-style: none;
}
.india-culture li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 0.84rem;
  color: var(--hq-tx2);
  line-height: 1.55;
  border-bottom: 1px dashed var(--hq-bd);
}
.india-culture li:last-child {
  border-bottom: none;
}
.india-culture li::before {
  content: "🇮🇳";
  position: absolute;
  left: 0;
  top: 11px;
}
.india-culture li b {
  color: var(--hq-teal);
}

/* Toolkit downloads */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.toolkit-card {
  background: #fff;
  border: 1.5px solid var(--hq-bd);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.22s;
  position: relative;
}
.toolkit-card:hover {
  border-color: var(--hq-mental);
  transform: translateY(-3px);
  box-shadow: var(--hq-sh);
}
.toolkit-card .file-tag {
  display: inline-block;
  background: var(--hq-mental-soft);
  color: var(--hq-mental);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.toolkit-card h5 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.toolkit-card p {
  font-size: 0.8rem;
  color: var(--hq-tx2);
  line-height: 1.55;
  margin-bottom: 12px;
}
.toolkit-card .dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hq-teal);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.78rem;
}
.toolkit-card .dl-btn:hover {
  background: var(--hq-coral);
  color: #fff;
}

/* Medical Review Board */
.review-board {
  background: linear-gradient(135deg, var(--hq-teal-dark), var(--hq-teal));
  color: #fff;
  border-radius: 20px;
  padding: 30px;
}
.review-board .lbl {
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--hq-gold);
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 8px;
}
.review-board h3 {
  font-family: var(--fh);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.review-board > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 820px;
}
.reviewers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.reviewer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
}
.reviewer h5 {
  color: #fff;
  font-family: var(--fh);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.reviewer .cred {
  color: var(--hq-gold);
  font-size: 0.76rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.reviewer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.55;
  margin: 0;
}
.review-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}
.review-meta b {
  color: #fff;
}

/* References */
.refs-block {
  background: var(--hq-cream);
  border-radius: 14px;
  padding: 22px 26px;
  margin-top: 20px;
}
.refs-block h4 {
  font-family: var(--fh);
  color: var(--hq-teal);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.refs-block ol {
  margin-left: 20px;
  font-size: 0.78rem;
  color: var(--hq-tx3);
  line-height: 1.7;
}
.refs-block ol li {
  padding: 3px 0;
}
.refs-block ol li a {
  color: var(--hq-teal);
  text-decoration: underline;
}

/* Video placeholder */
.video-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.video-card {
  position: relative;
  background: linear-gradient(135deg, var(--hq-teal), var(--hq-teal-dark));
  color: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.22s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hq-sh-lg);
}
.video-card::before {
  content: "▶";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.video-card h5 {
  color: #fff;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.video-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 11px;
}
.video-card .meta {
  font-size: 0.72rem;
  color: var(--hq-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}



.bnerr_iner_bx {
    width: 68%;
    font-family: Montserrat-Medium;
    font-weight: 500;
    color: var(--muted);
}

ul, ol {
    margin: 0;
    padding-left: 0;
}

.hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.scale-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.scle_P p {
    color: #fff;
    font-size: 14px;
}
.scle_P p b {
    color: #fff !important;
    font-size: 14px;
}

/* Responsive for v2 */
@media (max-width: 1024px) {
  .brain-grid,
  .calc-wrap,
  .india-grid {
    grid-template-columns: 1fr;
  }
  .ef-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .med-grid,
  .como-grid,
  .toolkit-grid,
  .reviewers-grid,
  .video-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .rm-checks {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ef-grid,
  .med-grid,
  .como-grid,
  .toolkit-grid,
  .reviewers-grid,
  .video-strip {
    grid-template-columns: 1fr;
  }
  .brain-visual .brain-labels {
    grid-template-columns: 1fr;
  }
  .rm-opts,
  .rm-checks {
    grid-template-columns: 1fr;
  }
  .roadmap-steps-nav {
    overflow-x: auto;
    font-size: 0.7rem;
  }
  .rm-step {
    white-space: nowrap;
  }
  .myth-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .myth-arrow {
    transform: rotate(90deg);
    margin: 2px auto;
  }
  .board-tabs {
    flex-direction: column;
  }
}

@media print {
  .nav,
  .util-bar,
  .announce-bar,
  .cookie-banner,
  .float-side,
  .booking-widget,
  .final-cta,
  .roadmap-wrap,
  .calc-wrap {
    display: none !important;
  }
  .sec {
    padding: 16px 0;
  }
  body {
    color: #000;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   v3.1 UX POLISH LAYER — fixes contrast, mobile & CTA issues
   ============================================================ */

/* Add proper light teal token (the built-in teal-soft is misnamed and dark) */
:root {
  --hq-teal-tint: #e1eeeb; /* real pale teal — for backgrounds behind teal text */
  --hq-teal-tint-2: #f2f8f7; /* even paler */
  --hq-coral-tint: #ffede2; /* consistent naming */
  --hq-focus: #0a3d38; /* keyboard focus outline */
}

/* CONTRAST FIX 1 — Q-DOMAIN pill (was teal on teal-soft = invisible) */
.q-domain {
  background: var(--hq-teal-tint);
  color: var(--hq-teal);
  border: 1.5px solid var(--hq-teal);
}

/* CONTRAST FIX 2 — LTO mechanism callout (was invisible text on dark bg) */
.lto-card .lto-mech {
  background: var(--hq-teal-tint);
  color: var(--hq-tx);
  border-left: 3px solid var(--hq-teal);
}
.lto-card .lto-mech b {
  color: var(--hq-teal);
}

/* CONTRAST FIX 3 — highlighted "we use it" table rows */
.tk-table tbody tr.hq-uses {
  background: var(--hq-teal-tint-2);
  border-left: 4px solid var(--hq-teal);
}
.tk-table tbody tr.hq-uses:hover {
  background: var(--hq-teal-tint);
}
.tk-table tbody tr.hq-uses td {
  color: var(--hq-tx);
}

/* CONTRAST FIX 4 — long-term-outcomes summary box (was dark gradient) */
#long-term-outcomes .wrap > div:last-child {
  background: var(--hq-teal-tint-2) !important;
  border: 1px solid var(--hq-teal);
}

/* CONTRAST FIX 5 — screener-result inner CTAs — differentiate primary vs secondary */
.screener-result a {
  margin-right: 8px;
  margin-top: 8px;
  transition: all 0.22s;
  box-shadow: 0 3px 8px rgba(232, 103, 58, 0.25);
}
.screener-result a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 103, 58, 0.35);
}
.screener-result a:nth-child(odd) {
  background: var(--hq-teal);
  box-shadow: 0 3px 8px rgba(10, 61, 56, 0.25);
}
.screener-result a:nth-child(odd):hover {
  background: var(--hq-teal-dark);
  box-shadow: 0 6px 16px rgba(10, 61, 56, 0.4);
}

/* CTA POLISH — larger, more prominent primary CTA */
.screener-cta {
  padding: 14px 34px !important;
  font-size: 0.95rem !important;
  box-shadow: 0 6px 16px rgba(10, 61, 56, 0.2);
  letter-spacing: 0.02em;
}
.screener-cta:hover {
  box-shadow: 0 10px 24px rgba(10, 61, 56, 0.32);
}
.screener-cta:active {
  transform: translateY(0);
}

/* SCALE PICKER MOBILE — tabs stack properly */
.scale-picker {
  max-width: 100%;
  padding: 0 4px;
}
.scale-tab {
  flex: 1 1 auto;
  min-height: 56px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.scale-tab .st-name {
  width: 100%;
  text-align: center;
}
.scale-tab .st-desc {
  width: 100%;
  text-align: center;
}
.scale-tab:focus-visible {
  outline: 3px solid var(--hq-coral);
  outline-offset: 2px;
}

/* QUESTION ROW MOBILE — stack question above buttons, buttons wrap in 2×2 grid on phones */
.q-row {
  align-items: flex-start;
}
.q-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}
.q-opt {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  transition: all 0.18s;
}
.q-opt:focus-visible {
  outline: 3px solid var(--hq-coral);
  outline-offset: 2px;
}
.q-opt.on {
  box-shadow: 0 3px 8px rgba(232, 103, 58, 0.35);
}

/* TABLE UX — horizontal scroll indicators + better mobile presentation */
.tk-table-wrap,
.ls-table-wrap {
  position: relative;
}
.tk-table-wrap::after,
.ls-table-wrap::after {
  content: "→ Swipe";
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(10, 61, 56, 0.75);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  letter-spacing: 0.05em;
}

.mid-cta .row {
    align-items: center;
}
@media (max-width: 900px) {
  .tk-table-wrap::after,
  .ls-table-wrap::after {
    opacity: 1;
  }
  .tk-table-wrap,
  .ls-table-wrap {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(10, 61, 56, 0.08);
  }
  .tk-table thead th,
  .ls-table thead th {
    padding: 12px 8px;
    font-size: 0.78rem;
  }
  .tk-table tbody td,
  .ls-table tbody td {
    padding: 10px 8px;
    font-size: 0.76rem;
  }
}

/* ABN CARDS — better mobile stacking + tap targets */
@media (max-width: 900px) {
  .abn-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .abn-card {
    padding: 16px;
  }
  .abn-num {
    font-size: 1.8rem;
  }
  .lto-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lto-card {
    padding: 18px;
  }
  .lto-card .lto-stat {
    font-size: 1.65rem;
  }
  .wfirs-domain-scores {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .wfirs-ds-card {
    padding: 10px 8px;
  }
  .wfirs-ds-card .val {
    font-size: 1.2rem;
  }
}
@media (max-width: 520px) {
  .wfirs-domain-scores {
    grid-template-columns: 1fr;
  }
  .abn-category,
  .ls-category {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
  .abn-num {
    font-size: 1.6rem;
  }
}

/* SCALE PANELS — improve inner screener layout on mobile */
@media (max-width: 720px) {
  .scale-tab {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
    padding: 10px 8px;
  }
  .scale-tab .st-name {
    font-size: 0.78rem;
  }
  .scale-tab .st-desc {
    font-size: 0.66rem;
  }
  .screener {
    padding: 20px 16px;
  }
  .scale-meta {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.74rem;
  }
  .q-row {
    padding: 14px 12px;
  }
  .q-text {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .q-opts {
    width: 100%;
  }
  .q-opt {
    flex: 1 1 calc(50% - 3px);
    min-width: calc(50% - 3px);
    font-size: 0.78rem;
    padding: 9px 6px;
    text-align: center;
  }
  .screener h3 {
    font-size: 1.15rem;
  }
  .screener .subtitle {
    font-size: 0.82rem;
  }
  .screener .instr {
    font-size: 0.78rem;
    padding: 10px 12px;
  }
}

/* REFERENCE BLOCK MOBILE */
@media (max-width: 720px) {
  .refs-block ol li {
    font-size: 0.74rem;
    padding-left: 26px;
    line-height: 1.5;
  }
  .refs-category {
    font-size: 0.9rem;
  }
}

/* CTA ENHANCEMENT — global button polish */
.btn-hero-pri,
.btn-hero-sec {
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
.btn-hero-pri:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(232, 103, 58, 0.4);
}
.btn-hero-sec:hover {
  transform: translateY(-3px);
}
.btn-hero-pri:focus-visible,
.btn-hero-sec:focus-visible {
  outline: 3px solid var(--hq-coral);
  outline-offset: 3px;
}

/* Screener disclaimer breathing room */
.screener-disclaimer {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
}

/* LTO CARDS — better visual hierarchy */
.lto-card {
  position: relative;
}
.lto-card .lto-stat {
  background: linear-gradient(90deg, var(--hq-coral), var(--hq-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lto-card h4 {
  padding-right: 0;
  line-height: 1.35;
}

/* ABN CARDS — number pop */
.abn-num {
  background: linear-gradient(135deg, var(--hq-teal), var(--hq-coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.abn-num small {
  background: none !important;
  -webkit-text-fill-color: var(--hq-tx2) !important;
  color: var(--hq-tx2) !important;
}

/* TABLE ROW HOVER — fix contrast preservation */
.tk-table tbody tr:hover td {
  color: var(--hq-tx);
}
.ls-table tbody tr:hover td {
  color: var(--hq-tx);
}
.ls-table tbody tr:hover .ls-year {
  color: var(--hq-coral);
}

/* Add anchor-scroll offset so sticky nav doesn't cover section headings */
section[id] {
  scroll-margin-top: 80px;
}
.lto-card p {
    font-size: 15px;
}
/* Mobile-safe utility bar to prevent overflow */
@media (max-width: 720px) {
  .util-bar .wrap {
    flex-direction: column;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }
  .util-bar .wrap > div {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Compliance strip mobile */
@media (max-width: 720px) {
  .compliance-strip .wrap {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    text-align: center;
  }
  .cs-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

/* Trust bar mobile */
@media (max-width: 720px) {
  .trust-bar .wrap {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 10px;
  }
  .trust-bar .wrap span {
    font-size: 0.76rem;
  }
}

/* Hero mobile spacing */
@media (max-width: 720px) {
  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
  }
  .btn-hero-pri,
  .btn-hero-sec {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }
  .hero-trust {
    flex-direction: column;
    gap: 6px;
  }
  .hero-trust span {
    font-size: 0.78rem;
  }
}

/* SCALE META cite line — wrap properly */
.scale-meta .cite {
  flex-basis: 100%;
  order: 99;
  padding-top: 6px;
  border-top: 1px dashed var(--hq-bd);
  margin-top: 4px;
}

/* Global tap target minimum (WCAG 2.5.5) */
a,
button {
  min-height: 24px;
}
.announce-bar{
    top: 108px;
}


@media (pointer: coarse) {
  a.btn-hero-pri,
  a.btn-hero-sec,
  button.screener-cta,
  a.expert-cta,
  a.rel-card {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .q-opt {
    min-height: 44px;
  }
}

/* Board tabs — better contrast + mobile stack */
.board-tab:focus-visible {
  outline: 3px solid var(--hq-coral);
  outline-offset: 2px;
}
@media (max-width: 720px) {
  .board-tabs {
    flex-direction: column;
  }
  .board-tab {
    width: 100%;
    text-align: center;
  }
}

/* Assessment toolkit — badge hierarchy on mobile */
@media (max-width: 720px) {
  .tk-badge-uses {
    display: inline-block;
    margin-top: 2px;
  }
  .mobile-swipe-hint {
    display: block !important;
    background: var(--hq-cream);
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid var(--hq-bd);
  }
}

/* Deep stats — tighter mobile category label */
.abn-category,
.ls-category {
  display: block;
  text-align: center;
  margin: 24px auto 14px;
  max-width: fit-content;
}

/* Landmark studies — mobile row height fix */
@media (max-width: 900px) {
  .ls-table tbody td.ls-finding {
    min-width: 220px;
  }
  .ls-table tbody td .ls-journal {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
  }
}

/* Fix any accidentally-invisible text globally */
.grievance {
  color: var(--hq-tx);
}
.grievance b {
  color: var(--hq-teal);
}
.grievance a {
  color: var(--hq-coral);
  font-weight: 700;
}
