/* ============================================================
   BEST GROUP BENEFITS — page.css
   Interior pages on the paper/ink/evergreen/amber system.
   Scoped to body.page-light. Loads AFTER styles.css and wins
   ties by specificity (body.page-light …) — no !important.
   Token values mirror home.css body.home-light exactly.
   ============================================================ */

body.page-light {
  /* Paper & ink */
  --bg:          #f6f4ed;
  --bg-soft:     #f1eee4;
  --surface:     #fdfcf8;
  --surface2:    #f3f1e8;
  --surface3:    #eae7da;

  --azure:       #0f5132;   /* evergreen ink accent */
  --azure-deep:  #0b3d26;
  --cyan:        #3f6212;
  --indigo:      #0f5132;
  --indigo-deep: #0b3d26;
  --accent:      #0f5132;
  --accent2:     #9a6b1f;   /* amber, small-caps labels only */

  --text:        #1c211c;
  --text2:       #37402f;
  --muted:       #5b6353;
  --muted2:      #6b7263;   /* darkened from #8a8f7e for AA contrast */

  --rule:        #d9d4c5;
  --border:      #e4e0d2;
  --border2:     #d9d4c5;

  --ink-band:    #16211a;   /* dark evergreen islands (CTA, footer) */
  --band-text:   #e9f5ec;
  --band-muted:  #a8bfae;
  --band-amber:  #e2c98a;

  --shadow-sm:   0 1px 3px rgba(28,33,28,0.06);
  --shadow:      0 14px 40px rgba(28,33,28,0.09);
  --shadow-lg:   0 24px 60px rgba(28,33,28,0.12);
  --glow-blue:   0 0 0 rgba(0,0,0,0);
  --glow-cyan:   0 0 0 rgba(0,0,0,0);

  --font-head:   "Newsreader", "Iowan Old Style", Georgia, serif;

  background: var(--bg);
  color: var(--text2);
  scrollbar-color: var(--surface3) var(--bg);
}
body.page-light ::selection { background: #cfe5d6; color: var(--text); }

/* ── Headings: Newsreader-led (read mode) ─────────────────── */
body.page-light h1, body.page-light h2, body.page-light h3, body.page-light h4 {
  font-family: var(--font-head);
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
}
body.page-light h1 em, body.page-light h2 em {
  font-style: italic; font-weight: 500; color: var(--azure);
}

/* ── Nav (paper) ──────────────────────────────────────────── */
body.page-light .nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,244,237,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  box-shadow: none;
}
body.page-light .nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 32px;
}
body.page-light .b-mark {
  width: 26px; height: 26px; display: inline-block; flex: none;
  background: var(--azure);
  -webkit-mask: url('/assets/b-mark.png') center / contain no-repeat;
  mask: url('/assets/b-mark.png') center / contain no-repeat;
}
body.page-light .nav-brand { display: inline-flex; align-items: center; gap: 10px; }
body.page-light .nav-brand-name {
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.05rem; color: var(--text);
  letter-spacing: -0.015em; white-space: nowrap;
}
body.page-light .nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: flex-end; }
body.page-light .nav-links a {
  color: var(--muted); font-weight: 500; font-size: 0.92rem;
  padding: 7px 12px; border-radius: 7px; display: inline-block;
}
body.page-light .nav-links a:hover,
body.page-light .nav-links a.active { color: var(--text); background: rgba(28,33,28,0.05); }
body.page-light .nav-toggle span { background: var(--text2); }
body.page-light .nav-cta { flex: none; }

/* Phone in the nav — insurance buyers call, and it was previously
   almost five screens down on a guide page. */
body.page-light .nav-phone {
  flex: none;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.94rem; font-weight: 650;
  color: var(--text); white-space: nowrap;
  font-variant-numeric: tabular-nums;
  padding: 8px 4px;
}
body.page-light .nav-phone:hover { color: var(--azure); }
body.page-light .nav-phone-ico { color: var(--azure); font-size: 1.05em; }
body.page-light .nav-book { flex: none; padding: 9px 16px; font-size: 0.88rem; }

