/* Lean Sales Excellence® — site-wide stylesheet
   Palette and type follow the brand guidelines in the Master Methodology Handbook:
   white / charcoal / AQ-red / light grey only; Calibri-first corporate type stack. */

:root {
  --red: #c00000;
  --dark-red: #8b0000;
  --ink: #20242a;
  --grey: #5b6573;
  --light-grey: #e7e9ed;
  --pale-grey: #f5f6f8;
  --white: #ffffff;
  --green: #4f8f3a;
  --amber: #bf8200;
  --shadow: 0 18px 45px rgba(31, 35, 40, .10);
  --radius: 18px;
  --font: Calibri, "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 { font-weight: 800; letter-spacing: -.5px; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

/* ---------- Site header / navigation ---------- */
.site-header {
  height: 200px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid #e2e4e8;
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .brand { display: flex; align-items: center; height: 100%; }
.site-header .brand img { height: 168px; width: auto; }
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.brand-mark { display: grid; grid-template-columns: repeat(2, 13px); grid-template-rows: repeat(2, 13px); gap: 4px; }
.brand-mark span { background: var(--red); }
.brand-mark span:first-child { grid-row: 1 / span 2; }
.brand-name { font-weight: 800; letter-spacing: .9px; }
.brand-name span { font-size: .7em; vertical-align: top; }
.brand-subtitle { font-size: .85rem; color: var(--grey); margin-top: 3px; }
.text-button { border: 0; background: transparent; color: var(--red); font-weight: 700; }
.hidden { display: none !important; }

.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { border-bottom-color: var(--red); }
.site-header nav a.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  border-bottom: none;
}
.site-header nav a.nav-cta:hover { background: var(--dark-red); }
.site-header .menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
  width: min(1180px, 92vw);
  margin: 60px auto 0;
  padding: 40px 0 34px;
  border-top: 1px solid #e2e4e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.site-footer img { height: 58px; opacity: .85; }
.footer-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: var(--grey); font-size: .85rem; }
.footer-links a { text-decoration: none; color: var(--grey); font-weight: 600; }
.footer-links a:hover { color: var(--red); }
.footer-legal { flex-basis: 100%; margin: 14px 0 0; color: var(--grey); font-size: .78rem; line-height: 1.6; }

/* ---------- Generic layout helpers ---------- */
main { display: block; }
.eyebrow { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; font-size: .78rem; }
h1 { margin: 14px 0 18px; font-size: clamp(2.15rem, 4.6vw, 3.9rem); line-height: 1.04; letter-spacing: -1.6px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); letter-spacing: -.8px; }
.lead { color: var(--grey); font-size: 1.14rem; line-height: 1.65; max-width: 700px; }

.page-hero {
  width: min(1180px, 92vw);
  margin: 60px auto 10px;
  padding-bottom: 10px;
}
.page-hero.small-hero { margin-bottom: 10px; }
.page-hero.centered { text-align: center; }
.page-hero.centered .lead { margin-left: auto; margin-right: auto; }

