:root {
  --navy-950: #061d4f;
  --navy-900: #082c72;
  --navy-800: #123d81;
  --teal-600: #009da5;
  --teal-500: #10adb3;
  --gold-500: #e4a116;
  --ink-900: #162033;
  --ink-700: #39445a;
  --white: #ffffff;
  --surface: #f6f9fc;
  --line: rgba(8, 44, 114, 0.13);
  --shadow: 0 18px 50px rgba(2, 18, 51, 0.13);
  --header-height: 92px;
  --content-width: 1180px;
  --display: "Montserrat", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(5, 25, 65, 0.08);
  backdrop-filter: blur(16px);
}

.inner-page-header {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(5, 25, 65, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--content-width));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: var(--navy-900);
  line-height: 1;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark .brand-y {
  color: var(--teal-600);
}

.brand-tagline {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-list,
.dropdown-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  color: var(--navy-950);
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--teal-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 12px 19px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
}

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

.nav-contact:hover {
  background: var(--teal-600);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle svg {
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  width: 240px;
  padding: 10px;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  color: var(--ink-700);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--navy-900);
  background: #edf7f8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(860px, 100svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("assets/kym-hero-mountains.png");
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.01);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 250, 255, 0.97) 0%, rgba(245, 250, 255, 0.83) 28%, rgba(245, 250, 255, 0.22) 58%, rgba(4, 23, 61, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 35%, rgba(4, 22, 58, 0.12));
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: -95px;
  left: -5%;
  width: 62%;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(0, 157, 165, 0.18), transparent 68%);
  content: "";
  filter: blur(22px);
}

.hero-inner {
  width: min(calc(100% - 48px), var(--content-width));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: min(610px, 55%);
  padding-bottom: 2vh;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  width: 44px;
  height: 2px;
  background: var(--teal-500);
  content: "";
}

.hero-wordmark {
  display: flex;
  align-items: center;
  margin: 0 0 22px;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(64px, 7.2vw, 110px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.hero-wordmark .hero-y {
  color: var(--teal-600);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--teal-600);
}

.hero-description {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-700);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 600;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 31px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(8, 44, 114, 0.24);
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hero-cta:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
}

.hero-marker {
  position: absolute;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-marker i {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--white), var(--teal-500));
}

.route {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.29);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}

.route-one {
  right: -9%;
  bottom: 5%;
  width: 44vw;
  height: 28vw;
  transform: rotate(-11deg);
}

.route-two {
  right: -17%;
  bottom: -2%;
  width: 59vw;
  height: 37vw;
  opacity: 0.55;
  transform: rotate(-8deg);
}

.services-section {
  position: relative;
  padding: 92px 24px 112px;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 157, 165, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--white), var(--surface));
}

.section-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading > p {
  margin: 0 0 10px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.035em;
}

.section-heading > span {
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--navy-900), var(--teal-500));
  border-radius: 4px;
}

.service-grid {
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  --card-accent: var(--navy-900);
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 44, 114, 0.1);
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(9, 35, 78, 0.08);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  box-shadow: 0 22px 48px rgba(9, 35, 78, 0.15);
  transform: translateY(-7px);
}

.service-procurement {
  --card-accent: var(--teal-600);
}

.service-business {
  --card-accent: var(--gold-500);
}

.service-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #dfe9f2;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 28, 73, 0.25));
  content: "";
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.055);
}

.service-icon {
  position: absolute;
  z-index: 2;
  top: 157px;
  left: 28px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--card-accent);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(5, 28, 73, 0.2);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-content {
  min-height: 310px;
  padding: 48px 28px 27px;
  display: flex;
  flex-direction: column;
}