/* Mid-article CTA — 100 of 106 generated pages previously had none. */
body.page-light .inline-cta {
  margin: 34px 0;
  padding: 20px 22px;
  border: 1px solid var(--rule);
  border-left: 2px solid var(--azure);
  background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
body.page-light .inline-cta-copy { flex: 1 1 260px; min-width: 0; }
body.page-light .inline-cta-copy strong {
  display: block; font-family: var(--font-head); font-weight: 500;
  font-size: 1.12rem; color: var(--text); margin-bottom: 4px; line-height: 1.3;
}
body.page-light .inline-cta-copy span { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
body.page-light .inline-cta .btn { flex: none; }

/* Tactile CTA (v19 bottom-edge press system) */
body.page-light .btn-cyan,
body.page-light .btn-primary {
  background: var(--azure); color: #f6f4ed;
  border: 0; border-radius: 8px;
  font-weight: 600; font-size: 0.92rem;
  padding: 10px 20px;
  box-shadow: 0 3px 0 var(--azure-deep);
  transition: transform 140ms cubic-bezier(0.25,0.1,0.25,1), box-shadow 140ms cubic-bezier(0.25,0.1,0.25,1), background 140ms;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
body.page-light .btn-cyan:hover,
body.page-light .btn-primary:hover {
  background: var(--azure); filter: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--azure-deep);
}
body.page-light .btn-cyan:active,
body.page-light .btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--azure-deep); }
body.page-light .btn-outline {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2); border-radius: 8px;
  padding: 10px 20px; font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 3px 0 var(--rule);
  transition: transform 140ms, box-shadow 140ms, color 140ms, border-color 140ms;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
body.page-light .btn-outline:hover { color: var(--azure); border-color: var(--azure); transform: translateY(-1px); box-shadow: 0 4px 0 var(--rule); }
body.page-light .btn-outline:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--rule); }

/* ── Document head (replaces dark page-hero) ──────────────── */
body.page-light .page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 44px 32px 36px;
  text-align: left;
  overflow: visible;
}
body.page-light .page-hero::before { content: none; }
body.page-light .page-hero-inner { max-width: 1200px; margin: 0 auto; }
body.page-light .breadcrumb {
  justify-content: flex-start;
  font-size: 0.78rem; color: var(--muted2);
  margin-bottom: 26px;
}
body.page-light .breadcrumb a { color: var(--muted); }
body.page-light .breadcrumb a:hover { color: var(--azure); }
body.page-light .breadcrumb span { color: var(--muted2); }
body.page-light .page-kicker {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent2);
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 14px;
}
body.page-light .page-kicker::before {
  content: ''; width: 7px; height: 7px; background: var(--azure); flex: none;
}
body.page-light .page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.08;
  max-width: 22ch;
  margin-bottom: 14px;
  text-wrap: balance;
}
body.page-light .page-hero p {
  font-size: 1.02rem; color: var(--muted);
  max-width: 62ch; margin: 0;
  line-height: 1.65;
}

/* ── Article grid + contents rail ─────────────────────────── */
body.page-light .art-grid {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  padding: 52px 32px 72px;
}
body.page-light .art-main { max-width: 70ch; }

/* Prose */
body.page-light .prose-body { font-size: 1.04rem; line-height: 1.72; color: var(--text2); }
body.page-light .prose-body .kicker {
  background: none; border: 0; border-radius: 0; padding: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent2); margin: 0 0 10px; display: block;
}
body.page-light .prose-body h2 {
  font-size: 1.6rem; line-height: 1.15;
  margin: 42px 0 14px; padding-top: 20px;
  border-top: 1px solid var(--text);
  scroll-margin-top: 92px;
}
body.page-light .prose-body h2:first-of-type { margin-top: 0; }
body.page-light .prose-body h3 {
  font-size: 1.22rem; line-height: 1.25;
  margin: 30px 0 10px;
  scroll-margin-top: 92px;
}
body.page-light .prose-body p { margin: 0 0 16px; }
body.page-light .prose-body a {
  color: var(--azure); font-weight: 550;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(15,81,50,0.4);
}
body.page-light .prose-body a:hover { text-decoration-color: var(--azure); }
body.page-light .prose-body ul, body.page-light .prose-body ol { margin: 0 0 16px; padding-left: 4px; }
body.page-light .prose-body ul li {
  list-style: none; position: relative;
  padding: 3px 0 3px 22px;
}
body.page-light .prose-body ul li::before {
  content: ''; position: absolute; left: 2px; top: 0.72em;
  width: 6px; height: 6px; background: var(--azure);
}
body.page-light .prose-body ol { counter-reset: pli; }
body.page-light .prose-body ol li {
  list-style: none; position: relative; counter-increment: pli;
  padding: 3px 0 3px 28px;
}
body.page-light .prose-body ol li::before {
  content: counter(pli) '.';
  position: absolute; left: 0; top: 3px;
  font-family: var(--font-head); font-variant-numeric: oldstyle-nums;
  color: var(--azure); font-weight: 600;
}
body.page-light .prose-body strong { color: var(--text); font-weight: 650; }
body.page-light .callout {
  border: 1px solid var(--rule); border-left: 2px solid var(--azure);
  background: var(--surface); border-radius: 0;
  padding: 16px 20px; margin: 22px 0;
  font-size: 0.95rem; color: var(--text2);
}
body.page-light .prose-body table { border: 1px solid var(--rule); background: var(--surface); }
body.page-light .prose-body th { color: var(--muted); border-bottom: 1px solid var(--rule); }
body.page-light .prose-body td { border-bottom: 1px solid var(--rule); }

