:root {
  --navy: #082d53;
  --navy-2: #123e63;
  --ink: #22313d;
  --muted: #667681;
  --red: #ed7a16;
  --red-dark: #d56509;
  --teal: #087f89;
  --green: #2f7657;
  --steel: #f3f1ec;
  --mist: #fbfaf7;
  --line: #e1ded7;
  --warm: #fff3e9;
  --white: #ffffff;
  --max-width: 1280px;
  --shadow: 0 18px 50px rgba(8, 45, 83, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI Variable", "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #74cfe0;
  outline-offset: 2px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.03;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.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;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffb069;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--navy);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(8, 45, 83, 0.05);
}

.site-brand-logo,
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 238px;
  height: 64px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.site-brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 84px;
  height: 34px;
  padding: 2px;
  background: var(--steel);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.language-switch button {
  min-width: 0;
  padding: 0 7px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.language-switch button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 27px 0 25px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-rfq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
}

.header-rfq:hover,
.button.primary:hover,
.search-control button:hover,
.database-search button:hover,
.rfq-form > button:hover {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(8, 45, 83, 0.28);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  height: min(560px, calc(100svh - 86px));
  min-height: 500px;
  color: var(--white);
  background: #061725;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #061725;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("./assets/marine-cargo-ship-sunset-poster.png") center center / cover no-repeat;
  content: "";
  filter: saturate(0.9) contrast(1.04);
}

.hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 19, 32, 0.9) 0%, rgba(4, 28, 47, 0.76) 38%, rgba(5, 33, 53, 0.24) 68%, rgba(5, 27, 44, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 26, 43, 0.25) 0%, transparent 42%);
  content: "";
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.04);
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: min(var(--max-width), calc(100% - 48px));
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding: 54px 0 58px;
}

.hero-copy-block {
  width: min(650px, 54%);
  min-width: 0;
}

