:root {
  --blue: #0b89c1;
  --blue-dark: #076a97;
  --navy: #102b3a;
  --ink: #231f20;
  --muted: #51616a;
  --line: #dce8ee;
  --soft: #f1f6f8;
  --pale-blue: #e7f4fa;
  --gold: #c8a13a;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(16, 43, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.58;
  background: var(--white);
}

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

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

a:hover {
  color: var(--blue-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11, 137, 193, 0.34);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.center {
  text-align: center;
}

.utility-bar {
  display: block;
  background: #0c2835;
  color: #ffffff;
  font-size: 13px;
}

.utility-bar__inner,
.utility-bar__links,
.site-header__inner,
.actions,
.trust-strip__inner,
.hero-panel__top,
.footer-bottom {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.utility-bar__links {
  gap: 20px;
  font-weight: 600;
}

.site-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 43, 58, 0.04);
}

.site-header__inner {
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand img {
  width: 202px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button--primary:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.button--outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

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

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

.button--outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 15%, rgba(11, 137, 193, 0.16), transparent 34%),
    linear-gradient(160deg, #102b3a 0%, #163a4e 58%, #0f2f42 100%);
  min-height: calc(100vh - 148px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.86fr);
  gap: 88px;
  align-items: center;
  padding: 59px 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 24px;
  padding: 7px 16px;
  border: 1px solid rgba(125, 200, 230, 0.42);
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--navy .eyebrow {
  color: #84d2ed;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  font-family: Archivo, "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.3vw, 4.05rem);
  font-weight: 800;
  line-height: 1.05;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 2.65rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero__lead {
  max-width: 555px;
  margin: 0 0 34px;
  color: #d7ecf7;
  font-size: 1.18rem;
  line-height: 1.52;
}

.hero__tagline {
  margin: 0 0 20px;
  color: #66d5ff;
  font-family: Archivo, "IBM Plex Sans", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.48rem);
  font-weight: 700;
}

.hero__subtagline {
  max-width: 560px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
}

.actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero .actions {
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.hero .button {
  min-height: 55px;
  padding: 15px 26px;
}

.center-actions {
  justify-content: center;
}

.microcopy {
  margin: 20px 0 0;
  color: #94bdcf;
  font-size: 0.92rem;
}

.icon {
  --icon-bg: var(--pale-blue);
  --icon-color: var(--blue);
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(11, 137, 193, 0.18);
  border-radius: 8px;
  background: var(--icon-bg);
  color: var(--icon-color);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon--urgent::before {
  width: 23px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon--urgent::after {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(3px, -3px) rotate(45deg);
}

.icon--systems::before {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: -8px 8px 0 -3px var(--icon-bg), -8px 8px 0 -1px currentColor;
}

.icon--systems::after {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translate(9px, -9px);
}

.icon--risk::before,
.icon--security::before,
.icon--certified::before,
.icon--secure::before {
  width: 24px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 8px 8px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.icon--risk::after {
  width: 3px;
  height: 15px;
  border-radius: 3px;
  background: currentColor;
  box-shadow: 0 20px 0 -1px currentColor;
}

.icon--security::after,
.icon--certified::after,
.icon--secure::after {
  width: 15px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon--access::before,
.icon--team::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-9px);
}

.icon--access::after,
.icon--team::after {
  width: 25px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 4px 4px;
  transform: translateY(9px);
}

.icon--support::before {
  width: 28px;
  height: 24px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.icon--support::after {
  width: 28px;
  height: 18px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: translateY(5px);
}

.icon--workplace::before {
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon--workplace::after {
  width: 27px;
  height: 27px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat;
}

.icon--backup::before {
  width: 28px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50% / 22%;
  box-shadow: 0 9px 0 -2px var(--icon-bg), 0 9px 0 0 currentColor;
}

.icon--backup::after {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}

.icon--hardware::before {
  width: 28px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: translateY(-4px);
}

.icon--hardware::after {
  width: 22px;
  height: 10px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(13px);
}

.icon--local::before {
  width: 19px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 13px 13px 13px 2px;
  transform: rotate(-45deg) translate(1px, -1px);
}

.icon--local::after {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-4px);
}

.icon--scale::before,
.icon--improve::before {
  width: 28px;
  height: 21px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon--scale::after,
.icon--improve::after {
  width: 24px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(3px, -4px) skewY(-20deg);
}

.icon--discover::before {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon--discover::after {
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(12px, 12px) rotate(45deg);
}

.icon--stabilise::before {
  width: 27px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon--stabilise::after {
  width: 18px;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon--finance::before {
  width: 30px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon--finance::after {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon--legal::before {
  width: 2px;
  height: 30px;
  background: currentColor;
}

.icon--legal::after {
  width: 28px;
  height: 19px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-4px);
}

.icon--construction::before {
  width: 30px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 4px solid currentColor;
  border-radius: 16px 16px 5px 5px;
  transform: translateY(4px);
}

.icon--construction::after {
  width: 20px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-5px);
}

.icon--professional::before {
  width: 28px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 5px;
  transform: translateY(3px);
}

.icon--professional::after {
  width: 13px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  transform: translateY(-12px);
}

.icon--trades::before {
  width: 27px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 8px;
  transform: rotate(-35deg);
}

.icon--trades::after {
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(6px, 6px) rotate(10deg);
}

.hero-panel {
  display: grid;
  min-height: 386px;
  place-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(135deg, #1c4459, #1c4459 16px, #194054 16px, #194054 32px);
  box-shadow: none;
}

.hero-panel span {
  color: #7fd6ff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.45;
  text-align: center;
}

.trust-strip {
  display: none;
}

.trust-strip__inner {
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0;
  color: #cfe4ef;
  font-weight: 600;
}

.section {
  padding: 84px 0;
}

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

.risk-section {
  background: #eef6fa;
  padding: 64px 0 78px;
}

.risk-section .narrow {
  max-width: 860px;
}

.risk-section .eyebrow {
  display: block;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #4d5e67;
  letter-spacing: 0.16em;
}

.risk-section h2 {
  max-width: 820px;
  margin: 0 auto 20px;
  color: #242225;
  font-size: clamp(2.35rem, 4.2vw, 3rem);
  line-height: 1.13;
}

.risk-section > .container > p:not(.eyebrow) {
  max-width: 830px;
  margin: 0 auto;
  color: #516573;
  font-size: 1.02rem;
  line-height: 1.6;
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
}

.section p {
  color: var(--muted);
}

.section--navy p {
  color: #c2d4dd;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 34px;
  text-align: left;
}

.problem-grid article,
.service-card,
.industry-grid article,
.faq-list details,
.engagement-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid article {
  display: flex;
  min-height: 118px;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  color: #465866;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
}

.problem-grid p {
  margin: 0;
}

.risk-card {
  border-color: #d3e1ea;
  border-radius: 7px;
}

.risk-card__icon {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.service-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
}

.service-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  object-fit: contain;
}

.service-card p {
  flex: 1;
}

.service-card a {
  color: var(--blue);
  font-weight: 700;
}

.service-card a::after {
  content: " ->";
}

.split,
.cert-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

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

.proof-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.proof-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  object-fit: contain;
}

.proof-grid h3 {
  color: #84d2ed;
}

.certification {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.cert-card {
  display: grid;
  min-height: 340px;
  place-items: center;
  background: transparent;
}

.cert-card img {
  width: min(340px, 78%);
  filter: drop-shadow(0 18px 26px rgba(16, 43, 58, 0.16));
}

.engagement-process .section-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.engagement-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.engagement-process__steps::before {
  content: "";
  position: absolute;
  top: 92px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(11, 137, 193, 0.42);
}

.engagement-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 446px;
  flex-direction: column;
  align-items: center;
  padding: 42px 16px 18px;
  color: inherit;
  text-align: center;
  box-shadow: 0 14px 36px rgba(16, 43, 58, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.engagement-step:hover {
  border-color: rgba(11, 137, 193, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.engagement-step__number {
  position: absolute;
  top: -24px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(11, 137, 193, 0.24);
}

.engagement-step__connector {
  position: absolute;
  top: 70px;
  right: -42px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(11, 137, 193, 0.2);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 43, 58, 0.09);
}

.engagement-step__connector::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: translateX(-2px) rotate(45deg);
}

.engagement-step__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  object-fit: contain;
}

.engagement-step__divider {
  display: block;
  width: 30px;
  height: 3px;
  margin: 8px 0 18px;
  border-radius: 999px;
  background: var(--blue);
}

.engagement-step h3 {
  margin: 0;
  color: #111827;
}

.engagement-step > p {
  margin: 0 0 24px;
  color: #405261;
  font-size: 0.98rem;
  line-height: 1.5;
}

.engagement-step__outcome {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding: 14px;
  border-radius: 8px;
  background: #edf7fc;
  color: #0a4b84;
  text-align: left;
}

.engagement-step__outcome img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
}

.engagement-step__outcome p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.engagement-step__outcome strong {
  color: var(--blue-dark);
}

.engagement-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(16, 43, 58, 0.05);
}

.engagement-trust__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 22px;
}

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

.engagement-trust__item img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.engagement-trust h3 {
  margin: 0 0 4px;
  color: #0a4b84;
  font-size: 1rem;
}

.engagement-trust p {
  margin: 0;
  color: #234e72;
  font-size: 0.94rem;
  line-height: 1.45;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.industry-grid article {
  padding: 24px 20px;
}

.industry-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  object-fit: contain;
}

.about p {
  font-size: 1.05rem;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 21px 24px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  color: var(--white);
  background: linear-gradient(160deg, var(--blue) 0%, #0a7bad 100%);
}

.final-cta p {
  color: #e2f2fa;
}

.final-cta .microcopy {
  color: #cfeaf7;
}

.consultation-modal {
  width: min(980px, calc(100% - 40px));
  max-height: calc(100vh - 48px);
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  overflow: visible;
}

.consultation-modal::backdrop {
  background: rgba(12, 36, 50, 0.74);
  backdrop-filter: blur(5px);
}

.consultation-modal__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  overflow: visible;
  background: var(--white);
}

.consultation-modal__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 137, 193, 0.24), rgba(16, 43, 58, 0) 54%),
    #102b3a;
}

.consultation-modal__intro .eyebrow {
  color: #76d7ff;
}

.consultation-modal__intro h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.6vw, 2.05rem);
  line-height: 1.12;
}

.consultation-modal__intro p:not(.eyebrow) {
  margin: 0;
  color: #d8edf6;
  font-size: 0.98rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font: inherit;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.modal-close:hover {
  color: var(--blue-dark);
  border-color: rgba(11, 137, 193, 0.42);
  background: #f8fbfc;
  transform: translateY(-1px);
}

.modal-close span {
  transform: translateY(-1px);
  font-size: 1.55rem;
}

.consultation-form {
  margin: 0;
  padding: 24px 28px 22px;
  text-align: left;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

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

.form-field {
  display: grid;
  gap: 5px;
  color: var(--navy);
  font-weight: 800;
}

.form-field span {
  font-size: 0.88rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(11, 137, 193, 0.52);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 137, 193, 0.08);
}

.form-field--full,
.form-status,
.form-actions {
  grid-column: 1 / -1;
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-bottom: 14px;
  padding: 11px 13px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  color: #0b5c38;
  border: 1px solid #9bd9bc;
  background: #eaf8f1;
}

.form-status--error {
  color: #8a2f14;
  border: 1px solid #f0b49f;
  background: #fff1eb;
}

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 16px;
}

.form-actions span {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-actions .button {
  min-height: 40px;
  padding: 10px 16px;
  white-space: nowrap;
}

.site-footer {
  padding: 58px 0 34px;
  color: #90a7b1;
  background: #0c2432;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer-grid img {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f8894;
  font-size: 0.88rem;
}

.footer-credit {
  justify-self: center;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-self: end;
}

.legal-page {
  background: #f6fbfd;
}

.legal-hero {
  padding: clamp(64px, 8vw, 104px) 0 clamp(52px, 6vw, 78px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 137, 193, 0.18), rgba(16, 43, 58, 0) 46%),
    #102b3a;
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 48px;
  align-items: end;
}

.legal-hero .eyebrow {
  color: #76d7ff;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.98;
}

.legal-hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d2e7f0;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.legal-hero__meta {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.legal-hero__meta span {
  display: block;
  margin-bottom: 4px;
  color: #9fc7d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero__meta strong,
.legal-hero__meta a {
  color: var(--white);
  font-weight: 800;
}

.legal-content {
  padding: clamp(58px, 7vw, 88px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 120px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 43, 58, 0.06);
}

.legal-toc h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 200px);
  overflow: auto;
  padding-right: 4px;
}

.legal-toc a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #edf4f7;
  color: #405261;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--blue-dark);
}

.legal-document {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 43, 58, 0.07);
}