/* FAQ — ruled rows, no dark card */
body.page-light .faq-list { gap: 0; }
body.page-light .faq-list details,
body.page-light .prose-body details {
  background: none; border: 0; border-radius: 0;
  border-top: 1px solid var(--rule);
  margin: 0; overflow: visible;
}
body.page-light .faq-list details:last-child,
body.page-light .prose-body details:last-child { border-bottom: 1px solid var(--rule); }
body.page-light .faq-list summary,
body.page-light .prose-body summary {
  cursor: pointer; list-style: none;
  padding: 16px 34px 16px 0;
  position: relative;
  font-family: var(--font-head); font-weight: 500;
  font-size: 1.08rem; color: var(--text); line-height: 1.4;
  background: none;
}
body.page-light .faq-list summary::-webkit-details-marker,
body.page-light .prose-body summary::-webkit-details-marker { display: none; }
body.page-light .faq-list summary::after,
body.page-light .prose-body summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--azure); font-family: var(--font-head); font-size: 1.3rem;
}
body.page-light .faq-list details[open] summary::after,
body.page-light .prose-body details[open] summary::after { content: '\2013'; }
body.page-light .faq-list details p,
body.page-light .prose-body details p,
body.page-light .faq-list .answer,
body.page-light .prose-body .answer {
  padding: 0 0 18px; margin: 0;
  color: var(--muted); font-size: 0.98rem; line-height: 1.7;
  max-width: 62ch;
}

/* ── Rail: contents + CTA + estimator ─────────────────────── */
body.page-light .side-rail { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 26px; min-width: 0; }

body.page-light .toc {
  border-top: 1px solid var(--text);
  padding-top: 14px;
}
body.page-light .toc-label {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 10px;
}
body.page-light .toc ol { margin: 0; padding: 0; }
body.page-light .toc li { margin: 0; }
body.page-light .toc a {
  display: block; padding: 5px 0 5px 12px;
  font-size: 0.86rem; line-height: 1.45;
  color: var(--muted);
  border-left: 2px solid transparent;
  transition: color 140ms, border-color 140ms;
}
body.page-light .toc li.toc-h3 a { padding-left: 24px; font-size: 0.82rem; }
body.page-light .toc a:hover { color: var(--text); }
body.page-light .toc a.is-current { color: var(--azure); border-left-color: var(--azure); font-weight: 600; }