.hero-copy-block > * {
  animation: hero-copy-enter 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy-block > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy-block > :nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy-block > :nth-child(4) {
  animation-delay: 210ms;
}

.hero-copy-block > :nth-child(5) {
  animation-delay: 280ms;
}

.hero-motion-toggle {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  right: max(20px, calc((100% - var(--max-width)) / 2));
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: rgba(8, 45, 83, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
}

.hero-motion-toggle::after {
  position: absolute;
  bottom: calc(100% + 9px);
  right: 0;
  width: max-content;
  max-width: 180px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--navy);
  content: attr(aria-label);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.hero-motion-toggle:hover::after,
.hero-motion-toggle:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-motion-toggle span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.hero-copy-block h1 {
  color: var(--white);
  max-width: 600px;
  font-size: 54px;
  font-weight: 850;
  line-height: 1.01;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 0;
  color: #e3edf3;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

html[lang^="zh"] .hero-copy-block h1 {
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-search {
  max-width: 760px;
}

.hero-search > label {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 900;
}

.search-control,
.database-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.search-control {
  min-height: 58px;
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.search-control input,
.database-search input {
  min-width: 0;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 0;
}

.search-control input::placeholder,
.database-search input::placeholder {
  color: #768592;
}

.search-control button,
.database-search button,
.rfq-form > button {
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.search-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.search-examples button {
  padding: 2px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(8, 45, 83, 0.35);
  cursor: pointer;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-scope-band {
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--red);
}

.hero-scope-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
}

.hero-scope-inner span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 18px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-scope-inner span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-scope-inner b {
  color: #ff9a42;
  font-size: 11px;
}

.hero-scope-inner strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
}

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

.hero-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
}

.hero-trust-inner p {
  display: flex;
  gap: 14px;
  align-items: baseline;
  min-width: 0;
  margin: 0;
  padding: 19px 24px;
  border-left: 1px solid var(--line);
}

.hero-trust-inner p:last-child {
  border-right: 1px solid var(--line);
}

.hero-trust-inner strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1;
  white-space: nowrap;
}

.hero-trust-inner span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-language-buttons {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
}

.hero-language-buttons button {
  padding: 0 0 3px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.hero-language-buttons button[aria-pressed="true"] {
  color: var(--navy);
  border-bottom-color: var(--red);
}

.hero-language-buttons i {
  color: #9aa8b1;
  font-style: normal;
}

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

.cic-alert-inner {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 112px;
  margin: 0 auto;
  padding: 18px 0;
}

.cic-alert-year {
  color: #ffad64;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.cic-alert p,
.cic-alert h2,
.cic-alert small {
  margin: 0;
}

.cic-alert p {
  color: #ffad64;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cic-alert h2 {
  margin-top: 4px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.15;
}

.cic-alert small {
  display: block;
  margin-top: 5px;
  color: #c9d7e0;
  font-size: 12px;
}

.cic-alert a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.cic-alert a:hover {
  color: var(--navy);
  background: var(--white);
}

.cic-alert a b {
  font-size: 18px;
}

.business-panel,
.procurement-panel {
  align-self: center;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-top: 4px solid var(--red);
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.business-panel h2,
.procurement-panel h2 {
  max-width: 390px;
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.14;
}

.procurement-panel-intro {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.procurement-routes {
  border-top: 1px solid var(--line);
}

.procurement-routes a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.procurement-routes a:hover strong,
.procurement-routes a:hover b {
  color: var(--red);
}

.procurement-routes a > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.procurement-routes strong,
.procurement-routes small {
  display: block;
}

.procurement-routes strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.procurement-routes small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.procurement-routes b {
  justify-self: end;
  color: var(--navy);
  font-size: 18px;
}

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

.business-panel-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.business-panel-list article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.business-panel-list h3 {
  margin: 0 0 2px;
  font-size: 14px;
}

.business-panel-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.business-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
}

.business-panel-metrics p {
  display: grid;
  align-content: center;
  min-height: 62px;
  margin: 0;
  padding: 8px;
  background: var(--steel);
}

.business-panel-metrics strong,
.business-panel-metrics span {
  display: block;
}

.business-panel-metrics strong {
  color: var(--navy);
  font-size: 17px;
}

.business-panel-metrics span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
}

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

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

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

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

.hero-proof {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.proof-brand {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-brand img {
  width: 210px;
  max-height: 58px;
  padding: 7px 12px;
  object-fit: contain;
  background: var(--white);
  border-radius: 5px;
}

.proof-brand span,
.proof-brand strong {
  display: block;
}

.proof-brand span {
  color: #aebfca;
  font-size: 12px;
  text-transform: uppercase;
}

.proof-brand strong {
  margin-top: 5px;
  font-size: 17px;
}

.hero-metrics {
  margin: 24px 0 18px;
}

.hero-metrics div {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics dt {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0;
  color: #c8d5dd;
  font-size: 13px;
}

.hero-proof > p {
  margin-bottom: 0;
  color: #c8d5dd;
  font-size: 13px;
}

.hero-finder-panel {
  align-self: center;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-finder-panel h2 {
  margin-bottom: 22px;
  font-size: 27px;
  line-height: 1.14;
}

.quick-selects {
  display: grid;
  gap: 15px;
}

.quick-selects label,
.catalog-field,
.catalog-search label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.quick-selects label > span,
.catalog-field > span,
.catalog-search label > span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-field i,
.catalog-search i,
.replacement-checklist i {
  font-style: normal;
}

.quick-selects b,
.catalog-field b,
.catalog-search b {
  color: var(--red);
  font-size: 10px;
}

.quick-selects select,
.catalog-field select,
.catalog-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aebcc5;
  border-radius: 4px;
}

.quick-view-button {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
}

.quick-view-button:hover {
  background: var(--red-dark);
}

.quick-proof {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.quick-proof img {
  width: 108px;
  max-height: 38px;
  object-fit: contain;
}

.quick-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.quick-proof strong {
  color: var(--navy);
}

.procurement-dock {
  background: var(--white);
  border-top: 5px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.procurement-dock-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 70px;
  align-items: center;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 36px;
}

.dock-search h2 {
  margin-bottom: 8px;
  font-size: 31px;
}

.dock-search > p:not(.panel-kicker) {
  max-width: 720px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 13px;
}

.dock-search .search-control {
  min-height: 56px;
  border: 1px solid #b8c1c7;
  box-shadow: none;
}

.dock-search .search-examples {
  margin-top: 9px;
}

.dock-routes {
  border-top: 1px solid var(--navy);
}

.dock-routes a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.dock-routes a:hover strong,
.dock-routes a:hover b {
  color: var(--red);
}

.dock-routes a > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.dock-routes strong,
.dock-routes small {
  display: block;
}

.dock-routes strong {
  color: var(--navy);
  font-size: 15px;
}

.dock-routes small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.dock-routes b {
  justify-self: end;
  color: var(--navy);
  font-size: 20px;
}

.approval-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  min-height: 58px;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.approval-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border-right: 1px solid #c7d2d9;
  font-size: 12px;
  font-weight: 900;
}

.industry-showcase {
  padding: 84px 0 96px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.industry-showcase-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 76px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--navy);
}

.showcase-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: 46px;
  line-height: 1.06;
}

html[lang="zh-CN"] .showcase-heading h2 {
  font-size: 42px;
}

.showcase-heading > div:last-child > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.brand-route-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-route-grid > a,
.brand-route-grid > button {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-width: 0;
  min-height: 112px;
  padding: 18px 18px 20px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.brand-route-grid > a:hover,
.brand-route-grid > a:focus-visible,
.brand-route-grid > button:hover,
.brand-route-grid > button:focus-visible {
  color: var(--red);
  background: var(--warm);
}

.brand-route-grid > .brand-route-featured::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--red);
  content: "";
}

.brand-route-grid > .brand-route-featured small {
  color: var(--red);
}

.brand-route-grid small,
.brand-route-logo-wrap {
  display: block;
  min-width: 0;
}

.brand-route-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-route-logo-wrap {
  align-self: end;
  display: flex;
  align-items: center;
  width: calc(100% - 22px);
  height: 50px;
}

.brand-route-logo {
  display: block;
  width: auto;
  max-width: 154px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-route-logo--wide {
  max-width: 164px;
}

.brand-route-logo--tyco {
  max-height: 44px;
}

.brand-route-logo--apollo {
  max-height: 50px;
}

.brand-route-logo--marine-air {
  max-width: 150px;
  max-height: 46px;
}

.brand-route-logo--msa {
  max-height: 47px;
}

.brand-route-logo--seaplus {
  max-width: 148px;
  max-height: 44px;
}

.brand-route-logo--nk {
  max-width: 84px;
  max-height: 54px;
}

.brand-route-logo--survitec {
  max-width: 132px;
  max-height: 52px;
}

.brand-route-logo--sense-ware {
  max-width: 154px;
  max-height: 48px;
}

.brand-route-logo-wrap .brand-route-logo {
  max-width: 100%;
}

.brand-route-note {
  margin: 12px 0 0;
  color: #788894;
  font-size: 10px;
  line-height: 1.55;
}

.brand-route-grid b {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: var(--red);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-route-grid > a:hover b,
.brand-route-grid > a:focus-visible b,
.brand-route-grid > button:hover b,
.brand-route-grid > button:focus-visible b {
  opacity: 1;
  transform: translateX(0);
}

.engineering-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  margin-top: 64px;
  background: var(--navy);
}

.engineering-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.engineering-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.engineering-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 26px;
  color: var(--white);
  background: rgba(8, 45, 83, 0.9);
}

.engineering-visual figcaption span,
.engineering-visual figcaption strong {
  display: block;
}

.engineering-visual figcaption span {
  margin-bottom: 5px;
  color: #f4a15a;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.engineering-visual figcaption strong {
  font-size: 16px;
}

.engineering-cases {
  padding: 42px 46px 34px;
  color: var(--white);
  background: var(--navy);
}

.engineering-heading {
  max-width: 620px;
  padding-bottom: 24px;
}

.engineering-heading h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 36px;
  line-height: 1.1;
}

.engineering-heading > p:last-child {
  margin: 0;
  color: #b9c9d6;
  font-size: 13px;
  line-height: 1.6;
}

.engineering-cases article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  min-height: 112px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.engineering-cases article > span {
  color: #f4a15a;
  font-size: 11px;
  font-weight: 900;
}

.engineering-cases article strong,
.engineering-cases article small {
  display: block;
}

.engineering-cases article strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 15px;
}

.engineering-cases article small {
  margin-bottom: 8px;
  color: #93aabc;
  font-size: 10px;
  font-weight: 750;
}

.engineering-cases article p {
  margin: 0;
  color: #d4dfe7;
  font-size: 12px;
  line-height: 1.55;
}

.engineering-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 22px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 850;
}

.engineering-link:hover {
  color: #f4a15a;
}

.section {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.finder-heading,
.compact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.product-finder {
  padding-top: 82px;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.catalog-controls {
  padding: 24px;
  background: var(--steel);
  border-right: 1px solid var(--line);
}

.catalog-control-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #c2ced6;
}

.catalog-control-heading span,
.catalog-control-heading strong {
  display: block;
}

.catalog-control-heading span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-control-heading strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 18px;
}

.catalog-field {
  margin-bottom: 18px;
}

.catalog-search {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #c2ced6;
}

.catalog-search input {
  background: var(--white);
}

.catalog-search button {
  min-height: 44px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
}

.catalog-search button:hover {
  background: var(--navy-2);
}

.catalog-reset {
  margin-top: 16px;
  padding: 4px 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.catalog-results {
  min-width: 0;
  padding: 22px;
  background: var(--white);
}

.catalog-results .finder-status {
  margin-bottom: 18px;
}

.catalog-results .empty-state {
  display: grid;
  align-content: center;
  min-height: 410px;
  padding: 48px;
  background: var(--mist);
  border: 0;
}

.catalog-results .empty-state::before {
  display: block;
  width: 42px;
  height: 4px;
  margin: 0 auto 20px;
  background: var(--red);
  content: "";
}

.finder-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
  background: var(--warm);
  border-top: 3px solid var(--red);
}

.finder-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
  color: var(--navy);
  border-right: 1px solid #ead8c9;
  font-size: 13px;
  font-weight: 800;
}