.section {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 56px 0;
}
.section.compact-top { padding-top: 24px; padding-bottom: 24px; }
.section.muted { background: var(--pale-grey); width: 100%; }
.section.muted > * { width: min(1180px, 92vw); margin: 0 auto; }
.section.center { text-align: center; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { margin-top: 8px; }

.two-column { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.large-copy p { font-size: 1.08rem; line-height: 1.7; color: var(--grey); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 9px;
  padding: 14px 26px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--red);
}
.btn.primary { background: var(--red); color: var(--white); }
.btn.primary:hover { background: var(--dark-red); border-color: var(--dark-red); }
.btn.secondary { background: var(--white); color: var(--red); }
.btn.secondary:hover { background: #fff5f5; }
.btn.light { background: var(--white); color: var(--red); }
.btn.light:hover { background: #fff5f5; }
.primary, .secondary {
  border-radius: 9px;
  padding: 14px 22px;
  border: 2px solid var(--red);
  font-weight: 800;
}
.primary { background: var(--red); color: var(--white); }
.primary:hover { background: var(--dark-red); border-color: var(--dark-red); }
.secondary { background: var(--white); color: var(--red); }
.secondary:hover { background: #fff5f5; }
.primary:disabled, .secondary:disabled { opacity: .45; cursor: not-allowed; }

/* ---------- Homepage ---------- */
.home-hero {
  width: 100%;
  background: linear-gradient(180deg, var(--pale-grey) 0%, var(--white) 100%);
  border-bottom: 1px solid #e2e4e8;
}
.home-hero-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 78px 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.home-hero h1 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
  letter-spacing: -1px;
  line-height: 1.12;
}
.home-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.brand-values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #dfe2e6;
}
.brand-values-strip span { color: var(--grey); font-weight: 600; font-size: .92rem; }
.brand-values-strip b { color: var(--red); font-weight: 800; }
.brand-values-strip .divider { color: #c7cbd1; }

.hero-house { display: flex; justify-content: center; align-items: center; height: 100%; }
.hero-house img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-width: 480px; margin: 0 auto; }

.stat-row {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-bottom: 1px solid #e2e4e8;
}
.stat-row div { text-align: left; }
.stat-row strong { display: block; font-size: 2.1rem; color: var(--red); letter-spacing: -1px; }
.stat-row span { color: var(--grey); font-size: .92rem; }

.pillar-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar-preview-grid article {
  border: 1px solid #e2e4e8;
  border-radius: 14px;
  padding: 26px 22px;
  background: var(--white);
}
.pillar-preview-grid .number { color: var(--light-grey); font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; }
.pillar-preview-grid h3 { margin: 10px 0 8px; font-size: 1.15rem; }
.pillar-preview-grid p { color: var(--grey); font-size: .95rem; margin: 0; }

.journey-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  counter-reset: journey;
}
.journey-row .journey-step {
  flex: 1 1 130px;
  text-align: center;
  padding: 18px 10px;
  position: relative;
}
.journey-row .journey-step .step-index {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin: 0 auto 10px;
}
.journey-row .journey-step span.label { font-weight: 700; font-size: .88rem; display: block; }
.journey-row .journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px; right: -6%;
  width: 12%;
  border-top: 2px dashed var(--light-grey);
}

.cta {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  padding: 56px 0;
}
.cta-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta h2 { color: var(--white); margin: 6px 0 0; }
.cta .eyebrow { color: #ff8f8f; }
.cta .btn.light { background: var(--white); }

/* ---------- About page ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.audience-grid span,
.topic-grid span {
  border: 1px solid #e2e4e8;
  border-radius: 10px;
  padding: 16px 14px;
  font-weight: 700;
  text-align: center;
  background: var(--white);
  display: block;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.topic-grid span { font-size: .9rem; padding: 14px 12px; }

.advisor-row { align-items: start; }
.advisor-photo { display: flex; justify-content: center; }
.advisor-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.section.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.section.values article {
  border-left: 4px solid var(--red);
  padding: 4px 0 4px 20px;
}

/* ---------- Testimonials page ---------- */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid #e2e4e8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.65;
}
.testimonial-card blockquote p { margin: 0 0 14px; }
.testimonial-card blockquote p:last-child { margin-bottom: 0; }
.testimonial-card footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 3px solid var(--red);
}
.testimonial-card .t-name { display: block; font-weight: 800; color: var(--ink); }
.testimonial-card .t-role { display: block; color: var(--grey); font-size: .88rem; margin-top: 2px; }
.testimonial-card.wide { grid-column: 1 / -1; }
.section.values p { color: var(--grey); }

/* ---------- Methodology page ---------- */
.house-showcase { width: min(1180px, 92vw); margin: 20px auto 10px; text-align: center; }
.house-showcase img { max-width: 640px; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow); }

.pillar-detail {
  width: 100%;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid #e2e4e8;
}
.pillar-detail > * { }
.pillar-detail .number { font-size: 3.2rem; font-weight: 800; color: var(--light-grey); }
.pillar-detail h2 { margin: 8px 0 14px; max-width: 640px; }
.pillar-detail p { color: var(--grey); max-width: 640px; font-size: 1.03rem; line-height: 1.65; }
.pillar-detail.alternate { background: var(--pale-grey); }
.pillar-detail > div:first-child, .pillar-detail > div:last-child { width: min(1180px, 92vw); margin: 0 auto; }
.pillar-detail { display: block; }
.pillar-detail .pillar-inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
}

.foundation-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.foundation-grid article {
  border: 1px solid #e2e4e8;
  border-radius: 12px;
  padding: 20px 16px;
}
.foundation-grid h3 { font-size: 1rem; margin-bottom: 6px; }
.foundation-grid p { color: var(--grey); font-size: .88rem; margin: 0; }
.section.foundation { background: var(--pale-grey); width: 100%; }
.section.foundation > * { width: min(1180px, 92vw); margin: 0 auto; }

