:root {
  --navy: #102033;
  --blue: #2563eb;
  --green: #16a34a;
  --sky: #eaf2ff;
  --gray: #f6f8fb;
  --text: #1f2937;
  --muted: #64748b;
  --line: #dfe7f0;
  --white: #ffffff;
  --amber: #f59e0b;
  --red: #dc2626;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell,
.hero,
.section,
.authorized-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 38px;
  border: 3px solid var(--blue);
  border-radius: 16px 16px 21px 21px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 49%;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.brand-name {
  font-size: 25px;
  letter-spacing: 0;
}

.brand-name strong {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links .active {
  color: var(--blue);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span,
.mobile-menu summary span::before,
.mobile-menu summary span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu summary span {
  position: relative;
}

.mobile-menu summary span::before,
.mobile-menu summary span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu summary span::before {
  top: -7px;
}

.mobile-menu summary span::after {
  top: 7px;
}

.mobile-menu[open] summary span {
  background: transparent;
}

.mobile-menu[open] summary span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] summary span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 28px));
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  color: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel .active {
  color: var(--blue);
  background: var(--sky);
}

.mobile-menu-panel .button {
  justify-content: center;
  margin-top: 8px;
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.18);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #bfd3ff;
}

.hero {
  min-height: 650px;
  padding: 74px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  gap: 64px;
  align-items: center;
}

main {
  background:
    radial-gradient(circle at 0 0, rgba(234, 242, 255, 0.95), transparent 430px),
    linear-gradient(180deg, #ffffff 0, #ffffff 620px, #f8fbff 620px, #ffffff 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  letter-spacing: 0;
}

.hero-lead,
.section-heading p,
.health-copy p,
.score-section p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-tagline {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.supporting-note {
  margin-bottom: 0;
  color: var(--navy) !important;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.hero-actions .button {
  min-width: 175px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 12px;
  color: var(--navy);
  background: var(--sky);
  border: 1px solid #d7e6ff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.score-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-preview-card {
  max-height: 600px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.report-preview-card img {
  display: block;
  width: 100%;
  height: auto;
}

.compact-report-preview {
  max-height: 520px;
}

.score-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.score-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.score-header strong {
  color: var(--navy);
  font-size: 88px;
  line-height: 0.9;
}

.score-header span:not(.status-pill) {
  color: var(--muted);
  font-size: 22px;
  font-weight: 850;
}

.status-pill {
  align-self: flex-start;
  padding: 8px 11px;
  color: #0f7a39;
  background: #dcfce7;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.score-bar {
  height: 12px;
  margin: 24px 0;
  overflow: hidden;
  background: #e6edf6;
  border-radius: 999px;
}

.score-bar span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: inherit;
}

.score-list {
  display: grid;
  gap: 10px;
}

.score-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-list span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.score-list strong {
  min-width: 104px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}

.good {
  color: #126534;
  background: #dff7e8;
}

.watch {
  color: #0b4fd8;
  background: #e8f0ff;
}

.risk {
  color: #b42318;
  background: #fee2e2;
}

.score-note {
  margin-top: 18px;
  padding: 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
}

.score-note strong {
  color: var(--navy);
}

.score-note p {
  margin: 8px 0 0;
  color: #7c2d12;
  line-height: 1.45;
}

.section {
  padding: 70px 0;
}

.page-hero {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 64px;
}

.page-hero h1 {
  max-width: 840px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.split-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.compact-score-card {
  max-width: 440px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.price-card,
.health-panel,
.score-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
}

.service-grid article {
  padding: 24px;
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.service-grid p,
.price-card p,
.health-panel span,
.authorized p {
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 950;
}

.detail-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compact-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid article,
.process-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
}

.detail-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.detail-grid h2,
.process-grid h2 {
  font-size: 24px;
}

.detail-grid p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-section {
  padding-top: 40px;
}

.health-check,
.score-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.health-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.health-panel div {
  padding: 30px;
}

.health-panel div + div {
  border-left: 1px solid var(--line);
}

.health-panel p {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.health-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
}

.pricing {
  width: 100%;
  max-width: none;
  padding: 76px max(20px, calc((100vw - 1160px) / 2));
  background: var(--gray);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.on-page-pricing {
  border-top: 0;
}

.health-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding-top: 36px;
}

.secondary-health-offer {
  padding-top: 70px;
  padding-bottom: 38px;
}

.health-offer-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.health-offer-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.health-offer-price div {
  padding: 28px;
}

.health-offer-price div + div {
  border-left: 1px solid var(--line);
  background: var(--gray);
}

.health-offer-price span,
.size-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.health-offer-price strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 44px;
  line-height: 1;
}

.health-offer-price p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.size-plans {
  width: 100%;
  max-width: none;
  padding: 64px max(20px, calc((100vw - 1160px) / 2)) 76px;
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.size-card {
  position: relative;
  min-height: 260px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
}

.size-card.featured {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

.size-card h2 {
  margin-bottom: 12px;
  font-size: 25px;
}

.size-card p:not(.price):not(.size-label) {
  color: var(--muted);
  line-height: 1.6;
}

.size-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.included-section {
  padding-top: 76px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.included-grid article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
}

.included-grid h2 {
  font-size: 25px;
}

.included-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-grid li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--text);
  line-height: 1.45;
}

.included-grid li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #0f7a39;
  background: #dcfce7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.rubric-section {
  padding-top: 76px;
}

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rubric-grid article,
.critical-list,
.report-grid article,
.sample-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
}

.rubric-grid article {
  padding: 24px;
}

.rubric-grid article div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rubric-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
}