.finder-steps b {
  color: var(--red);
}

.finder-steps i {
  font-style: normal;
}

.database-search {
  min-height: 54px;
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid #aebcc5;
  border-radius: 5px;
  overflow: hidden;
}

.database-toolbar {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-pill {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-pill:hover {
  border-color: #758b9a;
}

.filter-pill.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.finder-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.selection-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  font-size: 13px;
}

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

.selection-bar span {
  color: var(--muted);
}

.selection-bar button {
  padding: 5px 8px;
  color: var(--red);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.result-meta {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: baseline;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.result-meta strong {
  color: var(--navy);
  font-size: 20px;
}

.result-meta em {
  font-style: normal;
}

.result-grid.brand-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brand-browser-card {
  position: relative;
  display: grid;
  grid-template-rows: 48px auto auto 1fr auto;
  min-height: 250px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-accent, var(--teal));
  border-radius: 5px;
  overflow: hidden;
}

.brand-browser-card:hover {
  border-color: var(--brand-accent, #758b9a);
  box-shadow: 0 10px 28px rgba(9, 31, 51, 0.09);
}

.brand-logo-box {
  display: flex;
  align-items: center;
  width: min(100%, 170px);
  height: 44px;
  color: var(--brand-accent, var(--teal));
  border-bottom: 2px solid var(--brand-soft, var(--steel));
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.brand-browser-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
}

.brand-browser-card > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.brand-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-content: start;
  margin-bottom: 16px;
}

.brand-categories span {
  padding: 4px 7px;
  color: var(--navy);
  background: var(--steel);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
}

.brand-browser-card button {
  justify-self: start;
  padding: 6px 0;
  color: var(--brand-accent, var(--red));
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.product-table-wrap {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow-x: auto;
}

.product-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.product-table th,
.product-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.product-table th {
  color: var(--navy);
  background: var(--steel);
  font-size: 12px;
  text-transform: uppercase;
}

.product-table th:nth-child(2),
.product-table td:nth-child(2) {
  width: 260px;
}

.product-table th:last-child,
.product-table td:last-child {
  width: 110px;
  text-align: right;
}

.product-table td strong,
.product-table td span {
  display: block;
}

.product-table td strong {
  color: var(--navy);
  font-size: 14px;
}

.product-table td span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.product-table code {
  color: var(--navy);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-table button {
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.result-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.result-more button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #8fa0ac;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
}

.empty-state {
  padding: 42px;
  text-align: center;
  background: var(--mist);
  border: 1px solid var(--line);
}

.empty-state strong {
  color: var(--navy);
  font-size: 19px;
}

.empty-state p {
  margin: 8px 0 0;
  color: var(--muted);
}

.brand-compliance {
  margin: 28px 0 0;
  padding-top: 16px;
  color: #788894;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.cic-section {
  background: var(--warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cic-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 96px;
  align-items: center;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 48px;
}

.cic-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: #526573;
  font-size: 16px;
}

.cic-date {
  display: grid;
  gap: 2px;
  margin: 28px 0 26px;
  padding: 16px 0;
  border-top: 1px solid rgba(8, 45, 83, 0.28);
  border-bottom: 1px solid rgba(8, 45, 83, 0.28);
}

.cic-date span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cic-date strong {
  color: var(--navy);
  font-size: 20px;
}

.cic-checks {
  border-top: 1px solid var(--navy);
}

.cic-checks article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #d6cfc5;
}

.cic-checks article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.cic-checks h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.cic-checks p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cic-source {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 26px;
  color: #73818a;
  border-top: 1px solid #d6cfc5;
  font-size: 10px;
}

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

.capabilities-inner,
.certificate-inner,
.rfq-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 80px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.capability-copy h2,
.certificate-inner h2,
.rfq-copy h2 {
  color: var(--white);
}

.capability-copy > p:not(.eyebrow),
.certificate-inner > div > p:not(.eyebrow),
.rfq-copy > p:not(.eyebrow) {
  color: #c6d3dc;
}

.capability-list {
  margin-top: 34px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.capability-list article > span {
  color: #ff756a;
  font-size: 12px;
  font-weight: 900;
}

.capability-list h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 16px;
}

.capability-list p {
  margin-bottom: 0;
  color: #aebfca;
  font-size: 13px;
}

.calibration-feature .capabilities-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.82fr);
  gap: clamp(56px, 7vw, 108px);
  align-items: center;
  padding: 78px 0;
}

.calibration-feature .capability-copy,
.calibration-feature .capability-media {
  min-width: 0;
}

.calibration-feature .capability-copy h2 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: 56px;
  line-height: 1.06;
}

