:root {
  --navy-950: #031c34;
  --navy-900: #052b50;
  --navy-800: #0a426a;
  --navy-700: #17658f;
  --teal-700: #007f83;
  --teal-600: #009d9b;
  --green-600: #67a83e;
  --green-100: #eef6e9;
  --blue-100: #eaf4f8;
  --blue-050: #f5f9fb;
  --ink: #173247;
  --muted: #5d7180;
  --line: #d7e2e7;
  --line-strong: #bed0d9;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(3, 28, 52, 0.1);
  --shadow-soft: 0 10px 28px rgba(3, 28, 52, 0.07);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

.whl-wheel-svg {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid #20b9bd;
  outline-offset: 3px;
}

::selection {
  color: var(--navy-950);
  background: #bce8e6;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 17ch;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.6vw, 5.25rem);
}

h2 {
  max-width: 19ch;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.9vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.container--narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(78px, 9vw, 132px);
}

.section--compact {
  padding-block: clamp(52px, 6vw, 86px);
}

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

.section--blue {
  background: var(--blue-100);
}

.section--navy {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
}

.section--navy h2,
.section--navy h3,
.section--navy .eyebrow {
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
}

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

.topline {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
  font-size: 0.76rem;
  letter-spacing: 0.045em;
}

.topline .container {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(215, 226, 231, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.navbar {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex: 0 0 236px;
  align-items: center;
  width: 236px;
  height: auto;
}

.brand img {
  width: 236px;
  max-width: none;
  transform: none;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  font-size: 0.91rem;
  font-weight: 680;
}

.navlinks a {
  position: relative;
  color: #334f63;
  text-decoration: none;
}

.navlinks a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--teal-600);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  color: var(--navy-950);
}

.navlinks a:hover::after,
.navlinks a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--navy-900);
  color: var(--white) !important;
  background: var(--navy-900);
}

.nav-cta::after {
  display: none;
}

.language-switch {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.navlinks .language-switch a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: var(--navy-900);
}

.navlinks .language-switch a::after {
  display: none;
}

.language-switch > * + *::before {
  margin-right: 7px;
  color: var(--line);
  content: "|";
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
  font-weight: 720;
}

.eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--teal-700);
  font-size: 0.77rem;
  font-weight: 790;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lead {
  max-width: 62ch;
  margin-bottom: 26px;
  color: #3c5568;
  font-size: clamp(1.12rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}

.subtle {
  color: var(--muted);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 740;
  line-height: 1.25;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--navy-900);
}

.button--primary:hover {
  background: var(--navy-800);
}

.button--secondary {
  border-color: var(--line-strong);
  color: var(--navy-900);
  background: var(--white);
}

.button--secondary:hover {
  border-color: var(--teal-600);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
}

.text-link {
  color: var(--teal-700);
  font-weight: 740;
  text-decoration-thickness: 1px;
}

.text-link--light {
  color: var(--white);
}

.hero {
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0 62%, #edf6f8 62% 100%);
}

.hero__grid {
  display: grid;
  min-height: 675px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero__copy {
  padding-block: 74px 86px;
}

.hero__copy h1 {
  max-width: 14.5ch;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  top: 38px;
  right: -26px;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 157, 155, 0.38);
  border-radius: 50%;
  content: "";
}

.hero__media img {
  position: absolute;
  z-index: 2;
  inset: 54px 0 0;
  width: 100%;
  height: calc(100% - 54px);
  object-fit: cover;
  object-position: center 30%;
}

.hero__signature {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 24px;
  width: min(310px, 82%);
  padding: 18px 22px;
  border-left: 4px solid var(--green-600);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow);
  font-weight: 670;
  line-height: 1.35;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-strip__items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-strip__items span {
  display: flex;
  min-height: 94px;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 720;
  line-height: 1.35;
}