.rubric-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.rubric-grid p,
.critical-section p,
.report-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.critical-section,
.sample-scorecard {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.critical-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px;
  list-style: none;
}

.critical-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--text);
  line-height: 1.45;
}

.critical-list li::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #991b1b;
  background: #fee2e2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.public-risk-list li::before {
  content: "\2713";
  color: #0f7a39;
  background: #dcfce7;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-grid article {
  padding: 24px;
}

.report-grid h2 {
  font-size: 23px;
}

.sample-table {
  display: grid;
  overflow: hidden;
}

.sample-table div {
  display: grid;
  grid-template-columns: 1fr 64px minmax(150px, 0.7fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.sample-table div:first-child {
  border-top: 0;
}

.sample-table span {
  color: var(--navy);
  font-weight: 900;
}

.sample-table strong {
  color: var(--navy);
  font-size: 26px;
}

.sample-table em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.pricing-heading {
  margin-bottom: 34px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  position: relative;
  min-height: 230px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.price-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: 0;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

.badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 12px 0 10px;
  color: var(--navy) !important;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.price span {
  font-size: 16px;
  font-weight: 800;
}

.price-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.score-detail {
  display: grid;
  overflow: hidden;
}

.score-detail div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.score-detail div:first-child {
  border-top: 0;
}

.score-detail strong {
  color: var(--navy);
  font-size: 20px;
}

.score-detail span {
  color: var(--muted);
  font-weight: 800;
}

.compare-table {
  overflow-x: auto;
}

.compare-intro {
  padding-bottom: 20px;
}

.compare-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.compare-row {
  min-width: 980px;
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
}

.compare-row:first-child {
  border-top: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.compare-row:last-child {
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.compare-row span {
  padding: 16px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 14px;
}

.compare-row span:first-child {
  border-left: 0;
  color: var(--navy);
  font-weight: 900;
}

.compare-head {
  background: var(--navy);
}

.compare-head span,
.compare-head span:first-child {
  color: var(--white);
  font-weight: 900;
}

.check,
.dash {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.check {
  color: #0f7a39;
  background: #dcfce7;
}

.check::before {
  content: "\2713";
  font-size: 15px;
  font-weight: 950;
}

.dash {
  background: #eef2f7;
}

.dash::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--muted);
  border-radius: 99px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
}

.authorized {
  background: var(--navy);
}

.authorized-inner {
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.authorized .eyebrow {
  color: #93c5fd;
}

.authorized h2,
.authorized p {
  color: var(--white);
}

.authorized p {
  margin: 0;
  opacity: 0.82;
  font-size: 17px;
}

.final-cta {
  grid-template-columns: 1fr auto;
}

@media (max-width: 1080px) {
  .hero,
  .health-check,
  .score-section,
  .split-page-hero,
  .health-offer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .detail-grid,
  .process-grid,
  .size-grid,
  .included-grid,
  .rubric-grid,
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .critical-section,
  .sample-scorecard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .hero,
  .section,
  .authorized-inner,
  .page-hero {
    width: min(100% - 28px, 1160px);
  }

  .nav-links,
  .nav-button {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand-name {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 40px;
    gap: 28px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lead,
  .section-heading p,
  .health-copy p,
  .score-section p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions {
    margin: 24px 0;
  }

  .hero-actions,
  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .score-card {
    padding: 18px;
  }

  .score-header strong {
    font-size: 58px;
  }

  .score-list div {
    padding: 11px 12px;
  }

  .score-list strong {
    min-width: 96px;
  }

  .service-grid,
  .pricing-grid,
  .detail-grid,
  .process-grid,
  .size-grid,
  .included-grid,
  .rubric-grid,
  .report-grid,
  .critical-section,
  .sample-scorecard,
  .health-panel,
  .health-offer-price,
  .authorized-inner,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .health-panel div + div,
  .health-offer-price div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 42px 0;
  }

  .page-hero {
    padding: 48px 0 32px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .service-grid article,
  .price-card,
  .detail-grid article,
  .process-grid article {
    padding: 18px;
  }

  .service-grid span {
    margin-bottom: 12px;
  }

  .price-card {
    min-height: 0;
  }

  .pricing {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .size-plans {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .health-panel div,
  .health-offer-price div {
    padding: 22px;
  }

  .health-offer {
    padding-top: 26px;
  }

  .health-offer-price strong {
    font-size: 38px;
  }

  .size-card,
  .included-grid article,
  .rubric-grid article,
  .report-grid article {
    padding: 18px;
  }

  .size-card {
    min-height: 0;
  }

  .authorized-inner {
    padding: 34px 0;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .critical-list {
    padding: 18px;
  }

  .sample-table div {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
    padding: 14px;
  }

  .sample-table em {
    grid-column: 1 / -1;
  }

  .compare-table {
    overflow-x: visible;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    border-top: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

  .compare-row span {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .compare-row span:first-child {
    border-top: 0;
    background: var(--sky);
  }

  .compare-row span:not(:first-child)::before {
    content: attr(data-plan);
    color: var(--navy);
    font-weight: 900;
  }

  .compare-row.compare-head {
    display: none;
  }

}
