:root {
  --ink: #18221f;
  --muted: #5b6661;
  --paper: #ffffff;
  --soft: #f2f5f1;
  --soft-warm: #f7f3ed;
  --line: #d9e0dc;
  --forest: #17362f;
  --forest-2: #245649;
  --leaf: #3f806c;
  --terracotta: #c65435;
  --terracotta-dark: #9f3d25;
  --gold: #d4a84d;
  --warning: #f4dfd6;
  --white-muted: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 8px 26px rgba(24, 34, 31, 0.07);
  --shadow-lg: 0 24px 70px rgba(24, 34, 31, 0.16);
  --content: 1180px;
  --radius: 8px;
  font-family:
    "BIZ UDPGothic", "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
dd,
li,
span {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 850;
  line-height: 1.28;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

ul,
ol,
dl {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest);
  border-radius: 4px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 220, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #fff;
  background: var(--forest);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 15px;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 15px;
  color: #fff;
  background: var(--forest);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
}

.header-cta:hover {
  background: var(--forest-2);
}

.breadcrumb {
  padding: 9px max(40px, calc((100% - var(--content)) / 2));
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: #9aa49f;
  content: "/";
}

.breadcrumb a {
  color: var(--forest-2);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 72svh;
  isolation: isolate;
  overflow: hidden;
  background-image: url("assets/hero-renovation-diagnosis.webp");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(250, 252, 250, 0.99) 0%,
      rgba(250, 252, 250, 0.97) 38%,
      rgba(250, 252, 250, 0.76) 54%,
      rgba(250, 252, 250, 0.06) 76%
    );
}

.hero-inner {
  width: min(720px, calc(100% - 80px));
  margin-left: max(40px, calc((100% - var(--content)) / 2));
  padding: 64px 0 58px;
}

.category-label,
.section-kicker {
  color: var(--forest-2);
  font-size: 13px;
  font-weight: 900;
}

.category-label {
  width: fit-content;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--terracotta);
}

.hero h1 span {
  color: var(--terracotta);
}

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: 650px;
  margin-top: 23px;
  color: #404b47;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition:
    transform 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(198, 84, 53, 0.25);
}

.button-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 15px 34px rgba(159, 61, 37, 0.26);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  font-weight: 850;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 33px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 224, 220, 0.95);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  min-width: 0;
  padding: 14px 17px;
}

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

.hero-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.hero-facts dd small {
  color: var(--muted);
  font-size: 11px;
}

.hero-note {
  max-width: 650px;
  margin-top: 13px;
  color: #58635f;
  font-size: 12px;
  line-height: 1.6;
}

.assurance {
  position: relative;
  z-index: 2;
  color: #fff;
  background: var(--forest);
}

.assurance-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), calc(100% - 80px));
  margin: 0 auto;
}

.assurance p {
  display: grid;
  justify-content: center;
  padding: 20px 26px;
  text-align: center;
}

.assurance p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.assurance strong {
  font-size: 15px;
}

.assurance span {
  margin-top: 1px;
  color: var(--white-muted);
  font-size: 12px;
}

.quick-answer {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--soft-warm);
  border-bottom: 1px solid #e5ded4;
}

.quick-answer-inner {
  width: min(940px, 100%);
  margin: 0 auto;
}

.quick-answer h2 {
  max-width: 830px;
  margin-top: 10px;
}

.quick-answer-lead {
  max-width: 880px;
  margin-top: 22px;
  color: #394640;
  font-size: 18px;
}

.quick-answer-lead strong {
  color: var(--forest);
}

.answer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid #d8cfc2;
  border-bottom: 1px solid #d8cfc2;
}

.answer-facts div {
  padding: 18px 20px;
}

.answer-facts div + div {
  border-left: 1px solid #d8cfc2;
}

.answer-facts dt {
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 900;
}

.answer-facts dd {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 850;
}

