/* NexFlowsTech qualified booking growth site
   Native CSS system retained for the static handoff. */
:root {
  --ink: #142331;
  --ink-soft: #263947;
  --navy: #0d1b2a;
  --navy-soft: #152d41;
  --paper: #f5f8fb;
  --surface: #ffffff;
  --mist: #e8f0f5;
  --line: #d7e2e9;
  --line-strong: #b8cbd7;
  --muted: #5a6b77;
  --brand: #4f7698;
  --brand-dark: #365d7c;
  --brand-deep: #284b65;
  --brand-pale: #e2edf4;
  --success: #276749;
  --warning: #8a5d18;
  --danger: #8f2d2d;
  --radius: 16px;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(30, 67, 92, .13);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.site-container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow-container { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 18px; top: -60px; z-index: 100;
  padding: 11px 16px; border-radius: 8px; background: var(--ink); color: #fff;
}
.skip-link:focus { top: 18px; }
.eyebrow {
  margin: 0 0 13px; color: var(--brand);
  font: 700 12px/1.25 "Manrope", system-ui, sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
}
h1, h2, h3, h4, legend {
  margin: 0; color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -.045em; text-wrap: balance;
}
h1 { font-size: clamp(2.85rem, 6vw, 5.5rem); line-height: .99; font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4.2vw, 4.25rem); line-height: 1.03; font-weight: 750; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.15; }
h4 { font-size: 1.08rem; line-height: 1.25; }
p { max-width: 70ch; }
.muted { color: var(--muted); }
.accent { color: var(--brand); }
.section-lede { margin: 22px 0 0; color: var(--muted); font-size: 1.1rem; }
.section-heading { max-width: 820px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .section-lede { margin-inline: auto; }

/* Shared navigation */
.site-header {
  position: sticky; top: 0; z-index: 50; min-height: 74px;
  border-bottom: 1px solid rgba(79,118,152,.18);
  background: rgba(245,248,251,.94); backdrop-filter: blur(16px);
}
.site-nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 116px; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 24px; font-size: 14px; font-weight: 700; }
.primary-nav > a:not(.nav-cta) { color: var(--ink-soft); }
.primary-nav > a:not(.nav-cta):hover { color: var(--brand); }
.nav-cta, .button, .primary-button, .secondary-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px; border: 1px solid transparent;
  border-radius: 10px; font: 700 14px/1 "Manrope", system-ui, sans-serif;
  text-align: center; white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.nav-cta, .button-primary, .primary-button { background: var(--brand-deep); color: #fff; }
.nav-cta { min-height: 43px; padding-inline: 16px; }
.nav-cta:hover, .button-primary:hover, .primary-button:hover { background: var(--brand-dark); }
.button-light { background: #fff; color: var(--brand-deep); }
.button-light:hover { background: var(--brand-pale); }
.secondary-button { border-color: var(--brand-deep); background: transparent; color: var(--brand-deep); }
.secondary-button:hover { background: var(--brand-pale); }
.nav-cta:hover, .button:hover, .primary-button:hover, .secondary-button:hover { transform: translateY(-2px); }
.nav-cta:active, .button:active, .primary-button:active, .secondary-button:active { transform: translateY(1px); }
.text-link, .inline-link { color: var(--brand-deep); font-weight: 700; border-bottom: 1px solid var(--brand); }
.text-link:hover, .inline-link:hover { color: var(--brand); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 8px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

/* Global section patterns */
.hero {
  min-height: calc(100dvh - 74px); display: flex; align-items: center;
  padding: clamp(58px, 8vh, 96px) 0; background: var(--paper); overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: 58px; align-items: center; }
.hero h1 { max-width: 720px; }
.hero h1 em { display: block; color: var(--brand); font-style: normal; }
.hero-lede { max-width: 570px; margin: 23px 0 29px; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero-actions, .industry-actions, .service-actions, .cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.hero-note { margin: 18px 0 0; color: var(--muted); font-size: .83rem; }
.hero-panel { position: relative; }
.journey-card {
  position: relative; overflow: hidden; padding: 27px; border: 1px solid #2d465a;
  border-radius: 22px; background: var(--navy); color: #fff; box-shadow: 0 28px 70px rgba(13,27,42,.24);
}
.journey-card::before { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(226,237,244,.08); border-radius: 15px; pointer-events: none; }
.journey-card-header { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; padding: 2px 0 20px; border-bottom: 1px solid rgba(226,237,244,.14); }
.journey-card-header span { color: #9fc2d7; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.journey-card-header strong { max-width: 260px; color: #fff; font: 700 14px/1.35 "Manrope", system-ui, sans-serif; text-align: right; }
.journey-track-wrap { position: relative; z-index: 1; padding: 24px 0 8px; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin: 0; padding: 0; list-style: none; }
.journey-track::before { content: ""; position: absolute; left: 10%; right: 10%; top: 21px; height: 2px; background: rgba(226,237,244,.15); }
.journey-track li { position: relative; z-index: 1; min-width: 0; color: #fff; text-align: center; transition: opacity .35s ease; }
.journey-node { display: grid; place-items: center; width: 43px; height: 43px; margin: 0 auto 10px; border: 1px solid #66859c; border-radius: 50%; background: var(--navy); color: #bcd1df; font: 800 11px/1 "Manrope", system-ui, sans-serif; transition: border-color .35s ease, background-color .35s ease, box-shadow .35s ease; }
.journey-track li strong { display: block; color: #fff; font: 700 10px/1.25 "Manrope", system-ui, sans-serif; }
.journey-track li > span:last-child { display: block; margin-top: 4px; color: #9fb2bf; font-size: 8px; line-height: 1.25; }
.journey-marker { position: absolute; z-index: 3; top: 38px; left: 10%; width: 14px; height: 14px; border: 3px solid var(--navy); border-radius: 50%; background: #b7d3e4; box-shadow: 0 0 0 4px rgba(159,194,215,.18); opacity: 0; transform: translate(-50%,-50%); transition: left .72s cubic-bezier(.2,.7,.2,1), opacity .3s ease; }
.journey-ready .journey-marker { opacity: 1; }
.journey-card[data-current="0"] .journey-marker { left: 10%; }
.journey-card[data-current="1"] .journey-marker { left: 30%; }
.journey-card[data-current="2"] .journey-marker { left: 50%; }
.journey-card[data-current="3"] .journey-marker { left: 70%; }
.journey-card[data-current="4"] .journey-marker { left: 90%; }
.journey-ready .journey-track li { opacity: .48; }
.journey-ready .journey-track li.is-active, .journey-ready .journey-track li.is-complete { opacity: 1; }
.journey-track li.is-active .journey-node, .journey-track li.is-complete .journey-node { border-color: #9fc2d7; background: var(--navy-soft); box-shadow: 0 0 0 4px rgba(79,118,152,.15); }
.journey-explainer { position: relative; z-index: 1; min-height: 104px; margin-top: 16px; padding: 17px 18px; border: 1px solid rgba(226,237,244,.1); border-radius: 12px; background: rgba(226,237,244,.07); }
.journey-explainer span { display: block; color: #9fb2bf; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.journey-explainer strong { display: block; margin-top: 8px; color: #fff; font: 700 16px/1.35 "Manrope", system-ui, sans-serif; }
.journey-loop { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; margin-top: 15px; padding-top: 14px; border-top: 1px solid rgba(226,237,244,.14); color: #9fb2bf; font-size: 9px; transition: opacity .4s ease, transform .4s ease; }
.journey-loop strong { color: #bcd8e8; font-family: "Manrope", system-ui, sans-serif; }
.journey-ready:not(.journey-complete) .journey-loop { opacity: .28; transform: translateY(5px); }
.hero-signal { margin: 22px 0 0; padding: 17px 20px; border-left: 3px solid var(--brand); background: var(--brand-pale); color: var(--brand-deep); font-size: .9rem; }
.light-band { padding: 78px 0; background: var(--surface); }
.mist-band { padding: 108px 0; background: var(--mist); }
.navy-band { padding: 112px 0; background: var(--navy); color: #fff; }
.navy-band h2, .navy-band h3 { color: #fff; }
.navy-band .section-lede { color: #c3d0d9; }
.band-heading { max-width: 820px; }
.band-heading .eyebrow { color: #9fc2d7; }
.band-heading h2 { color: #fff; }
.band-heading p { color: #c3d0d9; }

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 55px; border-top: 1px solid #46515a; }
.problem-grid-compact { grid-template-columns: repeat(3, 1fr); }
.problem-item { padding: 24px 18px 8px 0; border-bottom: 1px solid #46515a; }
.problem-item span { color: #91a9ba; font: 700 12px "Manrope", system-ui, sans-serif; letter-spacing: .1em; }
.problem-item h3 { margin: 25px 0 12px; font-size: 1.35rem; }
.problem-item p { margin: 0; color: #c3d0d9; font-size: .95rem; }
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 55px; }
.stage-card { display: flex; flex-direction: column; min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.stage-card:nth-child(2) { background: var(--brand-pale); }
.stage-card:nth-child(3) { background: #edf3f7; }
.stage-card:nth-child(4) { background: #dce9f1; }
.stage-card .stage-index { color: var(--brand); font: 700 11px "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.stage-card h3 { margin: 30px 0 13px; font-size: 1.55rem; }
.stage-card p { margin: 0; color: var(--muted); }
.stage-card strong { margin-top: auto; padding-top: 22px; color: var(--brand-deep); font: 700 .9rem/1.35 "Manrope", system-ui, sans-serif; }
.install-section { padding-block: 102px; }
.install-grid .stage-card { min-height: 245px; }
.install-grid .stage-card h3 { margin-top: 28px; }
.section-detail-link { margin: 30px 0 0; }
.application-section { padding-block: 74px; }
.application-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; align-items: center; }
.application-layout h2 { font-size: clamp(2rem, 3.3vw, 3.25rem); }
.application-links { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.application-links a { display: grid; grid-template-columns: 1.2fr .9fr auto; gap: 24px; align-items: center; padding: 24px 27px; }
.application-links a + a { border-top: 1px solid var(--line); }
.application-links a:hover { background: var(--paper); }
.application-links span { color: var(--muted); font-size: .9rem; }
.application-links strong { color: var(--brand-deep); font: 700 .95rem/1.35 "Manrope", system-ui, sans-serif; }
.application-links i { color: var(--brand); font-style: normal; font-size: 1.25rem; }
.deliverables-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 96px; align-items: start; }
.sticky-heading { position: sticky; top: 112px; }
.deliverable-list { margin: 0; padding: 6px 30px; border-radius: var(--radius); background: var(--surface); }
.deliverable-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 32px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.deliverable-row:last-child { border-bottom: 0; }
.deliverable-row strong { color: var(--brand-deep); font: 700 14px/1.35 "Manrope", system-ui, sans-serif; }
.deliverable-row p { margin: 0; color: var(--muted); }
.compatibility-layout, .responsibility-layout, .fit-layout, .investment-layout, .proof-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: start; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.two-column > div { padding: 34px; }
.two-column > div + div { border-left: 1px solid var(--line); background: var(--paper); }
.two-column h3 { margin-bottom: 15px; }
.two-column p { margin: 0; color: var(--muted); }
.plain-list { margin: 24px 0 0; padding: 0; list-style: none; }
.plain-list li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); color: var(--muted); }
.plain-list li:last-child { border-bottom: 0; }
.plain-list li::before { content: "+"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.industry-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }
.industry-card { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.industry-card h3 { margin: 18px 0 12px; }
.industry-card p { margin: 0 0 22px; color: var(--muted); }
.industry-card .text-link { display: inline-block; }
.responsibility-layout { align-items: stretch; }
.responsibility-layout .two-column { grid-column: 1 / -1; }
.fit-layout { align-items: center; }
.fit-layout .two-column { grid-column: 2; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline-item { min-height: 260px; padding: 28px 30px 28px 0; border-right: 1px solid var(--line); }
.timeline-item + .timeline-item { padding-left: 30px; }
.timeline-item:last-child { border-right: 0; }
.timeline-item span { color: var(--brand); font: 700 11px "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h3 { margin: 23px 0 12px; }
.timeline-item p { margin: 0; color: var(--muted); }
.timeline-compact .timeline-item { min-height: 220px; }
.pilot-section { padding-block: 98px; }
.investment-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; padding: 38px; border-radius: var(--radius); background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.investment-card h3 { color: #fff; font-size: 2rem; }
.investment-card p { color: #c3d0d9; }
.investment-price { align-self: center; padding-left: 30px; border-left: 1px solid #405565; }
.investment-price strong { display: block; color: #fff; font: 800 clamp(2rem, 4vw, 3.7rem)/1 "Manrope", system-ui, sans-serif; letter-spacing: -.06em; }
.investment-price span { display: block; margin-top: 8px; color: #c3d0d9; font-size: .9rem; }
.fit-investment-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; align-items: center; }
.fit-investment-card { padding: 34px; border: 1px solid #2d465a; border-radius: 20px; background: #fff; color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.16); }
.investment-facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.investment-facts div { min-width: 0; padding: 18px; }
.investment-facts div + div { border-left: 1px solid var(--line); }
.investment-facts span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.investment-facts strong { display: block; margin-top: 7px; color: var(--brand-deep); font: 800 1rem/1.3 "Manrope", system-ui, sans-serif; }
.fit-investment-card > p { margin: 24px 0 0; color: var(--muted); font-size: .95rem; }
.fit-investment-card > p strong { color: var(--ink); }
.fit-investment-card .investment-note { margin-top: 12px; padding-top: 15px; border-top: 1px solid var(--line); font-size: .85rem; }
.fit-investment-card .service-actions { margin-top: 24px; }
.proof-box { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.proof-box h3 { margin-bottom: 15px; }
.proof-box p { margin: 0; color: var(--muted); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 23px 44px 23px 0; cursor: pointer; list-style: none; font: 700 17px/1.35 "Manrope", system-ui, sans-serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; color: var(--brand); font-size: 25px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 44px 23px 0; color: var(--muted); }
.cta-band { padding: 104px 0; background: var(--brand); color: #fff; }
.cta-band h2 { max-width: 820px; color: #fff; }
.cta-band p { max-width: 650px; margin: 22px 0 30px; color: #e2edf4; font-size: 1.08rem; }
.cta-band .text-link { color: #fff; border-color: #d8e8f2; }

/* Inner pages */
.inner-hero { padding: 76px 0 88px; background: var(--paper); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); gap: 80px; align-items: center; }
.inner-hero h1 { max-width: 760px; }
.inner-hero .hero-lede { max-width: 650px; }
.inner-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.inner-panel h3 { margin-bottom: 20px; }
.inner-panel dl { margin: 0; }
.inner-panel dl div { display: grid; grid-template-columns: .65fr 1.35fr; gap: 22px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.inner-panel dl div:last-child { border-bottom: 0; }
.inner-panel dt { color: var(--brand-deep); font-weight: 700; }
.inner-panel dd { margin: 0; color: var(--muted); }
.inner-section { padding: 104px 0; background: var(--surface); }
.inner-section.alt { background: var(--mist); }
.inner-section.navy { background: var(--navy); color: #fff; }
.inner-section.navy h2, .inner-section.navy h3 { color: #fff; }
.inner-section.navy p, .inner-section.navy li { color: #c3d0d9; }
.service-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 52px; }
.service-block { padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.service-block h3 { margin: 0 0 12px; }
.service-block p { margin: 0; color: var(--muted); }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 24px; border-bottom: 1px solid var(--line); color: var(--muted); }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 52px; }
.phase-card { min-height: 260px; padding: 27px; border: 1px solid #3e5566; border-radius: var(--radius); background: var(--navy-soft); }
.phase-card span { color: #9fc2d7; font: 700 11px "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.phase-card h3 { margin: 24px 0 12px; }
.phase-card p { margin: 0; }
.metric-table { width: 100%; border-collapse: collapse; margin-top: 42px; background: var(--surface); }
.metric-table th, .metric-table td { padding: 16px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.metric-table th { color: var(--brand-deep); font: 700 13px/1.35 "Manrope", system-ui, sans-serif; }
.metric-table td { color: var(--muted); }
.industry-hero { padding: 74px 0 88px; }
.industry-hero .inner-hero-grid { align-items: start; }
.flow-panel { padding: 20px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.flow-panel h3 { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.flow-list { margin: 0; padding: 8px 0 0; list-style: none; counter-reset: flowpanel; }
.flow-list li { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line); counter-increment: flowpanel; }
.flow-list li:last-child { border-bottom: 0; }
.flow-list li::before { content: counter(flowpanel); display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--brand); border-radius: 50%; color: var(--brand-deep); font: 700 11px "Manrope", system-ui, sans-serif; }
.flow-list strong { display: block; font: 700 14px/1.35 "Manrope", system-ui, sans-serif; }
.flow-list span { display: block; margin-top: 3px; color: var(--muted); font-size: .88rem; }
.resource-hero { padding: 72px 0 68px; }
.resource-hero h1 { max-width: 840px; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 46px; }
.resource-card { display: flex; flex-direction: column; min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.resource-card .resource-type { color: var(--brand); font: 700 11px "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.resource-card h2, .resource-card h3 { margin: 17px 0 11px; font-size: 1.6rem; }
.resource-card p { margin: 0; color: var(--muted); }
.resource-card .text-link { margin-top: auto; padding-top: 22px; align-self: flex-start; }
.resource-card.featured { grid-column: span 2; background: var(--navy); border-color: var(--navy); }
.resource-card.featured h2, .resource-card.featured p { color: #fff; }
.resource-card.featured p { color: #c3d0d9; max-width: 700px; }
.resource-card.featured .resource-type { color: #9fc2d7; }
.resource-card.featured .text-link { color: #fff; border-color: #d8e8f2; }
.article { padding: 70px 0 104px; }
.article-header { max-width: 840px; margin-bottom: 58px; }
.article-header h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.article-header .article-intro { margin: 24px 0 0; color: var(--muted); font-size: 1.15rem; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: 88px; align-items: start; }
.article-body, .article-aside { min-width: 0; }
.article-body h2 { margin: 54px 0 16px; font-size: 2.15rem; }
.article-body h3 { margin: 34px 0 12px; font-size: 1.4rem; }
.article-body p, .article-body li { color: var(--ink-soft); }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin: 9px 0; }
.article-aside { position: sticky; top: 108px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); }
.article-aside strong { display: block; font: 700 14px/1.3 "Manrope", system-ui, sans-serif; }
.article-aside a { display: block; margin-top: 13px; color: var(--brand-deep); font-size: .9rem; font-weight: 700; }
.article-callout { margin: 31px 0; padding: 25px; border-left: 3px solid var(--brand); background: var(--brand-pale); }
.article-callout p { margin: 0; color: var(--brand-deep); }

/* Diagnostic */
.diagnostic-hero { padding: 70px 0 64px; }
.diagnostic-hero h1 { max-width: 860px; }
.diagnostic-hero .hero-lede { max-width: 690px; }
.diagnostic-facts { display: flex; flex-wrap: wrap; gap: 0; margin-top: 25px; color: var(--brand-deep); font-size: .9rem; font-weight: 700; }
.diagnostic-facts span { padding: 0 17px; border-left: 1px solid var(--line-strong); }
.diagnostic-facts span:first-child { padding-left: 0; border-left: 0; }
.diagnostic-alternative { margin: 22px 0 0; color: var(--muted); font-size: .92rem; }
.diagnostic-section { padding: 84px 0 110px; border-top: 1px solid var(--line); background: var(--mist); }
.diagnostic-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 76px; align-items: start; }
.diagnostic-intro { position: sticky; top: 110px; }
.diagnostic-intro h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.privacy-callout { margin-top: 28px; padding: 20px; border: 1px solid #bdd0dc; border-radius: var(--radius); background: var(--brand-pale); }
.privacy-callout strong { color: var(--brand-deep); font: 700 14px/1.3 "Manrope", system-ui, sans-serif; }
.privacy-callout p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.diagnostic-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.form-status { margin: 23px 28px 0; padding: 13px 15px; border: 1px solid #e0aaaa; border-radius: 9px; background: #fff5f5; color: var(--danger); font-weight: 700; }
.question-group { margin: 0; padding: 29px 30px 32px; border: 0; border-bottom: 1px solid var(--line); }
.question-group legend { width: 100%; padding: 0; font-size: 1.18rem; line-height: 1.35; }
.question-help { margin: 7px 0 0; color: var(--muted); font-size: .88rem; }
.option-grid, .option-stack { display: grid; gap: 10px; margin-top: 19px; }
.option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.option-grid label, .option-stack label { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfd; color: var(--ink); cursor: pointer; transition: border-color .16s ease, background-color .16s ease, transform .16s ease; }
.option-grid label:hover, .option-stack label:hover { border-color: var(--brand); background: #f5f9fc; }
.option-grid label:has(input:checked), .option-stack label:has(input:checked) { border-color: var(--brand); background: var(--brand-pale); box-shadow: inset 0 0 0 1px var(--brand); }
.option-grid input, .option-stack input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--brand-deep); }
.option-stack strong { display: block; font: 700 14px/1.35 "Manrope", system-ui, sans-serif; }
.option-stack small { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.question-group[data-invalid="true"] { background: #fff9f9; }
.question-error { margin: 11px 0 0; color: var(--danger); font-size: .86rem; font-weight: 700; }
.form-submit { padding: 28px 30px 32px; }
.form-submit p { margin: 11px 0 0; color: var(--muted); font-size: .84rem; }
.noscript-message { margin: 0 28px 28px; padding: 15px; border: 1px solid #d7c08f; border-radius: 9px; background: #fff9e8; color: var(--warning); }
.result-section { padding: 90px 0; border-top: 1px solid var(--line); background: var(--surface); }
.result-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.result-heading h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.result-heading p { margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.result-detail { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.result-detail h3 { margin-bottom: 17px; }
.result-detail ul { margin: 0; padding: 0; list-style: none; }
.result-detail li { position: relative; padding: 11px 0 11px 22px; border-bottom: 1px solid var(--line); color: var(--muted); }
.result-detail li::before { content: ""; position: absolute; left: 1px; top: 20px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.result-recommendation { margin-top: 26px; padding-top: 25px; border-top: 1px solid var(--line); }
.result-recommendation p { margin: 10px 0 20px; color: var(--muted); }
.result-section[data-band="pilot_ready"] .result-label { color: var(--success); }
.result-section[data-band="not_suitable"] .result-label { color: var(--danger); }
.restart-button { margin-top: 18px; border: 0; background: transparent; color: var(--brand-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* Legacy and legal */
.legacy-page { min-height: calc(100dvh - 74px); padding: 90px 0; }
.legacy-card { max-width: 760px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.legacy-card h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legacy-card > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.legacy-card .cta-actions { margin-top: 28px; }
.legal-page { max-width: 820px; padding: 74px 0 105px; }
.legal-page h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.legal-page .updated { margin: 16px 0 55px; color: var(--muted); font-size: .9rem; }
.legal-page h2 { margin-top: 45px; font-size: 1.6rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page ul { padding-left: 24px; }
.legal-page a { color: var(--brand-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-back { display: inline-flex; margin-bottom: 32px; color: var(--brand-deep); font-weight: 700; }

/* Footer */
.site-footer { padding: 63px 0 25px; background: var(--navy); color: #fff; }
.footer-main { display: flex; justify-content: space-between; gap: 55px; padding-bottom: 48px; }
.footer-main img { width: 125px; filter: brightness(0) invert(1); }
.footer-main p { max-width: 480px; margin: 18px 0 0; color: #c3d0d9; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-contact a { font-weight: 700; }
.footer-contact span { color: #a9bac5; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid #3b5262; color: #9cafba; font-size: .82rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a:hover { color: #fff; }

/* Motion is progressive enhancement. Content remains visible if JavaScript is unavailable. */
[data-reveal] { opacity: 1; transform: none; }
.motion-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid #78a9c8; outline-offset: 4px; }

@media (max-width: 1040px) {
  .primary-nav { gap: 15px; font-size: 13px; }
  .hero-grid, .inner-hero-grid { gap: 42px; }
  .compatibility-layout, .responsibility-layout, .fit-layout, .investment-layout, .proof-layout { gap: 55px; }
}
@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .primary-nav { display: none; position: absolute; top: 73px; left: 0; right: 0; padding: 22px 20px 26px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 14px 28px rgba(18,43,64,.08); flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 13px 0; }
  .primary-nav .nav-cta { margin-top: 9px; }
  .hero-grid, .inner-hero-grid, .deliverables-layout, .compatibility-layout, .responsibility-layout, .fit-layout, .investment-layout, .proof-layout, .faq-layout, .diagnostic-layout, .result-layout, .article-layout, .application-layout, .fit-investment-layout { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: auto; }
  .sticky-heading, .diagnostic-intro, .article-aside { position: static; }
  .fit-layout .two-column { grid-column: auto; }
  .article-aside { order: -1; }
  .investment-card { grid-template-columns: 1fr; }
  .investment-price { padding: 24px 0 0; border-left: 0; border-top: 1px solid #405565; }
  .diagnostic-intro { max-width: 720px; }
}
@media (max-width: 720px) {
  .site-container, .narrow-container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.3rem); }
  .hero, .inner-hero, .industry-hero, .diagnostic-hero, .resource-hero { padding: 52px 0 62px; }
  .light-band, .mist-band, .navy-band, .inner-section { padding: 78px 0; }
  .hero-actions, .industry-actions, .service-actions, .cta-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions > *, .industry-actions > *, .service-actions > *, .cta-actions > * { width: auto; }
  .problem-grid, .stage-grid, .industry-cards, .service-blocks, .phase-grid, .resource-grid { grid-template-columns: 1fr; }
  .resource-card.featured { grid-column: auto; }
  .problem-item { padding: 22px 0; }
  .two-column { grid-template-columns: 1fr; }
  .two-column > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .deliverable-list { padding-inline: 20px; }
  .deliverable-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item, .timeline-item + .timeline-item { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline-item:last-child { border-bottom: 0; }
  .journey-card { padding: 23px; border-radius: 17px; }
  .journey-card::before { inset: 12px; }
  .journey-card-header { flex-direction: column; gap: 5px; }
  .journey-card-header strong { max-width: none; text-align: left; }
  .journey-track-wrap { padding-top: 18px; }
  .journey-track { grid-template-columns: 1fr; gap: 3px; }
  .journey-track::before { left: 21px; right: auto; top: 22px; bottom: 22px; width: 2px; height: auto; }
  .journey-track li { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 12px; min-height: 58px; text-align: left; }
  .journey-node { grid-row: 1 / span 2; width: 43px; height: 43px; margin: 0; }
  .journey-track li strong { align-self: end; font-size: 11px; }
  .journey-track li > span:last-child { align-self: start; margin-top: 3px; font-size: 9px; }
  .journey-marker { display: none; }
  .journey-explainer { min-height: 114px; margin-top: 12px; }
  .journey-loop { flex-direction: column; gap: 4px; }
  .application-links a { grid-template-columns: 1fr auto; gap: 7px 16px; padding: 21px; }
  .application-links span { grid-column: 1; }
  .application-links strong { grid-column: 1; }
  .application-links i { grid-column: 2; grid-row: 1 / span 2; }
  .investment-facts { grid-template-columns: 1fr; }
  .investment-facts div + div { border-left: 0; border-top: 1px solid var(--line); }
  .fit-investment-card { padding: 24px; }
  .footer-main, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom nav { gap: 12px 18px; }
  .question-group { padding-inline: 20px; }
  .option-grid { grid-template-columns: 1fr; }
  .form-submit { padding-inline: 20px; }
  .form-status { margin-inline: 20px; }
  .noscript-message { margin-inline: 20px; }
  .result-detail { padding: 23px; }
  .legal-page { padding-top: 52px; }
  .legacy-card { padding: 28px 23px; }
  .metric-table { display: block; overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}

/* Homepage release: evidence-led composition for the paid lead-to-booking offer. */
.home-page .site-header { background: rgba(245,248,251,.96); }
.home-hero {
  min-height: calc(100dvh - 74px);
  display: flex;
  align-items: center;
  padding: 62px 0 76px;
  background: var(--paper);
}
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(410px, .98fr); gap: 82px; align-items: center; }
.home-hero-copy h1 { max-width: 700px; font-size: clamp(3.15rem, 5.7vw, 5.25rem); line-height: 1.01; }
.home-hero-copy h1 span { display: block; color: var(--brand); }
.home-hero-copy .hero-lede { max-width: 560px; margin: 24px 0 30px; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero-system-preview {
  padding: 31px;
  border: 1px solid #2d465a;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 22px 48px rgba(13,27,42,.17);
}
.preview-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(226,237,244,.17); }
.preview-heading span { color: #9fc2d7; font: 700 11px/1.25 "Manrope", system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.preview-heading strong { color: #fff; font: 700 18px/1.2 "Manrope", system-ui, sans-serif; text-align: right; }
.preview-steps { margin: 0; padding: 7px 0 0; list-style: none; }
.preview-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: center; padding: 19px 0; border-bottom: 1px solid rgba(226,237,244,.13); }
.preview-steps li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #7596ad; border-radius: 50%; color: #dbeaf2; font: 800 11px/1 "Manrope", system-ui, sans-serif; }
.preview-steps strong, .preview-owner strong { display: block; color: #fff; font: 700 15px/1.3 "Manrope", system-ui, sans-serif; }
.preview-steps small, .preview-owner span { display: block; margin-top: 4px; color: #b8cbd7; font-size: .88rem; line-height: 1.45; }
.preview-owner { margin-top: 20px; padding: 17px 18px; background: var(--brand-deep); }

.home-sample { padding: 108px 0 116px; background: var(--surface); }
.sample-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 82px; align-items: center; }
.sample-intro h2, .service-heading h2, .fit-copy h2, .contact-grid h2 { max-width: 620px; font-size: clamp(2.35rem, 4vw, 4rem); }
.sample-intro p, .service-heading p, .fit-copy p, .contact-grid p { max-width: 540px; margin: 22px 0 28px; color: var(--muted); font-size: 1.06rem; }
.appointment-brief { padding: 28px 30px 25px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--paper); }
.brief-header { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.brief-header span { color: var(--brand-deep); font: 700 11px/1.25 "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.brief-header strong { max-width: 240px; color: var(--ink); font: 700 15px/1.25 "Manrope", system-ui, sans-serif; text-align: right; }
.brief-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 5px 0 0; }
.brief-fields div { padding: 17px 0 16px; border-bottom: 1px solid var(--line); }
.brief-fields dt { color: var(--muted); font: 700 10px/1.25 "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.brief-fields dd { margin: 7px 0 0; color: var(--ink); font: 700 15px/1.35 "Manrope", system-ui, sans-serif; }
.brief-note { margin: 21px 0 0; color: var(--muted); font-size: .86rem; }

.home-service { padding: 108px 0 116px; background: var(--mist); }
.service-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.1fr) minmax(250px, .78fr); gap: 54px; align-items: start; }
.service-heading { position: sticky; top: 112px; }
.service-list { border-top: 1px solid var(--line-strong); }
.service-list article { padding: 23px 0 25px; border-bottom: 1px solid var(--line-strong); }
.service-list article span { color: var(--brand-deep); font: 700 14px/1.3 "Manrope", system-ui, sans-serif; }
.service-list article p { margin: 9px 0 0; color: var(--muted); }
.service-investment { padding: 26px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--surface); }
.investment-label { display: block; color: var(--brand); font: 700 11px/1.25 "Manrope", system-ui, sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.service-investment > strong { display: block; margin-top: 14px; color: var(--ink); font: 800 clamp(2rem, 3.4vw, 3.1rem)/1 "Manrope", system-ui, sans-serif; letter-spacing: -.055em; }
.service-investment p { margin: 17px 0 0; color: var(--muted); font-size: .92rem; }
.service-investment .boundary-copy { padding-top: 17px; border-top: 1px solid var(--line); }
.service-investment .text-link { display: inline-block; margin-top: 20px; }

.home-recovery { padding: 92px 0 100px; background: var(--navy); color: #fff; }
.recovery-home-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 90px; align-items: start; }
.home-recovery .eyebrow { color: #9fc2d7; }
.home-recovery h2 { max-width: 620px; color: #fff; font-size: clamp(2.35rem, 4vw, 4rem); }
.recovery-home-copy > p { max-width: 620px; margin: 0; color: #d0dde5; font-size: 1.08rem; }
.compact-list { margin: 27px 0 30px; padding: 0; list-style: none; }
.compact-list li { padding: 12px 0 12px 22px; border-top: 1px solid rgba(226,237,244,.18); color: #d0dde5; }
.compact-list li::before { content: "+"; display: inline-block; width: 22px; margin-left: -22px; color: #9fc2d7; font-weight: 800; }
.home-recovery .button-light { margin-top: 3px; }

.home-fit { padding: 108px 0 116px; background: var(--surface); }
.fit-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 84px; align-items: center; }
.fit-links { border-top: 1px solid var(--line-strong); }
.fit-links a { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line-strong); }
.fit-links a:hover { color: var(--brand-deep); }
.fit-links span { color: var(--muted); }
.fit-links strong { color: var(--brand-deep); font: 700 15px/1.3 "Manrope", system-ui, sans-serif; text-align: right; }
.fit-links i { color: var(--brand); font-style: normal; font-size: 1.15rem; }

.home-contact { padding: 97px 0 105px; background: var(--brand); color: #fff; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(260px, .7fr); gap: 90px; align-items: end; }
.contact-grid h2 { color: #fff; }
.contact-grid p { color: #e2edf4; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.contact-actions .button-light { min-width: 175px; }
.contact-email { color: #fff; font: 700 16px/1.3 "Manrope", system-ui, sans-serif; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-note { color: #d6e6ee; font-size: .86rem; }

@media (max-width: 1040px) {
  .home-hero-grid { gap: 48px; }
  .service-layout { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .service-heading { position: static; }
  .service-investment { grid-column: 2; }
}
@media (max-width: 920px) {
  .home-hero { min-height: auto; }
  .home-hero-grid, .sample-grid, .recovery-home-grid, .fit-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .home-hero-grid { gap: 52px; }
  .service-layout { grid-template-columns: minmax(0, 1fr); gap: 35px; }
  .service-investment { grid-column: auto; max-width: 560px; }
  .sample-grid, .recovery-home-grid, .fit-grid, .contact-grid { gap: 48px; }
}
@media (max-width: 720px) {
  .home-hero, .home-sample, .home-service, .home-fit { padding-block: 72px 80px; }
  .home-recovery, .home-contact { padding-block: 74px 82px; }
  .home-hero-copy h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero-system-preview { padding: 23px; }
  .preview-heading { align-items: start; flex-direction: column; gap: 8px; }
  .preview-heading strong { text-align: left; }
  .brief-header { align-items: start; flex-direction: column; gap: 8px; }
  .brief-header strong { text-align: left; }
  .brief-fields { grid-template-columns: 1fr; }
  .fit-links a { grid-template-columns: 1fr; gap: 8px; }
  .fit-links strong { text-align: left; }
  .contact-actions { align-items: stretch; }
  .contact-actions .button-light { width: 100%; }
}

/* Recovery service page */
.recovery-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr); gap: 82px; align-items: center; }
.recovery-hero h1 { max-width: 760px; }
.recovery-hero-panel { padding: 29px; border-left: 3px solid var(--brand); background: var(--brand-pale); }
.recovery-hero-panel > span { display: block; color: var(--brand-deep); font: 700 11px/1.25 "Manrope", system-ui, sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.recovery-hero-panel strong { display: block; margin-top: 14px; color: var(--ink); font: 800 1.7rem/1.12 "Manrope", system-ui, sans-serif; letter-spacing: -.04em; }
.recovery-hero-panel p { margin: 16px 0 0; color: var(--muted); }
.recovery-fit-grid, .recovery-report-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 84px; align-items: start; }
.recovery-fit-grid h2, .recovery-report-layout h2 { max-width: 590px; }
.recovery-conditions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.recovery-conditions article { padding: 26px; border: 1px solid var(--line); background: var(--surface); }
.recovery-conditions article + article { background: var(--paper); }
.recovery-conditions h3 { margin: 0; }
.recovery-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 54px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.recovery-process article { min-height: 255px; padding: 24px 23px 25px 0; border-right: 1px solid var(--line-strong); }
.recovery-process article + article { padding-left: 23px; }
.recovery-process article:last-child { border-right: 0; }
.recovery-process span { color: var(--brand); font: 700 11px/1.25 "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.recovery-process h3 { margin: 23px 0 12px; }
.recovery-process p { margin: 0; color: var(--muted); }
.recovery-report-wrap { min-width: 0; overflow-x: auto; }
.recovery-report { margin-top: 0; min-width: 650px; }
.recovery-report th { background: var(--surface); }
.recovery-boundary { background: var(--surface); }

@media (max-width: 920px) {
  .recovery-hero-grid, .recovery-fit-grid, .recovery-report-layout { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .recovery-process { grid-template-columns: repeat(2, 1fr); }
  .recovery-process article:nth-child(2) { border-right: 0; }
  .recovery-process article:nth-child(3), .recovery-process article:nth-child(4) { border-top: 1px solid var(--line-strong); }
}
@media (max-width: 720px) {
  .recovery-hero-grid { gap: 38px; }
  .recovery-hero-panel { padding: 23px; }
  .recovery-conditions, .recovery-process { grid-template-columns: 1fr; }
  .recovery-process article, .recovery-process article + article { min-height: 0; padding: 23px 0; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .recovery-process article:last-child { border-bottom: 0; }
  .recovery-process article:nth-child(3), .recovery-process article:nth-child(4) { border-top: 0; }
}