html[lang="zh-CN"] .calibration-feature .capability-copy h2 {
  font-size: 52px;
}

.calibration-feature .capability-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 15px;
  line-height: 1.75;
}

.calibration-feature .capability-list {
  margin-top: 30px;
}

.calibration-feature .capability-list article {
  padding: 16px 0;
}

.calibration-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.capability-media {
  min-width: 0;
}

.calibration-feature-visual {
  display: block;
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
}

.calibration-feature-visual figure {
  position: relative;
  height: clamp(440px, 42vw, 570px);
  margin: 0;
  overflow: hidden;
}

.calibration-feature-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transition: transform 420ms ease;
}

.calibration-feature-visual:hover img,
.calibration-feature-visual:focus-visible img {
  transform: scale(1.018);
}

.calibration-feature-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 17px 20px;
  color: var(--white);
  background: rgba(7, 35, 59, 0.9);
}

.calibration-feature-visual figcaption span {
  color: #ff9a42;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.calibration-feature-visual figcaption strong {
  font-size: 12px;
}

.calibration-feature-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calibration-feature-specs span {
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.calibration-feature-specs span:last-child {
  border-right: 0;
}

.calibration-feature-specs b,
.calibration-feature-specs small {
  display: block;
}

.calibration-feature-specs b {
  color: var(--navy);
  font-size: 16px;
}

.calibration-feature-specs small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.case-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.case-list {
  border-top: 2px solid var(--navy);
}

.case-header,
.case-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 110px 145px minmax(340px, 1.55fr);
  gap: 22px;
  align-items: center;
}

.case-header {
  min-height: 48px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-row {
  min-height: 104px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.case-row > div {
  min-width: 0;
}

.case-row strong,
.case-row code,
.case-row b {
  color: var(--navy);
}

.case-row strong {
  font-size: 15px;
  line-height: 1.35;
}

.case-row code {
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
}

.case-row b {
  font-size: 12px;
}

.case-row p {
  margin: 0;
  color: #536672;
  font-size: 13px;
  line-height: 1.55;
}

.case-field-label {
  display: none;
}

.service-categories {
  padding-bottom: 100px;
}

.compact-heading {
  align-items: center;
}

.text-link {
  justify-self: end;
  padding-bottom: 4px;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.category-list {
  border-top: 1px solid var(--navy);
}

.category-list button {
  display: grid;
  grid-template-columns: 50px minmax(220px, 0.65fr) 1fr 30px;
  gap: 20px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 15px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.category-list button:hover {
  color: var(--red);
  background: var(--mist);
}

.category-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.category-list strong {
  color: var(--navy);
  font-size: 17px;
}

.category-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.category-list b {
  justify-self: end;
  font-size: 21px;
}

.certificate-band {
  color: var(--white);
  background: var(--red-dark);
}

.certificate-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
}

.certificate-inner .eyebrow {
  color: #ffd0cc;
}

.certificate-inner .button {
  margin-top: 14px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.certificate-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 900;
}

.replacement-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 100px;
  align-items: center;
}

.replacement-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.replacement-copy .button {
  margin-top: 12px;
}

.replacement-checklist {
  border-top: 1px solid var(--navy);
}

.replacement-checklist span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 17px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.replacement-checklist b {
  color: var(--red);
  font-size: 11px;
}

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

.rfq-inner {
  align-items: start;
}

.rfq-copy {
  position: sticky;
  top: 110px;
}

.rfq-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: #dbe5eb;
  font-size: 13px;
  font-weight: 800;
}

.rfq-points span {
  padding: 10px 0 10px 18px;
  border-left: 3px solid var(--red);
}

.rfq-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.rfq-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.rfq-form input,
.rfq-form textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid #bdc9d0;
  border-radius: 4px;
  font-weight: 400;
}

.rfq-form input {
  min-height: 44px;
}

.rfq-form textarea {
  resize: vertical;
}

.rfq-form .full-field,
.rfq-form > button,
.form-status {
  grid-column: 1 / -1;
}