.trust-strip__items span:first-child {
  border-left: 1px solid var(--line);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(42px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 50px;
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.section-heading p {
  margin-bottom: 3px;
  color: var(--muted);
}

.service-lines {
  border-top: 1px solid var(--line-strong);
}

.service-line {
  display: grid;
  grid-template-columns: 82px minmax(220px, 0.68fr) minmax(300px, 1fr) 42px;
  align-items: start;
  gap: 30px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.service-line__number {
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-line h3 {
  margin: 0;
}

.service-line__body p {
  margin-bottom: 10px;
  color: var(--muted);
}

.service-line__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 18px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  color: #355264;
  font-size: 0.91rem;
}

.service-line__body li::before {
  margin-right: 7px;
  color: var(--green-600);
  content: "—";
}

.service-line__arrow {
  color: var(--teal-700);
  font-size: 1.6rem;
  text-decoration: none;
}

.tool-stage {
  display: grid;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-entry {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4.5vw, 58px);
}

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

.tool-entry:first-child {
  background:
    linear-gradient(rgba(3, 28, 52, 0.88), rgba(3, 28, 52, 0.88)),
    url("../img/analysis-gb-psych.jpg") center / cover;
  color: rgba(255, 255, 255, 0.82);
}

.tool-entry:first-child h3,
.tool-entry:first-child .eyebrow {
  color: var(--white);
}

.tool-entry h3 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.tool-entry__privacy {
  display: block;
  margin-top: 24px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.tool-entry--whl {
  position: relative;
  overflow: hidden;
  background: var(--blue-100);
}

.tool-entry--whl::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(0, 157, 155, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(0, 157, 155, 0.08),
    0 0 0 72px rgba(103, 168, 62, 0.08);
  content: "";
}

.tool-entry--whl > * {
  position: relative;
  z-index: 1;
}

.perspectives {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.2);
}

.perspective {
  padding: 36px 32px 38px 0;
}

.perspective + .perspective {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.perspective strong {
  display: block;
  margin-bottom: 18px;
  color: #54d1ce;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.perspective h3 {
  font-size: 1.45rem;
}

.portrait-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.portrait-intro img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
}

.proof-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.proof-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #3b5567;
}

.proof-list li::before {
  margin-right: 11px;
  color: var(--teal-700);
  content: "↗";
}

.cta-band {
  display: grid;
  padding: clamp(36px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-900);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  max-width: 18ch;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.page-hero {
  overflow: hidden;
  padding-block: clamp(62px, 8vw, 110px);
  background: var(--blue-050);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.75rem);
}

.page-hero__media {
  position: relative;
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero__media--portrait {
  width: min(100%, 360px);
  justify-self: end;
}

.page-hero__media--portrait img {
  aspect-ratio: 4 / 5;
  object-position: 50% 24%;
}

.page-hero__media::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 36%;
  aspect-ratio: 1;
  border-right: 8px solid var(--green-600);
  border-bottom: 8px solid var(--green-600);
  content: "";
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.content-split--reverse > :first-child {
  order: 2;
}

.content-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-split img.content-split__portrait {
  width: min(100%, 340px);
  aspect-ratio: 4 / 5;
  object-position: 50% 24%;
  justify-self: start;
}

.content-split .wheel-visual {
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.content-split .wheel-visual img {
  aspect-ratio: 1;
  object-fit: contain;
}

.list-check {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 28px;
}

.list-check li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal-700);
  content: "✓";
  font-weight: 800;
}

.offer-block {
  display: grid;
  padding-block: 64px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
}

.offer-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.offer-block:last-child {
  padding-bottom: 0;
}

.offer-block__title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.offer-block__title .number {
  display: block;
  margin-bottom: 18px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.offer-block__title h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.offer-block__body > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-orientation {
  border-bottom: 1px solid var(--line);
  background: var(--home-offwhite);
}

.service-choice-grid {
  display: grid;
  margin-top: clamp(38px, 5vw, 62px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-choice-card {
  --choice-accent: var(--teal-700);
  position: relative;
  display: flex;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-top: 5px solid var(--choice-accent);
  color: var(--navy-900);
  background: var(--white);
  flex-direction: column;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.service-choice-card--learning {
  --choice-accent: var(--navy-700);
}

.service-choice-card--leadership {
  --choice-accent: var(--green-600);
}

.service-choice-card:hover,
.service-choice-card:focus-visible {
  border-color: var(--choice-accent);
  transform: translateY(-3px);
}

.service-choice-card > span {
  margin-bottom: 28px;
  color: var(--choice-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-choice-card strong {
  max-width: 26ch;
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.35;
}

.service-choice-card small {
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.services-details .offer-block {
  --offer-accent: var(--teal-700);
  scroll-margin-top: 100px;
}

.services-details .offer-block--learning {
  --offer-accent: var(--navy-700);
}

.services-details .offer-block--leadership {
  --offer-accent: var(--green-600);
}

.services-details .offer-block__title .number {
  color: var(--offer-accent);
}

.offer-block__intro {
  max-width: 72ch;
}

.offer-fit {
  margin: 34px 0;
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--offer-accent);
}

.offer-fit h3,
.offer-deliverables h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.offer-fit p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
}

.offer-deliverables {
  display: grid;
  margin: 36px 0 30px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  align-items: stretch;
  gap: 28px;
}

.offer-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 25px;
  color: #355264;
}

.offer-list li::before {
  position: absolute;
  top: 0.06em;
  left: 0;
  color: var(--offer-accent);
  content: "✓";
  font-weight: 800;
}

.offer-result {
  display: flex;
  padding: 28px;
  border-top: 5px solid var(--offer-accent);
  background: #eef4f1;
  flex-direction: column;
  justify-content: space-between;
}

.offer-block--learning .offer-result {
  background: #edf3f8;
}

.offer-block--leadership .offer-result {
  background: #f0f6e8;
}

.offer-result span {
  color: var(--offer-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-result p {
  margin: 24px 0 0;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.service-columns {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.service-columns div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.service-columns strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
}

.service-columns span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.service-columns--visual {
  counter-reset: service-capability;
}

.service-columns--visual > div {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 14px;
}

.service-columns--visual > div::before {
  content: counter(service-capability, decimal-leading-zero);
  counter-increment: service-capability;
  grid-row: 1 / 3;
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-columns--visual strong,
.service-columns--visual span {
  grid-column: 2;
}

.service-columns--visual strong {
  font-size: 1.02rem;
}

.learning-feature {
  margin-top: 36px;
  padding: 34px;
  border-left: 5px solid var(--teal-600);
  background: var(--blue-100);
}

.learning-feature h3 {
  font-size: 1.55rem;
}

.profile-perspectives__intro {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.profile-perspectives__intro h2 {
  max-width: 19ch;
}

.profile-perspectives__intro .lead {
  max-width: 70ch;
}

.perspective-triad {
  display: grid;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.perspective-triad article {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
}

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

.perspective-triad__head {
  display: flex;
  margin-bottom: 42px;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-700);
}

.perspective-triad__head span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.perspective-triad__head svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.perspective-triad__label {
  margin: 0 0 8px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.perspective-triad h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.perspective-triad article > p:not(.perspective-triad__label) {
  margin: 0;
  color: var(--muted);
}

.perspective-triad small {
  display: block;
  margin-top: 28px;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 750;
}

.perspective-triad__result {
  display: grid;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background: var(--navy-900);
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px 46px;
}

.perspective-triad__result span {
  color: #a8d8c1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.perspective-triad__result strong {
  max-width: 46ch;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.process-step {
  position: relative;
  padding: 30px 26px 12px 0;
}

.process-step + .process-step {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-step h3 {
  font-size: 1.3rem;
}

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

.check-comparison--single {
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr);
}

.check-panel {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: clamp(32px, 4.5vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
}

.check-panel--whl {
  background: var(--blue-100);
}

.check-panel__meta {
  display: grid;
  margin: 25px 0 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-panel__meta div {
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line);
}

.check-panel__meta strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.8rem;
}

.check-panel__meta span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.91rem;
}

.check-panel .action-row {
  margin-top: auto;
}

.privacy-bar {
  padding: 28px 32px;
  border-left: 5px solid var(--green-600);
  color: #314e60;
  background: var(--green-100);
}

.privacy-bar strong {
  color: var(--navy-900);
}

.whl-brand {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.whl-logo {
  width: 100%;
  max-width: 470px;
}

.whl-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dimension-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.dimension {
  display: grid;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
}

.dimension:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.dimension__index {
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 800;
}

.dimension strong {
  display: block;
  color: var(--navy-900);
}

.dimension p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.steps-six {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.step-six {
  padding: 27px 18px 16px 0;
}

.step-six + .step-six {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.step-six span {
  display: block;
  margin-bottom: 18px;
  color: #56d3cf;
  font-size: 0.75rem;
  font-weight: 800;
}

.step-six strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.step-six p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.transfer-flow article {
  padding-top: 26px;
  border-top: 4px solid var(--teal-600);
}

.transfer-flow article:nth-child(2) {
  border-top-color: var(--green-600);
}

.transfer-flow article:nth-child(3) {
  border-top-color: var(--navy-900);
}

.transfer-flow span {
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.whl-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.whl-metrics article {
  padding: 30px 26px 28px 0;
}

.whl-metrics article + article {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.whl-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-700);
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 1;
}

.whl-metrics p {
  margin: 0;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.55;
}

.whl-case__note {
  max-width: 72ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.whl-pilot-formats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.whl-pilot-formats article {
  padding: 30px 30px 0 0;
}

.whl-pilot-formats article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.whl-pilot-formats span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.whl-pilot-formats h3 {
  margin-bottom: 12px;
}

.whl-pilot-formats p {
  margin: 0;
  color: var(--muted);
}

.experience-proof {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.experience-proof div {
  padding: 24px 22px 10px 0;
}

.experience-proof div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.experience-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 1.07rem;
}

.experience-proof p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

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

.qualification-grid article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.qualification-grid strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.12rem;
}

.qualification-grid span {
  display: block;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(45px, 8vw, 112px);
}

.contact-layout > * {
  min-width: 0;
}

.contact-details {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-details a,
.contact-details span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details a {
  color: var(--teal-700);
  font-weight: 740;
}

.form-shell {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--blue-050);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 19px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--teal-600);
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.turnstile-shell {
  min-height: 70px;
  margin: 20px 0 16px;
}

.form-status {
  margin: 16px 0;
  padding: 13px 15px;
  border-left: 3px solid var(--teal-600);
  background: var(--white);
  color: var(--navy-950);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status--error {
  border-left-color: #a72f2f;
  background: #fff6f5;
  color: #781f1f;
}

.form-status--success {
  border-left-color: var(--green-600);
  background: #f4f9ef;
}

.form-shell .button[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.legal {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

.legal h1 {
  margin-bottom: 52px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.legal h2 {
  margin-top: 42px;
  font-size: 1.5rem;
}

.legal a {
  color: var(--teal-700);
}

.translation-note {
  margin-bottom: 40px;
  padding: 18px 20px;
  border-left: 4px solid var(--teal-600);
  background: var(--blue-050);
}

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

.translation-note p {
  margin: 6px 0 0;
}

.footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer__main {
  display: grid;
  padding-block: 54px 38px;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: 70px;
}

.footer__brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.2rem;
}

.footer__brand p {
  max-width: 38ch;
  font-size: 0.9rem;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer__links a:hover {
  color: #67d6d1;
}

.footer__bottom {
  display: flex;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  justify-content: space-between;
  gap: 24px;
  font-size: 0.77rem;
}

.footer__bottom a {
  color: inherit;
}

.no-adobe {
  display: none !important;
}

@media (max-width: 1120px) {
  .navlinks {
    gap: 15px;
    font-size: 0.84rem;
  }

  .brand {
    flex-basis: 205px;
    width: 205px;
  }

  .brand img {
    width: 205px;
    transform: none;
  }

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

  .step-six:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .whl-metrics article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .whl-metrics article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .container,
  .container--narrow,
  .legal {
    width: min(100% - 36px, var(--container));
  }

  .topline {
    display: none;
  }

  .navbar {
    min-height: 70px;
  }

  .brand {
    flex-basis: 210px;
    width: 210px;
  }

  .brand img {
    width: 210px;
    transform: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .navlinks {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px 18px 20px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .navlinks.is-open {
    display: flex;
  }

  .navlinks a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .navlinks a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    padding-inline: 14px !important;
    border-bottom: 0 !important;
    text-align: center;
  }

  .language-switch {
    width: 100%;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
  }

  .navlinks .language-switch a {
    width: auto;
    min-height: 32px;
    padding: 0;
    border: 0;
  }

  .hero {
    background: var(--white);
  }

  .hero__grid,
  .page-hero__grid,
  .content-split,
  .whl-brand {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 0;
  }

  .hero__copy {
    padding-block: 64px 44px;
  }

  .hero__media {
    min-height: 540px;
  }

  .hero__media img {
    inset: 0;
    height: 100%;
  }

  .page-hero__media {
    max-width: 700px;
  }

  .page-hero__media--portrait {
    width: min(100%, 290px);
    justify-self: center;
  }

  .content-split--reverse > :first-child {
    order: 0;
  }

  .content-split img.content-split__portrait {
    width: min(100%, 290px);
    justify-self: center;
  }

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

  .trust-strip__items span:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 15px;
  }

  .service-line {
    grid-template-columns: 52px minmax(180px, 0.58fr) minmax(0, 1fr) 28px;
    gap: 18px;
  }

  .portrait-intro {
    grid-template-columns: 0.65fr 1fr;
    gap: 42px;
  }

  .offer-block {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .offer-block__title {
    position: static;
  }

  .service-choice-grid,
  .home-service-cards,
  .offer-deliverables {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 0;
  }

  .perspective-triad {
    grid-template-columns: 1fr;
  }

  .perspective-triad article {
    padding: 34px 0;
  }

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

  .perspective-triad__head {
    margin-bottom: 26px;
  }

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

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.75rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .section {
    padding-block: 72px;
  }

  .trust-strip__items {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__items span,
  .trust-strip__items span:first-child,
  .trust-strip__items span:nth-child(4) {
    min-height: 78px;
    padding: 13px 14px;
    border-left: 0;
  }

  .trust-strip__items span:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .service-line {
    grid-template-columns: 38px 1fr 26px;
  }

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

  .home-service-card {
    padding: 28px 24px;
  }

  .home-service-card__head {
    min-height: 0;
  }

  .home-service-card__result {
    margin-top: 28px;
  }

  .offer-fit {
    padding-left: 18px;
  }

  .offer-result {
    padding: 24px;
  }

  .offer-block__body > .button {
    width: 100%;
  }

  .service-line__body {
    grid-column: 2 / -1;
  }

  .service-line__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .tool-stage,
  .check-comparison {
    grid-template-columns: 1fr;
  }

  .tool-entry {
    min-height: 390px;
  }

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

  .perspectives,
  .transfer-flow,
  .experience-proof {
    grid-template-columns: 1fr;
  }

  .whl-metrics,
  .whl-pilot-formats {
    grid-template-columns: 1fr;
  }

  .whl-metrics article,
  .whl-metrics article + article,
  .whl-metrics article:nth-child(3),
  .whl-pilot-formats article,
  .whl-pilot-formats article + article {
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .whl-metrics article:first-child,
  .whl-pilot-formats article:first-child {
    border-top: 0;
  }

  .perspective {
    padding: 27px 0;
  }

  .perspective + .perspective {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .portrait-intro {
    grid-template-columns: 1fr;
  }

  .portrait-intro img {
    max-height: 620px;
  }

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

  .service-columns,
  .dimension-list,
  .qualification-grid {
    grid-template-columns: 1fr;
  }

  .perspective-triad__result {
    grid-template-columns: 1fr;
  }

  .dimension:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

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

  .step-six:nth-child(3),
  .step-six:nth-child(5) {
    padding-left: 0;
    border-left: 0;
  }

  .step-six:nth-child(4) {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .field--full {
    grid-column: auto;
  }

  .footer__main,
  .footer__links {
    grid-template-columns: 1fr;
  }

  .footer__main {
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container,
  .container--narrow,
  .legal {
    width: min(100% - 42px, var(--container));
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .brand {
    flex-basis: 176px;
    width: 176px;
    height: auto;
  }

  .brand img {
    width: 176px;
    transform: none;
  }

  .hero__media {
    min-height: 440px;
  }

  .hero__signature {
    right: -7px;
    bottom: 13px;
  }

  .trust-strip__items {
    grid-template-columns: 1fr;
  }

  .trust-strip__items span,
  .trust-strip__items span:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .action-row .button,
  .cta-band .button,
  .form-shell .button {
    width: 100%;
  }

  .process,
  .steps-six {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3),
  .step-six,
  .step-six + .step-six,
  .step-six:nth-child(3),
  .step-six:nth-child(4),
  .step-six:nth-child(5) {
    padding: 24px 0;
    border-left: 0;
  }

  .process-step + .process-step,
  .step-six + .step-six {
    border-top: 1px solid var(--line);
  }

  .step-six + .step-six {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .dimension p,
  .step-six p {
    font-size: 1rem;
  }

  .check-panel__meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Startseite V2 */

.home-page {
  --home-green-900: #123f35;
  --home-green-800: #185247;
  --home-green-100: #e7f1e9;
  --home-green-050: #f2f6f1;
  --home-sage: #9bbb73;
  --home-offwhite: #f7f6f1;
  --home-charcoal: #203238;
  background: var(--white);
}

.home-page main {
  overflow: hidden;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--home-charcoal);
}

.home-page .section--navy h2,
.home-page .section--navy h3,
.home-page .home-section-intro--light h2,
.home-page .home-section-intro--light h3 {
  color: var(--white);
}

.home-page .eyebrow {
  color: var(--home-green-800);
}

.home-page .home-section-intro--light .eyebrow,
.home-page .section--navy .eyebrow {
  color: #a8d8c1;
}

.home-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.home-hero {
  background: var(--home-offwhite);
}

.home-hero__grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.66fr);
  align-items: center;
  gap: clamp(46px, 7vw, 104px);
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(72px, 8vw, 112px);
}

.home-hero__copy h1 {
  max-width: 16ch;
  font-size: clamp(3.25rem, 4.75vw, 5rem);
}

.home-hero__copy .lead {
  max-width: 58ch;
  color: #3d5358;
  font-size: clamp(1.16rem, 1.55vw, 1.34rem);
}

.home-hero__facts {
  display: grid;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #ccd8d1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.home-hero__facts span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--home-green-900);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-hero__facts .home-icon {
  width: 23px;
  height: 23px;
  color: var(--teal-700);
}

.home-hero__trust {
  max-width: 65ch;
  margin: 22px 0 0;
  color: #526468;
  font-size: 1rem;
  line-height: 1.55;
}

.home-hero__media {
  display: block;
  width: min(100%, 360px);
  min-width: 0;
  margin: 44px 0 44px auto;
  overflow: hidden;
  border: 1px solid #cbd8d1;
  background: #e8ece9;
}

.home-hero__media picture {
  display: block;
  aspect-ratio: 1098 / 1402;
}

.home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.home-section-intro {
  max-width: 830px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.home-section-intro--wide {
  max-width: 950px;
}

.home-section-intro > p:not(.lead) {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.home-section-intro--light > p:not(.lead) {
  color: rgba(255, 255, 255, 0.72);
}

.home-problem {
  background: var(--white);
}

.home-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.82fr);
  align-items: start;
  gap: clamp(50px, 8vw, 126px);
}

.home-problem__grid .home-section-intro {
  position: sticky;
  top: 125px;
  margin-bottom: 0;
}

.home-problem__grid h2 {
  max-width: 17ch;
}

.home-icon-rows {
  border-top: 1px solid var(--line-strong);
}

.home-icon-row {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
}

.home-icon-row__icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--home-green-800);
  background: var(--home-green-100);
  place-items: center;
}

.home-icon-row__icon .home-icon {
  width: 24px;
  height: 24px;
}

.home-icon-row h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.home-icon-row p {
  margin: 0;
  color: var(--muted);
}

.home-problem__conclusion {
  position: relative;
  max-width: none;
  margin: clamp(48px, 6vw, 78px) 0 0;
  padding: 30px 0 0 74px;
  border-top: 1px solid var(--line-strong);
  color: var(--home-green-900);
  background: transparent;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 740;
  line-height: 1.45;
}

.home-problem__conclusion::before {
  position: absolute;
  top: 29px;
  left: 0;
  width: 46px;
  height: 4px;
  background: var(--teal-700);
  content: "";
}

.home-process-section {
  border-block: 1px solid #dbe5dd;
  background: var(--home-offwhite);
}

.home-process {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #adc3b7;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.home-process-step {
  position: relative;
  min-height: 270px;
  padding: 33px 25px 30px;
  border-right: 1px solid #cddbd2;
}

.home-process-step:first-child {
  border-left: 1px solid #cddbd2;
}

.home-process-step--focus {
  color: var(--white);
  background: var(--home-green-800);
}

.home-process-step__number {
  display: block;
  margin-bottom: 34px;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-process-step--focus .home-process-step__number {
  color: #b7e2ce;
}

.home-process-step__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--home-green-800);
}

.home-process-step--focus .home-process-step__icon {
  color: var(--white);
}

.home-process-step h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.home-process-step--focus h3 {
  color: var(--white);
}

.home-process-step p {
  margin: 0;
  color: var(--muted);
}

.home-process-step--focus p {
  color: rgba(255, 255, 255, 0.76);
}

.home-process__statement {
  margin: 34px 0 0;
  color: var(--home-green-900);
  font-size: 1.12rem;
  font-weight: 740;
}

.home-services .home-section-intro {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.home-service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.home-service-card {
  --service-accent: var(--teal-700);
  display: flex;
  min-width: 0;
  min-height: 490px;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid var(--line-strong);
  border-top: 5px solid var(--service-accent);
  background: var(--white);
  flex-direction: column;
}

.home-service-card--learning {
  --service-accent: var(--navy-700);
}

.home-service-card--leadership {
  --service-accent: var(--green-600);
}

.home-service-card__head {
  display: flex;
  min-height: 68px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.home-service-card__meta {
  max-width: 28ch;
  color: var(--service-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-service-card__head .home-icon {
  width: 32px;
  height: 32px;
  color: var(--service-accent);
  flex: 0 0 auto;
}

.home-service-card h3 {
  max-width: 18ch;
  margin: 18px 0 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.home-service-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.home-service-card__result {
  margin-top: auto;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.home-service-card__result span {
  display: block;
  margin-bottom: 8px;
  color: var(--service-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-service-card__result p {
  margin: 0;
  color: var(--home-green-900);
  font-weight: 700;
  line-height: 1.55;
}

.home-service-card__cta {
  align-self: flex-start;
  margin-top: 26px;
}

.home-services__connection {
  max-width: 74ch;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--teal-700);
  color: var(--home-green-900);
  font-weight: 700;
}

.home-gb-evidence-section .home-gb-evidence {
  margin: 0;
}

.home-service-map {
  display: grid;
  margin-bottom: clamp(68px, 8vw, 108px);
  border-block: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-map a {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: center;
  padding: 26px 32px;
  color: var(--home-green-900);
  text-decoration: none;
}

.home-service-map a + a {
  border-left: 1px solid var(--line-strong);
}

.home-service-map a::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--teal-700);
  content: "↘";
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.home-service-map a:hover::after,
.home-service-map a:focus-visible::after {
  transform: translate(3px, 3px);
}

.home-service-map span {
  margin-bottom: 10px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.home-service-map strong {
  font-size: 1.25rem;
}

.home-service-map small {
  max-width: 27ch;
  margin-top: 6px;
  padding-right: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.home-service-row {
  display: grid;
  min-height: 610px;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.home-service-row:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.home-service-row__media {
  min-width: 0;
  margin: 0;
}

.home-service-row__media picture {
  display: block;
  height: 100%;
}

.home-service-row__media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.home-service-row__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
  background: var(--white);
}

.home-service-row--reverse .home-service-row__media {
  order: 2;
}

.home-service-row--reverse .home-service-row__content {
  order: 1;
  background: var(--home-offwhite);
}

.home-service-row__number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: #91a39d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.home-service-row__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 25px;
  color: var(--home-green-800);
}

.home-service-row__label {
  margin-bottom: 16px;
  color: var(--teal-700);
  font-size: 1rem;
  font-weight: 790;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-service-row h3 {
  max-width: 18ch;
  margin-bottom: 26px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.home-service-row__scope-label {
  margin: 0 0 13px;
  color: var(--home-green-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.home-bullets li {
  position: relative;
  padding-left: 27px;
  color: #42575c;
}

.home-bullets li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--green-600);
  content: "✓";
  font-weight: 800;
}

.home-service-row__outcome {
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #3f565b;
  line-height: 1.55;
}

.home-service-row__outcome span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-service-row__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px 22px;
  margin-top: 34px;
}

.home-gb-evidence {
  margin: 10px 0 clamp(72px, 9vw, 118px);
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line-strong);
  background: var(--home-offwhite);
}

.home-gb-evidence__intro {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 24px 52px;
}

.home-gb-evidence__intro .eyebrow {
  grid-column: 1 / -1;
}

.home-gb-evidence__intro h3 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
}

.home-gb-evidence__intro p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.home-gb-evidence__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-gb-evidence__item {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
}

.home-gb-evidence__item--dark {
  color: var(--white);
  background: var(--navy-950);
}

.home-gb-evidence__item--soft {
  color: var(--home-green-900);
  background: #edf5e2;
}

.home-gb-evidence__item > div:first-child {
  display: grid;
  gap: 14px;
}

.home-gb-evidence__item > div:first-child > strong {
  color: #8bc823;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.home-gb-evidence__item--soft > div:first-child > strong {
  color: var(--navy-900);
}

.home-gb-evidence__item > div:first-child > span {
  max-width: 34ch;
  font-weight: 760;
  line-height: 1.45;
}

.home-gb-evidence__item dl {
  display: grid;
  margin: auto 0 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-gb-evidence__item dt {
  color: #8bc823;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 800;
}

.home-gb-evidence__item dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-gb-evidence__item h4 {
  margin: auto 0 10px;
  color: var(--teal-700);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.home-gb-evidence__item p {
  margin: 0 0 24px;
  color: var(--muted);
}

.home-gb-evidence__item a {
  width: fit-content;
  margin-top: auto;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 750;
}

.home-bridge {
  color: var(--ink);
  border-block: 1px solid #d8e3dc;
  background: var(--home-green-050);
}

.home-bridge .home-section-intro {
  max-width: 1000px;
}

.home-bridge .home-section-intro h2 {
  max-width: 29ch;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.home-bridge__grid {
  display: grid;
  overflow: hidden;
  border: 1px solid #bfcfc6;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.5fr) minmax(0, 1fr);
}

.home-bridge__side {
  padding: clamp(34px, 5vw, 58px);
  background: var(--white);
}

.home-bridge__side-head {
  display: grid;
  align-items: start;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
}

.home-bridge__side-head .home-icon {
  width: 42px;
  height: 42px;
  color: var(--teal-700);
}

.home-bridge__side h3 {
  max-width: 16ch;
  margin: 3px 0 0;
  color: var(--home-green-900);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.home-bridge__kicker {
  display: block;
  color: var(--teal-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-bridge__side ul {
  display: grid;
  margin: 34px 0 0 64px;
  padding: 0;
  list-style: none;
}

.home-bridge__side li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: #40565b;
}

.home-bridge__side li:last-child {
  border-bottom: 1px solid var(--line);
}

.home-bridge__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 25px;
  border-inline: 1px solid #bfcfc6;
  color: var(--white);
  background: var(--home-green-900);
  text-align: center;
}

.home-bridge__connector span {
  color: #a8d8c1;
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-bridge__connector svg {
  width: 104px;
  margin: 25px 0 18px;
  fill: none;
  stroke: #7bd0b0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-bridge__connector strong {
  display: block;
  margin: 0 0 13px;
  color: var(--white);
  font-size: 1.3rem;
}

.home-bridge__connector p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.home-evidence {
  background: var(--white);
}

.home-evidence__strip {
  display: grid;
  border: 1px solid var(--line-strong);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-evidence__strip article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
  background: var(--white);
}

.home-evidence__strip article + article {
  border-left: 1px solid var(--line-strong);
}

.home-evidence__strip article > strong {
  color: var(--navy-900);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.home-evidence__strip article > span {
  min-height: 72px;
  margin-top: 18px;
  color: var(--home-green-900);
  font-weight: 750;
  line-height: 1.45;
}

.home-evidence__strip p {
  margin: auto 0 26px;
  color: var(--muted);
}

.home-evidence__strip p b {
  color: var(--teal-700);
}

.home-evidence__strip a {
  width: fit-content;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 750;
}

.home-evidence__strip .home-evidence__dark {
  color: var(--white);
  background: var(--navy-950);
}

.home-evidence__strip .home-evidence__dark > strong {
  color: #8bc823;
}

.home-evidence__strip .home-evidence__dark > span,
.home-evidence__strip .home-evidence__dark p,
.home-evidence__strip .home-evidence__dark a {
  color: var(--white);
}

.home-evidence__strip .home-evidence__dark p b {
  color: #8bc823;
}

.home-evidence__boundary {
  max-width: 74ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-difference {
  background: var(--navy-950);
}

.home-competencies {
  display: grid;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-competency {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 28px 34px;
}

.home-competency + .home-competency {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.home-competency .home-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  color: #80ccb1;
}

.home-competency h3 {
  color: var(--white);
  font-size: 1.34rem;
}

.home-competency p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.home-difference__statement {
  margin: 32px 0 0;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 720;
}

.home-experience {
  background: var(--home-offwhite);
}

.home-experience__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.home-experience__statement h2 {
  max-width: 26ch;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.home-experience__points {
  display: grid;
  border-top: 1px solid #cbd7d0;
}

.home-experience__points span {
  position: relative;
  padding: 18px 0 18px 31px;
  border-bottom: 1px solid #cbd7d0;
  color: var(--home-green-900);
  font-weight: 700;
}

.home-experience__points span::before {
  position: absolute;
  top: 1.08rem;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--teal-700);
  content: "";
  transform: rotate(45deg);
}

.home-cta {
  background: var(--home-offwhite);
}

.home-cta__inner {
  display: grid;
  padding: clamp(42px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--home-green-800);
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 30px;
}

.home-cta__inner h2 {
  max-width: 18ch;
  color: var(--white);
}

.home-cta__inner p {
  max-width: 70ch;
}

.home-cta__inner .eyebrow {
  color: #b9e1cf;
}

.home-cta__icon {
  width: 50px;
  height: 50px;
  color: #b9e1cf;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 31px;
}

.home-cta__actions span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

@media (max-width: 1120px) {
  .home-hero__grid {
    min-height: 640px;
    grid-template-columns: minmax(0, 0.95fr) minmax(410px, 1.05fr);
    gap: 36px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.75rem, 5.2vw, 4.2rem);
  }

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

  .home-process-step:nth-child(4) {
    border-left: 1px solid #cddbd2;
  }

  .home-process-step:nth-child(n + 4) {
    border-top: 1px solid #cddbd2;
  }

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

  .home-competency:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .home-competency:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 920px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-service-cards {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 0;
  }

  .home-hero__copy {
    padding-block: 62px 48px;
  }

  .home-hero__media {
    width: min(100%, 340px);
    margin: 0 auto 48px;
  }

  .home-hero__media img {
    object-position: 50% 34%;
  }

  .home-problem__grid,
  .home-experience__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .home-problem__grid .home-section-intro {
    position: static;
  }

  .home-problem__grid h2 {
    max-width: 19ch;
  }

  .home-service-row {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-service-row__content,
  .home-service-row--reverse .home-service-row__content {
    order: 1;
  }

  .home-service-row__media,
  .home-service-row--reverse .home-service-row__media {
    order: 2;
  }

  .home-service-row__media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .home-service-row__content {
    min-height: 540px;
  }

  .home-gb-evidence__intro,
  .home-gb-evidence__grid {
    grid-template-columns: 1fr;
  }

  .home-gb-evidence__intro .eyebrow {
    grid-column: auto;
  }

  .home-gb-evidence__item {
    min-height: 340px;
  }

  .home-bridge__grid {
    grid-template-columns: 1fr;
  }

  .home-bridge__connector {
    border: 0;
    border-block: 1px solid #bfcfc6;
  }

  .home-bridge__connector svg {
    width: 76px;
    transform: rotate(90deg);
  }

  .home-evidence__strip {
    grid-template-columns: 1fr;
  }

  .home-evidence__strip article {
    min-height: 330px;
  }

  .home-evidence__strip article + article {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .home-page main {
    font-size: 16px;
  }

  .home-service-card {
    padding: 28px 24px;
  }

  .home-service-card__head {
    min-height: 0;
  }

  .home-service-card__result {
    margin-top: 28px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.7rem);
  }

  .home-hero__media {
    width: min(100%, 320px);
  }

  .home-hero__facts {
    grid-template-columns: 1fr;
  }

  .home-gb-evidence {
    padding: 26px 20px;
  }

  .home-gb-evidence__item {
    min-height: 0;
    padding: 30px 24px;
  }

  .home-gb-evidence__item dl {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .home-gb-evidence__item h4 {
    margin-top: 34px;
  }

  .home-process {
    display: grid;
    border-top: 0;
    grid-template-columns: 1fr;
  }

  .home-process-step,
  .home-process-step:first-child,
  .home-process-step:nth-child(4),
  .home-process-step:nth-child(n + 4) {
    min-height: 0;
    padding: 26px 24px 26px 86px;
    border: 0;
    border-top: 1px solid #cddbd2;
  }

  .home-process-step:last-child {
    border-bottom: 1px solid #cddbd2;
  }

  .home-process-step__number {
    position: absolute;
    top: 29px;
    left: 22px;
    margin: 0;
  }

  .home-process-step__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
  }

  .home-service-map {
    grid-template-columns: 1fr;
  }

  .home-service-map a {
    min-height: 128px;
    padding: 24px;
  }

  .home-service-map a + a {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .home-service-row__content {
    min-height: 0;
    padding: 54px 24px;
  }

  .home-service-row__number {
    top: 25px;
    right: 24px;
  }

  .home-service-row h3 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .home-service-row__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-service-row__actions .button {
    width: 100%;
  }

  .home-service-row__actions .text-link {
    padding-block: 10px;
  }

  .home-competencies {
    grid-template-columns: 1fr;
  }

  .home-competency,
  .home-competency + .home-competency,
  .home-competency:nth-child(3),
  .home-competency:nth-child(4) {
    min-height: 0;
    padding: 30px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .home-competency:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .home-competency .home-icon {
    margin-bottom: 26px;
  }

  .home-experience__inner {
    gap: 34px;
  }

  .home-cta__inner {
    grid-template-columns: 1fr;
  }

  .home-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .home-hero__media {
    width: min(100%, 300px);
  }

  .home-icon-row {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 15px;
  }

  .home-icon-row__icon {
    width: 44px;
    height: 44px;
  }

  .home-problem__conclusion {
    padding: 28px 0 0;
  }

  .home-problem__conclusion::before {
    top: 0;
  }

  .home-bridge__side,
  .home-bridge__connector {
    padding-inline: 22px;
  }

  .home-cta__inner {
    padding: 34px 24px;
  }
}
