@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --graphite: #262626;
  --yellow: #ffc400;
  --yellow-hover: #e8b200;
  --yellow-ink: #735700;
  --warm: #f7f4ed;
  --white: #ffffff;
  --gray: #68655f;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(38, 38, 38, 0.18);
  --container: 1460px;
  --gutter: clamp(20px, 5vw, 80px);
  --section: clamp(88px, 9vw, 144px);
  --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--warm);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.04em; }
h1 { margin-bottom: 32px; font-size: clamp(56px, 6.35vw, 92px); line-height: .97; font-weight: 760; }
h2 { margin-bottom: 32px; max-width: 1050px; font-size: clamp(40px, 4.3vw, 64px); line-height: 1.04; font-weight: 720; }
h3 { margin-bottom: 16px; font-size: clamp(24px, 2vw, 32px); line-height: 1.16; font-weight: 680; }
p { margin-bottom: 24px; }

.container { width: min(100%, calc(var(--container) + 2 * var(--gutter))); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section); overflow: clip; }
section[id], form[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
.section-dark { --gray: #b0b0b0; color: var(--white); background: var(--graphite); }
.section-light { background: var(--warm); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 12px 18px; color: var(--graphite); background: var(--yellow); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 32px;
  padding-inline: var(--gutter);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: inline-grid; width: 204px; min-height: 44px; align-content: center; gap: 1px; text-decoration: none; }
.brand img { width: 166px; height: auto; }
.brand__tagline { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 500; letter-spacing: .01em; line-height: 1.2; white-space: nowrap; }
.brand--footer { display: inline-flex; width: 164px; min-height: 44px; align-items: center; }
.brand--footer img { width: 100%; }
.main-nav { display: flex; height: 100%; align-items: center; gap: clamp(18px, 2.1vw, 36px); font-size: 14px; font-weight: 600; }
.main-nav a, .site-footer a { text-decoration: none; }
.main-nav a { position: relative; padding-block: 8px; color: rgba(255,255,255,.78); }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-solutions { position: relative; display: flex; height: 100%; align-items: center; }
.nav-solutions__trigger { display: flex; align-items: center; }
.nav-solutions__toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  color: rgba(255,255,255,.72);
  background: transparent;
  cursor: pointer;
}
.nav-solutions__toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform 180ms ease; }
.nav-solutions.is-open .nav-solutions__toggle svg { transform: rotate(180deg); }
.nav-solutions.has-current > .nav-solutions__trigger .nav-solutions__overview,
.nav-solutions.is-open > .nav-solutions__trigger .nav-solutions__overview { color: var(--white); }
.nav-solutions__panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 70;
  width: min(520px, calc(100vw - 2 * var(--gutter)));
  padding: 10px 22px 18px;
  color: var(--white);
  background: #202020;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 22px 54px rgba(0,0,0,.32);
  animation: nav-panel-in 180ms cubic-bezier(.16,1,.3,1) both;
}
.nav-solutions__panel[hidden] { display: none; }
.main-nav .nav-solutions__panel a { color: rgba(255,255,255,.88); }
.main-nav .nav-solutions__panel a::after { display: none; }
.nav-solutions__links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.main-nav .nav-solutions__item {
  display: grid;
  min-height: 86px;
  align-content: center;
  gap: 5px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.main-nav .nav-solutions__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.14); }