.rfq-form .privacy-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #596c7b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.rfq-form .privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.rfq-form .privacy-consent a {
  margin-left: 5px;
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rfq-form > button {
  min-height: 48px;
  border-radius: 4px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.field-hint {
  display: block;
  margin-top: 7px;
  color: #7e8d98;
  font-size: 11px;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, 0.7fr);
  gap: 40px;
  align-items: center;
  min-height: 150px;
  padding: 34px max(24px, calc((100vw - var(--max-width)) / 2));
  color: #bdcbd4;
  background: #061725;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-logo {
  width: 242px;
  height: 78px;
}

.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.footer-company-info {
  display: grid;
  gap: 5px;
  justify-items: end;
  min-width: 280px;
  font-size: 10px;
  text-align: right;
}

.footer-company-info p {
  margin: 0;
}

.footer-company-info a {
  color: #e8eef2;
  font-size: 11px;
  font-weight: 750;
}

.back-to-top {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 12px;
  color: #f4f7f8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.back-to-top > span[aria-hidden="true"] {
  font-size: 18px;
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.back-to-top--light {
  margin-top: 28px;
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.back-to-top--light:hover,
.back-to-top--light:focus-visible {
  color: var(--navy);
  background: var(--steel);
  border-color: var(--navy);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 50px;
  }

  .site-header {
    gap: 18px;
  }

  .site-brand-logo {
    width: 210px;
    height: 58px;
  }

  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 72px;
    padding: 0 20px;
  }

  .site-brand-logo {
    grid-row: 1;
    grid-column: 1;
    width: 210px;
    height: 56px;
  }

  .menu-toggle {
    display: block;
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    padding: 20px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 40px rgba(8, 45, 83, 0.12);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-inner {
    width: min(100% - 40px, 1024px);
  }

  .hero-copy-block {
    width: min(600px, 58%);
  }

  .hero-media::after {
    left: 0;
  }

  .hero-copy-block h1 {
    font-size: 49px;
  }

  html[lang^="zh"] .hero-copy-block h1 {
    font-size: 46px;
  }

  .hero-scope-inner,
  .hero-trust-inner {
    width: min(100% - 40px, 1024px);
  }

  .procurement-dock-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 44px;
    width: min(100% - 40px, 1024px);
  }

  .cic-alert-inner {
    width: min(100% - 40px, 1024px);
  }

  .cic-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
    gap: 58px;
    width: min(100% - 40px, 1024px);
  }

  .cic-source {
    width: min(100% - 40px, 1024px);
  }

  .case-header,
  .case-row {
    grid-template-columns: minmax(190px, 0.9fr) 90px 120px minmax(280px, 1.55fr);
    gap: 16px;
  }

  .business-panel {
    padding: 20px;
  }

  .business-panel h2 {
    font-size: 22px;
  }

  .catalog-shell {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .result-grid.brand-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capabilities-inner,
  .certificate-inner,
  .rfq-inner {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 72px;
    padding: 0 20px;
  }

  .site-brand-logo {
    grid-row: 1;
    grid-column: 1;
    width: 210px;
    height: 56px;
  }

  .menu-toggle {
    display: block;
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    padding: 20px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 40px rgba(8, 45, 83, 0.12);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-rfq {
    display: none;
  }

  .hero,
  .hero-inner {
    height: auto;
    min-height: 590px;
  }

  .hero-inner {
    width: min(100% - 40px, 720px);
    padding: 58px 0 54px;
  }

  .hero-copy-block {
    width: min(580px, 72%);
    margin-left: 0;
  }

  .hero-media::after {
    left: 0;
    background:
      linear-gradient(90deg, rgba(3, 19, 32, 0.91) 0%, rgba(4, 28, 47, 0.72) 58%, rgba(5, 27, 44, 0.18) 100%),
      linear-gradient(0deg, rgba(4, 26, 43, 0.24), transparent 45%);
  }

  html[lang^="zh"] .hero-copy-block h1 {
    font-size: 43px;
  }

  .hero-scope-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 40px, 760px);
  }

  .hero-scope-inner span {
    min-height: 70px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .hero-trust-inner {
    width: min(100% - 40px, 760px);
  }

  .cic-alert-inner {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    width: min(100% - 40px, 760px);
    padding: 24px 0;
  }

  .cic-alert-year {
    font-size: 34px;
  }

  .cic-alert a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .procurement-dock-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 40px, 760px);
    padding: 42px 0;
  }

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

  .dock-routes a {
    padding: 13px 16px;
    border-right: 1px solid var(--line);
  }

  .hero-finder-panel {
    display: none;
  }

  .business-panel,
  .procurement-panel {
    display: none;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 26px;
    align-items: center;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .proof-brand {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero-metrics {
    margin: 0;
  }

  .hero-proof > p {
    display: none;
  }

  .approval-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .approval-strip span {
    min-height: 44px;
    border-bottom: 1px solid #c7d2d9;
  }

  .section {
    width: min(100% - 40px, 760px);
    padding: 72px 0;
  }

  .cic-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    width: min(100% - 40px, 760px);
    padding: 76px 0 40px;
  }

  .cic-source {
    width: min(100% - 40px, 760px);
  }

  .finder-heading,
  .compact-heading,
  .case-heading,
  .replacement-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-header {
    display: none;
  }

  .case-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 24px;
    align-items: start;
    min-height: 0;
    padding: 24px 0;
  }

  .case-row > div:nth-child(3),
  .case-row > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .case-field-label {
    display: block;
    margin-bottom: 4px;
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .catalog-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .catalog-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-control-heading,
  .catalog-search {
    grid-column: 1 / -1;
  }

  .catalog-field {
    margin-bottom: 0;
  }

  .catalog-search {
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 0;
  }

  .catalog-search label {
    grid-column: 1 / -1;
  }

  .catalog-search button {
    min-width: 150px;
  }

  .catalog-reset {
    justify-self: start;
    margin-top: 0;
  }

  .finder-steps {
    grid-template-columns: 1fr;
  }

  .finder-steps span {
    border-right: 0;
    border-bottom: 1px solid #ead8c9;
  }

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

  .capabilities-inner,
  .certificate-inner,
  .rfq-inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
    padding: 74px 0;
  }

  .capability-media {
    order: -1;
  }

  .calibration-feature .capabilities-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    width: min(100% - 40px, 760px);
  }

  .calibration-feature-visual figure {
    height: min(620px, 78vw);
  }

  .certificate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .text-link {
    justify-self: start;
  }

  .category-list button {
    grid-template-columns: 40px minmax(190px, 0.8fr) 1fr 24px;
    gap: 12px;
  }

  .replacement-section {
    width: min(100% - 40px, 760px);
  }

  .rfq-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 34px 20px;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .footer-company-info {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 12px;
  }

  .site-brand-logo {
    width: 168px;
    height: 48px;
    padding: 3px 6px;
  }

  .main-nav {
    top: 64px;
  }

  .language-switch {
    min-width: 76px;
    height: 32px;
  }

  .language-switch button {
    padding: 0 5px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero-inner {
    align-items: flex-start;
    width: calc(100% - 32px);
    padding: 42px 0 32px;
  }

  .hero-media {
    background-color: #061725;
  }

  .hero-media::before {
    inset: 0;
    background-position: 68% center;
    background-size: cover;
  }

  .hero-video {
    left: 0;
    width: 100%;
    object-position: 68% center;
  }

  .hero-media::after {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(3, 19, 32, 0.86) 0%, rgba(4, 28, 47, 0.68) 62%, rgba(4, 25, 41, 0.48) 100%),
      linear-gradient(90deg, rgba(3, 19, 32, 0.7), rgba(3, 19, 32, 0.2));
  }

  .hero-copy-block {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .hero-copy-block h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  html[lang^="zh"] .hero-copy-block h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero-intro {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }

  .search-control,
  .database-search {
    grid-template-columns: 1fr;
  }

  .search-control input,
  .database-search input {
    min-height: 52px;
  }

  .search-control button,
  .database-search button {
    min-height: 48px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 290px);
  }

  .hero-scope-inner {
    width: 100%;
  }

  .hero-scope-inner span {
    grid-template-columns: 27px 1fr;
    min-height: 66px;
    padding: 12px 16px;
  }

  .hero-scope-inner strong {
    font-size: 11px;
  }

  .hero-trust-inner {
    width: 100%;
  }

  .hero-trust-inner p {
    display: grid;
    gap: 5px;
    align-content: center;
    min-height: 76px;
    padding: 13px 10px;
    text-align: center;
  }

  .hero-trust-inner strong {
    font-size: 16px;
  }

  .hero-trust-inner span {
    font-size: 9px;
  }

  .procurement-dock-inner {
    width: calc(100% - 32px);
    padding: 32px 0;
  }

  .cic-alert-inner,
  .cic-inner,
  .cic-source {
    width: calc(100% - 32px);
  }

  .cic-alert-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cic-alert a {
    grid-column: auto;
    width: 100%;
    justify-content: space-between;
  }

  .cic-inner {
    padding-top: 62px;
  }

  .cic-checks article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .case-row > div:nth-child(3),
  .case-row > div:nth-child(4) {
    grid-column: auto;
  }

  .dock-search h2 {
    font-size: 27px;
  }

  .dock-routes {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .dock-routes a {
    padding: 12px 0;
    border-right: 0;
  }

  .hero-proof {
    display: none;
  }

  .approval-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .section,
  .capabilities-inner,
  .certificate-inner,
  .rfq-inner,
  .replacement-section {
    width: calc(100% - 32px);
  }

  .finder-status {
    display: grid;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .catalog-control-heading,
  .catalog-search {
    grid-column: 1;
  }

  .catalog-search {
    grid-template-columns: 1fr;
  }

  .catalog-search button {
    min-width: 0;
  }

  .catalog-results {
    padding: 16px;
  }

  .catalog-results .empty-state {
    min-height: 300px;
    padding: 32px 20px;
  }

  .product-table {
    min-width: 650px;
  }

  .result-grid.brand-link-grid {
    grid-template-columns: 1fr;
  }

  .brand-browser-card {
    min-height: 220px;
  }

  .calibration-feature .capabilities-inner {
    gap: 38px;
    width: calc(100% - 32px);
    padding: 56px 0;
  }

  .calibration-feature .capability-copy h2 {
    font-size: 34px;
  }

  html[lang="zh-CN"] .calibration-feature .capability-copy h2 {
    font-size: 32px;
  }

  .calibration-feature-visual figure {
    height: 410px;
  }

  .calibration-feature-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .calibration-feature-specs span {
    padding: 15px 14px;
  }

  .calibration-feature-specs b {
    font-size: 14px;
  }

  .calibration-feature-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .calibration-feature-actions .button {
    width: 100%;
  }

  .category-list button {
    grid-template-columns: 34px 1fr 22px;
    min-height: 76px;
  }

  .category-list em {
    display: none;
  }

  .certificate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .certificate-grid span {
    min-height: 60px;
    font-size: 11px;
  }

  .rfq-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .rfq-form .full-field,
  .rfq-form > button,
  .form-status {
    grid-column: 1;
  }

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

  .footer-logo {
    width: 230px;
    height: 72px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-company-info {
    min-width: 0;
  }
}

@media (max-width: 1120px) {
  .showcase-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 46px;
  }

  .brand-route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .engineering-visual {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 900px) {
  .industry-showcase {
    padding: 66px 0 76px;
  }

  .industry-showcase-inner {
    width: min(100% - 40px, 760px);
  }

  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showcase-heading h2 {
    font-size: 40px;
  }

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

  .engineering-cases {
    padding: 38px 40px 32px;
  }
}

@media (max-width: 620px) {
  .language-switch {
    min-width: 92px;
    height: 48px;
  }

  .hero-language-buttons button {
    min-width: 40px;
    min-height: 40px;
    padding: 0 8px;
  }

  .hero-motion-toggle {
    bottom: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
  }

  .hero-motion-toggle::after {
    display: none;
  }

  .text-link,
  .catalog-reset {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 4px;
  }

  .industry-showcase {
    padding: 54px 0 62px;
  }

  .industry-showcase-inner {
    width: calc(100% - 32px);
  }

  .showcase-heading h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .brand-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .brand-route-grid > a,
  .brand-route-grid > button {
    min-height: 102px;
    padding: 15px 14px 17px;
  }

  .brand-route-logo-wrap {
    height: 42px;
  }

  .brand-route-logo {
    max-width: 126px;
    max-height: 40px;
  }

  .brand-route-logo--wide {
    max-width: 132px;
  }

  .brand-route-logo--apollo {
    max-height: 42px;
  }

  .brand-route-logo--marine-air {
    max-width: 124px;
    max-height: 38px;
  }

  .engineering-proof {
    margin-top: 44px;
  }

  .engineering-visual {
    aspect-ratio: 4 / 3;
  }

  .engineering-cases {
    padding: 30px 24px 26px;
  }

  .engineering-heading h2 {
    font-size: 29px;
  }

  .engineering-cases article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.main-nav a.is-current::after {
  transform: scaleX(1);
}

.service-page-hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 39, 67, 0.98), rgba(10, 55, 87, 0.92)),
    var(--navy);
  border-bottom: 4px solid var(--red);
}