.visual-section {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid #e2e4e8;
}
.visual-section img { border-radius: var(--radius); box-shadow: var(--shadow); }
.visual-section p { color: var(--grey); }
.visual-section.reverse { direction: rtl; }
.visual-section.reverse > * { direction: ltr; }

.toolkit-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.toolkit-table th, .toolkit-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid #e2e4e8;
  font-size: .92rem;
  vertical-align: top;
}
.toolkit-table th { color: var(--grey); text-transform: uppercase; font-size: .72rem; letter-spacing: .6px; }
.toolkit-table td.tool-num { color: var(--red); font-weight: 800; }
.toolkit-table td.tool-name { font-weight: 700; }

.os-strip {
  width: 100%;
  background: var(--ink);
  padding: 50px 0;
}
.os-strip > * { width: min(1180px, 92vw); margin: 0 auto; }
.os-strip h2, .os-strip p.lead { color: var(--white); }
.os-strip .journey-row .journey-step span.label { color: var(--white); }
.os-strip .journey-row .journey-step:not(:last-child)::after { border-top-color: rgba(255,255,255,.25); }

/* ---------- Services page ---------- */
.service-detail { display: grid; gap: 30px; }
.service-detail article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid #e2e4e8;
}
.service-detail article:first-child { border-top: none; }
.service-detail span { font-size: 2.4rem; font-weight: 800; color: var(--light-grey); }
.service-detail h2 { margin-bottom: 10px; }
.service-detail p { color: var(--grey); max-width: 640px; }
.service-detail ul { margin: 14px 0 20px; padding-left: 20px; color: var(--ink); }
.service-detail li { margin-bottom: 6px; }

/* ---------- Insights page ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.insight-grid article {
  border: 1px solid #e2e4e8;
  border-radius: 14px;
  padding: 28px 24px;
}
.insight-grid h2 { font-size: 1.3rem; margin: 10px 0 10px; }
.insight-grid p { color: var(--grey); font-size: .95rem; margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card { border: 1px solid #e2e4e8; border-radius: 16px; padding: 34px; }
.contact-card h2 { margin-bottom: 10px; }
.contact-card p { color: var(--grey); }
.contact-card .small { font-size: .82rem; color: var(--grey); }

/* ---------- Legal / privacy ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.25rem; margin-top: 30px; }
.legal p { color: var(--grey); line-height: 1.7; }
.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal th, .legal td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--light-grey); color: var(--grey); }
.legal th { color: var(--ink); font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }
.legal-subnav { color: var(--grey); font-size: .9rem; margin-top: 4px; }
.legal-subnav a { color: var(--grey); text-decoration: none; font-weight: 600; }
.legal-subnav a[aria-current="page"] { color: var(--red); }
.legal-subnav a:hover { color: var(--red); }
.legal ul { color: var(--grey); line-height: 1.7; padding-left: 20px; margin: 0 0 18px; }
.legal ul li { margin-bottom: 6px; }

/* ---------- Health-check app shell ---------- */
.app-shell { width: min(1180px, 92vw); margin: 38px auto 70px; }
.panel {
  background: var(--white);
  border: 1px solid #e2e4e8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero { min-height: 580px; }
.hero-single { display: flex; align-items: center; }
.hero-copy { padding: 72px 72px 76px; width: min(820px, 100%); }
.hero-single .lead { max-width: 760px; }
.hero-list { display: grid; gap: 19px; margin: 30px 0 34px; }
.hero-list div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.hero-list b { color: var(--red); font-size: 1.1rem; }

.step-shell { padding: 38px 44px 46px; }
.progress-top { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-bottom: 26px; }
.progress-track { height: 8px; background: var(--light-grey); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--red); transition: width .3s ease; }
.progress-label { color: var(--grey); font-weight: 700; font-size: .9rem; }
.step-intro { margin-bottom: 30px; }
.step-intro p { color: var(--grey); line-height: 1.6; max-width: 760px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd3d8;
  border-radius: 9px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(192,0,0,.12); border-color: var(--red); }
.field-note { font-size: .82rem; color: var(--grey); }
.actions { margin-top: 32px; display: flex; justify-content: space-between; gap: 14px; }