body.page-light .rail-cta {
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 22px;
}
body.page-light .rail-cta h3 {
  font-size: 1.14rem; line-height: 1.25; margin: 0 0 8px;
}
body.page-light .rail-cta p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
body.page-light .rail-cta .btn-primary { width: 100%; }
body.page-light .rail-cta-meta {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--rule);
  font-size: 0.76rem; color: var(--muted2); line-height: 1.6;
}
body.page-light .rail-links { display: flex; flex-direction: column; gap: 0; margin-top: 14px; }
body.page-light .rail-links a {
  font-size: 0.85rem; color: var(--muted); padding: 7px 0;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
body.page-light .rail-links a::after { content: '\203A'; color: var(--azure); }
body.page-light .rail-links a:hover { color: var(--azure); }

/* Estimator as a filing form */
body.page-light .grp-calc {
  border: 1px solid var(--rule); border-radius: 0;
  background: var(--surface); box-shadow: none; overflow: hidden;
}
body.page-light .grp-calc-head {
  background: none; border-bottom: 1px solid var(--rule);
  padding: 12px 18px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent2);
}
body.page-light .grp-calc-body { padding: 18px; background: none; }
body.page-light .grp-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin: 0 0 4px;
}
body.page-light .grp-input {
  width: 100%; background: transparent;
  border: 0; border-bottom: 1px solid #bcb6a2; border-radius: 0;
  padding: 6px 2px; margin-bottom: 14px;
  font-size: 1.05rem; color: var(--text);
  font-variant-numeric: tabular-nums;
  outline: none; transition: border-color 140ms, box-shadow 140ms;
}
body.page-light .grp-input:focus { border-bottom-color: var(--azure); box-shadow: 0 1px 0 0 var(--azure); }
body.page-light .grp-tier-row { display: flex; gap: 6px; margin: 4px 0 14px; }
body.page-light .grp-tier-btn {
  flex: 1; padding: 7px 0;
  border: 1px solid var(--border2); border-radius: 6px;
  background: transparent; color: var(--muted);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: color 140ms, border-color 140ms, background 140ms;
}
body.page-light .grp-tier-btn:hover { color: var(--text); border-color: var(--muted); }
body.page-light .grp-tier-btn.active {
  background: var(--azure); border-color: var(--azure); color: #f6f4ed;
}
body.page-light .grp-result { border-top: 1px solid var(--rule); padding-top: 10px; margin-top: 2px; }
body.page-light .grp-result-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0;
}
body.page-light .grp-result-label { font-size: 0.8rem; color: var(--muted); }
body.page-light .grp-result-val {
  font-family: var(--font-head); font-variant-numeric: oldstyle-nums tabular-nums;
  font-size: 1.1rem; font-weight: 600; color: var(--text);
}
body.page-light .grp-result-val.big { font-size: 1.45rem; color: var(--azure); }
body.page-light .grp-disclaimer { font-size: 0.74rem; color: var(--muted2); line-height: 1.55; margin: 12px 0 0; }

body.page-light .rail-license {
  font-size: 0.74rem; color: var(--muted2); line-height: 1.6;
  padding-top: 12px; border-top: 1px solid var(--rule);
}

/* ── Directory cards (index pages) ────────────────────────── */
body.page-light .dir-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px; margin: 26px 0 38px;
}
body.page-light .dir-card {
  display: block; padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color 140ms, transform 140ms, box-shadow 140ms;
}
body.page-light .dir-card:hover {
  border-color: var(--azure);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
body.page-light .dir-card-tag {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 8px;
}
body.page-light .dir-card-title {
  font-family: var(--font-head); font-weight: 500;
  font-size: 1.1rem; color: var(--text); margin-bottom: 6px; line-height: 1.25;
}
body.page-light .dir-card-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
body.page-light .dir-card-more { margin-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--azure); }

/* ── CTA band (dark evergreen island) ─────────────────────── */
body.page-light .cta-dark {
  background: var(--ink-band);
  border: 0; padding: 76px 32px;
  text-align: center;
}
body.page-light .cta-dark h2 {
  color: var(--band-text);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15; margin-bottom: 12px;
  text-wrap: balance;
}
body.page-light .cta-dark p { color: var(--band-muted); max-width: 54ch; margin: 0 auto 26px; }
body.page-light .cta-dark .btn-primary {
  background: #f6f4ed; color: var(--azure-deep);
  box-shadow: 0 3px 0 rgba(0,0,0,0.35);
}
body.page-light .cta-dark .btn-primary:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 0 rgba(0,0,0,0.35); }
body.page-light .cta-dark .btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(0,0,0,0.35); }
body.page-light .cta-dark .btn-outline {
  color: var(--band-text); border-color: rgba(233,245,236,0.35);
  box-shadow: 0 3px 0 rgba(0,0,0,0.35);
}
body.page-light .cta-dark .btn-outline:hover { color: #fff; border-color: rgba(233,245,236,0.7); transform: translateY(-1px); box-shadow: 0 4px 0 rgba(0,0,0,0.35); }

/* ── Footer (dark island, class-driven, responsive) ───────── */
body.page-light .pf {
  background: var(--ink-band);
  color: var(--band-muted);
  padding: 56px 32px 32px;
}
body.page-light .pf-inner { max-width: 1200px; margin: 0 auto; }
body.page-light .pf-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(233,245,236,0.14);
}
body.page-light .pf-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
body.page-light .pf .b-mark { background: var(--band-amber); width: 22px; height: 22px; }
body.page-light .pf-brand-name {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.02rem; color: #fff; letter-spacing: -0.01em;
}
body.page-light .pf-brand-note { font-size: 0.84rem; line-height: 1.65; max-width: 280px; }
body.page-light .pf-contacts { margin-top: 12px; display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; }
body.page-light .pf-contacts a { color: var(--band-text); }
body.page-light .pf-contacts a:hover { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
body.page-light .pf-col summary,
body.page-light .pf-col-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--band-amber);
  margin-bottom: 12px; list-style: none; cursor: default;
}
body.page-light .pf-col summary::-webkit-details-marker { display: none; }
body.page-light .pf-col ul { display: flex; flex-direction: column; gap: 2px; }
body.page-light .pf-col a {
  font-size: 0.86rem; color: var(--band-muted);
  display: block; padding: 3px 0;
}
body.page-light .pf-col a:hover { color: var(--band-text); }
body.page-light .pf-col a.pf-em { color: var(--band-text); font-weight: 600; }
body.page-light .pf-legal {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start;
  padding-top: 22px;
}
body.page-light .pf-legal p { font-size: 0.76rem; line-height: 1.65; color: var(--band-muted); flex: 1; min-width: 260px; margin: 0; }
body.page-light .pf-legal strong { color: var(--band-text); }
body.page-light .pf-copy { font-size: 0.78rem; white-space: nowrap; }