.answer-link {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.answer-link a {
  color: var(--forest-2);
  border-bottom: 1px solid currentColor;
  font-weight: 850;
}

.section {
  padding: 96px 40px;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background: var(--forest);
}

.section-intro {
  width: min(780px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro.align-left {
  width: min(var(--content), 100%);
  text-align: left;
}

.section-intro .section-kicker {
  margin-bottom: 10px;
}

.section-intro h2 {
  text-wrap: balance;
}

.section-intro > p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.section-intro.light .section-kicker,
.section-dark .section-kicker {
  color: #a9d8c8;
}

.section-intro.light > p:last-child {
  color: var(--white-muted);
}

.symptoms {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  width: min(var(--content), calc(100% - 80px));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.symptoms .section-intro {
  margin-bottom: 0;
}

.symptom-list {
  border-top: 1px solid var(--line);
}

.symptom-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.item-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--forest);
  background: #dbe9e3;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.symptom-list p {
  margin-top: 6px;
  color: var(--muted);
}

.route-section {
  overflow: hidden;
}

.route-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.route-flow::before {
  position: absolute;
  top: 35px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.25);
}

.route-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.route-flow li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--forest);
  background: #d7eee5;
  border: 8px solid var(--forest);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.route-flow strong {
  margin-top: 14px;
  font-size: 21px;
}

.route-flow small {
  margin-top: 3px;
  color: var(--white-muted);
}

.definition {
  width: min(850px, 100%);
  margin: 46px auto 0;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--gold);
}

.definition strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.diagnosis-grid article {
  min-width: 0;
  padding: 28px 26px;
}

.diagnosis-grid article + article {
  border-left: 1px solid var(--line);
}

.diagnosis-index {
  margin-bottom: 30px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 900;
}

.diagnosis-grid ul {
  display: grid;
  gap: 7px;
  margin-top: 15px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.diagnosis-grid li {
  position: relative;
  padding-left: 15px;
}

.diagnosis-grid li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
}

.sample-heading {
  display: grid;
  grid-template-columns: 1fr;
}

.report-preview {
  width: min(var(--content), 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfd7d2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.report-preview figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 20px;
  padding: 22px 28px;
  color: #fff;
  background: var(--forest);
}

.report-preview figcaption span {
  grid-column: 1;
  color: #a9d8c8;
  font-size: 11px;
  font-weight: 900;
}

.report-preview figcaption strong {
  grid-column: 1;
  font-size: 20px;
}

.report-preview figcaption small {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--white-muted);
}

.report-body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1.25fr) minmax(0, 0.9fr);
  min-height: 310px;
}

.report-score,
.report-gap,
.report-priority {
  padding: 28px;
}

.report-gap,
.report-priority {
  border-left: 1px solid var(--line);
}

.report-score {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: var(--soft);
}

.report-score p,
.report-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.report-score strong {
  margin: 5px 0;
  color: var(--forest);
  font-size: 56px;
  line-height: 1;
}

.report-score strong small {
  color: var(--muted);
  font-size: 15px;
}

.report-score span {
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 850;
}

.gap-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  margin-top: 13px;
  padding: 12px 14px;
  background: #e5f0eb;
  border-radius: 6px;
}

.gap-row.warning {
  background: var(--warning);
}

.gap-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.gap-row strong {
  font-size: 14px;
  line-height: 1.55;
}

.gap-finding {
  margin-top: 17px;
  color: var(--muted);
  font-size: 14px;
}

.report-priority ol {
  display: grid;
  gap: 15px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

.report-priority li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  color: #33403b;
  font-size: 14px;
  font-weight: 750;
}

.report-priority li span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--terracotta);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.sample-disclaimer {
  padding: 13px 22px;
  color: var(--muted);
  background: #f8f9f8;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.sample-depth {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 100%);
  margin: 26px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sample-depth > div {
  min-width: 0;
  padding: 18px;
}

.sample-depth > div + div {
  border-left: 1px solid var(--line);
}

.sample-depth span {
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 900;
}

.sample-depth strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.sample-depth p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.sample-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.sample-action p {
  color: var(--muted);
  font-size: 11px;
}

.deliverable-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1000px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.deliverable-table > div {
  display: grid;
  grid-template-columns: 38px 190px 1fr;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  padding: 20px 12px;
  border-bottom: 1px solid var(--line);
}

.deliverable-table > div:nth-child(odd) {
  padding-right: 28px;
}

.deliverable-table > div:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.deliverable-table span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
}

.deliverable-table strong {
  font-size: 15px;
}

.deliverable-table p {
  color: var(--muted);
  font-size: 13px;
}

.price-layout,
.scope-note {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 72px;
}

.price-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--white-muted);
}

.price-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 700;
}

.price-includes li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid #a9d8c8;
  border-left: 2px solid #a9d8c8;
  transform: rotate(-45deg);
}

