@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-variable.woff2") format("woff2");
}

:root {
  --ink: #112f3d;
  --ink-deep: #0b2632;
  --ink-soft: #3e5863;
  --teal: #1d70b8;
  --teal-dark: #185d98;
  --teal-pale: #e4f0f9;
  --cream: #f6f5ef;
  --mist: #edf3f1;
  --white: #fff;
  --line: #d6e0de;
  --error: #b42318;
  --success: #185d98;
  --shadow: 0 24px 70px rgba(15, 47, 61, .1);
  --radius: 22px;
  --container: 1180px;
  --font-display: "Manrope", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body::after {
  position: fixed;
  z-index: 99;
  inset: 0;
  visibility: hidden;
  content: "";
  opacity: 0;
  background: rgba(8, 28, 37, .48);
  backdrop-filter: blur(2px);
  transition: opacity .28s ease, visibility .28s ease;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-weight: 700;
  overflow-wrap: break-word;
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5.1vw, 5.15rem); }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.1rem, 3.7vw, 3.55rem); }
h3 { font-size: 1.2rem; letter-spacing: -.02em; }
p { color: var(--ink-soft); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #e0a53b; outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(214, 224, 222, .75);
  backdrop-filter: blur(14px);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .97); border-color: rgba(190, 205, 202, .86); box-shadow: 0 10px 30px rgba(11, 38, 50, .07); }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-deep);
  text-decoration: none;
}
.wordmark-image { width: 38px; height: 38px; object-fit: contain; }
.brand-name { color: inherit; font-size: .88rem; font-weight: 720; letter-spacing: .2em; line-height: 1; text-transform: uppercase; }
.primary-navigation { display: flex; align-items: center; gap: 31px; }
.primary-navigation > a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: #34505b;
  font-size: .94rem;
  font-weight: 580;
  text-decoration: none;
}
.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--teal);
  transition: transform .2s ease;
}
.primary-navigation > a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; padding: 8px; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(29, 112, 184, .18);
  font-size: .98rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 12px 25px rgba(29, 112, 184, .24); }