.service-page-hero--replacement {
  background:
    linear-gradient(115deg, rgba(6, 31, 52, 0.98), rgba(13, 70, 88, 0.92)),
    #061f34;
}

.service-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: 90px;
  align-items: end;
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 470px;
  margin: 0 auto;
  padding: 82px 0 72px;
}

.service-page-heading {
  max-width: 820px;
}

.service-breadcrumb {
  display: inline-block;
  margin-bottom: 42px;
  color: #bfd0dd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 800;
}

.service-page-heading h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 56px;
  line-height: 1.04;
}

.service-page-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #cad8e2;
  font-size: 18px;
  line-height: 1.7;
}

.service-page-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.service-page-summary span {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-page-summary b {
  color: #ff9a42;
  font-size: 11px;
}

.service-page-summary strong {
  color: var(--white);
  font-size: 13px;
}

.service-page-body {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 84px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 100px;
}

.service-page-nav {
  position: sticky;
  top: 116px;
  align-self: start;
  border-top: 2px solid var(--navy);
}

.service-page-nav p {
  margin: 0;
  padding: 16px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-page-nav a {
  display: block;
  padding: 14px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.service-page-nav a:hover {
  color: var(--red);
}

.service-page-content {
  min-width: 0;
}

.service-detail-section {
  padding: 0 0 82px;
  margin-bottom: 82px;
  border-bottom: 1px solid var(--line);
}

.service-detail-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.service-detail-section > h2 {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-detail-rows {
  border-top: 2px solid var(--navy);
}

.service-detail-rows article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-rows article > span,
.service-workflow b,
.compatibility-matrix b {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.service-detail-rows h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.service-detail-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.approval-reference-grid span {
  display: grid;
  place-items: center;
  min-height: 76px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
}

.service-note {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

.compatibility-matrix article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 7px 14px;
  min-height: 122px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compatibility-matrix strong {
  color: var(--navy);
  font-size: 16px;
}

.compatibility-matrix span {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.service-workflow {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid var(--navy);
}

.service-workflow li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.service-workflow strong {
  color: var(--navy);
  font-size: 15px;
}

.service-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  padding: 58px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--red);
}

.service-page-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: 32px;
}

.legal-page .service-page-heading {
  max-width: 900px;
}

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

.company-entity-grid article {
  min-height: 180px;
  padding: 24px;
  background: #f5f7f8;
  border-top: 3px solid var(--orange);
}

.company-entity-grid article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.company-entity-grid h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.company-entity-grid p {
  margin: 0;
  color: var(--muted);
}

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

.company-contact-panel a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 24px;
  align-content: center;
  color: var(--navy);
}

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

.company-contact-panel span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-contact-panel strong {
  font-size: 17px;
  overflow-wrap: anywhere;
}

.legal-section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  max-width: 780px;
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.16;
}

.legal-section p,
.legal-section li {
  color: #536979;
  font-size: 14px;
  line-height: 1.8;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-section a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calibration-page-hero {
  color: var(--white);
  background: #082b4d;
  border-bottom: 4px solid var(--red);
}

.calibration-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.72fr);
  gap: 72px;
  align-items: stretch;
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 630px;
  margin: 0 auto;
}

.calibration-page-heading {
  align-self: center;
  max-width: 760px;
  padding: 76px 0;
}

.calibration-page-heading h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 58px;
  line-height: 1.04;
}