.legal-document h2 {
  scroll-margin-top: 120px;
  margin: 46px 0 14px;
  padding-top: 18px;
  border-top: 1px solid #e8f1f5;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-document p,
.legal-document li {
  color: #405261;
  font-size: 1.04rem;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul {
  margin: 0 0 22px;
  padding-left: 1.25rem;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 860px) {
  .consultation-modal {
    width: min(100% - 28px, 640px);
    max-height: calc(100vh - 28px);
    overflow: hidden;
  }

  .consultation-modal__shell {
    display: block;
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .consultation-modal__intro {
    padding: 24px 72px 22px 24px;
  }

  .consultation-modal__intro h2 {
    max-width: 520px;
  }

  .modal-close {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
  }

  .modal-close:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .brand img {
    width: 178px;
  }

  .hero__grid,
  .split,
  .cert-grid,
  .legal-hero__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 42px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .card-grid--services,
  .engagement-process__steps,
  .engagement-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engagement-process__steps::before {
    display: none;
  }

  .engagement-step__connector {
    display: none;
  }

  .engagement-trust__item {
    padding: 18px;
  }

  .engagement-trust__item + .engagement-trust__item {
    border-left: 0;
  }

  .engagement-trust__item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

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

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

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

@media (max-width: 767px) {
  .engagement-process__steps,
  .engagement-trust {
    grid-template-columns: 1fr;
  }

  .engagement-process__steps {
    gap: 42px;
    margin-top: 48px;
  }

  .engagement-step {
    min-height: 0;
    align-items: flex-start;
    padding: 38px 20px 20px;
    text-align: left;
  }

  .engagement-step__number {
    left: 24px;
    transform: none;
  }

  .engagement-step__icon {
    width: 56px;
    height: 56px;
    margin-top: 8px;
  }

  .engagement-step__connector {
    top: auto;
    right: auto;
    bottom: -35px;
    left: 50%;
    display: grid;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
  }

  .engagement-step__connector::before {
    width: 8px;
    height: 8px;
    transform: translateY(-1px) rotate(135deg);
  }

  .engagement-step__outcome img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .engagement-trust {
    padding: 8px 0;
  }

  .engagement-trust__item,
  .engagement-trust__item:nth-child(even) {
    gap: 14px;
    padding: 16px 18px;
    border-left: 0;
  }

  .engagement-trust__item + .engagement-trust__item,
  .engagement-trust__item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .engagement-trust__item img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .utility-bar__inner,
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-credit,
  .footer-legal {
    justify-self: start;
    text-align: left;
  }

  .site-header__inner {
    align-items: center;
  }

  .header-cta {
    width: 100%;
  }

  .hero__grid {
    padding: 42px 0 48px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .hero-panel {
    min-height: 280px;
    padding: 28px;
  }

  .problem-grid,
  .card-grid--services,
  .proof-grid,
  .form-grid,
  .engagement-process__steps,
  .engagement-trust,
  .industry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .consultation-form {
    padding: 20px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero {
    padding: 52px 0 46px;
  }

  .legal-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
  }

  .legal-hero__meta,
  .legal-document,
  .legal-toc {
    padding: 20px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .proof-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }

  .engagement-process__steps {
    gap: 42px;
    margin-top: 48px;
  }

  .engagement-step {
    min-height: 0;
    align-items: flex-start;
    padding: 38px 20px 20px;
    text-align: left;
  }

  .engagement-step__number {
    left: 24px;
    transform: none;
  }

  .engagement-step__icon {
    width: 56px;
    height: 56px;
    margin-top: 8px;
  }

  .engagement-step__connector {
    top: auto;
    right: auto;
    bottom: -35px;
    left: 50%;
    display: grid;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
  }

  .engagement-step__connector::before {
    width: 8px;
    height: 8px;
    transform: translateY(-1px) rotate(135deg);
  }

  .engagement-step__outcome img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .engagement-trust {
    padding: 8px 0;
  }

  .engagement-trust__item,
  .engagement-trust__item:nth-child(even) {
    gap: 14px;
    padding: 16px 18px;
    border-left: 0;
  }

  .engagement-trust__item + .engagement-trust__item {
    border-top: 1px solid var(--line);
  }

  .engagement-trust__item img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .industry-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
}