.price-panel {
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.price-panel > p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-panel > strong {
  display: block;
  margin-top: 4px;
  font-size: 52px;
  line-height: 1.15;
}

.price-panel > strong small {
  font-size: 18px;
}

.price-panel > span {
  display: block;
  margin: 2px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.price-panel > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.price-terms a {
  color: var(--forest-2);
  border-bottom: 1px solid currentColor;
  font-weight: 850;
}

.scope-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.scope-note strong {
  color: #a9d8c8;
  font-size: 13px;
}

.scope-note p {
  color: var(--white-muted);
  font-size: 13px;
}

.implementation-table,
.implementation-flow,
.implementation-boundary {
  width: min(var(--content), 100%);
  margin-right: auto;
  margin-left: auto;
}

.implementation-table {
  border-top: 1px solid var(--line);
}

.implementation-table article {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.implementation-name {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.implementation-name > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.implementation-name h3 {
  font-size: 17px;
}

.implementation-name p,
.implementation-table article > p {
  color: var(--muted);
  font-size: 12px;
}

.implementation-table article > strong {
  justify-self: end;
  color: var(--forest);
  font-size: 21px;
}

.implementation-table article > strong small {
  color: var(--muted);
  font-size: 10px;
}

.implementation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.implementation-flow li {
  min-width: 0;
  padding: 20px;
}

.implementation-flow li + li {
  border-left: 1px solid var(--line);
}

.implementation-flow span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 900;
}

.implementation-flow strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.implementation-flow p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.implementation-boundary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--soft-warm);
  border-left: 4px solid var(--gold);
}

.implementation-boundary strong {
  font-size: 13px;
}

.implementation-boundary p {
  color: var(--muted);
  font-size: 12px;
}

.fit-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.fit-comparison > div {
  padding: 32px;
}

.fit-comparison > div + div {
  border-left: 1px solid var(--line);
}

.fit-comparison h3 {
  padding-bottom: 15px;
  border-bottom: 2px solid var(--leaf);
}

.fit-comparison .fit-muted h3 {
  border-bottom-color: #aeb8b3;
}

.fit-comparison ul {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.fit-comparison li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
}

.fit-comparison li::before {
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 10px;
  height: 6px;
  content: "";
  border-bottom: 2px solid var(--leaf);
  border-left: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

.fit-muted {
  background: #f8f9f8;
}

.fit-muted li::before {
  width: 11px;
  height: 2px;
  border: 0;
  background: #909b96;
  transform: none;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-width: 0;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}

.process-list li + li {
  border-left: 1px solid var(--line);
}

.process-list > li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.process-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 72px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.operator-copy > p:not(.section-kicker) {
  margin-top: 19px;
  color: var(--muted);
}

.company-panel {
  padding: 30px;
  background: var(--soft-warm);
  border: 1px solid #e5ded3;
  border-radius: var(--radius);
}

.company-panel h3 {
  margin-bottom: 17px;
}

.company-panel dl {
  border-top: 1px solid #ddd4c8;
}

.company-panel dl > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd4c8;
}

.company-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.company-panel dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.source-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.method-steps li {
  min-width: 0;
  padding: 25px 23px;
}

.method-steps li + li {
  border-left: 1px solid var(--line);
}

.method-steps li:nth-child(4) {
  border-left: 0;
}

.method-steps li:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.method-steps span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 900;
}

.method-steps strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.method-steps p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.method-answer {
  max-width: 900px;
}

.method-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  width: min(var(--content), 100%);
  margin: 24px auto 0;
  padding: 20px 22px;
  color: var(--muted);
  background: var(--soft);
  border-left: 4px solid var(--leaf);
  font-size: 13px;
}

.method-note strong {
  color: var(--forest);
}

.company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 850;
}

.company-links a {
  color: var(--forest-2);
  border-bottom: 1px solid currentColor;
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 50px 22px 0;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--forest);
  transform: translateY(-50%);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 150ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  padding: 0 48px 23px 0;
  color: var(--muted);
}

.related-guides {
  border-top: 1px solid var(--line);
}

.related-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--content), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-guide-grid article {
  min-width: 0;
  padding: 28px 25px;
}

.related-guide-grid article + article {
  border-left: 1px solid var(--line);
}

.related-guide-grid article > p {
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-guide-grid h3 {
  margin-top: 8px;
}

.related-guide-grid h3 a {
  color: var(--forest);
}

.related-guide-grid h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.related-guide-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 72px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.contact-copy > p:not(.section-kicker, .contact-caution) {
  margin-top: 18px;
  color: var(--white-muted);
  font-size: 17px;
}

.free-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.free-scope div {
  padding: 14px 12px;
}

.free-scope div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.free-scope dt {
  color: var(--white-muted);
  font-size: 11px;
  font-weight: 800;
}

.free-scope dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 850;
}