html[lang="zh-CN"] .calibration-page-heading h1 {
  font-size: 54px;
  line-height: 1.1;
}

.calibration-page-heading > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #c8d6e0;
  font-size: 16px;
  line-height: 1.75;
}

.calibration-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.calibration-hero-facts span {
  min-width: 0;
  padding: 20px 16px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.calibration-hero-facts span:last-child {
  border-right: 0;
  padding-right: 0;
  padding-left: 16px;
}

.calibration-hero-facts span:nth-child(2) {
  padding-left: 16px;
}

.calibration-hero-facts b,
.calibration-hero-facts small {
  display: block;
}

.calibration-hero-facts b {
  color: var(--white);
  font-size: 15px;
  white-space: nowrap;
}

.calibration-hero-facts small {
  margin-top: 5px;
  color: #aebfca;
  font-size: 10px;
  font-weight: 750;
}

.calibration-hero-media {
  position: relative;
  min-height: 630px;
  margin: 0;
  overflow: hidden;
  background: #eef1f2;
}

.calibration-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.calibration-hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(7, 35, 59, 0.92);
}

.calibration-hero-media figcaption span {
  color: #ff9a42;
  font-size: 10px;
  font-weight: 900;
}

.calibration-hero-media figcaption strong {
  font-size: 12px;
}