.button-small { min-height: 44px; padding: 9px 17px; font-size: .9rem; }
.button-light { color: var(--ink-deep); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-light:hover { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .55); }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--ink); font-weight: 650; text-underline-offset: 5px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero .eyebrow span { width: 18px; height: 2px; background: var(--teal); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100svh - 78px));
  padding: 90px 0 96px;
  background: linear-gradient(135deg, #fbfcfa 0%, var(--cream) 62%, #e8efed 100%);
  border-bottom: 1px solid #e6e8e2;
}
.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0 44% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246, 245, 239, 0) 70%, rgba(246, 245, 239, .9) 100%);
}
.hero-grid { position: relative; z-index: 3; display: flex; min-height: 574px; align-items: center; }
.hero-content { width: 49%; max-width: 585px; animation: hero-copy-in .7s cubic-bezier(.2, .75, .25, 1) both; }
.hero h1 { font-size: clamp(2.8rem, 4.35vw, 4.45rem); }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { max-width: 560px; margin-bottom: 32px; font-size: 1.12rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-proof { max-width: 555px; margin: 24px 0 0; color: #587078; font-size: .9rem; line-height: 1.55; }
.hero-media { position: absolute; z-index: 1; inset: 0 0 0 51%; overflow: hidden; animation: hero-media-in .9s .08s cubic-bezier(.2, .75, .25, 1) both; }
.hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(246, 245, 239, .98) 0%, rgba(246, 245, 239, .28) 16%, transparent 34%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; animation: hero-image-settle 1.4s .08s cubic-bezier(.2, .75, .25, 1) both; }

@keyframes hero-copy-in {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes hero-media-in {
  from { clip-path: inset(0 0 0 18%); opacity: 0; }
  to { clip-path: inset(0); opacity: 1; }
}
@keyframes hero-image-settle {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p, .section-heading div + p { max-width: 450px; margin: 0; font-size: 1.03rem; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.centered-heading { max-width: 770px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading h2 { margin-bottom: 20px; }
.centered-heading > p { max-width: 650px; margin-inline: auto; }

.problems-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 38px; }
.problem-card { min-height: 190px; padding: 26px 0; border-top: 1px solid var(--line); }
.problem-card > span { display: block; margin-bottom: 25px; color: var(--teal); font-size: .76rem; font-weight: 750; letter-spacing: .08em; }
.problem-card h3 { margin-bottom: 11px; }
.problem-card p { margin: 0; font-size: .94rem; line-height: 1.55; }
.section-closing { margin: 30px 0 0; text-align: center; font-style: italic; }
.section-action { margin-top: 42px; text-align: center; }

.approach-section { background: var(--cream); }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 0; padding: 0; list-style: none; }
.steps-grid::before { position: absolute; z-index: 0; top: 29px; right: 12%; left: 12%; height: 1px; content: ""; background: #b8ccdb; }
.steps-grid li { position: relative; z-index: 1; }
.step-number { display: grid; width: 59px; height: 59px; margin-bottom: 28px; place-items: center; color: var(--white); background: var(--ink); border: 8px solid var(--cream); border-radius: 50%; font-size: .75rem; font-weight: 700; }
.steps-grid li:nth-child(n+2) .step-number { color: var(--teal-dark); background: var(--white); box-shadow: inset 0 0 0 1px #a9c8df; }
.steps-grid h3 { min-height: 2.7em; margin-bottom: 12px; font-size: 1.13rem; }
.steps-grid p { margin: 0; font-size: .91rem; line-height: 1.6; }

.offer-section { overflow: hidden; background: var(--white); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; }
.offer-panel { min-height: 430px; padding: 54px; }
.offer-panel-light { background: var(--cream); border: 1px solid #e3e4df; }
.offer-panel-dark { color: var(--white); background: var(--ink-deep); }
.offer-panel h3 { margin: 46px 0 15px; font-size: clamp(2.1rem, 3vw, 3.2rem); }
.offer-panel-dark h3, .offer-panel-dark .offer-question { color: var(--white); }
.offer-panel-dark > p:not(.offer-index, .offer-question) { color: #b9c8cd; }
.offer-panel-dark .text-link { color: var(--white); }
.offer-index { color: var(--teal-dark); font-size: .76rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.offer-panel-dark .offer-index { color: #91c6ea; }
.offer-question { margin-bottom: 12px; color: var(--ink-deep); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.offer-panel > p:not(.offer-index, .offer-question) { max-width: 480px; }
.offer-panel .text-link { margin-top: 16px; }

.scan-section { position: relative; overflow: hidden; color: var(--white); background: var(--ink-deep); }
.scan-section::before { position: absolute; top: -220px; right: -120px; width: 550px; height: 550px; content: ""; background: radial-gradient(circle, rgba(29, 112, 184, .28), transparent 69%); }
.scan-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.light-eyebrow { color: #91c6ea; }
.scan-content h2, .contact-intro h2 { color: var(--white); }
.scan-content > p:not(.eyebrow), .contact-intro > p:not(.eyebrow) { margin-bottom: 29px; color: #b9c8cd; font-size: 1.05rem; }
.scan-card { padding: 38px 40px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 28px 65px rgba(0, 0, 0, .18); }
.card-kicker { margin-bottom: 21px; color: var(--ink-deep); font-size: .77rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #415a64; font-size: .89rem; line-height: 1.5; }
.check-list li::before { position: absolute; top: 4px; left: 0; display: grid; width: 17px; height: 17px; place-items: center; content: "✓"; color: var(--teal-dark); background: var(--teal-pale); border-radius: 50%; font-size: .62rem; font-weight: 800; }
.scan-note { margin: 25px 0 0; padding-top: 20px; color: #6b7f86; border-top: 1px solid var(--line); font-size: .8rem; }

.applications-section { background: #fbfcfa; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.solution-card { padding: 30px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.solution-number { display: block; margin-bottom: 25px; color: var(--teal); font-size: .76rem; font-weight: 750; letter-spacing: .08em; }
.solution-card h3 { min-height: 2.8em; margin-bottom: 12px; }
.solution-card > p { min-height: 4.8em; margin-bottom: 20px; font-size: .91rem; }
.solution-card ul { margin: 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.solution-card li { position: relative; padding-left: 18px; color: #49616a; font-size: .84rem; line-height: 1.5; }
.solution-card li + li { margin-top: 9px; }
.solution-card li::before { position: absolute; left: 0; content: "→"; color: var(--teal); }
.examples-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 27px 0 0; font-size: .84rem; }
.examples-note span { display: grid; width: 20px; height: 20px; flex: 0 0 auto; place-items: center; color: var(--teal-dark); border: 1px solid #a7c8e2; border-radius: 50%; font-size: .72rem; font-weight: 700; }

.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-intro > p:last-child { max-width: 530px; margin-top: 25px; font-size: 1.04rem; }
.pillars { border-top: 1px solid var(--line); }
.pillars article { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.pillars article > span { display: grid; width: 50px; height: 50px; place-items: center; color: var(--teal-dark); background: var(--teal-pale); border-radius: 12px; font-size: 1.05rem; font-weight: 750; }
.pillars h3 { margin: 3px 0 6px; }
.pillars p { margin: 0; font-size: .9rem; }

.pilot-section { padding-top: 20px; background: var(--white); }
.pilot-card { display: grid; grid-template-columns: 1fr .85fr; gap: 75px; align-items: center; padding: 60px 68px; background: var(--cream); border: 1px solid #e5e4dc; border-radius: var(--radius); }
.pilot-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.pilot-card > div:first-child > p:not(.eyebrow) { max-width: 600px; }
.criteria-card { padding: 28px 30px; background: var(--white); border-radius: 15px; box-shadow: 0 15px 35px rgba(17, 47, 61, .08); }
.criteria-card ul { margin: 0; padding: 0; list-style: none; }
.criteria-card li { position: relative; padding: 15px 0 15px 28px; border-top: 1px solid var(--line); }
.criteria-card li::before { position: absolute; top: 19px; left: 0; width: 9px; height: 9px; content: ""; background: var(--teal); border: 3px solid var(--teal-pale); box-sizing: content-box; border-radius: 50%; }
.criteria-card strong, .criteria-card span { display: block; }
.criteria-card strong { color: var(--ink-deep); font-size: .92rem; }
.criteria-card span { color: #70838a; font-size: .78rem; }

.contact-section { margin-top: 110px; background: var(--ink-deep); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.contact-intro { position: sticky; top: 125px; }
.contact-intro > ul { margin: 40px 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .13); list-style: none; }
.contact-intro > ul li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; padding: 18px 0; color: #d4dee1; border-bottom: 1px solid rgba(255, 255, 255, .13); font-size: .89rem; }
.contact-intro > ul span { color: #91c6ea; font-size: .72rem; font-weight: 700; }
.contact-direct { margin-top: 24px; color: #b9c8cd; font-size: .9rem; }
.contact-direct a { color: #fff; text-underline-offset: 4px; }
.contact-form-card { padding: 42px; background: var(--white); border-radius: var(--radius); box-shadow: 0 25px 70px rgba(0, 0, 0, .22); }
.form-heading { margin-bottom: 3px; color: var(--ink-deep); font-size: 1.45rem; font-weight: 670; letter-spacing: -.025em; }
.form-subheading { margin-bottom: 28px; font-size: .9rem; }
.form-success { display: flex; gap: 14px; margin-bottom: 24px; padding: 16px; color: #174f46; background: #e5f4f0; border: 1px solid #a8d1c8; border-radius: 10px; }
.form-success > span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--success); border-radius: 50%; }
.form-success p { margin: 2px 0 0; color: #3c665f; font-size: .86rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 19px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 650; }
.form-field input, .form-field textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  color: var(--ink-deep);
  background: #fbfcfb;
  border: 1px solid #cdd9d6;
  border-radius: 7px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input { height: 48px; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #8a9a9f; }
.form-field input:focus, .form-field textarea:focus { outline: 0; background: #fff; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(29, 112, 184, .14); }
.form-field input.input-validation-error, .form-field textarea.input-validation-error { border-color: var(--error); }
.field-error { display: block; margin-top: 5px; color: var(--error); font-size: .76rem; line-height: 1.35; }
.field-validation-valid { display: none; }
.validation-summary { margin-bottom: 18px; padding: 13px 15px; color: #8a1c13; background: #fff0ee; border: 1px solid #f3bbb5; border-radius: 8px; font-size: .84rem; }
.validation-summary.validation-summary-valid { display: none; }
.validation-summary ul { margin: 0; padding-left: 18px; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; margin-top: 2px; border: 0; }
.form-privacy { margin: 13px 0 0; text-align: center; font-size: .73rem; }
.form-privacy a { text-underline-offset: 3px; }

.closing-cta-section { color: var(--white); background: var(--ink-deep); }
.closing-cta { display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.closing-cta > div { max-width: 760px; }
.closing-cta h2 { color: var(--white); }
.closing-cta p:not(.eyebrow) { max-width: 690px; margin-bottom: 0; color: #b9c8cd; font-size: 1.05rem; }
.closing-cta .button { flex: 0 0 auto; }

/* Interior pages keep the established image plane and typographic hierarchy. */
.page-hero { position: relative; overflow: hidden; min-height: 590px; background: linear-gradient(135deg, #fbfcfa 0%, var(--cream) 68%, #e8efed 100%); border-bottom: 1px solid #e6e8e2; }
.page-hero-grid { position: relative; min-height: 590px; }
.page-hero-content { position: relative; z-index: 2; width: 51%; max-width: 610px; padding: 104px 0 96px; }
.page-hero-content h1 { font-size: clamp(2.7rem, 4.5vw, 4.65rem); }
.page-hero-content h1 em { color: var(--teal); font-style: normal; }
.page-hero-content > p:not(.eyebrow) { max-width: 570px; margin-bottom: 30px; font-size: 1.08rem; }
.page-hero-media { position: absolute; z-index: 1; top: 0; bottom: 0; left: 55%; width: 52vw; overflow: hidden; animation: hero-media-in .85s .05s cubic-bezier(.2, .75, .25, 1) both; }
.page-hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(246, 245, 239, 1) 0%, rgba(246, 245, 239, .28) 20%, transparent 42%); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.page-hero-deep { background: linear-gradient(135deg, #eef4f2 0%, #e6efed 100%); }
.about-hero .page-hero-media img { filter: saturate(.82); object-position: 67% center; }

.content-section { background: var(--white); }
.content-split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }
.content-split.align-start { align-items: start; }
.content-split h2 { max-width: 570px; }
.content-split > div:last-child { max-width: 650px; }
.lead-copy { color: var(--ink); font-size: 1.16rem; line-height: 1.75; }
.plain-list { margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.plain-list li { position: relative; padding: 16px 0 16px 27px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.plain-list li::before { position: absolute; top: 24px; left: 2px; width: 8px; height: 8px; content: ""; background: var(--teal); border-radius: 50%; }

.journey-section { background: var(--white); }
.journey-list { max-width: 1040px; }
.journey-item { display: grid; grid-template-columns: 105px 1fr; gap: 55px; padding: 76px 0; border-bottom: 1px solid var(--line); }
.journey-item:first-child { padding-top: 0; }
.journey-item:last-child { padding-bottom: 0; border-bottom: 0; }
.journey-item > div:last-child { max-width: 760px; }
.journey-number { color: var(--teal); font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; letter-spacing: -.05em; }
.journey-item h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
.journey-item .eyebrow { margin-bottom: 14px; }
.result-line { margin: 27px 0 18px; padding-left: 19px; border-left: 3px solid var(--teal); }
.result-line strong { color: var(--ink-deep); }
.aftercare-section, .next-step-section { background: var(--cream); }

.method-section { color: var(--white); background: var(--ink-deep); }
.method-section .section-heading h2, .method-section .section-heading > div h2 { color: var(--white); }
.method-section .section-heading > p, .method-section .section-heading div + p { color: #b9c8cd; }
.method-section-light { color: var(--ink); background: var(--cream); }
.method-section-light .section-heading h2 { color: var(--ink-deep); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .18); list-style: none; }
.method-grid li { min-height: 245px; padding: 31px 28px 10px 0; border-right: 1px solid rgba(255, 255, 255, .18); }
.method-grid li + li { padding-left: 28px; }
.method-grid li:last-child { border-right: 0; }
.method-grid span { display: block; margin-bottom: 42px; color: #91c6ea; font-size: .76rem; font-weight: 760; letter-spacing: .12em; }
.method-grid h3 { color: var(--white); }
.method-grid p { color: #b9c8cd; font-size: .91rem; }
.method-section-light .method-grid { border-color: var(--line); }
.method-section-light .method-grid li { border-color: var(--line); }
.method-section-light .method-grid h3 { color: var(--ink-deep); }
.method-section-light .method-grid p { color: var(--ink-soft); }
.method-section-light .method-grid span { color: var(--teal-dark); }

.result-section { color: var(--white); background: var(--ink-deep); }
.result-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.result-grid h2 { color: var(--white); }
.result-grid > div > p:not(.eyebrow) { color: #b9c8cd; }
.result-list { margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .18); list-style: none; }
.result-list li { position: relative; padding: 18px 0 18px 40px; color: #d9e2e4; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.result-list li::before { position: absolute; top: 21px; left: 4px; content: "✓"; color: #91c6ea; font-weight: 800; }

.investigation-section { background: var(--cream); }
.investigation-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.investigation-grid article { padding: 31px 28px 10px 0; border-right: 1px solid var(--line); }
.investigation-grid article + article { padding-left: 28px; }
.investigation-grid article:last-child { border-right: 0; }
.investigation-grid span { display: block; margin-bottom: 38px; color: var(--teal-dark); font-size: .76rem; font-weight: 760; letter-spacing: .12em; }
.investigation-grid p { font-size: .92rem; }

.principles-section { background: var(--cream); }
.principles-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.principles-list li { display: grid; grid-template-columns: 80px 1fr; gap: 34px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.principles-list li > span { color: var(--teal-dark); font-size: .76rem; font-weight: 760; letter-spacing: .12em; }
.principles-list h3 { margin-bottom: 7px; }
.principles-list p { margin: 0; }

.contact-page { min-height: calc(100svh - 78px); padding: 90px 0 110px; color: var(--white); background: var(--ink-deep); }
.contact-page .contact-intro h1 { max-width: 560px; color: var(--white); font-size: clamp(2.7rem, 4.6vw, 4.7rem); }
.contact-page .contact-grid { align-items: start; }

.site-footer { padding: 67px 0 24px; color: #becace; background: #071d26; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 80px; padding-bottom: 48px; }
.wordmark-footer { margin-bottom: 17px; color: #fff; }
.footer-grid > div:first-child p { max-width: 450px; }
.footer-grid p { margin: 0; color: #91a5ad; font-size: .86rem; }
.footer-grid p a { color: #c7d3d7; text-underline-offset: 3px; }
.footer-grid h2 { margin: 4px 0 15px; color: #fff; font-family: inherit; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-placeholder { color: #a9b8be; font-style: italic; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { color: #aab9bf; font-size: .86rem; text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #6f858e; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .75rem; }

/* Motion progressively enhances the page; content stays visible without JavaScript. */
.motion-ready [data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .65s cubic-bezier(.2, .75, .25, 1), transform .65s cubic-bezier(.2, .75, .25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="from-left"] { transform: translateX(-24px); }
.motion-ready [data-reveal="from-right"] { transform: translateX(24px); }
.motion-ready [data-reveal].is-visible { transform: translate(0); opacity: 1; }
.motion-ready .steps-grid::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .95s .12s cubic-bezier(.2, .75, .25, 1);
}
.motion-ready .steps-grid.is-in-view::before { transform: scaleX(1); }

.legal-page { min-height: 62vh; padding: 80px 0 110px; background: var(--cream); }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { margin-bottom: 16px; font-size: clamp(2.5rem, 5vw, 4rem); }
.legal-lead { max-width: 700px; font-size: 1.08rem; }
.concept-notice { display: flex; gap: 15px; margin: 32px 0; padding: 19px 20px; color: #75510e; background: #fff6df; border: 1px solid #eed494; border-radius: 10px; }
.concept-notice > span { font-weight: 800; }
.concept-notice p { margin: 0; color: #75510e; }
.legal-content { margin-top: 38px; padding: 40px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.legal-content h2 { margin: 34px 0 10px; font-size: 1.35rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: .94rem; }
.legal-content a { color: var(--teal-dark); }

.error-page { min-height: 62vh; display: grid; place-items: center; padding: 80px 20px; text-align: center; }
.error-page span { color: var(--teal); font-size: .8rem; font-weight: 750; letter-spacing: .15em; }
.error-page h1 { max-width: 700px; margin: 18px auto; }
.error-page p { max-width: 560px; margin: 0 auto 28px; }

@media (max-width: 1050px) {
  .primary-navigation { gap: 16px; }
  .primary-navigation > a:not(.button) { font-size: .88rem; }
  .hero-content { width: 53%; }
  .hero-media { left: 56%; }
  .scan-grid, .why-grid, .contact-grid { gap: 55px; }
  .pilot-card { gap: 45px; padding: 50px; }
  .page-hero-content { width: 54%; }
  .page-hero-media { left: 58%; }
  .content-split, .result-grid { gap: 55px; }
}

@media (max-width: 940px) {
  body.menu-open::after { visibility: visible; opacity: 1; }
  .section { padding: 82px 0; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero::before { display: none; }
  .hero-grid { min-height: 0; }
  .hero-content { width: 100%; max-width: 680px; }
  .hero-media { position: relative; inset: auto; height: clamp(340px, 54vw, 470px); margin-top: 58px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(246, 245, 239, .75) 0%, transparent 20%); }
  .hero-media img { object-position: center 54%; }
  .wordmark { position: relative; z-index: 102; }
  .menu-toggle {
    position: relative;
    z-index: 104;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 10px;
    place-content: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-navigation {
    position: fixed;
    z-index: 103;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88vw, 390px);
    display: flex;
    visibility: hidden;
    transform: translateX(100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 112px 28px 34px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0, rgba(29, 112, 184, .32), transparent 38%),
      var(--ink-deep);
    box-shadow: -24px 0 60px rgba(4, 20, 27, .24);
    transition: transform .3s cubic-bezier(.22, .75, .25, 1), visibility .3s;
  }
  .primary-navigation::before {
    margin-bottom: 20px;
    content: "Navigatie";
    color: #91c6ea;
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .primary-navigation.is-open { visibility: visible; transform: translateX(0); }
  .primary-navigation > a:not(.button) {
    padding: 17px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 650;
    letter-spacing: -.02em;
  }
  .primary-navigation > a:not(.button)::after { display: none; }
  .primary-navigation .button { width: 100%; margin-top: 28px; box-shadow: none; }
  .split-heading { display: block; }
  .split-heading div + p { margin-top: 20px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 45px 30px; }
  .steps-grid::before { display: none; }
  .steps-grid h3 { min-height: auto; }
  .scan-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .scan-content { max-width: 660px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card h3, .solution-card > p { min-height: 0; }
  .pilot-card { grid-template-columns: 1fr; }
  .contact-section { margin-top: 80px; }
  .contact-intro { position: static; }
  .contact-intro > ul { max-width: 600px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-panel { min-height: 0; }
  .page-hero { min-height: 0; }
  .page-hero-grid { min-height: 0; }
  .page-hero-content { width: 100%; max-width: 700px; padding: 78px 0 70px; }
  .page-hero-media { position: relative; inset: auto; width: 100vw; height: 380px; margin-left: calc(50% - 50vw); }
  .page-hero-media::after { background: linear-gradient(180deg, rgba(246, 245, 239, .75) 0%, transparent 22%); }
  .content-split, .result-grid { grid-template-columns: 1fr; gap: 42px; }
  .journey-item { grid-template-columns: 75px 1fr; gap: 30px; }
  .method-grid, .investigation-grid { grid-template-columns: 1fr 1fr; }
  .method-grid li:nth-child(2), .investigation-grid article:nth-child(2) { border-right: 0; }
  .method-grid li:nth-child(n+3), .investigation-grid article:nth-child(n+3) { padding-top: 31px; border-top: 1px solid rgba(255, 255, 255, .18); }
  .method-section-light .method-grid li:nth-child(n+3), .investigation-grid article:nth-child(n+3) { border-top-color: var(--line); }
  .closing-cta { align-items: flex-start; flex-direction: column; gap: 34px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .hero { padding: 46px 0 0; }
  h1 { font-size: clamp(2.1rem, 9.2vw, 2.6rem); }
  h1, h2 { overflow-wrap: anywhere; }
  .hero h1 em { font-size: .88em; }
  h2 { font-size: clamp(2rem, 9.5vw, 2.65rem); }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-media { height: 300px; margin-top: 40px; }
  .hero-media img { object-position: 58% center; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 38px; }
  .problem-grid { grid-template-columns: 1fr; gap: 0; }
  .problem-card { min-height: 0; padding: 22px 0; }
  .problem-card > span { margin-bottom: 14px; }
  .steps-grid { grid-template-columns: 1fr; gap: 35px; }
  .steps-grid li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
  .step-number { width: 52px; height: 52px; margin: 0; border-width: 5px; }
  .scan-grid { gap: 45px; }
  .scan-card { padding: 28px 22px; }
  .check-list { grid-template-columns: 1fr; }
  .examples-note { align-items: flex-start; text-align: left; }
  .why-grid { gap: 45px; }
  .pilot-section { padding-top: 0; }
  .pilot-card { width: 100%; padding: 42px 22px; border-right: 0; border-left: 0; border-radius: 0; }
  .criteria-card { padding: 24px 20px; }
  .contact-section { margin-top: 70px; }
  .contact-grid { gap: 45px; }
  .contact-form-card { padding: 28px 20px; border-radius: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .legal-page { padding: 60px 0 80px; }
  .legal-content { padding: 27px 20px; }
  .offer-panel { padding: 40px 24px; }
  .offer-panel h3 { margin-top: 34px; }
  .page-hero-content { padding: 58px 0 52px; }
  .page-hero-content h1 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .page-hero-media { height: 290px; }
  .journey-item { grid-template-columns: 1fr; gap: 14px; padding: 52px 0; }
  .journey-number { font-size: 1.45rem; }
  .method-grid, .investigation-grid { grid-template-columns: 1fr; }
  .method-grid li, .method-grid li + li, .investigation-grid article, .investigation-grid article + article { min-height: 0; padding: 25px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .method-section-light .method-grid li, .investigation-grid article, .investigation-grid article + article { border-bottom-color: var(--line); }
  .method-grid span, .investigation-grid span { margin-bottom: 20px; }
  .principles-list li { grid-template-columns: 50px 1fr; gap: 18px; }
  .contact-page { padding: 60px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { transform: none !important; opacity: 1 !important; }
}
