/*
  GLPcalcs — Shared Stylesheet
  Single source of truth for all pages.
  To update nav/footer: edit components.js
  To update styles: edit this file
*/

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #f7f5ee;
  --bg-white:     #ffffff;
  --ink:          #0d1f35;
  --ink-mid:      #2c4a6e;
  --ink-light:    #5a7a9e;
  --brand:        #1a7a4a;
  --brand-light:  #e8f5ee;
  --brand-mid:    #2da65e;
  --accent:       #d97b2a;
  --accent-light: #fff4e8;
  --red:          #dc2626;
  --red-light:    #fef2f2;
  --border:       #c8d8e8;
  --shadow:       0 2px 16px rgba(13,31,53,.08);
  --shadow-lg:    0 8px 32px rgba(13,31,53,.14);
  --radius:       14px;
  --radius-sm:    8px;
  --ff:           'DM Sans', system-ui, sans-serif;
  --page-max:     780px;
}

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  padding-bottom: 72px; /* room for sticky CTA */
}

img { max-width: 100%; display: block; }
a { color: var(--brand); }

/* ── NAV ── */
.site-nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo em { color: var(--brand); font-style: normal; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--brand-light); color: var(--brand); }
.nav-links a.active { color: var(--brand); font-weight: 600; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-cat {
  background: var(--brand-light);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ── PAGE WRAPPER ── */
.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ── HERO ── */
.page-hero { margin-bottom: 32px; }
.page-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--brand-light);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.page-hero h1 em { color: var(--brand); font-style: normal; }
.page-hero .sub {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 10px;
}
.page-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-light);
}

/* ── CALC CARD ── */
.calc-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.calc-header {
  background: var(--ink);
  padding: 22px 28px 18px;
}
.calc-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.calc-header p { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }
.calc-body { padding: 28px; }

/* ── FORM ELEMENTS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--brand); background: #fff; }
.form-hint { font-size: 12px; color: var(--ink-light); }

/* Drug / option selector cards */
.option-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.option-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all .15s;
  background: var(--bg);
}
.option-card:hover { border-color: var(--brand); background: var(--brand-light); }
.option-card.selected { border-color: var(--brand); background: var(--brand-light); }
.option-card input[type="radio"] { display: none; }
.option-name { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.option-sub { font-size: 12px; color: var(--ink-light); }
.option-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 6px;
}