.question-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 13px; }
.tag { padding: 5px 9px; border-radius: 999px; background: var(--pale-grey); color: var(--grey); font-size: .78rem; font-weight: 700; }
.question-card { padding: 36px; border: 1px solid #e1e3e6; border-radius: 14px; background: #fff; }
.question-card h2 { font-size: clamp(1.45rem, 3vw, 2.25rem); line-height: 1.25; max-width: 920px; }
.scale-note { color: var(--grey); margin-top: 12px; }
.score-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 26px; }
.score-option input { position: absolute; opacity: 0; pointer-events: none; }
.score-option label { min-height: 124px; border: 2px solid #dfe2e6; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 12px 7px; transition: .15s ease; }
.score-option label:hover { border-color: #999; transform: translateY(-2px); }
.score-option input:checked + label { border-color: var(--red); background: #fff5f5; box-shadow: 0 7px 20px rgba(192,0,0,.13); }
.score-number { font-size: 1.85rem; font-weight: 800; color: var(--red); }
.score-text { margin-top: 6px; font-size: .8rem; color: var(--grey); line-height: 1.25; }
.notes-toggle { margin-top: 22px; }
.notes-toggle summary { color: var(--red); font-weight: 700; cursor: pointer; }
.notes-toggle textarea { margin-top: 12px; min-height: 88px; resize: vertical; }

.results { padding: 42px; }
.results-header { display: flex; justify-content: space-between; gap: 28px; align-items: flex-start; }
.health-score { min-width: 210px; text-align: center; padding: 24px 18px; border-radius: 15px; background: #23272d; color: white; }
.health-score strong { display: block; font-size: 4rem; line-height: 1; }
.health-score span { color: #cdd0d4; }
.results-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; margin-top: 32px; }
.result-card { border: 1px solid #e1e3e6; border-radius: 14px; padding: 25px; }
.radar-wrap { display: flex; justify-content: center; align-items: center; min-height: 390px; }
.pillar-list { display: grid; gap: 15px; }
.pillar-row { display: grid; grid-template-columns: minmax(170px, 1.25fr) 2fr 62px; gap: 12px; align-items: center; }
.pillar-row .bar { height: 12px; background: var(--light-grey); border-radius: 999px; overflow: hidden; }
.pillar-row .bar span { height: 100%; display: block; background: var(--red); }
.pillar-row strong { text-align: right; }
.theme-block { margin-top: 25px; padding: 22px; border-left: 5px solid var(--red); background: var(--pale-grey); }
.theme-block p { color: var(--grey); line-height: 1.6; }
.reveal-note { margin-top: 26px; padding: 22px; background: #23272d; color: white; border-radius: 13px; }
.reveal-note p { color: #d3d6da; line-height: 1.55; }
.results-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.modal-backdrop { position: fixed; inset: 0; background: rgba(20,22,25,.74); display: grid; place-items: center; padding: 20px; z-index: 99; }
.modal { width: min(620px, 96vw); background: white; border-radius: 16px; padding: 30px; box-shadow: var(--shadow); }
.modal .actions { justify-content: flex-end; }
.success { color: var(--green); font-weight: 700; }
.error { color: var(--red); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .pillar-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .two-column { grid-template-columns: 1fr; gap: 26px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: 1fr; }
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail article { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .visual-section { grid-template-columns: 1fr; }
  .pillar-detail .pillar-inner { grid-template-columns: 1fr; gap: 12px; }
  .section.values { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .journey-row .journey-step:not(:last-child)::after { display: none; }
}

@media (max-width: 820px) {
  .site-header .menu { display: block; }
  .site-header nav {
    position: fixed; inset: 200px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 5vw 20px;
    border-bottom: 1px solid #e2e4e8;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
  }
  .site-header nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-header nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid #eee; }
  .site-header nav a.nav-cta { margin-top: 10px; text-align: center; }

  .results-grid { grid-template-columns: 1fr; }
  .hero-copy, .step-shell, .results { padding: 34px 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .score-options { grid-template-columns: 1fr; }
  .score-option label { min-height: 72px; flex-direction: row; justify-content: flex-start; gap: 18px; text-align: left; padding: 12px 18px; }
  .results-header { flex-direction: column; }
  .health-score { width: 100%; }
  .pillar-row { grid-template-columns: 1fr 70px; }
  .pillar-row .bar { grid-column: 1 / -1; grid-row: 2; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media print {
  .site-header, .site-footer, footer, .results-actions { display: none !important; }
  body { background: white; }
  .app-shell { width: 100%; margin: 0; }
  .panel { box-shadow: none; border: 0; }
  .results { padding: 20px; }
}