.calibration-page-body {
  padding-top: 82px;
}

.calibration-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border-top: 2px solid var(--navy);
}

.calibration-spec-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--navy);
  font-size: 12px;
}

.calibration-spec-table th,
.calibration-spec-table td {
  padding: 17px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.calibration-spec-table th:last-child,
.calibration-spec-table td:last-child {
  border-right: 0;
}

.calibration-spec-table th {
  color: var(--muted);
  background: #f3f5f5;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.calibration-spec-table td strong {
  color: var(--red);
  font-size: 14px;
}

.calibration-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calibration-gallery figure {
  margin: 0;
  background: #f6f7f7;
}

.calibration-gallery img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: contain;
  padding: 28px;
  background: var(--white);
}

.calibration-gallery figcaption {
  min-height: 52px;
  padding: 17px 18px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

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

.calibration-supply-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 162px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calibration-supply-grid article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.calibration-supply-grid h3 {
  margin: 0;
  font-size: 17px;
}

.calibration-supply-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.calibration-downloads a {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 26px 58px 26px 26px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.calibration-downloads a:hover,
.calibration-downloads a:focus-visible {
  color: var(--red);
  background: var(--warm);
}

.calibration-downloads span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}

.calibration-downloads strong {
  max-width: 300px;
  font-size: 15px;
  line-height: 1.4;
}

.calibration-downloads b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--red);
  font-size: 20px;
}

.not-found-page {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 86px);
  padding: 72px 24px;
  background: #f4f7f8;
}

.not-found-inner {
  width: min(760px, 100%);
  text-align: center;
}

.not-found-code {
  margin: 0 0 24px;
  color: #d7e0e5;
  font-size: 120px;
  font-weight: 900;
  line-height: 0.8;
}

.not-found-inner h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.08;
}

.not-found-inner > p:not(.eyebrow, .not-found-code) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .service-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: 0;
    padding: 64px 0 58px;
  }

  .service-page-heading h1 {
    font-size: 46px;
  }

  .service-page-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-page-summary span {
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .service-page-body {
    grid-template-columns: 1fr;
    gap: 52px;
    width: min(100% - 40px, 760px);
    padding: 64px 0 76px;
  }

  .company-entity-grid,
  .company-contact-panel {
    grid-template-columns: 1fr;
  }

  .company-contact-panel a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-page-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-page-nav p {
    grid-column: 1 / -1;
  }

  .service-page-nav a {
    padding-right: 12px;
  }

  .calibration-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100% - 40px, 760px);
  }

  .calibration-page-heading {
    padding: 64px 0 58px;
  }

  .calibration-page-heading h1,
  html[lang="zh-CN"] .calibration-page-heading h1 {
    font-size: 48px;
  }

  .calibration-hero-media {
    min-height: 620px;
  }

  .calibration-page .service-page-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .service-page-hero-inner {
    width: calc(100% - 32px);
    padding: 48px 0 44px;
  }

  .service-breadcrumb {
    margin-bottom: 30px;
  }

  .service-page-heading h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .service-page-heading > p:last-child {
    font-size: 15px;
  }

  .service-page-summary {
    grid-template-columns: 1fr;
  }

  .service-page-summary span {
    min-height: 52px;
    border-right: 0;
  }

  .service-page-nav {
    grid-template-columns: 1fr;
  }

  .service-page-nav p {
    grid-column: auto;
  }

  .service-detail-section {
    padding-bottom: 58px;
    margin-bottom: 58px;
  }

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

  .approval-reference-grid span {
    min-height: 64px;
    font-size: 12px;
  }

  .compatibility-matrix {
    grid-template-columns: 1fr;
  }

  .compatibility-matrix article {
    min-height: 104px;
    padding: 20px;
  }

  .service-page-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 20px;
  }

  .service-page-cta h2 {
    font-size: 28px;
  }

  .service-page-cta .button {
    justify-self: start;
  }

  .calibration-page-hero-inner {
    width: calc(100% - 32px);
  }

  .calibration-page-heading {
    padding: 48px 0 44px;
  }

  .calibration-page-heading h1,
  html[lang="zh-CN"] .calibration-page-heading h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .calibration-page-heading > p:not(.eyebrow) {
    font-size: 15px;
  }

  .calibration-hero-facts {
    grid-template-columns: 1fr;
  }

  .calibration-hero-facts span,
  .calibration-hero-facts span:nth-child(2),
  .calibration-hero-facts span:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .calibration-hero-facts span:last-child {
    border-bottom: 0;
  }

  .calibration-hero-media {
    min-height: 430px;
  }

  .calibration-hero-media figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .calibration-page .service-page-nav {
    grid-template-columns: 1fr;
  }

  .calibration-gallery,
  .calibration-supply-grid,
  .calibration-downloads {
    grid-template-columns: 1fr;
  }

  .calibration-gallery img {
    height: 340px;
    padding: 22px;
  }

  .calibration-supply-grid article {
    min-height: 142px;
    padding: 22px 18px;
  }

  .not-found-page {
    min-height: calc(100svh - 64px);
    padding: 56px 20px;
  }

  .not-found-code {
    font-size: 88px;
  }

  .not-found-inner h1 {
    font-size: 34px;
  }

  .not-found-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero.motion-forced .hero-media::before {
    animation-duration: 9.5s !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
  }
}