/* Unit toggle */
.unit-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 42px;
}
.unit-btn {
  padding: 0 14px;
  border: none;
  background: var(--bg);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  cursor: pointer;
  transition: all .15s;
}
.unit-btn.active { background: var(--brand); color: #fff; }

/* Input with unit toggle */
.input-unit-row { display: flex; gap: 8px; align-items: center; }
.input-unit-row input { flex: 1; }

/* Calc button */
.calc-btn {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: .01em;
  margin-top: 4px;
}
.calc-btn:hover { background: #155f3a; transform: translateY(-1px); }
.calc-btn:active { transform: none; }

/* ── RESULTS ── */
.results { display: none; }
.results.show {
  display: block;
  border-top: 1.5px solid var(--border);
  margin-top: 24px;
  padding-top: 24px;
  animation: fadeUp .3s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Result stat cards */
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.result-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.result-card.highlight { background: var(--brand-light); border-color: var(--brand); }
.result-card.caution   { background: var(--accent-light); border-color: #f0c890; }
.result-card.danger    { background: var(--red-light); border-color: #fca5a5; }
.result-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.result-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.result-value.green  { color: var(--brand); }
.result-value.amber  { color: var(--accent); }
.result-value.red    { color: var(--red); }
.result-unit { font-size: 12px; color: var(--ink-light); margin-top: 4px; }

/* Comparison columns */
.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.compare-col {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.compare-col.winner { border-color: var(--brand); background: var(--brand-light); }
.compare-col-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.compare-col-drug { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.compare-stat { padding: 7px 0; border-bottom: 1px solid var(--border); }
.compare-stat:last-child { border-bottom: none; }
.compare-stat-label { font-size: 12px; color: var(--ink-light); margin-bottom: 2px; }
.compare-stat-value { font-size: 15px; font-weight: 700; color: var(--ink); }
.compare-stat-value.brand { color: var(--brand); }

/* Progress bar */
.progress-wrap { margin-bottom: 20px; }
.progress-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.progress-title { font-size: 13px; font-weight: 700; color: var(--ink-mid); }
.progress-pct { font-size: 1.2rem; font-weight: 800; color: var(--brand); }
.progress-track { height: 10px; background: var(--border); border-radius: 5px; overflow: hidden; margin-bottom: 5px; }
.progress-fill { height: 100%; border-radius: 5px; transition: width .7s ease, background .3s; }
.progress-label { font-size: 12px; color: var(--ink-light); }

/* Score display */
.score-display {
  text-align: center;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.score-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}
.score-denom { font-size: 1.2rem; color: var(--ink-light); font-weight: 400; }
.score-label { font-size: 14px; color: var(--ink-mid); margin-top: 6px; }
.score-band { font-size: 12px; font-weight: 700; margin-top: 4px; }

/* Timeline bars */
.tl-bar-wrap { margin-bottom: 10px; }
.tl-bar-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.tl-bar-head span { color: var(--ink-mid); }
.tl-bar-head strong { color: var(--ink); }
.tl-bar-track { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.tl-bar-fill { height: 100%; border-radius: 4px; background: var(--brand); transition: width .8s cubic-bezier(.4,0,.2,1); }
.tl-bar-fill.accent { background: var(--accent); }
.tl-bar-fill.red { background: var(--red); }

/* Chart container */
.chart-section { margin-bottom: 22px; }
.chart-section-label { font-size: 13px; font-weight: 700; color: var(--ink-mid); margin-bottom: 10px; }
.chart-wrap { position: relative; width: 100%; height: 200px; }

/* Calc table */
.calc-table { width: 100%; border-collapse: collapse; font-size: 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; }
.calc-table th { background: var(--ink); color: rgba(255,255,255,.85); padding: 10px 14px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.calc-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--ink-mid); vertical-align: middle; }
.calc-table tr:last-child td { border-bottom: none; }
.calc-table tr:nth-child(even) td { background: #fafbfc; }
.calc-table .now-row td { background: var(--brand-light); font-weight: 600; color: var(--ink); }
.tl-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.badge-active   { background: var(--brand-light); color: var(--brand); }
.badge-declining{ background: var(--accent-light); color: var(--accent); }
.badge-low      { background: var(--red-light); color: var(--red); }
.badge-now      { background: var(--brand); color: #fff; }

/* Recommendation box */
.rec-box {
  background: var(--brand-light);
  border: 1.5px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.rec-box-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand);
  margin-bottom: 6px;
}
.rec-box-text { font-size: 15px; color: var(--ink); line-height: 1.65; }

/* Disclaimer in calc */
.calc-disc {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 13px;
  color: #7a4010;
  line-height: 1.6;
  margin-top: 18px;
}

/* ── CONTENT SECTIONS ── */
.content-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}
.content-block h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.content-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}
.content-block p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.content-block p:last-child { margin-bottom: 0; }

.info-callout {
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}
.info-callout strong { color: var(--brand); }

/* Data table */
.data-table-wrap { overflow-x: auto; margin: 16px 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--ink); color: #fff; padding: 10px 16px; text-align: left; font-size: 12px; font-weight: 600; }
.data-table th:first-child { border-radius: 8px 0 0 0; }
.data-table th:last-child  { border-radius: 0 8px 0 0; }
.data-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--ink-mid); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: #fafbfc; }
.data-table td:first-child { font-weight: 600; color: var(--ink); }
.data-table .sema-col { color: #1d4ed8; font-weight: 600; }
.data-table .tirz-col { color: var(--brand); font-weight: 600; }

/* Cost aside */
.cost-aside {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.cost-aside h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.cost-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.cost-row:last-of-type { border-bottom: none; }
.cost-name { color: var(--ink-mid); }
.cost-price { font-weight: 700; color: var(--ink); }
.cost-price.best { color: var(--brand); }
.cost-aside-note { font-size: 12px; color: var(--ink-light); margin-top: 10px; }
.cost-aside-note a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* ── CTA BLOCKS ── */
.cta-block {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26,122,74,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.cta-block h3 { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-block p  { font-size: 14px; color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto 20px; line-height: 1.6; }
.cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: #155f3a; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: border-color .15s;
}
.btn-ghost:hover { border-color: #fff; }
.cta-disc { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 12px; }

/* Provider CTA rows (inside calc results) */
.provider-ctas {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
}
.provider-ctas-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.provider-ctas-sub   { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.provider-cta-links  { display: flex; flex-direction: column; gap: 8px; }
.provider-cta-link {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}
.provider-cta-link:hover { background: rgba(255,255,255,.1); }
.pcl-name { font-size: 13px; font-weight: 700; color: #fff; }
.pcl-price { font-size: 12px; color: var(--brand-mid); font-weight: 600; }
.provider-ctas-compare {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
  text-decoration: none;
}
.provider-ctas-compare:hover { color: rgba(255,255,255,.7); }
.provider-ctas-disc { font-size: 11px; color: rgba(255,255,255,.25); margin-top: 8px; text-align: center; }

/* ── RELATED CALCULATORS ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.related-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-decoration: none;
  display: block;
  transition: border-color .15s, box-shadow .15s;
}
.related-card:hover { border-color: var(--brand); box-shadow: var(--shadow); }
.related-icon { font-size: 18px; margin-bottom: 4px; }
.related-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.related-desc { font-size: 12px; color: var(--ink-light); margin-top: 2px; }

/* ── FAQ ── */
.faq-section { margin-bottom: 20px; }
.faq-section h2 { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  user-select: none;
}
.faq-q .arr { font-size: 20px; color: var(--brand); transition: transform .25s; flex-shrink: 0; }
.faq-q.open .arr { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 16px; font-size: 15px; color: var(--ink-mid); line-height: 1.75; }
.faq-a.visible { display: block; }
.faq-a a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 36px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 6px; }
.footer-brand span { color: var(--brand-mid); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.55; max-width: 360px; margin-bottom: 20px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-nav a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }

/* ── STICKY BOTTOM CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-cta-inner {
  max-width: var(--page-max);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta-text strong { font-size: 14px; color: #fff; font-weight: 700; display: block; }
.sticky-cta-text span   { font-size: 12px; color: rgba(255,255,255,.45); }
.sticky-cta-btn {
  background: var(--brand);
  color: #fff;
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.sticky-cta-btn:hover { background: #155f3a; color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav-links a { display: none; }
  .nav-links a:last-child { display: block; font-weight: 700; color: var(--brand); }
  .form-row { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr; }
  .option-selector { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .compare-cols { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .page { padding: 24px 16px 48px; }
  .calc-body { padding: 20px; }
  .content-block { padding: 20px; }
  .page-hero h1 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .result-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta-text span { display: none; }
}