/* ── Scroll reveal (JS adds .rv; IO adds .rv-in) ──────────── */
body.page-light .rv { opacity: 0; transform: translateY(14px); transition: opacity 500ms cubic-bezier(0.22,1,0.36,1), transform 500ms cubic-bezier(0.22,1,0.36,1); }
body.page-light .rv.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.page-light .rv { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  body.page-light .art-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; }
}
@media (max-width: 980px) {
  body.page-light .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 20px 14px;
  }
  body.page-light .nav-links.nav-open { display: flex; }
  body.page-light .nav-links a { padding: 11px 8px; font-size: 1rem; }
  body.page-light .art-grid { grid-template-columns: 1fr; gap: 44px; padding: 40px 24px 56px; }
  body.page-light .side-rail { position: static; max-width: 480px; }
  body.page-light .toc { display: none; }
}
@media (min-width: 721px) {
  body.page-light .pf-col summary { pointer-events: none; }
}
@media (max-width: 860px) {
  /* Keep the phone reachable but let the quote button win the space. */
  body.page-light .nav-phone { font-size: 0; gap: 0; padding: 8px; }
  body.page-light .nav-phone-ico { font-size: 1.3rem; }
  body.page-light .nav-book { display: none; }
}
@media (max-width: 560px) {
  body.page-light .nav-inner { padding: 12px 16px; gap: 10px; }
  body.page-light .nav-brand-name { display: none; }
  body.page-light .b-mark { width: 30px; height: 30px; }
  body.page-light .nav-phone { margin-left: auto; }
  body.page-light .nav-cta { padding: 8px 13px; font-size: 0.83rem; }
  body.page-light .inline-cta { padding: 16px 18px; }
  body.page-light .inline-cta .btn { width: 100%; }
}
@media (max-width: 720px) {
  body.page-light .page-hero { padding: 32px 24px 28px; }
  body.page-light .prose-body { font-size: 1rem; }
  body.page-light .pf { padding: 44px 24px 28px; }
  body.page-light .pf-grid { grid-template-columns: 1fr; gap: 0; }
  body.page-light .pf-brand { padding-bottom: 20px; }
  body.page-light .pf-col { border-top: 1px solid rgba(233,245,236,0.14); }
  body.page-light .pf-col summary { cursor: pointer; padding: 14px 0; margin-bottom: 0; position: relative; }
  body.page-light .pf-col summary::after {
    content: '+'; position: absolute; right: 2px; top: 50%;
    transform: translateY(-50%); color: var(--band-amber); font-size: 1.1rem;
  }
  body.page-light .pf-col[open] summary::after { content: '\2013'; }
  body.page-light .pf-col ul { padding-bottom: 14px; }
}

/* Read-next — restores lateral movement on leaf pages that previously
   dead-ended, and gives link equity a path to the pages we want ranked. */