.main-nav .nav-solutions__item:nth-child(even) { padding-left: 16px; }
.nav-solutions__item strong { font-size: 15px; font-weight: 650; line-height: 1.25; }
.nav-solutions__item span { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 500; line-height: 1.4; }
.nav-solutions__item:hover strong,
.nav-solutions__item:focus-visible strong,
.nav-solutions__item[aria-current="page"] strong { color: var(--yellow); }
.nav-solutions__item:hover span,
.nav-solutions__item:focus-visible span { color: rgba(255,255,255,.72); }
@keyframes nav-panel-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.header-cta { justify-self: end; }
.menu-toggle { display: none; }
.mobile-menu-extra { display: none; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid var(--yellow);
  border-radius: 2px;
  color: var(--graphite);
  background: var(--yellow);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.button--compact { min-height: 44px; padding: 10px 18px; font-size: 14px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 12px; color: inherit; font-weight: 650; text-decoration-color: var(--yellow); text-underline-offset: 6px; }
.text-link span { color: var(--yellow); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.section-index { display: block; margin-bottom: 26px; color: var(--gray); font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.section-intro { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(32px, 7vw, 120px); align-items: end; margin-bottom: clamp(64px, 7vw, 104px); }
.section-intro .section-index { grid-column: 1 / -1; margin-bottom: -6px; }
.section-intro h2 { margin: 0; }
.section-intro__text { align-self: end; color: #555; }
.section-intro__text p:last-child, p.section-intro__text { margin-bottom: 0; }
.section-intro--dark .section-intro__text { color: rgba(255,255,255,.66); }

.hero { min-height: max(810px, 100vh); padding-top: calc(var(--header-height) + 82px); padding-bottom: 56px; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(560px, .9fr) minmax(690px, 1.1fr); gap: clamp(28px, 3vw, 46px); align-items: center; min-height: 610px; }
.hero__content { max-width: 650px; }
.hero h1 { max-width: 650px; font-size: clamp(52px, 4.6vw, 72px); line-height: 1.08; }
.hero__lead { max-width: 640px; color: rgba(255,255,255,.75); font-size: clamp(17px, 1.25vw, 20px); line-height: 1.55; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-block: 40px 26px; }
.hero__note { max-width: 530px; margin: 0; color: var(--gray); font-size: 14px; }
.hero__diagonal { position: absolute; z-index: 0; top: 0; right: 15%; width: clamp(80px, 8vw, 130px); height: clamp(230px, 30vh, 310px); background: var(--yellow); clip-path: polygon(48% 0, 100% 0, 52% 100%, 0 100%); opacity: .97; }
.hero__territory { position: relative; z-index: 2; margin-top: 24px; padding-top: 26px; color: var(--gray); border-top: 1px solid var(--line-dark); font-size: 13px; letter-spacing: .03em; }

.architecture { position: relative; display: grid; grid-template-columns: 250px minmax(440px, 1fr); gap: 28px; align-items: center; min-width: 0; min-height: 520px; }
.architecture__stack { position: relative; z-index: 2; display: grid; height: 456px; grid-template-rows: repeat(5, 1fr); }
.architecture__stack::before { content: ""; position: absolute; top: 45px; bottom: 45px; left: 29px; border-left: 1px dashed rgba(255,255,255,.42); }
.arch-step { position: relative; display: grid; grid-template-columns: 60px minmax(0,1fr) 10px; gap: 14px; align-items: center; }
.arch-step__icon { position: relative; z-index: 1; display: grid; place-items: center; width: 60px; height: 60px; color: rgba(255,255,255,.88); background: var(--graphite); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.arch-step__icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.arch-step > span:nth-child(2) { display: grid; gap: 3px; min-width: 0; }
.arch-step strong { font-size: 17px; letter-spacing: -.02em; }
.arch-step small { max-width: 155px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.35; }
.arch-step > i { position: relative; width: 9px; height: 9px; background: var(--graphite); border: 2px solid var(--yellow); border-radius: 50%; }
.arch-step > i::after { content: ""; position: absolute; top: 2px; left: 7px; width: 31px; border-top: 1px dashed rgba(255,255,255,.7); }
.architecture__bus { position: absolute; z-index: 1; top: 46px; bottom: 46px; left: 274px; width: 24px; border-left: 1px solid var(--yellow); }
.architecture__bus::before, .architecture__bus::after { content: ""; position: absolute; left: -2px; width: 31px; border-top: 2px solid var(--yellow); }
.architecture__bus::before { top: 68px; }
.architecture__bus::after { bottom: 68px; }
.architecture__bus span { position: absolute; left: -5px; width: 8px; height: 8px; background: var(--graphite); border: 2px solid var(--yellow); border-radius: 50%; }
.architecture__bus span:first-child { top: 66px; }
.architecture__bus span:last-child { bottom: 66px; }

.management-dashboard { position: relative; z-index: 2; min-width: 0; padding: 15px; color: rgba(255,255,255,.9); background: rgba(38,38,38,.98); border: 1px solid rgba(255,255,255,.25); }
.management-dashboard__header, .dashboard-funnel__head, .management-dashboard footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.management-dashboard__header { padding: 1px 2px 14px; }
.management-dashboard__header h2, .dashboard-funnel__head h3 { margin: 0; font-size: 17px; line-height: 1.2; letter-spacing: -.02em; }
.management-dashboard__header span, .dashboard-funnel__head span { color: rgba(255,255,255,.5); font-size: 9px; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.dashboard-metrics > div { display: grid; min-width: 0; min-height: 126px; padding: 13px 10px 9px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.dashboard-metrics span { min-height: 31px; font-size: 8px; line-height: 1.25; }
.dashboard-metrics strong { align-self: end; font-size: 18px; letter-spacing: -.03em; white-space: nowrap; }
.dashboard-metrics small { color: rgba(255,255,255,.55); font-size: 8px; }
.dashboard-metrics svg { align-self: end; width: 100%; height: 19px; fill: none; stroke: var(--yellow); stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.dashboard-funnel { padding-top: 22px; }
.dashboard-funnel__head { margin-bottom: 15px; }
.funnel-row { display: grid; grid-template-columns: minmax(120px,1fr) 28px minmax(130px,1.25fr); gap: 9px; align-items: center; min-height: 29px; font-size: 8px; }
.funnel-row strong { font-size: 9px; font-weight: 600; }
.funnel-row > i { display: block; height: 19px; border: 1px solid rgba(255,255,255,.22); }
.funnel-row b { display: block; height: 100%; margin-inline: auto; background: var(--yellow); }
.management-dashboard footer { margin: 14px -15px -15px; padding: 11px 15px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.2); font-size: 8px; }
.management-dashboard footer span:first-child::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; background: var(--yellow); border-radius: 50%; }

.problem-intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(36px, 7vw, 120px); align-items: end; margin-bottom: clamp(50px, 6vw, 78px); }
.problem-intro .section-index { grid-column: 1 / -1; margin-bottom: -6px; }
.problem-intro h2 { margin: 0; }
.problem-lead { max-width: 610px; margin: 0; color: #555; font-size: clamp(18px, 1.55vw, 21px); line-height: 1.55; }
.problem-flow { display: grid; grid-template-columns: minmax(220px, 1.1fr) 80px minmax(210px, .9fr) 80px minmax(210px, .9fr); align-items: center; padding: 38px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.flow-label, .problem-flow__stage > span, .problem-impact__label { display: block; color: #77736a; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.flow-source-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 15px; }
.flow-source { position: relative; display: flex; min-height: 52px; align-items: center; padding: 12px 14px 12px 34px; background: #fff; border: 1px solid #dedad1; font-size: 15px; font-weight: 650; }
.flow-source::before { content: ""; position: absolute; left: 15px; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
.problem-flow__link { position: relative; display: block; margin: 0 16px; border-top: 2px dashed #a7a299; }
.problem-flow__link::after { content: ""; position: absolute; top: -5px; right: -1px; width: 7px; height: 7px; border-top: 2px solid #817d75; border-right: 2px solid #817d75; transform: rotate(45deg); }
.problem-flow__link--broken { border-color: var(--yellow); }
.problem-flow__link--broken::before { content: ""; position: absolute; top: -9px; left: 50%; width: 3px; height: 16px; background: var(--warm); border-inline: 2px solid var(--warm); transform: rotate(24deg); }
.problem-flow__link--broken::after { border-color: #9d7600; }
.problem-flow__stage { min-height: 150px; padding: 23px 22px; border-left: 2px solid #b9b4aa; }
.problem-flow__stage--loss { border-left-color: var(--yellow); }
.problem-flow__stage strong { display: block; margin-top: 18px; font-size: clamp(20px, 1.75vw, 25px); line-height: 1.22; }
.problem-flow__stage small { display: block; margin-top: 12px; color: #6a675f; font-size: 14px; line-height: 1.45; }
.problem-impact { display: grid; grid-template-columns: minmax(180px, .7fr) 2.3fr; gap: 36px; align-items: start; margin-top: 38px; }
.problem-impact__label { padding-top: 21px; }
.problem-impact__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); }
.problem-impact__grid p { min-height: 100px; margin: 0; padding: 20px 18px; border-right: 1px solid var(--line-light); font-size: 16px; font-weight: 650; line-height: 1.4; }
.problem-impact__grid p:last-child { border-right: 0; }
.problem-impact__grid span { display: block; margin-bottom: 15px; color: #8d887e; font-size: 12px; font-weight: 750; }
.solution-grid__num { color: var(--gray); font-size: 13px; font-weight: 700; }
.route-statement { display: grid; grid-template-columns: minmax(100px, 1fr) minmax(280px, 690px); gap: 30px; align-items: center; margin: 64px 0 0 auto; max-width: 1040px; font-size: clamp(21px, 2.2vw, 31px); line-height: 1.3; font-weight: 600; }
.route-statement__line { height: 2px; background: var(--yellow); }

.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.solution-grid article { min-width: 0; padding: 32px 28px 36px; border-left: 1px solid var(--line-dark); }
.solution-grid article:first-child { padding-left: 0; border-left: 0; }
.solution-grid article:last-child { padding-right: 0; }
.solution-grid h3 { margin-top: 42px; }
.solution-grid p { min-height: 190px; color: rgba(255,255,255,.64); font-size: 16px; }
.solution-grid .text-link { font-size: 14px; }
.solutions { padding-bottom: 0; }
.approach { display: block; padding: clamp(68px, 5vw, 80px) 0 clamp(58px, 4vw, 68px); }
.approach__intro { max-width: 1120px; }
.approach__intro h2 { max-width: 1120px; font-size: clamp(42px, 3.7vw, 56px); }
.approach__intro p { max-width: 760px; color: rgba(255,255,255,.64); }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 44px 0 0; padding: 0; list-style: none; }
.process-line::before { content: ""; position: absolute; top: 24px; right: 24px; left: 24px; height: 1px; background: var(--yellow); }
.process-line li { position: relative; display: block; min-width: 0; padding: 0 30px; }
.process-line li:first-child { padding-left: 0; }
.process-line li:last-child { padding-right: 0; }
.process-line__node { position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; color: var(--yellow); background: var(--graphite); border: 1px solid var(--yellow); border-radius: 50%; font-size: 20px; font-weight: 700; }
.process-line h3 { margin: 0 0 6px; font-size: 20px; }
.process-line p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }

.outcomes > .container > .section-index { margin-bottom: 16px; }
.outcomes-overview { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.outcomes-message h2 { max-width: 520px; }
.outcomes-message p { max-width: 520px; margin: 0; color: #5f5f5f; }
.measurement { padding: 10px 0 12px clamp(32px, 4vw, 64px); border-left: 1px solid var(--line-light); }
.measurement h3 { margin: 0 0 34px; font-size: 20px; }
.measurement__labels { display: grid; grid-template-columns: repeat(4, 1fr); margin-left: 55px; }
.measurement__labels span { min-width: 0; padding-inline: 12px; border-right: 1px solid var(--line-light); font-size: 13px; text-align: center; }
.measurement__labels span:last-child { border-right: 0; }
.measurement__row { display: grid; grid-template-columns: 55px 1fr; align-items: center; margin-top: 30px; }
.measurement__row strong { font-size: 12px; font-weight: 600; }
.measurement__row > span { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #aaa69e; }
.measurement__row i { position: relative; top: -6px; justify-self: center; width: 12px; height: 12px; background: var(--warm); border: 1px solid #aaa69e; border-radius: 50%; }
.measurement__row + .measurement__row i { background: var(--yellow); border-color: #9d7600; }
.measurement > p { margin: 34px 0 0 55px; color: #77736a; font-size: 12px; }
.outcome-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; border-top: 1px solid var(--line-light); }
.outcome-strip article { display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: center; min-height: 128px; padding: 24px 30px; border-right: 1px solid var(--line-light); }
.outcome-strip article:first-child { padding-left: 0; }
.outcome-strip article:last-child { padding-right: 0; border-right: 0; }
.outcome-strip__icon { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid var(--line-light); border-radius: 50%; }
.outcome-strip__icon svg { width: 32px; height: 32px; fill: none; stroke: var(--graphite); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.outcome-strip h3 { margin: 0; font-size: 19px; line-height: 1.35; }

.evidence-label { margin-bottom: 28px; color: var(--yellow-ink); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.industry-featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.industry-featured article { position: relative; padding-bottom: 34px; border-bottom: 1px solid var(--line-dark); }
.industry-featured figure { position: relative; height: 360px; margin: 0 0 26px; overflow: hidden; background: #1a1a1a; }
.industry-featured img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); transition: transform .6s ease; }
.industry-featured article:hover img { transform: scale(1.02); }
.industry-featured figcaption { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; color: rgba(255,255,255,.75); background: rgba(38,38,38,.86); font-size: 11px; }
.industry-featured__tag { color: var(--gray); font-size: 13px; text-transform: uppercase; }
.industry-featured h3 { margin: 14px 0 12px; }
.industry-featured p { max-width: 610px; margin: 0; color: rgba(255,255,255,.65); }
.industry-list { display: flex; flex-wrap: wrap; gap: 0; margin-top: 72px; border-top: 1px solid var(--line-dark); }
.industry-list span { position: relative; flex: 1 1 25%; min-width: 220px; padding: 26px 28px 26px 24px; color: rgba(255,255,255,.78); border-bottom: 1px solid var(--line-dark); }
.industry-list span::before { content: ""; position: absolute; top: 35px; left: 0; width: 8px; height: 8px; border: 2px solid var(--yellow); border-radius: 50%; }

.diagnostic__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 150px); align-items: center; }
.diagnostic__content > p { max-width: 630px; color: #555; }
.check-list { margin: 32px 0 38px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line-light); }
.check-list li::before { content: ""; position: absolute; top: 21px; left: 0; width: 12px; height: 2px; background: var(--yellow); }
.diagnostic-card { padding: clamp(28px, 4vw, 56px); background: var(--white); border: 1px solid var(--line-light); }
.diagnostic-card__top { display: flex; justify-content: space-between; margin-bottom: 16px; color: var(--gray); font-size: 13px; font-weight: 650; }
.progress { height: 2px; margin-bottom: 48px; background: #dedbd4; }
.progress span { display: block; width: 33.333%; height: 100%; background: var(--yellow); }
.diagnostic-card fieldset { margin: 0; padding: 0; border: 0; }
.diagnostic-card legend { max-width: 570px; margin-bottom: 30px; font-size: clamp(25px, 2.2vw, 34px); line-height: 1.2; font-weight: 680; letter-spacing: -.035em; }
.diagnostic-card label { display: flex; gap: 16px; align-items: center; padding: 17px 0; border-top: 1px solid var(--line-light); cursor: pointer; }
.diagnostic-card label:last-of-type { border-bottom: 1px solid var(--line-light); }
.diagnostic-card input { width: 18px; height: 18px; margin: 0; accent-color: var(--yellow); }
.diagnostic-card__note { margin: 24px 0 0; color: #656565; font-size: 14px; }

.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(64px, 8vw, 130px); align-items: center; }
.about__media { position: relative; }
.about__media::before { content: ""; position: absolute; z-index: 1; top: -16px; right: -16px; width: 90px; height: 90px; border-top: 1px solid var(--yellow); border-right: 1px solid var(--yellow); }
.about__media img { width: 100%; aspect-ratio: 1 / .86; object-fit: cover; }
.about__media > span { display: block; margin-top: 12px; color: var(--gray); font-size: 11px; }
.about__content > p { color: rgba(255,255,255,.68); }
.about__principles { margin: 40px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.about__principles li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.about__principles span { color: var(--yellow-ink); font-size: 12px; font-weight: 700; }

.faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(70px, 10vw, 170px); }
.accordion { border-top: 1px solid var(--line-light); }
.accordion details { border-bottom: 1px solid var(--line-light); }
.accordion summary { display: grid; grid-template-columns: 1fr 24px; gap: 24px; align-items: center; padding: 28px 0; font-size: clamp(19px, 1.7vw, 25px); font-weight: 650; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 18px; height: 18px; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 8px; left: 0; width: 18px; height: 2px; background: var(--graphite); transition: transform .2s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details div { max-width: 800px; padding: 0 48px 28px 0; color: #585858; }

.contact__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(64px, 9vw, 150px); }
.contact__content > p { max-width: 650px; color: rgba(255,255,255,.66); }
.contact__direct { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 54px; }
.contact__direct a { display: inline-flex; min-height: 44px; align-items: center; color: var(--white); font-size: clamp(20px, 2vw, 28px); text-decoration-color: var(--yellow); text-underline-offset: 6px; }
.lead-form, .contact__form-wrap .lead-form { display: grid; gap: 24px; }
.lead-form > label, .lead-form .bmg-cms-form-field { display: grid; gap: 8px; margin: 0; }
.lead-form label > span, .lead-form .bmg-cms-form-field > span { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 650; }
.lead-form label > span small, .lead-form .bmg-cms-form-field > span small { color: rgba(255,255,255,.58); font-size: 1em; font-weight: 500; }
.lead-form label > span i, .lead-form .bmg-cms-form-required { color: var(--yellow); font-style: normal; }
.form-required-note { margin: 0 0 12px; color: rgba(255,255,255,.7); font-size: 12px; }
.form-required-note > span { color: var(--yellow); }
.lead-form input:not([type="checkbox"]), .lead-form textarea, .lead-form select {
  width: 100%; min-height: 48px; padding: 6px 0 10px; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); border-radius: 0;
}
.lead-form textarea { min-height: 90px; resize: vertical; }
.lead-form select { appearance: auto; color-scheme: dark; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,.56); }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { border-bottom-color: var(--yellow); }
.lead-form .consent, .lead-form .bmg-cms-form-checkbox { display: flex; min-height: 44px; grid-template-columns: none; flex-direction: row; align-items: center; gap: 12px; cursor: pointer; }
.lead-form input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; margin: 0; accent-color: var(--yellow); }
.lead-form button { min-height: 58px; margin-top: 6px; padding: 14px 24px; color: var(--graphite); background: var(--yellow); border: 0; border-radius: 2px; font-weight: 750; cursor: pointer; }
.lead-form button:hover { background: var(--yellow-hover); }
.lead-form button:disabled { cursor: wait; opacity: .65; }
.bmg-cms-form-description { margin: 0 0 8px; color: rgba(255,255,255,.64); font-size: 14px; }
.bmg-cms-form-success { margin: 0; padding: 18px; color: var(--graphite); background: var(--yellow); }
.form-status { min-height: 24px; margin: 0; font-size: 14px; }
.form-status.is-error { color: #ff9b91; }
.form-status.is-success { color: var(--yellow); }
.legal-note { margin: 18px 0 0; color: rgba(255,255,255,.72); font-size: 12px; }
.legal-note a { display: inline-flex; min-height: 44px; align-items: center; color: rgba(255,255,255,.78); vertical-align: middle; }

.site-footer { --gray: #b0b0b0; color: var(--white); background: var(--graphite); border-top: 1px solid var(--line-dark); }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; align-items: center; padding-top: 50px; padding-bottom: 50px; }
.site-footer__top p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.brand--footer { width: 164px; }
.site-footer__bottom { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 18px 40px; align-items: center; padding-top: 28px; padding-bottom: 32px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.72); font-size: 12px; }
.site-footer__copyright { justify-self: start; white-space: nowrap; }
.site-footer__bottom nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 28px; }
.site-footer__privacy { display: inline-flex; min-height: 44px; align-items: center; justify-self: end; white-space: nowrap; }
.site-footer__bottom a { display: inline-flex; min-height: 44px; align-items: center; }
.site-footer__bottom a:hover { color: var(--white); }

@media (max-width: 1100px) {
  .site-footer__bottom {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 8px 36px;
  }

  .site-footer__bottom nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    justify-content: flex-start;
  }

  .site-footer__privacy {
    justify-self: end;
  }
}

.subpage-hero { min-height: 500px; padding-top: calc(var(--header-height) + 110px); }
.subpage-hero p { max-width: 760px; color: rgba(255,255,255,.66); font-size: 20px; }
.empty-state { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.empty-state__line { height: 2px; margin-top: 18px; background: var(--yellow); }
.article-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.article-card { padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.article-card:first-child { padding-left: 0; }
.article-card__meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 32px; color: var(--gray); font-size: 12px; text-transform: uppercase; }
.article-card a { text-decoration-color: var(--yellow); text-underline-offset: 5px; }
.article-card p { color: #5d5d5d; font-size: 16px; }
.article-page { max-width: 900px; }
.article-page__back { display: inline-flex; margin-bottom: 60px; }
.article-page__meta { margin-bottom: 18px; color: var(--gray); font-size: 13px; }
.article-page__cover { width: 100%; max-height: 520px; margin: 40px 0; object-fit: cover; }
.article-body { font-size: 19px; }
.article-body h2 { margin-top: 64px; font-size: 38px; }
.article-body h3 { margin-top: 42px; font-size: 27px; }
.article-body a { text-decoration-color: var(--yellow); }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .hero__grid { grid-template-columns: minmax(430px, .72fr) minmax(650px, 1.28fr); gap: 28px; }
  .hero h1 { font-size: clamp(50px, 4.4vw, 60px); }
  .architecture { grid-template-columns: 220px minmax(400px, 1fr); gap: 22px; }
  .architecture__bus { left: 244px; }
  .arch-step small { max-width: 135px; }
}

@media (max-width: 1240px) {
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__content { max-width: 760px; }
  .architecture { width: min(100%, 850px); grid-template-columns: 250px minmax(440px, 1fr); gap: 28px; }
  .architecture__bus { left: 274px; }
  .arch-step small { max-width: 155px; }
}

@media (max-width: 1180px) {
  :root { --gutter: 36px; }
  .site-header { grid-template-columns: 210px 1fr auto; gap: 20px; }
  .main-nav { justify-content: center; gap: 16px; font-size: 13px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__content { max-width: 760px; }
  .architecture { width: min(100%, 850px); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid article:nth-child(3) { border-left: 0; }
  .solution-grid p { min-height: 130px; }
}

@media (max-width: 980px) {
  :root { --header-height: 82px; }
  .site-header { position: absolute; grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; gap: 10px; padding: 10px; color: var(--white); background: transparent; border: 0; cursor: pointer; }
  .menu-toggle__label { font-size: 13px; font-weight: 700; }
  .menu-toggle__icon, .menu-toggle__icon::before { display: block; width: 22px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle__icon { position: relative; }
  .menu-toggle__icon::before { content: ""; position: absolute; top: 7px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before { top: 0; transform: rotate(90deg); }
  .main-nav { position: fixed; inset: var(--header-height) 0 0; display: none; height: auto; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; padding: 42px var(--gutter); color: var(--white); background: var(--graphite); border-top: 1px solid var(--line-dark); overflow-y: auto; overscroll-behavior: contain; }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 0; font-size: 24px; border-bottom: 1px solid var(--line-dark); }
  .nav-solutions { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--line-dark); }
  .nav-solutions__trigger { display: grid; grid-template-columns: minmax(0,1fr) 52px; }
  .main-nav .nav-solutions__overview { min-height: 58px; display: flex; align-items: center; border-bottom: 0; }
  .nav-solutions__toggle { width: 52px; height: 58px; border-left: 1px solid var(--line-dark); }
  .nav-solutions__panel { position: static; width: 100%; padding: 0 0 14px; background: transparent; border: 0; border-top: 1px solid var(--line-dark); box-shadow: none; }
  .nav-solutions__links { grid-template-columns: 1fr; }
  .main-nav .nav-solutions__item,
  .main-nav .nav-solutions__item:nth-child(even) { min-height: 58px; padding: 10px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .nav-solutions__item strong { font-size: 15px; }
  .nav-solutions__item span { font-size: 12px; }
  .mobile-menu-extra { display: grid; width: 100%; gap: 14px; margin-top: 20px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
  .mobile-menu-extra--cta-only { margin-top: 12px; padding-top: 12px; border-top: 0; }
  .mobile-menu-extra__label { color: rgba(255,255,255,.58); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-menu-extra__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .main-nav .mobile-menu-extra__link { min-height: 46px; display: flex; align-items: center; padding: 9px 0; font-size: 16px; line-height: 1.35; }
  .main-nav .mobile-menu-extra__cta { min-height: 52px; margin-top: 8px; padding: 12px 18px; color: var(--graphite); font-size: 15px; border-bottom: 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 90px); }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__diagonal { right: 2%; height: clamp(210px, 28vh, 270px); opacity: .78; }
  .architecture { width: min(100%, 820px); min-height: 520px; }
  .section-intro, .approach, .diagnostic__grid, .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .section-intro { gap: 28px; }
  .section-intro .section-index { margin-bottom: 0; }
  .section-intro__text { max-width: 720px; }
  .problem-intro { grid-template-columns: 1fr; gap: 28px; }
  .problem-intro .section-index { margin-bottom: 0; }
  .problem-lead { max-width: 720px; }
  .problem-flow { grid-template-columns: 1fr; max-width: 720px; }
  .problem-flow__link { width: 2px; height: 54px; margin: 0 0 0 21px; border-top: 0; border-left: 2px dashed #a7a299; }
  .problem-flow__link::after { top: auto; right: auto; bottom: 1px; left: -4px; transform: rotate(135deg); }
  .problem-flow__link--broken::before { top: 20px; left: -5px; width: 10px; height: 3px; border-block: 2px solid var(--warm); border-inline: 0; transform: rotate(-24deg); }
  .problem-flow__stage { min-height: 0; }
  .problem-impact { grid-template-columns: 1fr; gap: 14px; }
  .problem-impact__grid { grid-template-columns: repeat(2, 1fr); }
  .problem-impact__grid p:nth-child(2) { border-right: 0; }
  .problem-impact__grid p:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 44px 0; }
  .process-line::before { display: none; }
  .process-line li { padding: 24px 30px 0 0; border-top: 1px solid var(--line-dark); }
  .process-line li:nth-child(even) { padding-right: 0; padding-left: 30px; }
  .outcomes-overview { grid-template-columns: 1fr; gap: 50px; }
  .measurement { padding: 36px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .outcome-strip { grid-template-columns: 1fr; }
  .outcome-strip article, .outcome-strip article:first-child, .outcome-strip article:last-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .approach, .diagnostic__grid, .about__grid, .faq__grid, .contact__grid { gap: 64px; }
  .industry-featured figure { height: 300px; }
  .article-list { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-solutions__panel { animation: none; }
  .nav-solutions__toggle svg { transition: none; }
}

@media (max-width: 700px) {
  :root { --gutter: 22px; --section: 88px; }
  body { font-size: 17px; }
  h1 { font-size: clamp(45px, 13vw, 62px); }
  h2 { font-size: clamp(36px, 10vw, 46px); }
  .site-header { gap: 10px; }
  .brand { width: 176px; }
  .brand img { width: 126px; }
  .brand__tagline { font-size: 8px; }
  .brand--footer { width: 126px; }
  .brand--footer img { width: 100%; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { padding-top: calc(var(--header-height) + 70px); }
  .hero h1 { font-size: clamp(44px, 12.2vw, 58px); line-height: 1.04; }
  .hero__lead { font-size: 18px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .hero__diagonal { top: 0; right: 0; width: 68px; height: 210px; }
  .architecture { grid-template-columns: 1fr; gap: 34px; width: 100%; min-height: 0; }
  .architecture__stack { height: auto; grid-template-rows: none; }
  .architecture__stack::before { top: 42px; bottom: 42px; }
  .arch-step { min-height: 84px; grid-template-columns: 60px minmax(0,1fr); }
  .arch-step small { max-width: 240px; font-size: 12px; }
  .arch-step > i, .architecture__bus { display: none; }
  .management-dashboard { padding: 14px; }
  .management-dashboard__header h2 { font-size: 16px; }
  .dashboard-metrics { grid-template-columns: repeat(2, 1fr); }
  .dashboard-metrics > div { min-height: 116px; }
  .dashboard-metrics span { font-size: 9px; }
  .dashboard-metrics strong { font-size: 20px; }
  .dashboard-metrics small { font-size: 9px; }
  .funnel-row { grid-template-columns: minmax(105px,1fr) 28px minmax(100px,1.25fr); font-size: 9px; }
  .management-dashboard footer { align-items: flex-start; flex-direction: column; gap: 5px; font-size: 9px; }
  .process-line { grid-template-columns: 1fr; gap: 0; }
  .process-line::before { display: block; top: 24px; right: auto; bottom: 24px; left: 23px; width: 1px; height: auto; background: var(--line-dark); }
  .process-line li, .process-line li:nth-child(even) { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 0 0 38px; border-top: 0; }
  .process-line__node { margin: 0; }
  .process-line h3 { margin-top: 5px; }
  .measurement h3 { margin-bottom: 26px; }
  .measurement__labels { margin-left: 44px; }
  .measurement__labels span { padding-inline: 4px; font-size: 9px; line-height: 1.25; }
  .measurement__row { grid-template-columns: 44px 1fr; }
  .measurement > p { margin-left: 44px; }
  .outcome-strip article { grid-template-columns: 58px 1fr; gap: 18px; }
  .outcome-strip__icon { width: 52px; height: 52px; }
  .outcome-strip h3 { font-size: 18px; }
  .solution-grid, .industry-featured, .article-list { grid-template-columns: 1fr; }
  .problem-flow { padding-block: 28px; }
  .problem-impact__grid { grid-template-columns: 1fr; }
  .problem-impact__grid p, .problem-impact__grid p:nth-child(2) { min-height: 0; padding-inline: 0; border-right: 0; border-top: 1px solid var(--line-light); }
  .problem-impact__grid p:first-child { border-top: 0; }
  .route-statement { grid-template-columns: 55px 1fr; margin-top: 56px; font-size: 21px; }
  .solution-grid article, .solution-grid article:first-child, .solution-grid article:last-child { padding: 30px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
  .solution-grid p { min-height: 0; }
  .solution-grid h3 { margin-top: 24px; }
  .industry-featured { gap: 56px; }
  .industry-featured figure { height: 260px; }
  .industry-list span { flex-basis: 100%; }
  .diagnostic-card { padding: 26px 20px; }
  .about__media::before { top: -10px; right: -10px; width: 58px; height: 58px; }
  .faq__grid { gap: 28px; }
  .accordion summary { padding: 24px 0; }
  .contact__direct { margin-top: 40px; }
  .site-footer__top { grid-template-columns: 1fr auto; }
  .site-footer__top p { grid-column: 1 / -1; grid-row: 2; }
  .site-footer__bottom { grid-template-columns: 1fr; gap: 4px; }
  .site-footer__copyright,
  .site-footer__bottom nav,
  .site-footer__privacy { grid-column: 1; grid-row: auto; justify-self: start; }
  .site-footer__bottom nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .empty-state { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .route-motion-signal { display: none !important; }
  .inner-motion-ready .route-diagram.is-motion-prepared ol::before,
  .inner-motion-ready .route-diagram.is-motion-prepared .route-diagram__track::before,
  .inner-motion-ready ol.route-diagram.is-motion-prepared::before,
  .inner-motion-ready .process-route.is-motion-prepared::before { transform: none !important; transition: none !important; }
}

/*
 * Inner pages / approved 2026 system
 * A process is shown as a legible route: one signal, clear ownership, no decorative metrics.
 */

.inner-page {
  color: var(--graphite);
  background: var(--warm);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.inner-page .site-header--inner {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(38, 38, 38, .98);
  backdrop-filter: blur(12px);
}

.inner-page .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.inner-page .header-cta {
  color: var(--white);
  background: transparent;
}

.inner-page .header-cta:hover {
  color: var(--graphite);
  background: var(--yellow);
}

.inner-page h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.inner-page h2 {
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -.032em;
}

.inner-page h3 {
  letter-spacing: -.025em;
}

.inner-page main {
  min-width: 0;
}

.copy-mobile {
  display: none;
}

.inner-hero {
  position: relative;
  display: grid;
  min-height: 590px;
  align-items: center;
  padding-block: clamp(56px, 5vw, 80px);
  overflow: clip;
}

.inner-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 196, 0, .18);
  border-radius: 50%;
  pointer-events: none;
}

.inner-hero.section-light::after,
.product-hero::after {
  border-color: rgba(38, 38, 38, .09);
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(600px, 1.08fr);
  gap: clamp(32px, 3vw, 48px);
  align-items: center;
}

.inner-hero__content {
  min-width: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.section-light .breadcrumb,
.product-hero .breadcrumb {
  color: #5f5b54;
}

.breadcrumb a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

.breadcrumb span[aria-hidden="true"] {
  color: var(--gray);
}

.inner-hero__lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.section-light .inner-hero__lead,
.product-hero .inner-hero__lead {
  color: #514e48;
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  align-items: center;
  margin-top: 34px;
}

.inner-hero__note {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.section-light .inner-hero__note,
.product-hero .inner-hero__note {
  color: #6a665f;
}

.product-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 24px;
  padding: 7px 12px;
  color: var(--graphite);
  border: 1px solid rgba(38, 38, 38, .45);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.route-diagram {
  position: relative;
  min-width: 0;
}

figure.route-diagram {
  margin: 0;
}

.route-diagram:has(> :nth-child(5)),
.route-diagram ol:has(> :nth-child(5)) {
  --route-count: 5;
}

.route-diagram ol:has(> :nth-child(3):last-child),
ol.route-diagram:has(> :nth-child(3):last-child) {
  --route-count: 3;
}

.route-diagram:has(> :nth-child(6)),
.route-diagram ol:has(> :nth-child(6)) {
  --route-count: 6;
}

.route-diagram__title {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-light .route-diagram__title,
.product-hero .route-diagram__title {
  color: #56524b;
}

.route-diagram ol,
.route-diagram__track,
ol.route-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--route-count, 5), minmax(0, 1fr));
  gap: clamp(12px, 1.25vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-diagram ol::before,
.route-diagram__track::before,
ol.route-diagram::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

.section-light .route-diagram ol::before,
.section-light .route-diagram__track::before,
.section-light ol.route-diagram::before,
.product-hero .route-diagram ol::before,
.product-hero .route-diagram__track::before,
.product-hero ol.route-diagram::before {
  background: rgba(38, 38, 38, .42);
}

.route-diagram__node,
.route-diagram li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
}

.route-diagram__icon,
.route-diagram li > span:first-child {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
}

.section-light .route-diagram__icon,
.section-light .route-diagram li > span:first-child,
.product-hero .route-diagram__icon,
.product-hero .route-diagram li > span:first-child {
  color: var(--graphite);
  background: var(--warm);
  border-color: rgba(38, 38, 38, .62);
}

.route-diagram__node.is-active .route-diagram__icon,
.route-diagram li.is-active > span:first-child,
.route-diagram__node--active .route-diagram__icon {
  color: var(--yellow);
  border-color: var(--yellow);
}

.route-diagram svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-diagram__label,
.route-diagram li > strong,
.route-diagram li > span:last-child {
  max-width: 100%;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(12px, .95vw, 14px);
  font-weight: 600;
  line-height: 1.35;
  hyphens: auto;
}

.section-light .route-diagram__label,
.section-light .route-diagram li > strong,
.section-light .route-diagram li > span:last-child,
.product-hero .route-diagram__label,
.product-hero .route-diagram li > strong,
.product-hero .route-diagram li > span:last-child {
  color: #3f3c37;
}

.route-diagram__node.is-active .route-diagram__label,
.route-diagram li.is-active > strong,
.route-diagram li.is-active > span:last-child,
.route-diagram__node--active > span:last-child {
  color: var(--yellow);
}

.section-light .route-diagram__node.is-active .route-diagram__label,
.section-light .route-diagram li.is-active > strong,
.section-light .route-diagram li.is-active > span:last-child,
.section-light .route-diagram__node--active > span:last-child,
.product-hero .route-diagram__node.is-active .route-diagram__label,
.product-hero .route-diagram li.is-active > strong,
.product-hero .route-diagram li.is-active > span:last-child,
.product-hero .route-diagram__node--active > span:last-child {
  color: var(--graphite);
}

.inner-section {
  position: relative;
  padding-block: clamp(76px, 8vw, 124px);
  overflow: clip;
}

.inner-section--light {
  color: var(--graphite);
  background: var(--warm);
}

.inner-section--dark {
  --gray: #b0b0b0;
  color: var(--white);
  background: var(--graphite);
}

.inner-section--compact {
  padding-block: clamp(52px, 5vw, 78px);
}

.inner-section__intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, .55fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.inner-section__intro > * {
  min-width: 0;
}

.inner-section__intro h2,
.inner-section__intro p {
  margin-bottom: 0;
}

.inner-section__intro p {
  color: #56524b;
}

.section-dark .inner-section__intro p,
.inner-section--dark .inner-section__intro p {
  color: rgba(255, 255, 255, .67);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section-dark .fact-strip,
.inner-section--dark .fact-strip {
  border-color: var(--line-dark);
}

.fact-strip > * {
  min-width: 0;
  margin: 0;
  padding: 28px 26px;
  border-right: 1px solid var(--line-light);
  font-size: 16px;
  line-height: 1.45;
}

.section-dark .fact-strip > *,
.inner-section--dark .fact-strip > * {
  color: rgba(255, 255, 255, .78);
  border-color: var(--line-dark);
}

.fact-strip > *:first-child {
  padding-left: 0;
}

.fact-strip > *:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.open-rows {
  border-top: 1px solid var(--line-light);
}

.section-dark .open-rows,
.inner-section--dark .open-rows {
  border-color: var(--line-dark);
}

.open-row {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(340px, 1.2fr) 52px;
  gap: 32px;
  align-items: center;
  min-height: 86px;
  padding-block: 22px;
  color: inherit;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.section-dark .open-row,
.inner-section--dark .open-row {
  border-color: var(--line-dark);
}

.open-row h3,
.open-row strong,
.open-row p {
  margin: 0;
}

.open-row h3,
.open-row strong {
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.25;
}

.open-row p {
  color: #615e57;
  font-size: 15px;
}

.section-dark .open-row p,
.inner-section--dark .open-row p {
  color: rgba(255, 255, 255, .63);
}

.open-row__arrow,
.open-row > span[aria-hidden="true"]:last-child {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  justify-self: end;
  font-size: 26px;
  transition: transform .2s ease, color .2s ease;
}

a.open-row:hover .open-row__arrow,
a.open-row:hover > span[aria-hidden="true"]:last-child {
  color: var(--yellow);
  transform: translateX(4px);
}

.process-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--process-count, 4), minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-route:has(> :nth-child(5)) {
  --process-count: 5;
}

.process-route:has(> :nth-child(6)) {
  --process-count: 6;
}

.process-route::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: var(--yellow);
}

.process-route__step,
.process-route > li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-right: 32px;
}

.process-route__step:last-child,
.process-route > li:last-child {
  padding-right: 0;
}

.process-route__marker,
.process-route > li > span:first-child {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--yellow);
  background: var(--graphite);
  border: 1px solid var(--yellow);
  border-radius: 50%;
  font-weight: 750;
}

.section-light .process-route__marker,
.section-light .process-route > li > span:first-child,
.inner-section--light .process-route__marker,
.inner-section--light .process-route > li > span:first-child {
  color: var(--yellow-ink);
  background: var(--warm);
  border-color: var(--yellow-ink);
}

.process-route h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.process-route--plain::before {
  display: none;
}

.process-route--plain > li {
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.process-route--labels::before {
  top: 22px;
}

.process-route--labels > li {
  padding-right: 14px;
}

.process-route--labels > li > span:first-child {
  width: auto;
  min-width: 44px;
  height: auto;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 701px) {
  .split-copy > .fact-strip {
    grid-template-columns: 1fr;
  }

  .split-copy .process-route--labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .split-copy .process-route--labels::before {
    display: none;
  }

  .split-copy .process-route--labels > li {
    padding: 0;
  }

  .split-copy .process-route--labels > li > span:first-child {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
}

.process-route--stages {
  counter-reset: inner-stage;
}

.process-route--stages > li {
  counter-increment: inner-stage;
}

.process-route--stages > li::before {
  content: counter(inner-stage, decimal-leading-zero);
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--yellow);
  background: var(--graphite);
  border: 1px solid var(--yellow);
  border-radius: 50%;
  font-weight: 750;
}

.inner-section--light .process-route--stages > li::before,
.section-light .process-route--stages > li::before {
  color: var(--yellow-ink);
  background: var(--warm);
  border-color: var(--yellow-ink);
}

.process-route--stages > li > strong,
.process-route--stages > li > span {
  display: block;
}

.process-route--stages > li > strong {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.process-route--stages > li > span {
  color: #5f5b54;
  font-size: 15px;
  line-height: 1.5;
}

.inner-section--dark .process-route--stages > li > span,
.section-dark .process-route--stages > li > span {
  color: rgba(255, 255, 255, .62);
}

.process-route p {
  max-width: 300px;
  margin: 0;
  color: #5f5b54;
  font-size: 15px;
}

.section-dark .process-route p,
.inner-section--dark .process-route p {
  color: rgba(255, 255, 255, .62);
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 8vw, 130px);
}

.split-copy > * {
  min-width: 0;
}

.split-copy > * + * {
  padding-left: clamp(34px, 4vw, 66px);
  border-left: 1px solid var(--line-light);
}

.section-dark .split-copy > * + *,
.inner-section--dark .split-copy > * + * {
  border-color: var(--line-dark);
}

.split-copy p:last-child,
.split-copy ul:last-child {
  margin-bottom: 0;
}

/* A split intro is already one column of the parent grid. */
.split-copy > .inner-section__intro {
  display: block;
  margin-bottom: 0;
}

.cases-hero__grid {
  grid-template-columns: minmax(0, 880px);
}

.cases-empty {
  align-items: center;
}

.cases-empty__content {
  max-width: 680px;
}

.plain-list,
.check-list--inner {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.check-list--inner li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line-light);
}

.section-dark .plain-list li,
.section-dark .check-list--inner li,
.inner-section--dark .plain-list li,
.inner-section--dark .check-list--inner li {
  border-color: var(--line-dark);
}

.plain-list li::before,
.check-list--inner li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.inner-section .container.related-links {
  display: block;
}

.inner-section .container.related-links > h2 {
  margin-bottom: 36px;
}

.inner-section .container.related-links > nav {
  width: 100%;
}

.section-dark .related-links,
.inner-section--dark .related-links {
  border-color: var(--line-dark);
}

.related-links a {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  text-decoration: none;
}

.section-dark .related-links a,
.inner-section--dark .related-links a {
  border-color: var(--line-dark);
}

.related-links a:first-child {
  padding-left: 0;
}

.related-links a:last-child {
  padding-right: 0;
  border-right: 0;
}

.related-links strong {
  font-size: 22px;
  line-height: 1.25;
}

.related-links span {
  color: var(--yellow);
}

.related-links a:hover {
  background: rgba(255, 196, 0, .08);
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(480px, 1.35fr);
  gap: clamp(54px, 9vw, 150px);
}

.faq-block .accordion summary {
  min-height: 72px;
}

details.open-row {
  display: block;
  min-height: 0;
}

details.open-row summary,
.faq summary {
  position: relative;
  display: grid;
  min-height: 56px;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  color: inherit;
  font-size: 19px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

details.open-row summary::-webkit-details-marker,
.faq summary::-webkit-details-marker {
  display: none;
}

details.open-row summary::after,
.faq summary::after {
  content: "+";
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  justify-self: end;
  color: var(--yellow);
  font-size: 25px;
  font-weight: 400;
}

details.open-row[open] summary::after,
.faq details[open] summary::after {
  content: "−";
}

details.open-row > p,
.faq details > p {
  max-width: 760px;
  margin: 10px 62px 8px 0;
  color: #5f5b54;
}

.inner-section--dark details.open-row > p,
.section-dark details.open-row > p,
.inner-section--dark .faq details > p,
.section-dark .faq details > p {
  color: rgba(255, 255, 255, .66);
}

.faq {
  border-top: 1px solid var(--line-light);
}

.faq details {
  padding-block: 16px;
  border-bottom: 1px solid var(--line-light);
}

.inner-section--dark .faq,
.inner-section--dark .faq details,
.section-dark .faq,
.section-dark .faq details {
  border-color: var(--line-dark);
}

.consultation-section {
  color: var(--white);
  background: var(--graphite);
  padding-block: clamp(80px, 8vw, 124px);
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: start;
}

.consultation-grid h2 {
  max-width: 760px;
}

.consultation-grid__copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .67);
}

.consultation-grid__direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 42px;
}

.consultation-grid__direct a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: clamp(19px, 1.6vw, 25px);
  text-decoration-color: var(--yellow);
  text-underline-offset: 6px;
}

.consultation-section .lead-form {
  gap: 20px;
}

.consultation-section .lead-form button {
  min-height: 58px;
}

.consultation-section .lead-form [type="hidden"] {
  display: none;
}

.product-form-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.inner-page .site-footer {
  border-top-color: var(--line-dark);
}

nav.related-links {
  margin-block: clamp(52px, 6vw, 86px);
}

.inner-page .site-footer__bottom nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 5px;
}

@media (max-width: 1280px) {
  .inner-hero__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .inner-hero__content {
    max-width: 820px;
  }

  .route-diagram {
    max-width: 900px;
  }

  .inner-section__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .open-row {
    grid-template-columns: minmax(200px, .8fr) minmax(300px, 1.2fr) 48px;
  }
}

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

  .inner-page .main-nav {
    inset: var(--header-height) 0 0;
    min-height: calc(100dvh - var(--header-height));
    padding-bottom: calc(42px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .inner-page .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
  }

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

  .fact-strip > *:nth-child(2n) {
    border-right: 0;
  }

  .fact-strip > *:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .section-dark .fact-strip > *:nth-child(n + 3),
  .inner-section--dark .fact-strip > *:nth-child(n + 3) {
    border-color: var(--line-dark);
  }

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

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

  .process-route__step,
  .process-route > li {
    padding-top: 24px;
    border-top: 1px solid var(--line-light);
  }

  .section-dark .process-route__step,
  .section-dark .process-route > li,
  .inner-section--dark .process-route__step,
  .inner-section--dark .process-route > li {
    border-color: var(--line-dark);
  }

  .consultation-grid,
  .faq-block {
    grid-template-columns: 1fr;
    gap: 58px;
  }
}

@media (max-width: 700px) {
  .inner-page {
    font-size: 16px;
    line-height: 1.625;
  }

  .inner-page .site-header--inner {
    min-height: 72px;
    height: 72px;
    padding-inline: 20px;
  }

  .inner-page .menu-toggle {
    width: 48px;
    height: 48px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .45);
  }

  .inner-page .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .inner-page .main-nav {
    inset: 72px 0 0;
    min-height: calc(100dvh - 72px);
    padding: 24px 20px calc(32px + env(safe-area-inset-bottom));
  }

  .inner-page .main-nav a {
    min-height: 58px;
    padding: 12px 0;
    font-size: 21px;
  }

  .inner-page .main-nav .mobile-menu-extra__link {
    min-height: 46px;
    padding: 9px 0;
    font-size: 16px;
  }

  .inner-page .main-nav .mobile-menu-extra__cta {
    min-height: 52px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .inner-page h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(36px, 9.8vw, 40px);
    line-height: 1.08;
  }

  .copy-desktop {
    display: none;
  }

  .copy-mobile {
    display: initial;
  }

  .inner-page h2 {
    font-size: clamp(30px, 8.3vw, 38px);
    line-height: 1.12;
  }

  .inner-page h3 {
    font-size: 22px;
    line-height: 1.28;
  }

  .inner-hero {
    min-height: 0;
    padding-block: 42px 56px;
  }

  .inner-hero::after {
    display: none;
  }

  .inner-hero__grid {
    gap: 38px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .breadcrumb a {
    min-height: 44px;
  }

  .inner-hero__lead {
    font-size: 18px;
    line-height: 1.55;
  }

  .inner-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .inner-hero__actions .button {
    width: 100%;
  }

  .inner-hero__actions .text-link,
  .inner-hero__note,
  .inner-hero .fact-strip {
    display: none;
  }

  .route-diagram__title {
    margin-bottom: 24px;
  }

  .route-diagram ol,
  .route-diagram__track,
  ol.route-diagram {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-diagram ol::before,
  .route-diagram__track::before,
  ol.route-diagram::before {
    top: 30px;
    bottom: 30px;
    left: 31px;
    width: 1px;
    height: auto;
  }

  .route-diagram__node,
  .route-diagram li {
    grid-template-columns: 56px minmax(0, 1fr);
    justify-items: start;
    gap: 18px;
    align-items: center;
    min-height: 80px;
    text-align: left;
  }

  .inner-hero .route-diagram__icon,
  .inner-hero .route-diagram li > span:first-child {
    width: 56px;
    height: 56px;
  }

  .inner-hero .route-diagram ol::before,
  .inner-hero .route-diagram__track::before,
  .inner-hero ol.route-diagram::before {
    top: 27px;
    bottom: 27px;
    left: 27px;
  }

  .route-diagram__label,
  .route-diagram li > strong,
  .route-diagram li > span:last-child {
    font-size: 15px;
  }

  .inner-section {
    padding-block: 72px;
  }

  .inner-section--compact {
    padding-block: 50px;
  }

  .inner-section__intro {
    margin-bottom: 42px;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip > *,
  .fact-strip > *:first-child,
  .fact-strip > *:last-child {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid var(--line-light);
  }

  .section-dark .fact-strip > *,
  .section-dark .fact-strip > *:first-child,
  .section-dark .fact-strip > *:last-child,
  .inner-section--dark .fact-strip > *,
  .inner-section--dark .fact-strip > *:first-child,
  .inner-section--dark .fact-strip > *:last-child {
    border-color: var(--line-dark);
  }

  .fact-strip > *:first-child {
    border-top: 0;
  }

  .open-row {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px 18px;
    min-height: 112px;
    padding-block: 22px;
  }

  .open-row h3,
  .open-row strong {
    grid-column: 1;
  }

  .open-row p {
    grid-column: 1;
    font-size: 15px;
    line-height: 1.5;
  }

  .open-row__arrow,
  .open-row > span[aria-hidden="true"]:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .process-route {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-route::before {
    display: block;
    top: 31px;
    bottom: 31px;
    left: 31px;
    width: 1px;
    height: auto;
  }

  .process-route__step,
  .process-route > li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    min-height: 116px;
    align-items: start;
    padding: 0 0 28px;
    border-top: 0;
  }

  .process-route__marker,
  .process-route > li > span:first-child {
    margin-bottom: 0;
  }

  .process-route h3 {
    margin-top: 4px;
  }

  .process-route p {
    grid-column: 2;
    margin-top: -40px;
  }

  .process-route--stages > li > strong,
  .process-route--stages > li > span {
    grid-column: 2;
  }

  .process-route--stages > li::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .process-route--stages > li > strong {
    grid-row: 1;
  }

  .process-route--stages > li > span {
    grid-row: 2;
    margin-top: 0;
  }

  .process-route--labels {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-route--labels::before,
  .process-route--labels .route-motion-signal {
    display: none;
  }

  .process-route--labels > li,
  .process-route--labels > li.process-route__step {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .process-route--labels > li > span:first-child {
    display: flex;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 52px;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    text-align: left;
  }

  .process-route--plain > li {
    display: block;
    min-height: 0;
    padding: 22px 0;
  }

  .process-route--plain p {
    grid-column: auto;
    margin-top: 0;
  }

  .process-route--labels > li {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }

  .process-route--labels > li > span:first-child {
    width: 100%;
    min-height: 52px;
    margin: 0;
  }

  .process-route--labels::before {
    display: none;
  }

  .split-copy {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-copy > * + * {
    padding: 38px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .section-dark .split-copy > * + *,
  .inner-section--dark .split-copy > * + * {
    border-color: var(--line-dark);
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .related-links a,
  .related-links a:first-child,
  .related-links a:last-child {
    min-height: 116px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .section-dark .related-links a,
  .section-dark .related-links a:first-child,
  .section-dark .related-links a:last-child,
  .inner-section--dark .related-links a,
  .inner-section--dark .related-links a:first-child,
  .inner-section--dark .related-links a:last-child {
    border-color: var(--line-dark);
  }

  .consultation-section {
    padding-block: 72px;
  }

  .consultation-grid {
    gap: 50px;
  }

  .consultation-grid__direct {
    margin-top: 32px;
  }

  .consultation-section .lead-form input:not([type="checkbox"]),
  .consultation-section .lead-form select {
    min-height: 56px;
    font-size: 16px;
  }

  .consultation-section .lead-form textarea {
    min-height: 120px;
    font-size: 16px;
  }

  .consultation-section .lead-form button {
    width: 100%;
  }

  .consultation-section .lead-form input[type="checkbox"] {
    width: 24px;
    height: 24px;
  }

  .consultation-section .lead-form .consent,
  .consultation-section .lead-form .bmg-cms-form-checkbox {
    min-height: 48px;
  }
}

@media (max-width: 340px) {
  .inner-page .container {
    padding-inline: 16px;
  }

  .inner-page .site-header--inner {
    padding-inline: 16px;
  }

  .inner-page .brand {
    width: 152px;
  }

  .inner-page h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .inner-hero {
    padding-block: 34px 48px;
  }

  .inner-hero__grid {
    gap: 30px;
  }

  .route-diagram__node,
  .route-diagram li,
  .process-route__step,
  .process-route > li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .route-diagram__icon,
  .route-diagram li > span:first-child,
  .process-route__marker,
  .process-route > li > span:first-child {
    width: 58px;
    height: 58px;
  }

  .process-route--labels > li > span:first-child {
    width: 100%;
    height: auto;
    min-height: 52px;
  }

  .route-diagram ol::before,
  .route-diagram__track::before,
  ol.route-diagram::before,
  .process-route::before {
    left: 28px;
  }
}

/* Solutions page: choice cards and a full-width client route. */
.solution-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.solution-choice-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 22px;
  min-width: 0;
  min-height: 280px;
  padding: clamp(28px, 3vw, 42px);
  color: var(--graphite);
  background: transparent;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  touch-action: manipulation;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.solution-choice-card h3,
.solution-choice-card p {
  margin: 0;
}

.solution-choice-card h3 {
  max-width: 18ch;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
  text-wrap: balance;
}

.solution-choice-card p {
  max-width: 58ch;
  color: #56524b;
  font-size: 16px;
  line-height: 1.58;
  transition: color 220ms ease;
}

.solution-choice-card__action {
  display: flex;
  min-height: 44px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-weight: 700;
  line-height: 1.35;
}

.solution-choice-card__action > span {
  flex: 0 0 auto;
  font-size: 22px;
  transition: transform 220ms cubic-bezier(.16, 1, .3, 1);
}

.solution-choice-card:focus-visible {
  position: relative;
  z-index: 1;
  color: var(--graphite);
  background: var(--yellow);
  outline: 3px solid var(--graphite);
  outline-offset: -6px;
}

.solution-choice-card:focus-visible p {
  color: var(--graphite);
}

.solution-choice-card:focus-visible .solution-choice-card__action > span {
  transform: translateX(5px);
}

@media (hover: hover) and (pointer: fine) {
  .solution-choice-card:hover {
    color: var(--graphite);
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .solution-choice-card:hover p {
    color: var(--graphite);
  }

  .solution-choice-card:hover .solution-choice-card__action > span {
    transform: translateX(5px);
  }
}

.solutions-client-route__intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .55fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 92px);
}

.solutions-client-route__intro h2,
.solutions-client-route__intro p {
  min-width: 0;
  margin: 0;
}

.solutions-client-route__intro h2 {
  max-width: 760px;
  text-wrap: balance;
}

.solutions-client-route__intro p {
  max-width: 62ch;
  color: rgba(255, 255, 255, .67);
}

.solutions-client-route .solutions-client-route__steps > li {
  padding-inline: 12px;
  text-align: center;
}

.solutions-client-route__steps .process-route__marker {
  margin-inline: auto;
}

.solutions-client-route__steps strong {
  display: block;
  max-width: 190px;
  margin-inline: auto;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.35;
  text-wrap: balance;
}

@media (max-width: 980px) {
  .solution-choice-card {
    min-height: 250px;
  }

  .solutions-client-route__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solutions-client-route__intro h2 {
    max-width: 700px;
  }
}

@media (max-width: 820px) {
  .solution-choice-grid {
    grid-template-columns: 1fr;
  }

  .solution-choice-card {
    min-height: 0;
  }

  .solutions-client-route__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solutions-client-route__steps::before {
    display: block;
    top: 31px;
    right: auto;
    bottom: 31px;
    left: 31px;
    width: 1px;
    height: auto;
  }

  .solutions-client-route .solutions-client-route__steps > li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;
    min-height: 104px;
    align-items: center;
    padding: 0 0 28px;
    border-top: 0;
    text-align: left;
  }

  .solutions-client-route__steps .process-route__marker,
  .solutions-client-route__steps strong {
    max-width: none;
    margin: 0;
    text-align: left;
  }
}

/* Motion system: the yellow signal follows the same route as an enquiry or a data event. */
.inner-motion-ready .route-diagram.is-motion-prepared ol::before,
.inner-motion-ready .route-diagram.is-motion-prepared .route-diagram__track::before,
.inner-motion-ready ol.route-diagram.is-motion-prepared::before,
.inner-motion-ready .process-route.is-motion-prepared::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.45, 0, .2, 1);
}

.inner-motion-ready .route-diagram.is-motion-visible ol::before,
.inner-motion-ready .route-diagram.is-motion-visible .route-diagram__track::before,
.inner-motion-ready ol.route-diagram.is-motion-visible::before,
.inner-motion-ready .process-route.is-motion-visible::before {
  transform: scaleX(1);
}

.route-diagram__node,
.route-diagram li,
.route-diagram__icon,
.route-diagram li > span:first-child {
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms cubic-bezier(.16, 1, .3, 1);
}

.route-diagram__node.is-motion-passed .route-diagram__icon,
.route-diagram li.is-motion-passed > span:first-child,
.route-diagram__node.is-motion-active .route-diagram__icon,
.route-diagram li.is-motion-active > span:first-child {
  color: var(--yellow);
  border-color: var(--yellow);
}

.route-diagram__node.is-motion-active .route-diagram__icon,
.route-diagram li.is-motion-active > span:first-child {
  box-shadow: 0 0 0 7px rgba(255, 196, 0, .14);
  transform: scale(1.07);
}

.route-motion-signal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 196, 0, .16);
  opacity: 0;
  pointer-events: none;
}

.route-motion-signal.is-running {
  opacity: 1;
  will-change: transform, opacity;
}

.process-route__step,
.process-route > li,
.process-route__marker,
.process-route > li > span:first-child,
.process-route--stages > li::before {
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms cubic-bezier(.16, 1, .3, 1);
}

a.open-row,
.related-links a,
details.open-row summary,
.faq summary {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

a.open-row:hover,
a.open-row:focus-visible,
.related-links a:hover,
.related-links a:focus-visible,
details.open-row summary:hover,
details.open-row summary:focus-visible,
.faq summary:hover,
.faq summary:focus-visible {
  background: linear-gradient(90deg, rgba(255, 196, 0, .11), transparent 72%);
}

a.open-row:focus-visible .open-row__arrow,
a.open-row:focus-visible > span[aria-hidden="true"]:last-child {
  color: var(--yellow);
  transform: translateX(4px);
}

details.open-row summary::after,
.faq summary::after {
  transition: color 180ms ease, transform 180ms cubic-bezier(.16, 1, .3, 1);
}

details.open-row[open] summary::after,
.faq details[open] summary::after {
  color: var(--yellow);
  transform: rotate(180deg);
}

@media (max-width: 700px) {
  .inner-motion-ready .route-diagram.is-motion-prepared ol::before,
  .inner-motion-ready .route-diagram.is-motion-prepared .route-diagram__track::before,
  .inner-motion-ready ol.route-diagram.is-motion-prepared::before,
  .inner-motion-ready .process-route.is-motion-prepared::before {
    transform: scaleY(0);
    transform-origin: top;
  }

  .inner-motion-ready .route-diagram.is-motion-visible ol::before,
  .inner-motion-ready .route-diagram.is-motion-visible .route-diagram__track::before,
  .inner-motion-ready ol.route-diagram.is-motion-visible::before,
  .inner-motion-ready .process-route.is-motion-visible::before {
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .inner-motion-ready .solutions-client-route__steps.is-motion-prepared::before {
    transform: scaleY(0);
    transform-origin: top;
  }

  .inner-motion-ready .solutions-client-route__steps.is-motion-visible::before {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-page .route-diagram ol::before,
  .inner-page .route-diagram__track::before,
  .inner-page ol.route-diagram::before,
  .inner-page .process-route::before {
    transform: none !important;
  }

  .route-motion-signal {
    display: none;
  }
}