.service-label {
  margin: 0 0 8px;
  color: var(--card-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.service-content > p:not(.service-label) {
  margin: 15px 0 25px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.7;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  color: var(--card-accent);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.cross-border-section {
  position: relative;
  padding: 112px 24px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 48% 42%, rgba(0, 157, 165, 0.2), transparent 27rem),
    linear-gradient(125deg, var(--navy-950) 0%, #082965 54%, #061d4f 100%);
}

.cross-border-section::before {
  position: absolute;
  top: -120px;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 150px rgba(255, 255, 255, 0.018);
  content: "";
}

.cross-border-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(245px, 0.85fr) minmax(430px, 1.55fr) minmax(250px, 0.86fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.section-kicker {
  margin: 0 0 17px;
  color: #69d8dd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cross-border-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 3.3vw, 55px);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.cross-border-copy h2 span {
  color: #5cd2d8;
}

.cross-border-lead {
  margin: 28px 0 14px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.65;
}

.cross-border-copy > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.network-map {
  position: relative;
  min-width: 0;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  color: rgba(130, 191, 223, 0.29);
}

.map-land path {
  fill: url("#map-dots");
  stroke: rgba(112, 188, 220, 0.12);
  stroke-width: 1;
}

.network-routes path {
  fill: none;
  stroke: url("#route-gradient");
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 2;
  opacity: 0.72;
  vector-effect: non-scaling-stroke;
}

.network-map.is-visible .network-routes path {
  animation: route-flow 1.5s ease-out both;
}

.network-map.is-visible .network-routes path:nth-child(2) {
  animation-delay: 120ms;
}

.network-map.is-visible .network-routes path:nth-child(3) {
  animation-delay: 240ms;
}

.network-map.is-visible .network-routes path:nth-child(4) {
  animation-delay: 360ms;
}

.map-node circle {
  fill: rgba(8, 35, 87, 0.95);
  stroke: #58cbd2;
  stroke-width: 2;
}

.map-node path {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hub-ring {
  fill: rgba(25, 181, 188, 0.13);
  stroke: rgba(98, 223, 228, 0.45);
  stroke-width: 1;
}

.hub-core {
  fill: var(--teal-600);
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 2;
}

.hub-node > circle:not(.hub-ring, .hub-core) {
  fill: var(--white);
}

.hub-node path {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.map-caption {
  position: absolute;
  right: 2%;
  bottom: 4%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  background: rgba(4, 24, 62, 0.72);
  border: 1px solid rgba(108, 213, 219, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.map-caption-dot {
  width: 9px;
  height: 9px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 173, 179, 0.13);
}

.map-caption div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-caption strong {
  font-size: 11px;
}

.map-caption div > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.regional-benefits {
  display: grid;
  gap: 25px;
}

.regional-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 17px;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #78dce1;
  border: 1px solid rgba(108, 213, 219, 0.43);
  border-radius: 50%;
  background: rgba(0, 157, 165, 0.08);
}

.benefit-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.regional-benefit h3 {
  margin: 2px 0 6px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.3;
}

.regional-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  line-height: 1.6;
}

@keyframes route-flow {
  from {
    opacity: 0;
    stroke-dashoffset: 80;
  }
  to {
    opacity: 0.72;
    stroke-dashoffset: 0;
  }
}

.company-overview {
  padding: 96px 24px 110px;
  background:
    linear-gradient(rgba(8, 44, 114, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 44, 114, 0.025) 1px, transparent 1px),
    #f7fafc;
  background-size: 32px 32px;
}

.company-overview-inner {
  width: min(100%, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 44, 114, 0.11);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(8, 35, 76, 0.09);
}

.overview-panel {
  --panel-color: var(--teal-600);
  position: relative;
  min-width: 0;
  padding: 38px 31px 36px;
}

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

.overview-who {
  --panel-color: var(--navy-800);
}

.overview-connect {
  --panel-color: var(--gold-500);
  overflow: hidden;
  background: linear-gradient(145deg, #fffdf7, #fff8e8);
}

.overview-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  color: var(--panel-color);
  background: color-mix(in srgb, var(--panel-color) 8%, white);
  border: 1px solid color-mix(in srgb, var(--panel-color) 43%, white);
  border-radius: 50%;
}

.overview-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.overview-content {
  position: relative;
  z-index: 1;
}

.overview-label {
  margin: 0 0 11px;
  color: var(--panel-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overview-content h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(20px, 1.55vw, 24px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.overview-content > p:not(.overview-label) {
  margin: 19px 0 0;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.72;
}

.approach-list {
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.approach-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 700;
}

.approach-list svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  padding: 3px;
  fill: none;
  stroke: var(--teal-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  background: rgba(0, 157, 165, 0.1);
  border-radius: 50%;
}

.connect-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 27px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--gold-500);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(228, 161, 22, 0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.connect-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.connect-button:hover {
  background: #c98c0b;
  transform: translateY(-2px);
}

.connect-button:hover svg {
  transform: translateX(4px);
}

.connect-orbit {
  position: absolute;
  right: -75px;
  bottom: -85px;
  width: 215px;
  height: 215px;
  border: 1px solid rgba(228, 161, 22, 0.12);
  border-radius: 50%;
}

.connect-orbit span {
  position: absolute;
  border: 1px solid rgba(228, 161, 22, 0.1);
  border-radius: inherit;
}

.connect-orbit span:first-child {
  inset: 27px;
}

.connect-orbit span:last-child {
  inset: 57px;
  background: rgba(228, 161, 22, 0.035);
}

.site-footer {
  position: relative;
  padding: 82px 24px 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 92% 5%, rgba(0, 157, 165, 0.14), transparent 25rem),
    var(--navy-950);
}

.footer-route {
  position: absolute;
  top: 30px;
  right: -8%;
  width: 44%;
  height: 90px;
  opacity: 0.35;
}

.footer-route::before,
.footer-route::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 210, 216, 0.7), transparent);
  content: "";
  transform: rotate(-6deg);
}

.footer-route::before {
  top: 25px;
}

.footer-route::after {
  top: 57px;
}

.footer-route span {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: var(--teal-500);
  border: 2px solid var(--navy-950);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 173, 179, 0.14);
}

.footer-route span:first-child {
  top: 20px;
  left: 30%;
}

.footer-route span:last-child {
  top: 52px;
  right: 24%;
}

.footer-route i {
  position: absolute;
  top: 36px;
  left: 59%;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) 0.7fr 1fr minmax(250px, 1fr);
  gap: clamp(35px, 5vw, 74px);
  padding-bottom: 68px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.footer-logo-mark span:nth-child(2) {
  color: var(--teal-500);
}

.footer-logo-tagline {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-brand > p {
  margin: 25px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.footer-region {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #72d6db;
  font-weight: 700;
}

.footer-region svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-column h2 {
  margin: 7px 0 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.footer-column li,
.footer-column > p {
  font-size: 13px;
  line-height: 1.65;
}

.footer-column a:not(.footer-contact-link) {
  display: inline-block;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:not(.footer-contact-link):hover {
  color: #6dd8dd;
  transform: translateX(3px);
}

.footer-contact > p {
  margin: 0;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: 20px;
  padding: 13px 17px;
  color: var(--white);
  background: rgba(0, 157, 165, 0.16);
  border: 1px solid rgba(91, 210, 216, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.footer-contact-link:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
}

.footer-contact-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-contact .contact-placeholder {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finance-page {
  padding-top: var(--header-height);
  background: var(--white);
}

.finance-hero {
  position: relative;
  padding: 82px 24px 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 157, 165, 0.1), transparent 30rem),
    linear-gradient(180deg, #f8fbfe, #ffffff);
}

.finance-hero::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(8, 44, 114, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(8, 44, 114, 0.025), 0 0 0 140px rgba(8, 44, 114, 0.018);
  content: "";
}

.finance-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin-inline: auto;
}

.finance-heading {
  max-width: 820px;
}

.finance-eyebrow {
  margin: 0 0 15px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.finance-heading h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(52px, 7.2vw, 100px);
  letter-spacing: -0.06em;
  line-height: 0.89;
  text-transform: uppercase;
}

.finance-heading h1 span {
  color: var(--teal-600);
}

.finance-subtitle {
  margin: 26px 0 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 700;
}

.finance-intro {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.75;
}

.finance-benefits {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.benefit-wheel {
  position: relative;
  width: min(100%, 490px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.benefit-wheel-ring {
  position: absolute;
  inset: 5%;
  background: conic-gradient(#1268a7 0 60deg, #16a2aa 60deg 120deg, #53a94f 120deg 180deg, #efac0f 180deg 240deg, #ee7400 240deg 300deg, #d82b32 300deg);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(9, 39, 82, 0.16);
}

.benefit-wheel-ring::after {
  position: absolute;
  inset: 29%;
  background: var(--white);
  border-radius: 50%;
  content: "";
}

.benefit-wheel-core {
  position: absolute;
  z-index: 2;
  inset: 35%;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.wheel-label {
  position: absolute;
  z-index: 3;
  width: 28%;
  color: var(--white);
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.wheel-label-1 { top: 13%; left: 36%; }
.wheel-label-2 { top: 31%; right: 4%; }
.wheel-label-3 { right: 4%; bottom: 26%; }
.wheel-label-4 { bottom: 10%; left: 36%; }
.wheel-label-5 { bottom: 26%; left: 4%; }
.wheel-label-6 { top: 31%; left: 4%; }

.benefit-summary h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.benefit-summary > p:not(.finance-eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.75;
}

.benefit-summary ul {
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.benefit-summary li {
  position: relative;
  padding-left: 24px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
}

.benefit-summary li::before {
  position: absolute;
  top: 0.45em;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 173, 179, 0.1);
  content: "";
}

.finance-services-section {
  padding: 102px 24px 116px;
  background: var(--surface);
}

.finance-services-heading {
  width: min(100%, 1280px);
  margin: 0 auto 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 23px;
}

.finance-services-heading p {
  margin: 0;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.finance-services-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 55px);
  letter-spacing: -0.04em;
}

.finance-service-grid {
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.finance-detail {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 44, 114, 0.1);
  border-radius: 19px;
  box-shadow: 0 12px 32px rgba(8, 35, 76, 0.07);
}

.finance-detail-image > img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

.finance-detail-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.finance-detail-wide > img {
  height: 100%;
  min-height: 330px;
}

.finance-detail-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
}

.finance-detail-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #eff4fb;
  border-radius: 50%;
}

.finance-detail-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.detail-number {
  margin: 0 0 5px;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.finance-detail h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.finance-detail-body > div:last-child > p:not(.detail-number) {
  margin: 13px 0 0;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.7;
}

.finance-detail ul {
  padding-left: 17px;
  margin: 16px 0 0;
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.75;
}

.finance-detail li::marker {
  color: var(--teal-600);
}

.finance-closing {
  padding: 68px max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
}

.finance-closing p {
  margin: 0 0 9px;
  color: #65d4d9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.finance-closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
}

.finance-closing a {
  flex: 0 0 auto;
  padding: 15px 21px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-closing a span {
  margin-left: 18px;
}

@media (max-width: 900px) {
  .inner-page-header {
    backdrop-filter: none;
  }

  .finance-hero {
    padding-top: 68px;
  }

  .finance-benefits {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .benefit-summary {
    max-width: 600px;
  }

  .finance-service-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .finance-detail-wide {
    grid-column: auto;
    display: block;
  }

  .finance-detail-wide > img {
    height: 280px;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .finance-hero {
    padding: 55px 20px 74px;
  }

  .finance-heading h1 {
    font-size: clamp(47px, 16vw, 68px);
  }

  .finance-benefits {
    margin-top: 56px;
    gap: 44px;
  }

  .benefit-wheel {
    width: min(100%, 370px);
  }

  .wheel-label {
    font-size: 8px;
  }

  .finance-services-section {
    padding: 72px 20px 80px;
  }

  .finance-services-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 27px;
  }

  .finance-detail-image > img,
  .finance-detail-wide > img {
    height: 215px;
  }

  .finance-detail-body {
    padding: 25px 23px 27px;
    grid-template-columns: 49px 1fr;
    gap: 14px;
  }

  .finance-detail-icon {
    width: 49px;
    height: 49px;
  }

  .finance-detail-icon svg {
    width: 28px;
    height: 28px;
  }

  .finance-detail h3 {
    font-size: 19px;
  }

  .finance-closing {
    padding: 55px 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}

.finance-reference-page {
  color: var(--navy-950);
  background: var(--white);
}

.finance-reference-intro,
.reference-services {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}

.finance-reference-intro {
  padding: 55px 0 24px;
}

.reference-kicker {
  margin: 0 0 7px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-reference-intro > h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.reference-subtitle {
  margin: 10px 0 0;
  color: var(--navy-900);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
}

.reference-rule {
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 19px;
  background: var(--navy-900);
}

.reference-overview {
  margin-top: -18px;
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(390px, 1.05fr);
  align-items: center;
  gap: clamp(65px, 10vw, 150px);
}

.reference-overview .benefit-wheel {
  width: min(100%, 420px);
}

.reference-overview-copy h2 {
  margin: 0 0 23px;
  font-family: var(--display);
  font-size: 28px;
}

.reference-overview-copy p {
  max-width: 590px;
  margin: 0 0 27px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.reference-services {
  padding-bottom: 20px;
}

.reference-section-title {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.reference-section-title span {
  height: 1px;
  background: rgba(8, 44, 114, 0.22);
}

.reference-section-title h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

.reference-service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 46px;
}

.reference-column {
  min-width: 0;
}

.reference-block {
  border-bottom: 1px solid rgba(8, 44, 114, 0.2);
}

.finance-image-placeholder {
  min-height: 180px;
  display: grid;
  place-content: center;
  gap: 5px;
  color: rgba(8, 44, 114, 0.48);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    #f3f7fb;
  border: 1px dashed rgba(8, 44, 114, 0.22);
  text-align: center;
}

.finance-image-placeholder span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-image-placeholder small {
  font-size: 10px;
}

.diagram-placeholder {
  min-height: 190px;
  color: rgba(0, 157, 165, 0.64);
  background-color: #f6fbfc;
}

.final-placeholder {
  margin-top: 0;
}

.reference-service-copy {
  min-height: 215px;
  padding: 27px 18px 24px 10px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
}

.reference-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #eef3fb;
  border-radius: 50%;
}

.reference-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reference-service-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
}

.reference-service-copy p {
  margin: 10px 0 0;
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.reference-service-copy ul {
  padding-left: 15px;
  margin: 12px 0 0;
  color: var(--navy-800);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.reference-closing-line {
  padding: 14px 24px;
  color: var(--navy-900);
  background: #edf3fb;
  border-top: 1px solid rgba(8, 44, 114, 0.14);
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 800;
  text-align: center;
}

.procurement-page {
  padding-top: var(--header-height);
  color: var(--navy-950);
  background: #fff;
}

.procurement-content {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
  padding: 34px 0 30px;
}

.procurement-overview,
.proc-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 48px;
}

.procurement-overview {
  padding: 24px 55px 30px;
  background: #fafbfc;
}

.proc-image-placeholder {
  min-height: 235px;
  display: grid;
  place-content: center;
  gap: 5px;
  color: rgba(8, 44, 114, 0.48);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    #f3f7fb;
  border: 1px dashed rgba(8, 44, 114, 0.22);
  border-radius: 2px;
  text-align: center;
}

.proc-image-placeholder span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proc-image-placeholder small {
  font-size: 10px;
}

.proc-overview-placeholder {
  min-height: 260px;
}

.proc-copy h1,
.proc-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.proc-copy h1 {
  font-size: clamp(31px, 3.5vw, 48px);
}

.proc-copy h2 {
  font-size: clamp(20px, 2vw, 28px);
}

.proc-subtitle {
  margin: 15px 0 0;
  color: #222936;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
}

.proc-rule {
  display: block;
  width: 50px;
  height: 3px;
  margin: 17px 0;
  background: #177de0;
}

.proc-copy > p:not(.proc-subtitle) {
  margin: 0 0 17px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.proc-copy ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.proc-copy li {
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.procurement-rows {
  margin-top: 28px;
}

.proc-row {
  min-height: 320px;
  padding: 14px 70px;
}

.proc-row:nth-child(even) {
  background: #fafbfc;
}

.proc-heading-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proc-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #eef3fb;
  border-radius: 50%;
}

.proc-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (max-width: 900px) {
  .procurement-overview,
  .proc-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .procurement-overview,
  .proc-row {
    padding: 30px;
  }

  .proc-row-reverse .proc-copy {
    order: 2;
  }

  .proc-row-reverse .proc-image-placeholder {
    order: 1;
  }

  .proc-image-placeholder {
    min-height: 240px;
  }
}

@media (max-width: 620px) {
  .procurement-content {
    width: calc(100% - 40px);
    padding-top: 20px;
  }

  .procurement-overview,
  .proc-row {
    padding: 24px 0;
    background: transparent;
  }

  .proc-row:nth-child(even) {
    background: transparent;
  }

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

  .proc-image-placeholder,
  .proc-overview-placeholder {
    min-height: 185px;
  }

  .proc-heading-line {
    align-items: flex-start;
  }

  .proc-icon {
    width: 46px;
    height: 46px;
  }

  .proc-copy h2 {
    padding-top: 7px;
    font-size: 19px;
  }
}

.engineering-page {
  padding-top: var(--header-height);
  color: var(--navy-950);
  background: #fff;
}

.engineering-content {
  width: min(calc(100% - 32px), 1380px);
  margin-inline: auto;
  padding: 14px 0 28px;
}

.engineering-overview,
.eng-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(8, 44, 114, 0.11);
  border-radius: 12px;
}

.engineering-overview {
  min-height: 360px;
  background: #fafcfe;
}

.eng-image-placeholder {
  min-height: 265px;
  display: grid;
  place-content: center;
  gap: 5px;
  color: rgba(8, 44, 114, 0.48);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    #f3f7fb;
  border: 1px dashed rgba(8, 44, 114, 0.22);
  text-align: center;
}

.eng-image-placeholder span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eng-image-placeholder small {
  font-size: 10px;
}

.eng-overview-placeholder {
  min-height: 340px;
}

.eng-overview-copy {
  padding: 64px 60px 45px;
}

.eng-overview-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.eng-tagline {
  margin: 20px 0 26px;
  color: #ef4e0b;
  font-size: clamp(15px, 1.6vw, 21px);
  font-weight: 800;
}

.eng-overview-copy > p:not(.eng-tagline) {
  max-width: 650px;
  margin: 0 0 19px;
  color: #242b37;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.engineering-rows {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.eng-row {
  min-height: 265px;
  border-radius: 7px;
}

.eng-service-copy {
  min-width: 0;
  padding: 18px 42px 18px 22px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 18px;
}

.eng-badge {
  align-self: start;
  padding-top: 4px;
  display: grid;
  justify-items: center;
}

.eng-badge strong,
.eng-badge span {
  width: 78px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--eng-accent);
  clip-path: polygon(50% 0, 94% 21%, 94% 75%, 50% 100%, 6% 75%, 6% 21%);
}

.eng-badge strong {
  font-family: var(--display);
  font-size: 30px;
}

.eng-badge span {
  margin-top: 7px;
  color: var(--eng-accent);
  background: color-mix(in srgb, var(--eng-accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--eng-accent) 30%, white);
}

.eng-badge svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eng-service-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(19px, 1.9vw, 27px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-transform: uppercase;
}

.eng-service-copy p {
  margin: 12px 0 0;
  color: #252c37;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.eng-service-copy ul {
  padding: 0;
  margin: 13px 0 0;
  display: grid;
  gap: 3px;
  list-style: none;
}

.eng-service-copy li {
  position: relative;
  padding-left: 25px;
  color: #252c37;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.eng-service-copy li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--eng-accent);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
  font-weight: 800;
}

.engineering-value {
  margin-top: 7px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 2.5fr;
  align-items: center;
  min-height: 110px;
  overflow: hidden;
  background: #f5f8fc;
  border: 1px solid rgba(8, 44, 114, 0.1);
  border-radius: 8px;
}

.engineering-value-title {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.value-gear {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: #fff;
  border-radius: 50%;
  font-size: 36px;
}

.engineering-value h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
}

.engineering-value > p {
  padding: 0 24px;
  margin: 0;
  color: #252c37;
  border-left: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.5;
}

.engineering-value ul {
  height: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.engineering-value li {
  display: grid;
  place-items: center;
  padding: 15px 8px;
  color: var(--navy-900);
  border-left: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 900px) {
  .engineering-overview,
  .eng-row {
    grid-template-columns: 1fr;
  }

  .eng-row-reverse .eng-service-copy {
    order: 2;
  }

  .eng-row-reverse .eng-image-placeholder {
    order: 1;
  }

  .eng-overview-copy {
    padding: 45px 40px;
  }

  .engineering-value {
    grid-template-columns: 1fr;
  }

  .engineering-value > p {
    padding: 20px 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .engineering-value ul {
    min-height: 90px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .engineering-content {
    width: calc(100% - 40px);
    padding-top: 10px;
  }

  .eng-overview-copy {
    padding: 35px 24px;
  }

  .eng-overview-copy h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .eng-image-placeholder,
  .eng-overview-placeholder {
    min-height: 190px;
  }

  .eng-service-copy {
    padding: 26px 20px 30px;
    grid-template-columns: 68px 1fr;
    gap: 13px;
  }

  .eng-badge strong,
  .eng-badge span {
    width: 60px;
    height: 55px;
  }

  .eng-badge strong {
    font-size: 23px;
  }

  .eng-badge svg {
    width: 29px;
    height: 29px;
  }

  .eng-service-copy h2 {
    font-size: 18px;
  }

  .engineering-value ul {
    grid-template-columns: 1fr;
  }

  .engineering-value li {
    min-height: 58px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

.business-support-page {
  padding-top: var(--header-height);
  color: var(--navy-950);
  background: #fff;
}

.business-support-content {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-bottom: 30px;
}

.business-support-overview,
.business-support-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.business-support-overview {
  min-height: 385px;
  background: #f4f8fd;
}

.business-image-placeholder {
  min-height: 280px;
  display: grid;
  place-content: center;
  gap: 5px;
  color: rgba(8, 44, 114, 0.48);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    #f3f7fb;
  border: 1px dashed rgba(8, 44, 114, 0.22);
  text-align: center;
}

.business-image-placeholder span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.business-image-placeholder small {
  font-size: 10px;
}

.business-overview-placeholder {
  min-height: 385px;
}

.business-overview-copy {
  padding: 58px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-overview-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.business-overview-copy > span {
  width: 54px;
  height: 3px;
  margin: 28px 0 22px;
  background: #1979db;
}

.business-overview-copy p {
  max-width: 440px;
  margin: 0;
  color: #171d28;
  font-size: 18px;
  line-height: 1.5;
}

.business-support-row {
  min-height: 355px;
  padding: 24px 38px;
  border-bottom: 1px solid var(--line);
}

.business-support-copy {
  padding: 6px 0;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
}

.business-number {
  color: #1674d7;
  border-right: 1px solid rgba(8, 44, 114, 0.15);
  font-family: var(--display);
  font-size: 39px;
  font-weight: 800;
  line-height: 1;
}

.business-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.business-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #1674d7;
  background: #edf5fd;
  border-radius: 50%;
}

.business-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.business-copy-body h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.business-copy-body h3 {
  margin: 8px 0 0;
  color: #0864bf;
  font-size: 12px;
  line-height: 1.45;
}

.business-copy-body > p {
  margin: 15px 0 0;
  color: #252c37;
  font-size: 11px;
  line-height: 1.65;
}

.business-copy-body ul {
  padding: 0;
  margin: 15px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 25px;
  list-style: none;
}

.business-copy-body li {
  position: relative;
  padding-left: 16px;
  color: #252c37;
  font-size: 10px;
  line-height: 1.45;
}

.business-copy-body li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #1674d7;
  border-radius: 50%;
  content: "";
}

.business-copy-body blockquote {
  position: relative;
  margin: 25px 0 0;
  padding: 0 25px;
  color: var(--navy-800);
  font-size: 10px;
  font-style: italic;
  line-height: 1.5;
}

.business-copy-body blockquote::before,
.business-copy-body blockquote::after {
  position: absolute;
  top: -8px;
  color: #1674d7;
  font-size: 31px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.business-copy-body blockquote::before {
  left: 0;
  content: "“";
}

.business-copy-body blockquote::after {
  right: 0;
  color: rgba(22, 116, 215, 0.14);
  content: "”";
}

@media (max-width: 900px) {
  .business-support-content {
    width: min(calc(100% - 40px), 720px);
  }

  .business-support-overview,
  .business-support-row {
    grid-template-columns: 1fr;
  }

  .business-support-row-reverse .business-support-copy {
    order: 2;
  }

  .business-support-row-reverse .business-image-placeholder {
    order: 1;
  }

  .business-support-row {
    padding: 28px 0;
  }
}

@media (max-width: 620px) {
  .business-support-content {
    width: calc(100% - 40px);
  }

  .business-image-placeholder,
  .business-overview-placeholder {
    min-height: 190px;
  }

  .business-overview-copy {
    padding: 38px 24px 42px;
  }

  .business-overview-copy h1 {
    font-size: clamp(39px, 13vw, 52px);
  }

  .business-overview-copy p {
    font-size: 16px;
  }

  .business-support-copy {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .business-number {
    font-size: 30px;
  }

  .business-heading {
    display: block;
  }

  .business-icon {
    margin-bottom: 12px;
  }

  .business-copy-body ul {
    grid-template-columns: 1fr;
  }
}

.about-page {
  padding-top: var(--header-height);
  color: var(--ink-900);
  background: #fff;
}

.about-kicker {
  margin: 0 0 15px;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero,
.about-who,
.about-services,
.about-why,
.about-regional,
.about-contact-cta {
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-left: max(24px, calc((100vw - 1240px) / 2));
}

.about-hero {
  padding-top: 68px;
  padding-bottom: 72px;
  background: linear-gradient(130deg, #f6fafc 0%, #fff 55%, #edf8f8 100%);
}

.about-hero-inner,
.about-who {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.about-hero-copy h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.about-hero-copy h1 span {
  color: var(--teal-600);
}

.about-hero-copy > p:last-child {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.75;
}

.about-image-placeholder {
  min-height: 400px;
  display: grid;
  place-content: center;
  gap: 6px;
  color: rgba(8, 44, 114, 0.48);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(8, 44, 114, 0.08) 50%, transparent 50.5%),
    #f1f6fa;
  border: 1px dashed rgba(8, 44, 114, 0.22);
  border-radius: 18px;
  text-align: center;
}

.about-image-placeholder span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-image-placeholder small {
  font-size: 10px;
}

.about-who {
  padding-top: 105px;
  padding-bottom: 105px;
}

.about-who .about-image-placeholder {
  min-height: 430px;
}

.about-who-copy h2,
.about-section-heading h2,
.about-regional h2,
.about-contact-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  letter-spacing: -0.045em;
}

.about-who-copy h2 {
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.08;
}

.about-who-copy > p:not(.about-kicker) {
  margin: 22px 0 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.75;
}

.about-focus {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.about-focus span {
  padding: 9px 13px;
  color: var(--navy-800);
  background: #eff7f8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.about-services,
.about-why {
  padding-top: 95px;
  padding-bottom: 105px;
}

.about-services {
  background: var(--surface);
}

.about-section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.about-section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.about-service-grid,
.about-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-service-grid > a {
  padding: 29px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 10px 28px rgba(8, 35, 76, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-service-grid > a:hover {
  box-shadow: 0 18px 38px rgba(8, 35, 76, 0.12);
  transform: translateY(-5px);
}

.about-service-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: var(--teal-600);
  background: #edf8f9;
  border-radius: 50%;
}

.about-service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about-service-grid h3 {
  margin: 22px 0 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: 18px;
}

.about-service-grid p {
  min-height: 66px;
  margin: 13px 0 0;
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.65;
}

.about-service-grid a > span {
  display: inline-block;
  margin-top: 21px;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-advantage-grid article {
  position: relative;
  padding: 28px 25px;
  border-top: 3px solid var(--teal-600);
  background: #f8fafc;
}

.about-advantage-grid strong {
  color: rgba(8, 44, 114, 0.16);
  font-family: var(--display);
  font-size: 35px;
}

.about-advantage-grid h3 {
  margin: 17px 0 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.3;
}

.about-advantage-grid p {
  margin: 13px 0 0;
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.65;
}

.about-regional {
  padding-top: 92px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(470px, 1.2fr);
  align-items: center;
  gap: 60px;
  color: #fff;
  background: var(--navy-950);
}

.about-regional h2 {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
}

.about-regional-copy > p:not(.about-kicker) {
  margin: 23px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.75;
}

.about-regional ul {
  padding: 0;
  margin: 23px 0 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.about-regional li {
  padding-left: 20px;
  position: relative;
  color: #72d9de;
  font-size: 12px;
  font-weight: 800;
}

.about-regional li::before {
  position: absolute;
  left: 0;
  content: "•";
}

.about-network svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-map-land {
  fill: rgba(97, 181, 211, 0.15);
  stroke: rgba(97, 181, 211, 0.28);
  stroke-width: 1.5;
}

.about-network-lines path {
  fill: none;
  stroke: #1eb8bd;
  stroke-dasharray: 5 7;
  stroke-width: 2;
}

.about-network-node circle {
  fill: var(--gold-500);
  stroke: #fff;
  stroke-width: 2;
}

.about-network-hub > circle:first-child {
  fill: rgba(16, 173, 179, 0.2);
  stroke: #43cbd0;
}

.about-network-hub > circle:nth-child(2) {
  fill: var(--teal-600);
}

.about-network-hub path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.about-contact-cta {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  background: #f6fafc;
}

.about-contact-cta h2 {
  font-size: clamp(29px, 3.3vw, 45px);
}

.about-contact-cta div > p:last-child {
  margin: 13px 0 0;
  color: var(--ink-700);
  font-size: 13px;
}

.about-contact-cta > a {
  flex: 0 0 auto;
  padding: 15px 22px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-contact-cta > a span {
  margin-left: 22px;
}

@media (max-width: 900px) {
  .about-hero-inner,
  .about-who,
  .about-regional {
    grid-template-columns: 1fr;
  }

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

  .about-who .about-image-placeholder {
    min-height: 360px;
  }

  .about-regional {
    gap: 35px;
  }
}

@media (max-width: 620px) {
  .about-hero,
  .about-who,
  .about-services,
  .about-why,
  .about-regional,
  .about-contact-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-hero {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .about-hero-copy h1 {
    font-size: clamp(40px, 13vw, 55px);
  }

  .about-image-placeholder,
  .about-who .about-image-placeholder {
    min-height: 235px;
  }

  .about-who {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-services,
  .about-why {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .about-service-grid,
  .about-advantage-grid {
    grid-template-columns: 1fr;
  }

  .about-service-grid p {
    min-height: 0;
  }

  .about-regional {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-contact-cta {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 58px;
    padding-bottom: 62px;
  }
}

.contact-page {
  padding-top: var(--header-height);
  color: var(--ink-900);
  background: #f7fafc;
}

.contact-intro,
.contact-layout {
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.contact-intro {
  padding-top: 68px;
  padding-bottom: 60px;
  background: linear-gradient(130deg, #f5fafd, #fff 62%, #edf8f8);
}

.contact-kicker {
  margin: 0 0 13px;
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-intro h1 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(43px, 5.7vw, 75px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-intro h1 span {
  color: var(--teal-600);
}

.contact-intro > p:last-child {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.75;
}

.contact-layout {
  padding-top: 78px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  align-items: stretch;
  gap: 28px;
}

.contact-details,
.contact-form-panel {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(8, 35, 76, 0.07);
}

.contact-details h2,
.contact-form-panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: clamp(27px, 2.5vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.contact-details-intro {
  margin: 18px 0 0;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.7;
}

.contact-list {
  margin-top: 33px;
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-item {
  padding: 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  background: #f7fafc;
  border-radius: 12px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal-600);
  background: #eaf7f8;
  border-radius: 50%;
}

.contact-item-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-item h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: 13px;
}

.contact-item p {
  margin: 5px 0 0;
  color: var(--ink-700);
  font-size: 11px;
  line-height: 1.45;
}

.contact-form {
  margin-top: 29px;
}

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

.form-row + .form-row,
.form-row + .form-field,
.form-field + .form-field {
  margin-top: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
}

.form-field label span {
  color: #cb401d;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink-900);
  background: #f8fafc;
  border: 1px solid rgba(8, 44, 114, 0.17);
  border-radius: 9px;
  font: 13px var(--body);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(0, 157, 165, 0.12);
}

.contact-form button {
  margin-top: 22px;
  padding: 14px 20px;
  color: #fff;
  background: var(--navy-900);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button span {
  margin-left: 20px;
}

.contact-form button:hover {
  background: var(--teal-600);
}

.form-note {
  margin: 16px 0 0;
  color: rgba(57, 68, 90, 0.72);
  font-size: 10px;
  line-height: 1.55;
}

.form-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .contact-intro,
  .contact-layout {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-intro {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .contact-intro h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .contact-layout {
    padding-top: 55px;
    padding-bottom: 68px;
  }

  .contact-details,
  .contact-form-panel {
    padding: 27px 22px;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .reference-overview {
    margin-top: 35px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .reference-overview-copy {
    max-width: 650px;
  }

  .reference-service-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 620px) {
  .finance-reference-intro,
  .reference-services {
    width: calc(100% - 40px);
  }

  .finance-reference-intro {
    padding-top: 42px;
  }

  .reference-overview .benefit-wheel {
    width: min(100%, 355px);
  }

  .reference-section-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reference-section-title span:last-child {
    display: none;
  }

  .reference-section-title span:first-child {
    width: 50px;
    background: var(--teal-600);
  }

  .finance-image-placeholder {
    min-height: 150px;
  }

  .reference-service-copy {
    min-height: 0;
    padding: 25px 6px 26px;
    grid-template-columns: 54px 1fr;
    gap: 13px;
  }

  .reference-icon {
    width: 50px;
    height: 50px;
  }

  .reference-icon svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 1120px) {
  .service-grid {
    max-width: 820px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-content {
    min-height: 270px;
  }

  .cross-border-inner {
    max-width: 850px;
    grid-template-columns: minmax(260px, 0.85fr) minmax(430px, 1.3fr);
  }

  .regional-benefits {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .company-overview-inner {
    max-width: 850px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-panel + .overview-panel {
    border-left: 0;
  }

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

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

  .overview-content h2 {
    font-size: 23px;
  }

  .footer-inner {
    max-width: 850px;
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 15px 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .footer-contact h2 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .footer-contact-link {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .footer-contact .contact-placeholder {
    grid-column: 2;
    margin: -6px 0 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-open {
    backdrop-filter: none;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px 24px 40px;
    visibility: hidden;
    background: rgba(248, 251, 254, 0.98);
    opacity: 0;
    overflow-y: auto;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-header.is-open .primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-list {
    display: block;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 19px 4px;
    font-size: 15px;
  }

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

  .nav-contact {
    width: fit-content;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 24px;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0;
    visibility: visible;
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    transform: none;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 0;
    padding: 0;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    max-height: 260px;
    padding: 0 0 14px;
  }

  .dropdown-menu a {
    padding: 12px 18px;
  }

  .hero {
    min-height: 700px;
    height: 100svh;
    max-height: 900px;
  }

  .hero-copy {
    width: min(560px, 70%);
  }

  .hero-marker {
    display: none;
  }

  .services-section {
    padding: 78px 24px 92px;
  }

  .cross-border-section {
    padding: 90px 24px;
  }

  .cross-border-inner {
    max-width: 680px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cross-border-copy {
    max-width: 560px;
  }

  .world-map {
    max-width: 650px;
    margin-inline: auto;
  }

  .regional-benefits {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 23px;
    padding-top: 31px;
  }

  .company-overview {
    padding: 80px 24px 92px;
  }

  .site-footer {
    padding-top: 72px;
  }

  .footer-inner {
    max-width: 680px;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 440px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

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

  .footer-contact h2,
  .footer-contact-link,
  .footer-contact .contact-placeholder {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-contact-link {
    width: min(100%, 360px);
    margin-top: 5px;
  }

  .footer-contact .contact-placeholder {
    margin-top: -3px;
  }
}

@media (max-width: 620px) {
  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    max-height: 820px;
  }

  .hero-backdrop {
    background-position: 80% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(244, 249, 253, 0.95) 0%, rgba(244, 249, 253, 0.82) 47%, rgba(3, 20, 52, 0.12) 72%, rgba(3, 18, 48, 0.38) 100%),
      linear-gradient(90deg, rgba(244, 249, 253, 0.75), rgba(244, 249, 253, 0.1));
  }

  .hero-inner {
    width: calc(100% - 40px);
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .hero-eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .hero-eyebrow::before {
    width: 30px;
  }

  .hero-wordmark {
    margin-bottom: 20px;
    font-size: clamp(56px, 20vw, 82px);
  }

  .hero h1 {
    max-width: 390px;
    font-size: clamp(34px, 10.8vw, 48px);
    line-height: 1.07;
  }

  .hero-description {
    max-width: 370px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-cta {
    margin-top: 25px;
    padding: 14px 19px;
  }

  .route-one {
    right: -38%;
    bottom: 4%;
    width: 105vw;
    height: 68vw;
  }

  .route-two {
    right: -53%;
    bottom: -4%;
    width: 138vw;
    height: 88vw;
  }

  .services-section {
    padding: 68px 20px 76px;
  }

  .section-heading {
    margin-bottom: 31px;
  }

  .section-heading > p {
    max-width: 300px;
    margin-inline: auto;
    line-height: 1.55;
  }

  .service-grid {
    max-width: 430px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-image {
    height: 205px;
  }

  .service-icon {
    top: 170px;
  }

  .service-content {
    min-height: 0;
    padding: 48px 25px 25px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .cross-border-section {
    padding: 76px 20px 82px;
  }

  .cross-border-inner {
    gap: 37px;
  }

  .cross-border-copy h2 {
    font-size: clamp(34px, 10.4vw, 45px);
  }

  .cross-border-lead {
    margin-top: 23px;
    font-size: 15px;
  }

  .network-map {
    margin-inline: -14px;
  }

  .world-map {
    min-width: 0;
  }

  .map-caption {
    right: 14px;
    bottom: -3px;
  }

  .regional-benefits {
    padding-top: 28px;
  }

  .company-overview {
    padding: 68px 20px 78px;
  }

  .company-overview-inner {
    max-width: 430px;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .overview-panel {
    padding: 30px 25px 31px;
  }

  .overview-panel:nth-child(even) {
    border-left: 0;
  }

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

  .overview-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .overview-icon svg {
    width: 32px;
    height: 32px;
  }

  .overview-content h2 {
    font-size: 22px;
  }

  .site-footer {
    padding: 64px 20px 0;
  }

  .footer-route {
    right: -28%;
    width: 82%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 48px;
  }

  .footer-brand {
    grid-column: auto;
    padding-bottom: 29px;
  }

  .footer-logo-mark {
    font-size: 39px;
  }

  .footer-column h2 {
    margin-bottom: 17px;
  }

  .footer-services {
    padding-top: 2px;
  }

  .footer-contact {
    grid-column: auto;
    gap: 12px;
    padding-top: 31px;
  }

  .footer-bottom {
    min-height: 88px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }
}

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