body.page-light .read-next {
  margin: 40px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--text);
}
body.page-light .read-next h2 {
  font-size: 0.68rem !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  font-family: "Instrument Sans", system-ui, sans-serif;
  border-top: 0;
  padding-top: 0;
  margin: 0 0 12px;
}
body.page-light .read-next ul { margin: 0; padding: 0; }
body.page-light .read-next li {
  list-style: none; padding: 0; margin: 0;
  border-bottom: 1px solid var(--rule);
}
body.page-light .read-next li::before { content: none; }
body.page-light .read-next a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 0;
  font-size: 0.97rem; color: var(--text2);
  text-decoration: none;
  transition: color 140ms;
}
body.page-light .read-next a::after { content: '\2192'; color: var(--azure); flex: none; }
body.page-light .read-next a:hover { color: var(--azure); }

/* ── Proof band ────────────────────────────────────────────────
   Institutional credibility rather than testimonials: verifiable,
   available today, and impossible for an ICHRA startup to copy. */
body.page-light .proof-band {
  margin: 42px 0 0;
  padding: 24px 26px;
  background: var(--ink-band);
  color: var(--band-muted);
}
body.page-light .proof-kicker {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--band-amber);
  margin: 0 0 10px;
}
body.page-light .proof-lede p:last-child {
  margin: 0; font-size: 0.97rem; line-height: 1.65; color: var(--band-text);
  max-width: 62ch;
}
body.page-light .proof-lede strong { color: #fff; font-weight: 650; }
body.page-light .proof-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 26px; margin: 22px 0 0;
  padding-top: 20px; border-top: 1px solid rgba(233,245,236,0.16);
}
body.page-light .proof-facts div { min-width: 0; }
body.page-light .proof-facts dt {
  font-family: var(--font-head); font-weight: 500;
  font-size: 1.02rem; color: #fff; margin-bottom: 4px; line-height: 1.25;
}
body.page-light .proof-facts dd {
  margin: 0; font-size: 0.83rem; line-height: 1.5; color: var(--band-muted);
}
body.page-light .proof-facts a { color: var(--band-amber); text-decoration: underline; text-underline-offset: 2px; }
body.page-light .proof-facts a:hover { color: #fff; }
@media (max-width: 560px) {
  body.page-light .proof-band { padding: 20px 18px; }
  body.page-light .proof-facts { gap: 16px; }
}

/* ── Cost page: figures and comparison table ──────────────── */
body.page-light .cost-hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  margin: 26px 0 10px;
}
body.page-light .cost-hero > div { background: var(--surface); padding: 18px 20px; }
body.page-light .cost-hero span {
  display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 8px;
}
body.page-light .cost-hero strong {
  display: block; font-family: var(--font-head); font-weight: 500;
  font-size: 2rem; line-height: 1; color: var(--azure);
  font-variant-numeric: oldstyle-nums tabular-nums;
}
body.page-light .cost-hero em {
  display: block; font-style: normal; font-size: 0.78rem;
  color: var(--muted); margin-top: 7px; line-height: 1.45;
}
body.page-light .cost-src {
  font-size: 0.78rem !important; color: var(--muted2); line-height: 1.6;
  margin: 0 0 22px !important; max-width: 68ch;
}
body.page-light .cost-table-wrap { overflow-x: auto; border: 1px solid var(--rule); background: var(--surface); margin: 20px 0 10px; }
body.page-light .cost-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
body.page-light .cost-table th {
  text-align: left; font-size: 0.64rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; padding: 11px 14px;
  border-bottom: 1px solid var(--rule); white-space: nowrap;
}
body.page-light .cost-table td { padding: 11px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; color: var(--text2); }
body.page-light .cost-table tr:last-child td { border-bottom: 0; }
body.page-light .cost-table td:first-child { color: var(--text); font-weight: 650; white-space: nowrap; }
body.page-light .cost-table td:nth-child(2) { font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--azure); font-weight: 600; }

/* Google rating inside the proof band. No self-serving AggregateRating
   markup — shown and linked, with Google as the source of record. */
body.page-light .proof-rating {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(233,245,236,0.16);
}
body.page-light .proof-stars { color: var(--band-amber); font-size: 0.95rem; letter-spacing: 2px; }
body.page-light .proof-rating-text { font-size: 0.88rem; color: var(--band-muted); }
body.page-light .proof-rating-text strong {
  color: #fff; font-weight: 650;
  font-family: var(--font-head); font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
body.page-light .proof-rating-text a { color: var(--band-amber); text-decoration: underline; text-underline-offset: 2px; }
body.page-light .proof-rating-text a:hover { color: #fff; }