.contact-caution {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-option {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 25px;
}

.contact-option + .contact-option {
  border-left: 1px solid var(--line);
}

.contact-option-primary {
  background: var(--soft-warm);
}

.contact-option h3 {
  margin-top: 5px;
}

.contact-option > p:not(.option-label) {
  min-height: 76px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.option-label {
  color: var(--terracotta-dark);
  font-size: 10px;
  font-weight: 900;
}

.contact-option small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.button-outline {
  color: var(--forest);
  background: #fff;
  border: 1px solid var(--forest);
}

.button-outline:hover {
  color: #fff;
  background: var(--forest);
}

.contact-privacy {
  grid-column: 1 / -1;
  padding: 16px 24px;
  color: var(--muted);
  background: #f8faf8;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.contact-privacy a {
  color: var(--forest-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8d3;
  border-radius: 6px;
  outline: 0;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(63, 128, 108, 0.15);
}

.consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 9px !important;
  color: var(--muted);
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.65;
}

.consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.form-note {
  min-height: 24px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-note.success {
  color: var(--forest-2);
  font-weight: 800;
}

.form-note.error {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 36px;
  padding: 38px max(40px, calc((100% - var(--content)) / 2));
  color: rgba(255, 255, 255, 0.68);
  background: #0d1714;
  font-size: 12px;
}

.footer-brand {
  color: #fff;
  font-size: 16px;
  font-weight: 850;
}

.footer p {
  margin-top: 3px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover,
.link-button:hover {
  color: #fff;
}

.link-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

.mobile-cta {
  display: none;
}

.privacy-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(720px, calc(100svh - 32px));
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.privacy-dialog::backdrop {
  background: rgba(12, 23, 19, 0.72);
  backdrop-filter: blur(3px);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-header h2 {
  font-size: 23px;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.dialog-body {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--muted);
  overflow-y: auto;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-inner {
    width: min(650px, calc(100% - 48px));
    margin-left: 24px;
  }

  .symptoms {
    gap: 45px;
    width: min(var(--content), calc(100% - 48px));
  }

  .diagnosis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnosis-grid article:nth-child(3) {
    border-left: 0;
  }

  .diagnosis-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .report-body {
    grid-template-columns: 180px 1fr;
  }

  .report-priority {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .report-priority ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-layout,
  .operator-layout {
    gap: 45px;
  }

  .operator-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

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

  .process-list li:nth-child(3) {
    border-left: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 45px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: 66% center;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(250, 252, 250, 0.99) 0%,
        rgba(250, 252, 250, 0.94) 58%,
        rgba(250, 252, 250, 0.5) 100%
      );
  }

  .hero-inner {
    padding-top: 56px;
  }

  .symptoms,
  .price-layout,
  .operator-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .symptoms {
    gap: 38px;
  }

  .route-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .route-flow::before {
    display: none;
  }

  .deliverable-table > div {
    grid-template-columns: 38px 150px 1fr;
  }

  .implementation-table article {
    grid-template-columns: 280px minmax(0, 1fr) 170px;
    gap: 20px;
  }

  .price-panel {
    width: min(460px, 100%);
  }

  .operator-layout {
    gap: 38px;
  }

  .company-panel {
    width: min(600px, 100%);
  }

  .contact-layout {
    gap: 38px;
  }

  .method-steps,
  .related-guide-grid {
    grid-template-columns: 1fr;
  }

  .method-steps li + li,
  .related-guide-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
    font-size: 15px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.32;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 18px;
  }

  .site-header {
    min-height: 62px;
    padding: 8px 16px;
  }

  .breadcrumb {
    padding: 8px 16px;
    font-size: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .header-cta {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero {
    background-position: 68% center;
  }

  .hero::before {
    background: rgba(250, 252, 250, 0.86);
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 42px 0 36px;
  }

  .category-label {
    margin-bottom: 15px;
    font-size: 11px;
  }

  .hero-lead {
    margin-top: 17px;
    font-size: 16px;
    line-height: 1.7;
  }

  .mobile-break {
    display: block;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

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

  .text-link {
    justify-self: center;
    font-size: 13px;
  }

  .hero-facts {
    margin-top: 23px;
  }

  .hero-facts div {
    padding: 11px 9px;
  }

  .hero-facts dt {
    font-size: 9px;
  }

  .hero-facts dd {
    font-size: 14px;
  }

  .hero-facts dd small {
    display: block;
    margin-top: 1px;
    font-size: 9px;
    line-height: 1.2;
  }

  .hero-note {
    font-size: 10px;
  }

  .assurance-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .assurance p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    text-align: left;
  }

  .assurance p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .assurance strong {
    font-size: 12px;
  }

  .assurance span {
    font-size: 10px;
    text-align: right;
  }

  .quick-answer {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .quick-answer-lead {
    margin-top: 17px;
    font-size: 16px;
  }

  .answer-facts {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .answer-facts div {
    padding: 14px 0;
  }

  .answer-facts div + div {
    border-top: 1px solid #d8cfc2;
    border-left: 0;
  }

  .section {
    padding: 70px 16px;
  }

  .section-intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-intro > p:last-child {
    margin-top: 13px;
    font-size: 15px;
  }

  .symptoms {
    width: calc(100% - 32px);
    padding: 70px 0;
  }

  .symptom-list article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .item-number {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .route-flow {
    gap: 26px 12px;
  }

  .route-flow li > span {
    width: 56px;
    height: 56px;
    border-width: 6px;
  }

  .route-flow strong {
    margin-top: 10px;
    font-size: 17px;
  }

  .route-flow small {
    font-size: 10px;
  }

  .definition {
    margin-top: 34px;
    padding: 18px;
    font-size: 13px;
  }

  .diagnosis-grid {
    grid-template-columns: 1fr;
  }

  .diagnosis-grid article {
    padding: 23px 18px;
  }

  .diagnosis-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .diagnosis-index {
    margin-bottom: 15px;
  }

  .report-preview figcaption {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .report-preview figcaption strong,
  .report-preview figcaption span,
  .report-preview figcaption small {
    grid-row: auto;
    grid-column: 1;
  }

  .report-preview figcaption strong {
    font-size: 17px;
  }

  .report-body {
    grid-template-columns: 1fr;
  }

  .report-score,
  .report-gap,
  .report-priority {
    padding: 22px 18px;
    border-left: 0;
  }

  .report-gap,
  .report-priority {
    border-top: 1px solid var(--line);
  }

  .report-score strong {
    font-size: 48px;
  }

  .gap-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .report-priority {
    grid-column: 1;
  }

  .report-priority ol {
    grid-template-columns: 1fr;
  }

  .sample-depth {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-depth > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sample-depth > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .deliverable-table {
    grid-template-columns: 1fr;
  }

  .deliverable-table > div {
    grid-template-columns: 34px 1fr;
    gap: 4px 10px;
    padding: 16px 0 !important;
    border-left: 0 !important;
  }

  .deliverable-table p {
    grid-column: 2;
  }

  .price-layout {
    gap: 35px;
  }

  .price-includes {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 24px 20px;
  }

  .price-panel > strong {
    font-size: 45px;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .implementation-table article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .implementation-table article > strong {
    justify-self: start;
  }

  .implementation-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .implementation-flow li:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .implementation-flow li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .implementation-boundary {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fit-comparison {
    grid-template-columns: 1fr;
  }

  .fit-comparison > div {
    padding: 24px 20px;
  }

  .fit-comparison > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 22px 0;
    border-left: 0 !important;
  }

  .process-list > li > span {
    margin-bottom: 0;
  }

  .method-steps li {
    padding: 20px 0;
  }

  .method-note {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 17px 16px;
  }

  .company-panel {
    padding: 22px 18px;
  }

  .company-panel dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .faq-list summary {
    padding: 19px 42px 19px 0;
    font-size: 15px;
  }

  .faq-list details p {
    padding: 0 0 20px;
    font-size: 14px;
  }

  .free-scope div {
    padding: 10px 8px;
  }

  .free-scope dd {
    font-size: 12px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option {
    padding: 24px 18px;
  }

  .contact-option + .contact-option {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-option > p:not(.option-label) {
    min-height: 0;
    margin-bottom: 18px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 32px 16px 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 18px;
    color: #fff;
    background: var(--terracotta);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 -8px 26px rgba(24, 34, 31, 0.18);
    font-size: 15px;
    font-weight: 900;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 28px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    padding-right: 8px;
    padding-left: 8px;
  }

  .header-cta span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
