:root {
  --navy: #0d1e46;
  --navy-2: #09152f;
  --blue: #173d82;
  --red: #dc3d35;
  --ink: #111827;
  --muted: #667085;
  --paper: #f4f5f1;
  --line: #d9ddd9;
  --white: #fff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.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: 10px;
  left: 10px;
  background: #fff;
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 82px;
  background: rgba(255, 255, 255, 0.96);
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.site-header.scrolled {
  border-color: #e7e9e6;
  box-shadow: 0 8px 30px rgba(11, 27, 61, 0.08);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font:
    800 27px "Barlow Condensed",
    sans-serif;
  border: 4px solid #f1ada8;
  box-shadow: inset 0 0 0 2px #fff;
}
.brand-name strong,
.brand-name small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.9;
}
.brand-name strong {
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 0.8px;
}
.brand-name small {
  font-size: 18px;
  color: var(--red);
  letter-spacing: 1px;
  margin-top: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.nav-links > a:not(.button) {
  position: relative;
  padding: 10px 0;
}
.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: right 0.3s var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  right: 0;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  position: relative;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 17px 22px;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-dark:hover {
  box-shadow: 0 10px 24px rgba(13, 30, 70, 0.22);
}
.button-red {
  background: var(--red);
  color: #fff;
}
.button-red:hover {
  box-shadow: 0 12px 25px rgba(220, 61, 53, 0.28);
  background: #c9342d;
}
.button span {
  font-size: 18px;
}
.text-link,
.arrow-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #b8bcb7;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.arrow-link {
  color: var(--red);
  border-color: #edaba8;
  margin-top: 18px;
}
.hero {
  background: var(--paper);
  padding-top: 82px;
  overflow: hidden;
}
.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-copy {
  padding: 92px 40px 62px 0;
  align-self: center;
}
.eyebrow,
.section-label {
  margin: 0 0 25px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}
.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1,
.section h2,
footer h2 {
  margin: 0;
  color: var(--navy);
  font:
    700 76px/0.9 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.8px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-intro {
  max-width: 610px;
  margin: 30px 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 65px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  color: var(--navy);
  font:
    700 30px "Barlow Condensed",
    sans-serif;
}
.hero-stats small {
  color: #687181;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1d376f, #07152f);
  overflow: hidden;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(140, 166, 217, 0.22);
  border-radius: 50%;
  width: 520px;
  height: 520px;
}
.hero-visual::after {
  width: 390px;
  height: 390px;
}
.metal-rings {
  position: relative;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(151, 174, 221, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: float 7s ease-in-out infinite;
}
.metal-rings i {
  position: absolute;
  width: 340px;
  height: 58px;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    #4f555c,
    #f6f8f9 25%,
    #777e86 60%,
    #f5f6f6
  );
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.4);
  transform: rotate(-29deg);
}
.metal-rings i:nth-child(2) {
  width: 285px;
  height: 34px;
  transform: rotate(-29deg) translateY(-82px);
  opacity: 0.85;
}
.metal-rings i:nth-child(3) {
  width: 260px;
  height: 42px;
  transform: rotate(-29deg) translateY(84px);
  opacity: 0.75;
}
.metal-rings b {
  z-index: 2;
  width: 170px;
  height: 170px;
  border: 19px solid #c1c7cb;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px #5e666d,
    inset 0 0 35px #0a0d12,
    0 0 30px #040914;
}
.quality-badge {
  position: absolute;
  bottom: 42px;
  left: 34px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(1, 8, 26, 0.35);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badge-float 5s ease-in-out infinite;
}
.quality-badge > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2caf68;
  box-shadow: 0 0 0 5px #d9f3e4;
}
.quality-badge strong,
.quality-badge small {
  display: block;
}
.quality-badge strong {
  color: var(--navy);
  font-size: 11px;
}
.quality-badge small {
  margin-top: 3px;
  color: #7b8490;
  font-size: 9px;
}
.vertical-label {
  position: absolute;
  right: 18px;
  top: 70px;
  color: #8ba0ca;
  font-size: 9px;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-bar .container {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9ca1a9;
}
.trust-bar span {
  color: #687181;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.trust-bar strong {
  font:
    700 21px "Barlow Condensed",
    sans-serif;
}
.section {
  padding: 105px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.split h2,
.section-heading h2,
.quality h2,
.reach h2 {
  font-size: 54px;
}
.split p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.split .lead {
  margin-top: 0;
  color: #344054;
  font-size: 17px;
  line-height: 1.75;
}
.certifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border: 1px solid var(--line);
}
.certifications article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.certifications article:last-child {
  border: 0;
}
.certifications article > span {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font:
    700 17px "Barlow Condensed",
    sans-serif;
}
.certifications strong,
.certifications small {
  display: block;
}
.certifications strong {
  color: var(--navy);
  font-size: 12px;
}
.certifications small {
  margin-top: 5px;
  color: #8490a0;
  font-size: 9px;
}
.services {
  background: var(--navy);
  color: #fff;
}
.section-label.light {
  color: #ff716a;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.section-heading h2 {
  color: #fff;
}
.section-heading > p {
  max-width: 380px;
  margin: 0;
  color: #aab4c8;
  font-size: 13px;
  line-height: 1.75;
}
.section-heading.dark h2 {
  color: var(--navy);
}
.section-heading.dark > p {
  color: var(--muted);
}
.service-list {
  margin-top: 52px;
  border-top: 1px solid #35456a;
}
.service-list article {
  display: grid;
  grid-template-columns: 70px 1fr 125px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #35456a;
  transition:
    padding 0.3s var(--ease),
    background 0.3s;
}
.service-list article:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.service-list article > span {
  color: #7181a5;
  font:
    600 14px "Barlow Condensed",
    sans-serif;
}
.service-list h3 {
  margin: 0;
  font:
    600 26px "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.service-list p {
  margin: 5px 0;
  color: #9ca9c0;
  font-size: 11px;
}
.service-list b {
  justify-self: end;
  color: #ff645e;
  font-size: 10px;
  letter-spacing: 1px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  border: 1px solid var(--line);
  background: var(--line);
}
.product-card {
  position: relative;
  padding: 23px;
  background: #fff;
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transition: right 0.45s var(--ease);
}
.product-card:hover::after {
  right: 0;
}
.product-art {
  height: 210px;
  background: #f0f1ee;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-art i {
  position: absolute;
  display: block;
  width: 185px;
  height: 29px;
  border-radius: 15px;
  background: linear-gradient(
    90deg,
    #555,
    #f8f8f8 27%,
    #969696 52%,
    #eee 78%,
    #555
  );
  box-shadow: 0 10px 15px #9ea09d;
  transform: rotate(-25deg);
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-art i {
  transform: rotate(-25deg) translateX(7px);
}
.product-art i:nth-child(2) {
  width: 155px;
  transform: rotate(-25deg) translateY(45px);
}
.product-card:hover .product-art i:nth-child(2) {
  transform: rotate(-25deg) translate(7px, 45px);
}
.product-art i:nth-child(3) {
  width: 125px;
  transform: rotate(-25deg) translateY(-45px);
}
.product-card:hover .product-art i:nth-child(3) {
  transform: rotate(-25deg) translate(7px, -45px);
}
.product-art.valves i {
  width: 24px;
  height: 145px;
  border-radius: 4px;
  transform: none;
}
.product-card:hover .product-art.valves i {
  transform: translateY(-5px);
}
.product-art.valves i::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -13px;
  width: 50px;
  height: 18px;
  border-radius: 50%;
  background: #787b7c;
}
.product-art.valves i:nth-child(2) {
  height: 120px;
  transform: translateX(-55px);
}
.product-card:hover .product-art.valves i:nth-child(2) {
  transform: translate(-55px, -5px);
}
.product-art.valves i:nth-child(3) {
  height: 165px;
  transform: translateX(55px);
}
.product-card:hover .product-art.valves i:nth-child(3) {
  transform: translate(55px, -5px);
}
.product-art.piston i {
  width: 125px;
  height: 125px;
  border: 21px ridge #b8bdc0;
  border-radius: 50%;
  transform: none;
}
.product-card:hover .product-art.piston i {
  transform: scale(1.04);
}
.product-art.fork i {
  width: 41px;
  height: 150px;
  border-radius: 3px;
  transform: none;
}
.product-art.fork i::after {
  content: "";
  position: absolute;
  top: -39px;
  left: -20px;
  width: 76px;
  height: 55px;
  border: 15px solid #555;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}
.product-card:hover .product-art.fork i {
  transform: translateY(-5px);
}
.product-art.hydraulic i {
  width: 195px;
  height: 41px;
  background: linear-gradient(90deg, #278a51, #64d78b);
  transform: rotate(-20deg);
}
.product-card:hover .product-art.hydraulic i {
  transform: rotate(-20deg) translateX(7px);
}
.product-card > small {
  display: block;
  margin-top: 20px;
  color: var(--red);
  font-size: 10px;
}
.product-card h3 {
  margin: 5px 0;
  color: var(--navy);
  font:
    600 24px "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.product-card p {
  margin: 0 0 10px;
  color: #7c8490;
  font-size: 11px;
  line-height: 1.65;
}
.quality {
  background: #101c38;
  color: #fff;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 115px;
}
.quality h2 {
  color: #fff;
}
.quality-grid > div:first-child > p:not(.section-label) {
  max-width: 480px;
  margin: 26px 0;
  color: #abb4c4;
  font-size: 13px;
  line-height: 1.85;
}
.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #34405c;
  border-left: 1px solid #34405c;
}
.metrics div {
  padding: 33px;
  border-right: 1px solid #34405c;
  border-bottom: 1px solid #34405c;
}
.metrics strong,
.metrics small {
  display: block;
}
.metrics strong {
  color: #ff554e;
  font:
    700 47px "Barlow Condensed",
    sans-serif;
}
.metrics small {
  color: #aeb6c5;
  font-size: 9px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.reach {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 85px;
}
.world-map {
  height: 400px;
  background:
    radial-gradient(ellipse at 28% 50%, #264f91 0 8%, transparent 8.5%),
    linear-gradient(25deg, transparent 25%, #173a78 26% 37%, transparent 38%),
    linear-gradient(-30deg, transparent 40%, #173a78 41% 50%, transparent 51%),
    #eef1f2;
  position: relative;
  clip-path: polygon(
    4% 10%,
    34% 3%,
    55% 13%,
    91% 7%,
    100% 37%,
    91% 70%,
    66% 80%,
    42% 72%,
    20% 91%,
    0 64%
  );
}
.world-map > span {
  position: absolute;
  left: 64%;
  top: 62%;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
}
.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(220, 61, 53, 0.2);
  animation: pulse 2.3s ease-out infinite;
}
.dot-1 {
  left: 23%;
  top: 38%;
}
.dot-2 {
  left: 48%;
  top: 38%;
  animation-delay: 0.4s;
}
.dot-3 {
  left: 62%;
  top: 54%;
  animation-delay: 0.8s;
}
.dot-4 {
  left: 82%;
  top: 70%;
  animation-delay: 1.2s;
}
.reach p:not(.section-label) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 23px;
}
.country-list span {
  padding: 7px 9px;
  background: #eef0ef;
  color: #41506c;
  font-size: 8px;
}
.customers {
  padding-top: 68px;
  padding-bottom: 78px;
  background: var(--paper);
}
.customer-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.customer-grid span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #59616f;
  font:
    600 13px "Barlow Condensed",
    sans-serif;
  text-align: center;
}
.customer-grid span:nth-child(7n + 2) {
  color: #171717;
  font-weight: 800;
}
.customer-grid span:nth-child(7n + 3) {
  color: #1d5a2a;
}
.customer-grid span:nth-child(7n + 4) {
  color: #9b2d26;
}
footer {
  padding: 82px 0 24px;
  background: var(--navy-2);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 105px;
}
.footer-brand .brand-name strong {
  color: #fff;
}
.footer-grid h2 {
  max-width: 610px;
  margin-top: 50px;
  color: #fff;
  font-size: 60px;
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact p {
  color: #9da9be;
  font-size: 12px;
  line-height: 1.75;
}
.contact > a {
  margin: 7px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #495671;
  color: #fff;
  font:
    600 23px "Barlow Condensed",
    sans-serif;
  transition: color 0.25s;
}
.contact > a:hover {
  color: #ff756f;
}
.contact address {
  margin-top: 19px;
  color: #9da9be;
  font-size: 11px;
  font-style: normal;
  line-height: 1.75;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
  padding-top: 21px;
  border-top: 1px solid #27344f;
  color: #738098;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.service-list .reveal:nth-child(2),
.product-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.service-list .reveal:nth-child(3),
.product-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.service-list .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.product-grid .reveal:nth-child(5) {
  transition-delay: 0.08s;
}
.product-grid .reveal:nth-child(6) {
  transition-delay: 0.16s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 61, 53, 0.35);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(220, 61, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 61, 53, 0);
  }
}
@media (max-width: 850px) {
  .container {
    width: min(700px, calc(100% - 32px));
  }
  .section {
    padding: 74px 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 82px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    padding: 30px 24px;
    background: #fff;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.35s var(--ease),
      visibility 0.35s;
  }
  .nav-links.open {
    transform: none;
    visibility: visible;
  }
  .nav-links > a:not(.button) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font:
      600 25px "Barlow Condensed",
      sans-serif;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 70px 0;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero-visual {
    min-height: 490px;
  }
  .trust-bar .container {
    gap: 34px;
    overflow-x: auto;
  }
  .trust-bar .container > * {
    flex: 0 0 auto;
  }
  .split,
  .quality-grid,
  .reach,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .split h2,
  .section-heading h2,
  .quality h2,
  .reach h2 {
    font-size: 48px;
  }
  .certifications {
    grid-template-columns: 1fr;
  }
  .certifications article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .customer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid h2 {
    font-size: 49px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}


/* Services page: varied surfaces with a clear capability hierarchy. */
.services-page {
  background: #f3f4f0;
}
.services-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 89, 196, 0.09), transparent 27%),
    #f3f4f0;
}
.services-showcase::before {
  content: "06";
  position: absolute;
  right: -1vw;
  top: -5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 13, 30, 0.06);
  font:
    800 22vw/1 "Barlow Condensed",
    sans-serif;
  pointer-events: none;
}
.services-showcase .container {
  position: relative;
  z-index: 1;
}
.services-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.services-showcase .inner-split h2 {
  color: var(--navy);
}
.services-showcase .inner-copy {
  border-color: #c9ceca;
}
.services-showcase .inner-copy p {
  color: #5f6878;
}
.services-page .feature-grid {
  gap: 16px;
  background: transparent;
}
.services-page .feature-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: 0 16px 40px rgba(13, 30, 70, 0.07);
}
.services-page .feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--card-accent, var(--red));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.services-page .feature-card:hover::after {
  transform: scaleX(1);
}
.services-page .feature-card > span {
  color: var(--card-accent, var(--red));
  font-weight: 700;
  letter-spacing: 1px;
}
.services-page .feature-card h3 {
  margin-top: 64px;
  color: inherit;
  font-size: 31px;
}
.services-page .feature-card p {
  color: inherit;
  opacity: 0.66;
}
.services-page .feature-card:nth-child(1) {
  --card-accent: #ff5a50;
  background: #07122b;
  color: #fff;
}
.services-page .feature-card:nth-child(2) {
  --card-accent: #2d59c4;
  background: #dfe7fa;
  color: #0b1a3c;
}
.services-page .feature-card:nth-child(3) {
  --card-accent: #e53f36;
  background: #ffe3df;
  color: #3f1716;
}
.services-page .feature-card:nth-child(4) {
  --card-accent: #607080;
  background: linear-gradient(145deg, #eef1f2, #d8dddf);
  color: #15202c;
}
.services-page .feature-card:nth-child(5) {
  --card-accent: #8db1ff;
  background: #17366f;
  color: #fff;
}
.services-page .feature-card:nth-child(6) {
  --card-accent: #ff493d;
  background: #fff;
  color: #111827;
  outline: 1px solid #dfe2de;
  outline-offset: -1px;
}
.service-method {
  padding: 78px 0 84px;
  background: #080f22;
  color: #fff;
}
.service-method .container {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: end;
}
.service-method-heading p {
  margin: 0 0 20px;
  color: #ff665e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.service-method-heading h2 {
  margin: 0;
  font:
    700 48px/0.9 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.service-method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #35415b;
}
.service-method-steps li {
  position: relative;
  min-height: 122px;
  padding: 24px 15px 0 0;
}
.service-method-steps li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 73, 61, 0.12);
}
.service-method-steps span,
.service-method-steps strong,
.service-method-steps small {
  display: block;
}
.service-method-steps span {
  color: #66738d;
  font-size: 8px;
}
.service-method-steps strong {
  margin-top: 16px;
  font:
    600 21px "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.service-method-steps small {
  margin-top: 6px;
  color: #8995aa;
  font-size: 8px;
}
@media (max-width: 850px) {
  .service-method .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Compact footer for tablet and mobile screens. */
footer {
  padding: 56px 0 20px;
}
.footer-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}
.footer-brand .brand-logo {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}
.footer-grid h2 {
  margin-top: 30px;
  font-size: 43px;
  line-height: 0.9;
}
.contact > a {
  font-size: 19px;
}
.contact address {
  margin-top: 14px;
  font-size: 9px;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 16px;
}
@media (max-width: 850px) {
  footer {
    padding: 54px 0 18px;
  }
  .footer-grid {
    gap: 30px;
  }
  .footer-brand .brand-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .footer-brand .brand-name strong {
    font-size: 23px;
  }
  .footer-brand .brand-name small {
    margin-top: 5px;
    font-size: 14px;
  }
  .footer-grid h2 {
    margin-top: 28px;
    font-size: 38px;
    line-height: 0.9;
  }
  .contact > a {
    margin-block: 4px;
    font-size: 18px;
  }
  .contact address {
    margin-top: 14px;
    font-size: 9px;
  }
  .contact .business-id {
    margin-top: 10px;
    font-size: 8px;
  }
  .footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
  }
}
@media (max-width: 520px) {
  footer {
    padding-top: 44px;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-grid h2 {
    margin-top: 22px;
    font-size: 34px;
  }
  .contact > a {
    font-size: 17px;
  }
  .footer-bottom {
    margin-top: 26px;
  }
}

/* Compact information-strip treatment for inner-page headers. */
body .page-main .page-hero {
  min-height: 0;
  padding: 30px 0;
}
body .page-main .page-hero::after {
  display: none;
}
body .page-main .page-hero > .container {
  grid-template-columns: minmax(350px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}
body .page-main .page-hero h1 {
  max-width: none;
  margin: 0;
  padding-left: 22px;
  border-left: 4px solid var(--red);
  font-size: clamp(38px, 3.25vw, 48px);
  line-height: 0.88;
}
.page-main .page-hero .page-hero-aside {
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
}
body .page-main .page-hero .page-intro {
  max-width: 680px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #d2d9e6;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* About page client logo wall. */
.client-wall {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid #d4d9d5;
}
.client-wall-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.client-wall-heading p {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
.client-wall-heading h2 {
  margin: 0;
  color: #0a1530;
  font:
    600 28px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #d5dad6;
  border-left: 1px solid #d5dad6;
  list-style: none;
}
.client-logo {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 13px 9px;
  overflow: hidden;
  border-right: 1px solid #d5dad6;
  border-bottom: 1px solid #d5dad6;
  background: #fff;
  color: #19243a;
  text-align: center;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.client-logo::after {
  content: "";
  position: absolute;
  inset: auto 20% 0;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.client-logo:hover {
  z-index: 1;
  background: #0a1530;
  color: #fff;
  transform: translateY(-2px);
}
.client-logo:hover::after {
  opacity: 0.75;
  transform: scaleX(1);
}
.client-logo strong {
  font:
    800 19px/1 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.02em;
}
.client-logo small {
  margin-top: 4px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo-rane {
  color: #174a91;
  font-style: italic;
}
.logo-cat {
  color: #111;
}
.logo-cat strong {
  position: relative;
  font-size: 23px;
}
.logo-cat strong span {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #f6ba18;
  border-left: 7px solid transparent;
  transform: translateX(-50%);
}
.logo-tafe {
  color: #cf302e;
}
.logo-rambal,
.logo-keen {
  color: #183d83;
}
.logo-dellner {
  color: #1b2430;
}
.logo-pvg {
  color: #238b43;
}
.logo-aeropiston,
.logo-autobahn {
  color: #20232a;
}
.logo-tecno,
.logo-ellar {
  color: #df4138;
}
.logo-entwine,
.logo-subajeyam {
  color: #2757a5;
}
.logo-sufi {
  color: #111;
}

@media (max-width: 1000px) {
  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .client-wall {
    margin-top: 32px;
    padding-top: 24px;
  }
  .client-wall-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .client-logo {
    min-height: 72px;
  }
}


/* Unified inner-page opening: one content-led introduction, no secondary header. */
.about-page .page-main > .inner-section:first-child,
.services-page .page-main > .inner-section:first-child,
.quality-page .page-main > .inner-section:first-child {
  padding-top: 58px;
}

.products-page .page-main > .products:first-child {
  padding-top: 52px;
}

.section-heading-block {
  max-width: 540px;
}

.section-page-label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: #b52d29;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-page-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #c73530;
}

.about-page .section-heading-block h1 {
  margin: 0;
  color: #0b1f42;
  font: 700 clamp(42px, 4.5vw, 64px) / 0.92 "Barlow Condensed", sans-serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.about-page .inner-split {
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.about-page .inner-copy {
  padding: 24px 28px;
  border-left: 3px solid #c73530;
  background: #f6f7f9;
}

.about-page .inner-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  .about-page .page-main > .inner-section:first-child,
  .services-page .page-main > .inner-section:first-child,
  .quality-page .page-main > .inner-section:first-child {
    padding-top: 42px;
  }

  .products-page .page-main > .products:first-child {
    padding-top: 42px;
  }

  .about-page .section-heading-block h1 {
    font-size: clamp(40px, 7vw, 54px);
  }
}

@media (max-width: 620px) {
  .about-page .inner-copy {
    padding: 20px;
  }
}

/* Final light-theme cascade guard.
   Keep this block last so legacy page-specific styling cannot restore dark panels. */
.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #dce2ea;
  box-shadow: 0 10px 34px rgba(18, 38, 76, 0.08);
}

.site-header .brand-name strong,
.site-header .nav-links {
  color: #10244d;
}

.site-header .nav-links > a:not(.button) {
  color: #4d5b70;
}

.site-header .nav-links > a:not(.button):hover,
.site-header .nav-links > a[aria-current="page"] {
  color: #10244d;
}

.site-header .button-dark {
  border-color: #cad2df;
  background: #ffffff;
  color: #10244d;
}

.site-header .button-dark:hover,
.site-header .button-dark:focus-visible {
  border-color: #10244d;
  background: #10244d;
  color: #ffffff;
}

.site-header .menu-toggle {
  border-color: #cbd3df;
  background: #f5f7fa;
}

.site-header .menu-toggle > span:not(.sr-only) {
  background: #10244d;
}

.hero {
  background: #f3f6fb;
  color: #172033;
}

.hero h1,
.hero h1 > span {
  color: #10244d;
}

.hero h1 em:first-of-type span {
  color: transparent;
  -webkit-text-stroke-color: #e24940;
}

.hero h1 em:last-of-type span {
  color: #e24940;
}

.hero .hero-intro {
  color: #59677c;
}

.hero .hero-stats {
  color: #10244d;
  border-color: #cdd5e1;
}

.hero .hero-stats > div {
  border-color: #cdd5e1;
}

.hero .hero-stats strong {
  color: #10244d;
}

.hero .hero-stats small,
.hero .scroll-cue {
  color: #68768c;
}

.services-page .feature-card:nth-child(n) {
  border-color: #d6dde5;
  background: #ffffff;
  color: #172033;
  box-shadow: 0 12px 30px rgba(24, 45, 82, 0.07);
}

.services-page .feature-card:nth-child(2),
.services-page .feature-card:nth-child(5) {
  background: #edf2fa;
}

.services-page .feature-card:nth-child(3) {
  background: #fff0ee;
}

.services-page .feature-card h3,
.services-page .feature-card p,
.services-page .feature-card span {
  color: inherit;
}

@media (max-width: 850px) {
  .site-header .nav-links {
    background: linear-gradient(145deg, #ffffff 0%, #eef2f7 100%);
    color: #10244d;
    box-shadow: -20px 25px 50px rgba(16, 36, 77, 0.14);
  }

  .site-header .nav-links > a:not(.button) {
    border-color: #d2dae5;
    color: #10244d;
  }
}
.page-main .page-hero .page-hero-action {
  min-height: 42px;
  padding: 11px 16px;
  white-space: nowrap;
}

@media (max-width: 850px) {
  body .page-main .page-hero {
    min-height: 0;
    padding: 28px 0;
  }
  body .page-main .page-hero > .container {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  body .page-main .page-hero h1 {
    padding-left: 18px;
    font-size: clamp(37px, 7vw, 46px);
    white-space: normal;
  }
  .page-main .page-hero .page-hero-aside {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 560px) {
  body .page-main .page-hero {
    padding: 24px 0;
  }
  .page-main .page-hero .page-hero-aside {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-main .page-hero .page-hero-action {
    width: 100%;
  }
}

/* Compact horizontal footer strip. */
body > footer {
  padding: 22px 0 10px;
}
body > footer .footer-grid {
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
body > footer .footer-grid > div:first-child {
  display: flex;
  align-items: center;
  gap: 28px;
}
body > footer .footer-brand {
  flex: 0 0 auto;
}
body > footer .footer-grid h2 {
  max-width: 220px;
  margin: 0;
  font-size: 26px;
  line-height: 0.9;
}
body > footer .contact {
  display: grid;
  grid-template-columns: max-content minmax(220px, max-content);
  align-items: center;
  gap: 5px 22px;
}
body > footer .contact > a {
  margin: 0;
  font-size: 15px;
}
body > footer .contact .business-id,
body > footer .contact address {
  grid-column: 1 / -1;
  margin: 3px 0 0;
}
body > footer .footer-bottom {
  margin-top: 14px;
  padding-top: 9px;
}

@media (max-width: 850px) {
  body > footer {
    padding: 20px 0 10px;
  }
  body > footer .footer-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }
  body > footer .footer-grid > div:first-child {
    gap: 18px;
  }
  body > footer .footer-grid h2 {
    font-size: 23px;
  }
  body > footer .contact {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  body > footer .contact .business-id,
  body > footer .contact address {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  body > footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body > footer .contact {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  body > footer .contact .business-id,
  body > footer .contact address {
    grid-column: 1 / -1;
  }
}

/* Site-wide light theme: industrial navy and red on bright neutral surfaces. */
:root {
  --navy: #10244d;
  --navy-2: #eaf0f7;
  --ink: #172033;
  --muted: #5e6b80;
  --paper: #f4f6f3;
  --line: #d5dce4;
}
body {
  background: #f7f9fc;
  color: #172033;
}
.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: #dce2ea;
  box-shadow: 0 10px 34px rgba(18, 38, 76, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand-name strong,
.footer-brand .brand-name strong {
  color: #10244d;
}
.nav-links {
  color: #4d5b70;
}
.nav-links > a:not(.button):hover,
.nav-links > a[aria-current="page"] {
  color: #10244d;
}
.nav-links > a:not(.button)::after {
  background: #e24940;
}
.button-dark {
  border-color: #cad2df;
  background: #fff;
  color: #10244d;
}
.button-dark:hover,
.button-dark:focus-visible {
  border-color: #10244d;
  background: #10244d;
  color: #fff;
}
.menu-toggle {
  border-color: #cbd3df;
  background: #f5f7fa;
}
.menu-toggle > span:not(.sr-only) {
  background: #10244d;
}

/* Home */
.hero {
  background: #f3f6fb;
  color: #172033;
}
.hero::before {
  background:
    radial-gradient(circle at 20% 35%, rgba(37, 86, 174, 0.1), transparent 34%),
    radial-gradient(circle at 72% 28%, rgba(226, 73, 64, 0.07), transparent 28%);
}
.hero-grid-lines {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(16, 36, 77, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 77, 0.1) 1px, transparent 1px);
}
.hero-ghost {
  -webkit-text-stroke-color: rgba(16, 36, 77, 0.07);
}
.hero h1,
.hero h1 > span {
  color: #10244d;
}
.hero h1 em:first-of-type span {
  color: transparent;
  -webkit-text-stroke-color: #e24940;
}
.hero h1 em:last-of-type span {
  color: #e24940;
}
.hero-intro {
  color: #59677c;
}
.hero-actions .text-link,
.text-link {
  border-color: #aeb8c8;
  color: #10244d;
}
.hero-stats {
  border-color: #cdd5e1;
}
.hero-stats > div {
  border-color: #cdd5e1;
}
.hero-stats strong {
  color: #10244d;
}
.hero-stats small,
.scroll-cue {
  color: #68768c;
}
.scroll-cue > span {
  border-color: #728096;
}
.scroll-cue > span::after {
  background: #e24940;
}
.hero-visual {
  box-shadow: 0 28px 70px rgba(24, 45, 82, 0.19);
}

/* Inner-page information strip */
body .page-main .page-hero,
.page-main .page-hero {
  background: #edf2f8;
  color: #10244d;
  border-bottom: 1px solid #d6dee9;
}
.page-hero::before {
  background:
    linear-gradient(rgba(16, 36, 77, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 77, 0.055) 1px, transparent 1px);
}
body .page-main .page-hero h1,
.page-hero h1 {
  color: #10244d;
}
.page-hero h1 em {
  color: #e24940;
}
body .page-main .page-hero .page-intro,
.page-hero .page-intro {
  color: #536176;
}

/* Content surfaces */
.about-page,
.services-page,
.products-page,
.quality-page,
.inner-section,
.products,
.customers {
  background-color: #fff;
}
.services-showcase,
.quality-page .quality-system {
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 89, 196, 0.07), transparent 27%),
    #f4f6f3;
}
.inner-split h2,
.quality-lead h2,
.client-wall-heading h2 {
  color: #10244d;
}
.inner-copy p,
.quality-summary > p {
  color: #5a687c;
}
.feature-card,
.product-card,
.quality-stage,
.client-logo {
  border-color: #d6dde5;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 45, 82, 0.055);
}
.product-art.product-photo,
.products-page .product-art.product-photo {
  background: #f1f4f6;
}

/* Services process panel */
.services-page .service-method,
.service-method {
  background: #e9eef5;
  color: #10244d;
  border-block: 1px solid #d4dce7;
}
.service-method-heading h2,
.service-method-steps strong {
  color: #10244d;
}
.service-method-steps {
  border-color: #bfc9d7;
}
.service-method-steps span,
.service-method-steps small {
  color: #65738a;
}

/* Quality direction panel */
.quality-page .inner-dark,
.quality-direction {
  background: #e9eef5;
  color: #10244d;
}
.quality-direction-grid {
  border-color: #cbd4e0;
  background: #cbd4e0;
}
.quality-direction-title,
.quality-direction-grid article {
  background: #fff;
}
.quality-direction h2,
.quality-direction-grid article h3 {
  color: #10244d;
}
.quality-direction-grid article p {
  color: #5f6d82;
}
.quality-stage:hover {
  background: #10244d;
}

/* Contact modal */
.contact-dialog {
  border-color: #cfd7e3;
  background: #fff;
  color: #172033;
  box-shadow: 0 40px 100px rgba(16, 36, 77, 0.25);
}
.contact-dialog::backdrop {
  background: rgba(25, 38, 61, 0.48);
}
.dialog-intro {
  background: #edf2f8;
  color: #172033;
}
.dialog-intro h2,
.direct-contact a {
  color: #10244d;
}
.dialog-intro > p:not(.dialog-kicker),
.direct-contact span {
  color: #5e6c81;
}
.direct-contact a {
  border-color: #aeb9c9;
}
.contact-form {
  background: #fff;
}
.contact-form label > span,
.form-footer small {
  color: #536176;
}
.contact-form input,
.contact-form textarea {
  border-color: #cbd4df;
  background: #f7f9fb;
  color: #172033;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e24940;
  background: #fff;
}
.dialog-close {
  border-color: #c7d0dc;
  background: #fff;
  color: #10244d;
}

/* Light footer */
body > footer {
  background: #e9eef5;
  color: #10244d;
  border-top: 1px solid #cfd8e4;
}
footer::after {
  -webkit-text-stroke-color: rgba(16, 36, 77, 0.055);
}
body > footer .footer-grid h2,
body > footer .footer-brand .brand-name strong {
  color: #10244d;
}
body > footer .contact > a {
  border-color: #8796aa;
  color: #10244d;
}
body > footer .contact .business-id,
body > footer .contact address,
body > footer .footer-bottom {
  color: #526177;
}
body > footer .footer-bottom {
  border-color: #c4cedb;
}

@media (max-width: 850px) {
  .nav-links {
    background: linear-gradient(145deg, #ffffff 0%, #eef2f7 100%);
    color: #10244d;
    box-shadow: -20px 25px 50px rgba(16, 36, 77, 0.14);
  }
  .nav-links > a:not(.button) {
    border-color: #d2dae5;
    color: #10244d;
  }
  .nav-links > a:not(.button)::before {
    color: #8491a5;
  }
  .nav-links > a:not(.button)::after {
    background: #b7c1cf;
  }
  .nav-links > a[aria-current="page"] {
    color: #e24940;
  }
  .nav-links .button:hover,
  .nav-links .button:focus-visible {
    border-color: #10244d;
    background: #10244d;
    color: #fff;
  }
}

/* About page: concise editorial layout with readable content density. */
.about-page .inner-section {
  padding: 54px 0 58px;
}
.about-page .inner-split {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 5vw, 68px);
  align-items: start;
}
.about-page .inner-split h2 {
  font-size: clamp(38px, 3.7vw, 52px);
  line-height: 0.94;
}
.about-page .inner-copy {
  padding-left: 28px;
}
.about-page .inner-copy p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.7;
}
.about-page .feature-grid {
  gap: 12px;
  margin-top: 34px;
}
.about-page .feature-card {
  min-height: 160px;
  padding: 21px 22px;
}
.about-page .feature-card h3 {
  margin: 25px 0 7px;
  font-size: 24px;
  line-height: 1;
}
.about-page .feature-card p {
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 850px) {
  .about-page .inner-section {
    padding: 46px 0 50px;
  }
  .about-page .inner-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-page .inner-copy {
    padding-left: 0;
    border-left: 0;
  }
  .about-page .feature-grid {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .about-page .inner-section {
    padding: 38px 0 42px;
  }
  .about-page .feature-grid {
    gap: 10px;
    margin-top: 24px;
  }
  .about-page .feature-card {
    min-height: 145px;
  }
}

/* Consistent compact content density for all dedicated pages. */
.services-page .services-showcase,
.quality-page .inner-section {
  padding: 52px 0 56px;
}
.services-page .inner-split,
.quality-page .inner-split {
  gap: clamp(38px, 5vw, 68px);
}
.services-page .inner-split h2,
.quality-page .inner-split h2 {
  font-size: clamp(38px, 3.7vw, 52px);
  line-height: 0.94;
}
.services-page .inner-copy,
.quality-page .inner-copy {
  padding-left: 28px;
}
.services-page .inner-copy p,
.quality-page .inner-copy p {
  font-size: 13px;
  line-height: 1.7;
}
.services-page .feature-grid,
.quality-page .feature-grid {
  gap: 12px;
  margin-top: 34px;
}
.services-page .feature-card,
.quality-page .feature-card {
  min-height: 170px;
  padding: 21px 22px;
}
.services-page .feature-card h3,
.quality-page .feature-card h3 {
  margin: 27px 0 7px;
  font-size: 24px;
  line-height: 1;
}
.services-page .feature-card p,
.quality-page .feature-card p {
  font-size: 12px;
  line-height: 1.55;
}
.services-page .service-method {
  padding: 46px 0 50px;
}
.services-page .service-method .container {
  gap: clamp(38px, 5vw, 68px);
}
.services-page .service-method-heading h2 {
  font-size: 40px;
}
.services-page .service-method-steps li {
  min-height: 100px;
  padding-top: 20px;
}
.services-page .service-method-steps strong {
  margin-top: 13px;
  font-size: 20px;
}
.services-page .service-method-steps small {
  font-size: 10px;
  line-height: 1.45;
}

.products-page .products {
  padding-block: 48px;
}
.products-page .product-grid {
  gap: 12px;
}
.products-page .product-art {
  height: 190px;
}
.products-page .product-card > small,
.products-page .product-card h3,
.products-page .product-card > p {
  margin-left: 20px;
  margin-right: 20px;
}
.products-page .product-card > small {
  margin-top: 16px;
}
.products-page .product-card h3 {
  margin-top: 7px;
  margin-bottom: 6px;
  font-size: 25px;
  line-height: 1;
}
.products-page .product-card > p {
  min-height: 38px;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.5;
}
.quality-page .inner-dark {
  padding-block: 44px;
}

@media (max-width: 850px) {
  .services-page .services-showcase,
  .quality-page .inner-section {
    padding: 44px 0 48px;
  }
  .services-page .inner-split,
  .quality-page .inner-split {
    gap: 24px;
  }
  .services-page .inner-copy,
  .quality-page .inner-copy {
    padding-left: 0;
  }
  .services-page .feature-grid,
  .quality-page .feature-grid {
    margin-top: 28px;
  }
  .services-page .service-method .container {
    gap: 30px;
  }
  .products-page .products {
    padding-block: 40px;
  }
  .products-page .product-art {
    height: 180px;
  }
}

@media (max-width: 520px) {
  .services-page .services-showcase,
  .quality-page .inner-section {
    padding: 38px 0 42px;
  }
  .services-page .feature-grid,
  .quality-page .feature-grid {
    gap: 10px;
    margin-top: 24px;
  }
  .services-page .feature-card,
  .quality-page .feature-card {
    min-height: 150px;
  }
  .services-page .service-method {
    padding: 38px 0 42px;
  }
  .products-page .products {
    padding-block: 32px;
  }
  .products-page .product-art {
    height: 210px;
  }
}

/* Quality page: a compact inspection dashboard rather than generic cards. */
.quality-page .quality-system {
  position: relative;
  overflow: hidden;
  background: #f3f5f3;
}
.quality-page .quality-system::before {
  content: "QC";
  position: absolute;
  right: -1vw;
  top: -5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 13, 30, 0.055);
  font:
    800 20vw/1 "Barlow Condensed",
    sans-serif;
}
.quality-page .quality-system .container {
  position: relative;
  z-index: 1;
}
.quality-lead {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: end;
}
.quality-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
.quality-lead h2,
.quality-direction h2 {
  margin: 0;
  font:
    700 clamp(38px, 3.7vw, 52px) / 0.94 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.quality-summary > p {
  max-width: 620px;
  margin: 0 0 20px;
  color: #5f6979;
  font-size: 13px;
  line-height: 1.7;
}
.quality-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cdd2d0;
}
.quality-proof span {
  padding: 14px 14px 0 0;
  color: #687284;
  font-size: 10px;
  line-height: 1.35;
}
.quality-proof strong {
  display: block;
  margin-bottom: 3px;
  color: #0a1530;
  font:
    700 23px/1 "Barlow Condensed",
    sans-serif;
}
.quality-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: #cfd4d1;
  border: 1px solid #cfd4d1;
}
.quality-stage {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-height: 166px;
  padding: 22px;
  background: #fff;
  transition:
    background 0.3s,
    transform 0.3s var(--ease);
}
.quality-stage:hover {
  z-index: 1;
  background: #0a1530;
  transform: translateY(-3px);
}
.quality-stage-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #ff7b74;
  border-radius: 50%;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}
.quality-stage small {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.quality-stage h3 {
  margin: 5px 0 0;
  color: #0a1530;
  font:
    600 24px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.quality-stage > p {
  grid-column: 2;
  margin: 0;
  color: #697386;
  font-size: 12px;
  line-height: 1.5;
}
.quality-stage:hover h3,
.quality-stage:hover > p {
  color: #fff;
}
.quality-direction-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 1px;
  background: #26324a;
  border: 1px solid #26324a;
}
.quality-direction-title,
.quality-direction-grid article {
  min-height: 178px;
  padding: 25px 26px;
  background: #0a1225;
}
.quality-direction-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.quality-direction-grid article span {
  color: #ff6a62;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.quality-direction-grid article h3 {
  margin: 27px 0 8px;
  color: #fff;
  font:
    600 24px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.quality-direction-grid article p {
  margin: 0;
  color: #aeb8ca;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 850px) {
  .quality-lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quality-stage-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .quality-stage {
    min-height: 132px;
  }
  .quality-direction-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quality-direction-title {
    grid-column: 1 / -1;
    min-height: 130px;
  }
}

@media (max-width: 520px) {
  .quality-proof,
  .quality-direction-grid {
    grid-template-columns: 1fr;
  }
  .quality-proof span {
    padding: 10px 0;
    border-bottom: 1px solid #d7dbd8;
  }
  .quality-stage {
    grid-template-columns: 38px 1fr;
    min-height: 140px;
    padding: 19px;
  }
  .quality-direction-title {
    grid-column: auto;
  }
  .quality-direction-title,
  .quality-direction-grid article {
    min-height: 150px;
    padding: 22px;
  }
}

/* Home ticker logo plates: preserve individual brand identity on red. */
.home-page .ticker-track {
  height: 76px;
  gap: 28px;
}
.home-page .ticker-group {
  gap: 26px;
  padding-right: 26px;
}
.home-page .ticker-group > span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.home-page .ticker-group > strong {
  display: inline-flex;
  min-width: 104px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 7px 15px;
  border: 1px solid rgba(7, 13, 30, 0.11);
  border-radius: 3px;
  background: #fff;
  color: #172033;
  box-shadow: 0 5px 14px rgba(92, 16, 12, 0.15);
  line-height: 0.82;
  text-align: center;
}
.home-page .ticker-group > i {
  color: rgba(255, 255, 255, 0.72);
}
.home-page .ticker-group .ticker-rane {
  color: #17539a;
  font-size: 27px;
  font-style: italic;
  text-transform: none;
}
.home-page .ticker-group .ticker-cat {
  color: #111;
  font-size: 29px;
  letter-spacing: -1px;
}
.home-page .ticker-group .ticker-tafe {
  color: #c92f2c;
  font-size: 27px;
  letter-spacing: -0.5px;
}
.home-page .ticker-group .ticker-rambal,
.home-page .ticker-group .ticker-keen {
  color: #19458f;
}
.home-page .ticker-group .ticker-dellner,
.home-page .ticker-group .ticker-aeropiston,
.home-page .ticker-group .ticker-autobahn,
.home-page .ticker-group .ticker-sufi {
  color: #171b22;
}
.home-page .ticker-group .ticker-pvg {
  color: #258d43;
  font-size: 27px;
}
.home-page .ticker-group .ticker-tecno,
.home-page .ticker-group .ticker-ellar {
  color: #d83d35;
}
.home-page .ticker-group .ticker-entwine,
.home-page .ticker-group .ticker-subajeyam {
  color: #2456a4;
}
.home-page .ticker-group > strong small {
  color: inherit;
  opacity: 0.8;
}

@media (max-width: 520px) {
  .home-page .ticker-track {
    height: 66px;
    gap: 20px;
  }
  .home-page .ticker-group {
    gap: 20px;
    padding-right: 20px;
  }
  .home-page .ticker-group > strong {
    min-width: 92px;
    height: 40px;
    padding: 6px 12px;
  }
}

/* Products page alignment and complete image visibility. */
.products-page .product-card,
.products-page .product-card:nth-child(2),
.products-page .product-card:nth-child(5),
.products-page .product-card:hover,
.products-page .product-card:nth-child(2):hover,
.products-page .product-card:nth-child(5):hover {
  transform: none;
}
.products-page .product-grid {
  align-items: stretch;
}
.products-page .product-card {
  display: flex;
  flex-direction: column;
}
.products-page .product-art.product-photo {
  padding: 10px;
  background: #f4f5f2;
}
.products-page .product-art.product-photo img,
.products-page .product-card:hover .product-art.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: saturate(0.92) contrast(1.04);
}
.products-page .product-card > p {
  flex-grow: 1;
}

/* Product card composition: title | image, then description. */
.products-page .product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  grid-template-rows: auto 1fr auto;
  column-gap: 18px;
  padding: 20px;
}
.products-page .product-art {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid #e1e4e0;
}
.products-page .product-art.product-photo {
  padding: 0;
}
.products-page .product-art.product-photo img,
.products-page .product-card:hover .product-art.product-photo img {
  object-fit: cover;
}
.products-page .product-card > small {
  grid-column: 1;
  grid-row: 1;
  margin: 2px 0 0;
}
.products-page .product-card h3 {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  margin: 8px 0;
  font-size: 26px;
}
.products-page .product-card > p {
  grid-column: 1 / -1;
  grid-row: 3;
  min-height: 0;
  margin: 16px 0 0;
  padding-top: 13px;
  border-top: 1px solid #dde1dd;
}

@media (max-width: 1100px) and (min-width: 851px) {
  .products-page .product-card {
    grid-template-columns: minmax(0, 1fr) 120px;
    column-gap: 14px;
    padding: 17px;
  }
  .products-page .product-art {
    height: auto;
  }
  .products-page .product-card h3 {
    font-size: 23px;
  }
}

@media (max-width: 420px) {
  .products-page .product-card {
    grid-template-columns: minmax(0, 1fr) 125px;
    column-gap: 14px;
    padding: 17px;
  }
  .products-page .product-art {
    height: auto;
  }
  .products-page .product-card h3 {
    font-size: 23px;
  }
}
@media (max-width: 420px) {
  body > footer .footer-grid > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }
  body > footer .contact {
    grid-template-columns: 1fr;
  }
  body > footer .contact .business-id,
  body > footer .contact address {
    grid-column: auto;
  }
}
@media (max-width: 520px) {
  .services-page .feature-card {
    min-height: 220px;
  }
  .service-method-steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
  .service-method-steps li {
    min-height: 105px;
  }
}

/* Precise mid-scale page headers and footer. */
.page-main .page-hero {
  min-height: 240px;
  padding: 28px 0;
}
.page-main .page-hero h1 {
  font-size: clamp(44px, 4vw, 58px);
  line-height: 0.86;
}
.page-main .page-hero > .container {
  gap: clamp(36px, 5vw, 72px);
}
.page-main .page-hero .page-intro {
  padding-left: 20px;
  font-size: 12px;
  line-height: 1.65;
}
.page-hero-aside {
  gap: 14px;
}
.page-hero-action {
  min-height: 44px;
  padding: 12px 18px;
  gap: 18px;
  font-size: 9px;
}
.page-hero-action span {
  font-size: 15px;
}
footer {
  padding: 34px 0 16px;
}
.footer-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.footer-brand .brand-logo {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.footer-brand .brand-name strong {
  font-size: 23px;
}
.footer-brand .brand-name small {
  margin-top: 4px;
  font-size: 14px;
}
.footer-grid h2 {
  margin-top: 20px;
  font-size: 33px;
  line-height: 0.92;
}
.contact > a {
  margin-block: 2px;
  font-size: 16px;
}
.contact .business-id {
  margin-top: 8px;
  font-size: 7px;
}
.contact address {
  margin-top: 9px;
  font-size: 8px;
  line-height: 1.6;
}
.footer-bottom {
  margin-top: 20px;
  padding-top: 12px;
}
.page-main > .products.section {
  padding-bottom: 44px;
}

@media (max-width: 850px) {
  .page-main .page-hero {
    min-height: 285px;
    padding: 34px 0;
  }
  .page-main .page-hero h1 {
    font-size: clamp(43px, 10vw, 58px);
  }
  .page-main .page-hero > .container {
    gap: 20px;
  }
  .page-hero-aside {
    gap: 14px;
  }
  footer {
    padding: 32px 0 14px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-grid h2 {
    margin-top: 18px;
    font-size: 30px;
  }
  .footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
  }
}
@media (max-width: 520px) {
  .page-main .page-hero {
    min-height: 270px;
    padding: 30px 0;
  }
  .page-main .page-hero h1 {
    font-size: clamp(39px, 11vw, 50px);
  }
  .footer-grid h2 {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact > a {
    font-size: 15px;
  }
  .page-main > .products.section {
    padding-bottom: 32px;
  }
}
@media (max-width: 520px) {
  .brand-name strong {
    font-size: 23px;
  }
  .brand-name small {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-intro {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .hero-stats small {
    font-size: 7px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .metal-rings {
    width: 280px;
    height: 280px;
  }
  .hero-visual::before {
    width: 370px;
    height: 370px;
  }
  .hero-visual::after {
    width: 280px;
    height: 280px;
  }
  .metal-rings i {
    width: 270px;
  }
  .metal-rings i:nth-child(2) {
    width: 220px;
  }
  .metal-rings i:nth-child(3) {
    width: 200px;
  }
  .metal-rings b {
    width: 130px;
    height: 130px;
  }
  .quality-badge {
    left: 16px;
    bottom: 20px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .service-list article {
    grid-template-columns: 43px 1fr;
  }
  .service-list article > b {
    display: none;
  }
  .metrics div {
    padding: 21px 17px;
  }
  .metrics strong {
    font-size: 39px;
  }
  .world-map {
    height: 290px;
  }
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact > a {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Precision-inspection motion system for a more distinctive hero. */
.hero-product-showcase {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(70, 111, 174, 0.16), transparent 42%),
    #071127;
}

.hero-product-showcase .hero-product-slides {
  inset: 16px;
  background: #edf0f3;
  clip-path: polygon(0 0, 87% 0, 100% 13%, 100% 100%, 13% 100%, 0 87%);
}

.hero-product-showcase .hero-product-slide {
  clip-path: polygon(0 0, 84% 0, 100% 16%, 100% 100%, 16% 100%, 0 84%);
}

.hero-product-showcase .hero-product-slide::after {
  content: attr(data-index);
  position: absolute;
  top: 50%;
  right: 18px;
  color: rgba(16, 36, 77, 0.16);
  font: 800 clamp(76px, 8vw, 120px) / 1 "Barlow Condensed", sans-serif;
  letter-spacing: -0.05em;
  transform: translateY(-50%) rotate(90deg);
}

.hero-product-showcase .hero-product-slide figcaption {
  right: 30px;
  bottom: 34px;
  padding: 11px 14px 10px 38px;
  border: 0;
  border-left: 3px solid #ff5b52;
  background: rgba(8, 20, 44, 0.92);
  box-shadow: 0 12px 35px rgba(4, 11, 26, 0.24);
}

.hero-product-showcase .hero-product-slide figcaption::before {
  content: "◆";
  position: absolute;
  left: 14px;
  color: #ff817a;
  font-size: 8px;
}

.inspection-aperture {
  position: absolute;
  z-index: 3;
  inset: 31px;
  pointer-events: none;
}

.inspection-aperture::before,
.inspection-aperture::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68%, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.inspection-aperture::before {
  border: 1px dashed rgba(17, 54, 105, 0.4);
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.025),
    inset 0 0 0 16px rgba(255, 255, 255, 0.025);
  animation: inspection-orbit 18s linear infinite;
}

.inspection-aperture::after {
  width: min(52%, 295px);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(199, 53, 48, 0.32) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(transparent calc(50% - 0.5px), rgba(199, 53, 48, 0.32) 50%, transparent calc(50% + 0.5px));
}

.inspection-aperture > i {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.7);
  border-style: solid;
}

.inspection-aperture > i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.inspection-aperture > i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
.inspection-aperture > i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}
.inspection-aperture > i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.inspection-aperture > span {
  position: absolute;
  top: 50%;
  right: -112px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
  transform: rotate(90deg) translateY(-50%);
}

.showcase-counter {
  position: absolute;
  z-index: 4;
  top: 62px;
  left: 42px;
  display: grid;
  grid-template-columns: 42px auto;
  gap: 10px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 20, 44, 0.84);
  color: #fff;
  backdrop-filter: blur(8px);
}

.showcase-counter > div {
  position: relative;
  width: 42px;
  height: 28px;
  overflow: hidden;
}

.showcase-counter b {
  position: absolute;
  inset: 0;
  opacity: 0;
  color: #fff;
  font: 700 28px/1 "Barlow Condensed", sans-serif;
  animation: hero-count-cycle 45s ease-in-out infinite;
}

.showcase-counter b:nth-child(2) {
  animation-delay: 5s;
}
.showcase-counter b:nth-child(3) {
  animation-delay: 10s;
}
.showcase-counter b:nth-child(4) {
  animation-delay: 15s;
}
.showcase-counter b:nth-child(5) {
  animation-delay: 20s;
}
.showcase-counter b:nth-child(6) {
  animation-delay: 25s;
}
.showcase-counter b:nth-child(7) {
  animation-delay: 30s;
}
.showcase-counter b:nth-child(8) {
  animation-delay: 35s;
}
.showcase-counter b:nth-child(9) {
  animation-delay: 40s;
}

.showcase-counter small {
  color: #cbd7e8;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-product-showcase:hover .showcase-counter b,
.hero-product-showcase:hover .inspection-aperture::before {
  animation-play-state: paused;
}

@keyframes inspection-orbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hero-count-cycle {
  0%,
  9.4% {
    opacity: 1;
    transform: translateY(0);
  }
  11.1%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@media (max-width: 620px) {
  .inspection-aperture {
    inset: 22px;
  }

  .inspection-aperture > span {
    display: none;
  }

  .showcase-counter {
    top: 44px;
    left: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inspection-aperture::before,
  .showcase-counter b {
    animation: none;
  }

  .showcase-counter b:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Modern editorial direction */
:root {
  --navy: #070d1e;
  --navy-2: #040815;
  --blue: #2d59c4;
  --red: #ff493d;
  --paper: #f1f1ec;
  --acid: #b9ff52;
  --silver: #dfe4e7;
}
.scroll-progress {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff897b);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.cursor-glow {
  position: fixed;
  z-index: 0;
  left: -200px;
  top: -200px;
  width: 340px;
  height: 340px;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(64, 105, 222, 0.12),
    transparent 68%
  );
  mix-blend-mode: multiply;
}
.site-header {
  background: #070d1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header.scrolled {
  background: #070d1e;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.brand-name strong {
  color: #fff;
}
.brand-mark {
  border-color: #67231f;
  box-shadow:
    inset 0 0 0 2px #fff,
    0 0 30px rgba(255, 73, 61, 0.25);
}
.nav-links {
  color: #d3d8e4;
}
.nav-links > a:not(.button)::after {
  background: var(--red);
}
.button-dark {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.button-dark:hover {
  background: #fff;
  color: var(--navy);
}
.menu-toggle > span:not(.sr-only) {
  background: #fff;
}
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 35%,
      rgba(42, 84, 192, 0.22),
      transparent 33%
    ),
    radial-gradient(circle at 75% 30%, rgba(255, 73, 61, 0.09), transparent 25%);
}
.hero-grid-lines {
  position: absolute;
  inset: 82px 0 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-ghost {
  position: absolute;
  z-index: -1;
  left: -1.5vw;
  bottom: -4.5vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font:
    800 23vw/0.7 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.hero-grid {
  position: relative;
  min-height: 800px;
  grid-template-columns: 1.08fr 0.92fr;
}
.hero-copy {
  padding-top: 110px;
}
.eyebrow {
  color: #ff7169;
}
.hero h1 {
  color: #f5f7fb;
  font-size: clamp(72px, 7.4vw, 118px);
  line-height: 0.72;
  letter-spacing: -0.045em;
}
.hero h1 > span,
.hero h1 em span {
  display: inline-block;
  animation: headline-in 1s var(--ease) both;
}
.hero h1 em:first-of-type span {
  animation-delay: 0.1s;
}
.hero h1 em:last-of-type span {
  animation-delay: 0.2s;
}
.hero h1 em {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px #ff5a50;
}
.hero h1 em:last-of-type {
  color: var(--red);
  -webkit-text-stroke: 0;
}
.hero-intro {
  max-width: 560px;
  color: #aeb7ca;
  font-size: 15px;
}
.hero-actions .text-link {
  color: #dbe0eb;
  border-color: #626c82;
}
.hero-stats {
  border-color: rgba(255, 255, 255, 0.14);
}
.hero-stats strong {
  color: #fff;
  font-size: 34px;
}
.hero-stats small {
  color: #7f8aa1;
}
.hero-visual {
  align-self: center;
  height: 640px;
  margin-left: 25px;
  background: linear-gradient(
    145deg,
    rgba(32, 57, 115, 0.72),
    rgba(5, 11, 28, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50% 2px 50% 2px;
  box-shadow:
    inset 0 0 90px rgba(43, 82, 177, 0.19),
    0 40px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}
.hero-visual::before,
.hero-visual::after {
  border-color: rgba(170, 192, 236, 0.15);
}
.hero-visual::before {
  animation: orbit 17s linear infinite;
}
.hero-visual::after {
  animation: orbit-reverse 11s linear infinite;
}
.hero-visual .metal-rings {
  transform: translateY(var(--parallax, 0));
  transition: transform 0.08s linear;
}
.visual-label {
  position: absolute;
  top: 35px;
  left: 35px;
  right: 35px;
  display: flex;
  justify-content: space-between;
  color: #8290ad;
  font: 600 8px Inter;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.dimension-card {
  position: absolute;
  right: 32px;
  top: 110px;
  display: grid;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 13, 32, 0.6);
  backdrop-filter: blur(12px);
}
.dimension-card span {
  color: var(--red);
  font: 500 20px "Barlow Condensed";
}
.dimension-card strong {
  font: 600 17px "Barlow Condensed";
  letter-spacing: 0.7px;
}
.dimension-card small {
  margin-top: 3px;
  color: #78859e;
  font-size: 7px;
  letter-spacing: 1px;
}
.quality-badge {
  background: rgba(240, 243, 247, 0.95);
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7e899e;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
}
.scroll-cue span {
  height: 45px;
  width: 1px;
  background: #7e899e;
  position: relative;
  overflow: hidden;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: #fff;
  animation: scroll-line 2.2s ease-in-out infinite;
}
.trust-bar {
  display: block;
  overflow: hidden;
  border: 0;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  transform: rotate(-1deg);
  margin: -3px -5px 0;
}
.trust-bar:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  min-width: 72px;
  color: #fff;
  line-height: 0.82;
}
.ticker-track strong small {
  margin-top: 4px;
  font:
    700 7px/1 Inter,
    sans-serif;
  letter-spacing: 0.8px;
}
.ticker-track .ticker-rane {
  font-style: italic;
  text-transform: none;
}
.ticker-track .ticker-cat {
  font-size: 29px;
}
.ticker-track .ticker-cat b {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 7px solid transparent;
  border-bottom: 11px solid #ffd23c;
  border-left: 7px solid transparent;
  transform: translateX(-50%);
}
.ticker-track .ticker-tafe,
.ticker-track .ticker-ellar,
.ticker-track .ticker-tecno {
  color: #fff5f4;
}
.ticker-track .ticker-pvg {
  color: #dfffe5;
}

/* About intentionally presents uniform names, not logo treatments. */
.about-page .client-logo {
  color: #1c2940;
  font-style: normal;
}
.about-page .client-logo strong {
  font-size: 16px;
  letter-spacing: 0.04em;
}
.about-page .client-logo small {
  font-size: 8px;
}
.about-page .logo-cat strong span {
  display: none;
}
.ticker {
  overflow: hidden;
}
.ticker-track {
  width: max-content;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 48px;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ticker-track strong {
  font: 700 25px "Barlow Condensed";
}
.ticker-track i {
  font-style: normal;
  font-size: 12px;
  opacity: 0.65;
}
.section {
  position: relative;
}
.about {
  padding-top: 140px;
}
.about::before,
.products::before {
  content: "PRECISION";
  position: absolute;
  right: 0;
  top: 68px;
  color: #eef0ed;
  font: 800 10vw "Barlow Condensed";
  letter-spacing: -0.04em;
  z-index: -1;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 73, 61, 0.12);
}
.split {
  grid-template-columns: 0.85fr 1.15fr;
}
.split h2,
.section-heading h2,
.quality h2,
.reach h2 {
  font-size: clamp(52px, 5.2vw, 76px);
  letter-spacing: -0.04em;
}
.split > div {
  padding-left: 50px;
  border-left: 1px solid var(--line);
}
.certifications {
  gap: 14px;
  border: 0;
  background: transparent;
}
.certifications article {
  min-height: 170px;
  position: relative;
  border: 1px solid var(--line) !important;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
}
.certifications article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
}
.certifications article:hover {
  border-color: #aeb6c4 !important;
  box-shadow: 0 30px 60px rgba(17, 31, 61, 0.12);
}
.services {
  overflow: hidden;
  background: #050b1a;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(51, 91, 194, 0.25),
      transparent 28%
    ),
    linear-gradient(120deg, transparent 65%, rgba(255, 255, 255, 0.025) 65%);
}
.services .container {
  position: relative;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: 0;
}
.service-list article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid #26324e;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );
  transition:
    transform 0.4s var(--ease),
    background 0.4s,
    border-color 0.4s;
}
.service-list article:hover {
  padding: 28px;
  transform: translateY(-7px);
  border-color: #53658e;
  background: linear-gradient(
    145deg,
    rgba(65, 101, 190, 0.18),
    rgba(255, 255, 255, 0.02)
  );
}
.service-list article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #465575;
  border-radius: 50%;
}
.service-list article > div {
  margin-top: auto;
}
.service-list h3 {
  font-size: 34px;
  max-width: 430px;
}
.service-list p {
  max-width: 460px;
  line-height: 1.7;
}
.service-list article > b {
  position: absolute;
  right: 28px;
  top: 33px;
}
.products {
  padding-block: 140px;
}
.products::before {
  content: "COMPONENTS";
  top: 70px;
}
.product-grid {
  gap: 16px;
  border: 0;
  background: transparent;
}
.product-card {
  padding: 0;
  border: 1px solid #dfe2df;
  background: #f7f8f5;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.product-card::after {
  height: 5px;
}
.product-art {
  height: 270px;
  background: linear-gradient(140deg, #e7e9e5, #f8f9f7);
}
.product-card > small,
.product-card h3,
.product-card > p {
  margin-left: 24px;
  margin-right: 24px;
}
.product-card > small {
  margin-top: 22px;
}
.product-card > p {
  margin-bottom: 25px;
}
.product-card h3 {
  font-size: 28px;
}
.quality {
  overflow: hidden;
  background: #080f22;
}
.quality::after {
  content: "0%";
  position: absolute;
  right: -2vw;
  bottom: -10vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  font: 800 31vw "Barlow Condensed";
  line-height: 1;
  pointer-events: none;
}
.quality-grid {
  position: relative;
  z-index: 1;
}
.metrics {
  gap: 10px;
  border: 0;
}
.metrics div {
  position: relative;
  min-height: 175px;
  border: 1px solid #2b3856;
  background: rgba(255, 255, 255, 0.025);
  transition:
    background 0.3s,
    transform 0.3s;
}
.metrics div:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.metrics strong {
  font-size: 59px;
}
.reach {
  padding-block: 140px;
}
.world-map {
  filter: drop-shadow(0 30px 40px rgba(18, 44, 89, 0.18));
}
.customers {
  background: #e9ebe7;
}
.customer-grid {
  gap: 1px;
  border: 0;
  background: #cfd3ce;
}
.customer-grid span {
  border: 0;
  background: #f0f2ef;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.customer-grid span:hover {
  z-index: 1;
  background: var(--navy);
  color: #fff !important;
  transform: scale(1.035);
}
footer {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
}
footer::after {
  content: "GEO CHEM";
  position: absolute;
  z-index: 0;
  left: -1vw;
  bottom: -4vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font: 800 19vw/0.8 "Barlow Condensed";
  white-space: nowrap;
}
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}
@keyframes headline-in {
  from {
    opacity: 0;
    transform: translateY(80%) rotate(3deg);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbit-reverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes scroll-line {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 850px) {
  .site-header {
    background: #070d1e;
  }
  .nav-links {
    background: #070d1e;
    color: #fff;
  }
  .nav-links > a:not(.button) {
    border-color: #27314a;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-copy {
    padding: 95px 0 60px;
  }
  .hero h1 {
    font-size: clamp(62px, 16vw, 90px);
    line-height: 0.78;
  }
  .hero-visual {
    height: 520px;
    margin: 0 0 70px;
    border-radius: 2px 80px 2px 80px;
  }
  .scroll-cue {
    display: none;
  }
  .trust-bar {
    transform: none;
    margin: 0;
  }
  .split > div {
    padding-left: 0;
    border: 0;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about::before,
  .products::before {
    font-size: 17vw;
  }
  .cursor-glow {
    display: none;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 58px;
  }
  .hero-visual {
    height: 420px;
  }
  .visual-label {
    top: 22px;
    left: 22px;
    right: 22px;
  }
  .dimension-card {
    right: 15px;
    top: 75px;
  }
  .ticker-track {
    height: 58px;
    gap: 30px;
  }
  .section {
    padding-block: 90px;
  }
  .about {
    padding-top: 105px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .service-list article {
    min-height: 230px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .metrics div {
    min-height: 150px;
  }
  .quality-grid {
    gap: 70px;
  }
  .footer-grid h2 {
    font-size: 55px;
  }
}

/* Signature image-led layer */
body::after {
  content: "";
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: repeating-radial-gradient(
    circle at 20% 30%,
    #fff 0 1px,
    transparent 1px 3px
  );
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}
.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-copy::after {
  content: "GC\A SURFACE\A LAB";
  white-space: pre;
  position: absolute;
  right: -5px;
  bottom: 72px;
  color: #4b5873;
  font: 600 7px/1.8 Inter;
  letter-spacing: 2.2px;
}
.hero-visual {
  height: 660px;
  margin-left: 0;
  border-radius: 2px 130px 2px 130px;
  background: #060b17;
  transform: rotate(1.4deg);
  transition:
    transform 0.7s var(--ease),
    border-radius 0.7s var(--ease);
}
.hero-visual:hover {
  transform: rotate(0);
  border-radius: 50px 2px 50px 2px;
}
.hero-product-image {
  position: absolute;
  z-index: 0;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.035);
  transition:
    transform 0.8s var(--ease),
    filter 0.6s;
}
.hero-visual:hover .hero-product-image {
  filter: saturate(1) contrast(1.05);
}
.image-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 9, 23, 0.34),
      transparent 32%,
      transparent 66%,
      rgba(4, 9, 23, 0.7)
    ),
    linear-gradient(90deg, rgba(4, 9, 23, 0.44), transparent 32%);
  pointer-events: none;
}
.scan-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 1px;
  top: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #8cbaff 25%,
    #fff 50%,
    #8cbaff 75%,
    transparent
  );
  box-shadow: 0 0 20px 3px rgba(78, 142, 255, 0.38);
  animation: scan 5.5s ease-in-out infinite;
  opacity: 0.85;
}
.metal-rings {
  opacity: 0;
  pointer-events: none;
}
.hero-visual::before {
  z-index: 2;
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}
.hero-visual::after {
  z-index: 2;
  width: 380px;
  height: 380px;
  border-color: rgba(255, 255, 255, 0.11);
}
.visual-label,
.dimension-card,
.quality-badge,
.vertical-label {
  z-index: 4;
}
.visual-label {
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #c0c9da;
}
.dimension-card {
  background: rgba(3, 8, 20, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
}
.quality-badge {
  transform: rotate(-1.4deg);
}
.hero-index {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 26px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: #fff;
}
.hero-index strong {
  font: 600 41px "Barlow Condensed";
}
.hero-index span {
  color: #6d7890;
  font-size: 9px;
}
.hero-ghost {
  bottom: -2.5vw;
  opacity: 0.65;
}
.process-rail {
  padding: 95px 0;
  background: #f5f5f0;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.process-grid p {
  margin: 0;
  color: #777f8d;
  font-size: 11px;
  line-height: 1.65;
}
.process-grid p span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}
.process-grid ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cbd0ca;
}
.process-grid li {
  position: relative;
  padding-top: 22px;
  color: var(--navy);
  font: 600 18px "Barlow Condensed";
  text-transform: uppercase;
}
.process-grid li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f5f5f0;
  border: 2px solid var(--red);
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.process-grid li:hover::before {
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(255, 73, 61, 0.13);
}
.process-grid li b {
  display: block;
  margin-bottom: 9px;
  color: #9ba19d;
  font: 600 9px Inter;
  letter-spacing: 1px;
}
.about {
  background: #fff;
}
.certifications article:nth-child(2) {
  transform: translateY(18px);
}
.certifications article:nth-child(2):hover {
  transform: translateY(11px);
}
.service-list article:nth-child(2),
.service-list article:nth-child(3) {
  background: linear-gradient(
    145deg,
    rgba(34, 69, 152, 0.18),
    rgba(255, 255, 255, 0.018)
  );
}
.product-card:nth-child(2),
.product-card:nth-child(5) {
  transform: translateY(24px);
}
.product-card:nth-child(2):hover,
.product-card:nth-child(5):hover {
  transform: perspective(900px) translateY(17px);
}
@keyframes scan {
  0%,
  100% {
    top: 4%;
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  50% {
    top: 93%;
    opacity: 0.75;
  }
  62% {
    opacity: 0;
  }
}
@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy::after {
    display: none;
  }
  .hero-visual {
    height: 620px;
    transform: none;
  }
  .hero-product-image {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .hero-index {
    bottom: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid ol {
    gap: 0;
  }
  .certifications article:nth-child(2) {
    transform: none;
  }
  .product-card:nth-child(2),
  .product-card:nth-child(5) {
    transform: none;
  }
}
@media (max-width: 520px) {
  .hero-visual {
    height: 500px;
    border-radius: 2px 70px 2px 70px;
  }
  .process-grid {
    gap: 38px;
  }
  .process-grid ol {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }
  .process-grid li {
    font-size: 16px;
  }
  .process-grid li:nth-child(4),
  .process-grid li:nth-child(5) {
    margin-top: 8px;
  }
  .quality-badge {
    max-width: 190px;
  }
  .hero-index {
    display: none;
  }
}

/* GC monogram */
.gc-mark {
  position: relative;
  isolation: isolate;
  display: block;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px 15px 4px 15px;
  background: linear-gradient(145deg, #111d3b, #050a17);
  box-shadow:
    inset 0 0 22px rgba(70, 113, 224, 0.18),
    0 0 28px rgba(255, 73, 61, 0.13);
  transform: rotate(-3deg);
  transition:
    transform 0.4s var(--ease),
    border-radius 0.4s var(--ease),
    box-shadow 0.4s;
}
.brand:hover .gc-mark {
  transform: rotate(0) scale(1.04);
  border-radius: 14px 4px 14px 4px;
  box-shadow:
    inset 0 0 24px rgba(70, 113, 224, 0.25),
    0 8px 30px rgba(255, 73, 61, 0.2);
}
.gc-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -50% 43% -50% auto;
  width: 1px;
  background: linear-gradient(transparent, #fff, transparent);
  opacity: 0.32;
  transform: rotate(28deg);
}
.gc-mark::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 3px rgba(255, 73, 61, 0.16),
    0 0 12px var(--red);
}
.gc-mark span {
  position: absolute;
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.gc-c {
  z-index: 1;
  left: 5px;
  top: 5px;
  font-size: 38px;
  opacity: 0.48;
  transform: scaleX(0.88);
}
.gc-g {
  z-index: 2;
  right: 5px;
  top: 14px;
  font-size: 28px;
  letter-spacing: -2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.gc-mark i {
  position: absolute;
  z-index: 3;
  left: 8px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  border-radius: 9px 0 0 0;
  opacity: 0.86;
}
.footer-brand .gc-mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}
.footer-brand .gc-c {
  font-size: 44px;
}
.footer-brand .gc-g {
  font-size: 33px;
  top: 16px;
}
.footer-brand .gc-mark i {
  width: 33px;
  height: 33px;
}

/* Reference-aligned hierarchy: G primary, C secondary */
.gc-mark {
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: #fff7f3;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.42),
    0 7px 22px rgba(0, 0, 0, 0.22);
  transform: none;
}
.brand:hover .gc-mark {
  border-radius: 50%;
  transform: scale(1.055) rotate(-4deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.62),
    0 10px 28px rgba(255, 73, 61, 0.24);
}
.gc-mark::before {
  z-index: 0;
  inset: 4px;
  width: auto;
  border: 1px solid rgba(189, 45, 37, 0.3);
  border-radius: 50%;
  background: none;
  opacity: 1;
  transform: none;
}
.gc-mark::after {
  right: 3px;
  bottom: 9px;
  width: 4px;
  height: 4px;
  background: #bd2d25;
  box-shadow:
    -43px -9px 0 #bd2d25,
    0 0 0 2px #fff7f3;
}
.gc-mark span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
}
.gc-g {
  z-index: 1;
  inset: 6px 4px auto 5px;
  color: #bd2d25;
  font-size: 39px;
  letter-spacing: -3px;
  text-align: center;
  text-shadow: none;
  transform: scaleX(0.92);
}
.gc-c {
  z-index: 2;
  left: 20px;
  top: 17px;
  color: #fff7f3;
  font-size: 21px;
  opacity: 1;
  transform: scaleX(0.84);
  text-shadow: 0 1px 2px rgba(126, 17, 11, 0.25);
}
.gc-mark i {
  z-index: 0;
  inset: 1px;
  width: auto;
  height: auto;
  border: 1px dashed rgba(189, 45, 37, 0.42);
  border-radius: 50%;
  opacity: 1;
  animation: gc-orbit 18s linear infinite;
}
.footer-brand .gc-g {
  inset: 7px 5px auto 6px;
  font-size: 46px;
}
.footer-brand .gc-c {
  left: 23px;
  top: 20px;
  font-size: 24px;
}
.footer-brand .gc-mark i {
  inset: 1px;
  width: auto;
  height: auto;
}
@keyframes gc-orbit {
  to {
    transform: rotate(360deg);
  }
}

/* High-contrast logo correction */
.gc-mark {
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.28);
}
.gc-mark::before {
  inset: 3px;
  border: 1.5px solid rgba(227, 59, 50, 0.5);
}
.gc-g {
  inset: 4px 3px auto 4px;
  color: #e33b32;
  font-size: 42px;
  filter: drop-shadow(0 1px 0 rgba(110, 12, 7, 0.12));
}
.gc-c {
  left: 20px;
  top: 16px;
  color: #08152f;
  font-size: 22px;
  text-shadow:
    0 0 2px #fff,
    0 0 5px #fff;
  font-weight: 800;
}
.gc-mark i {
  inset: -2px;
  border-color: rgba(255, 255, 255, 0.72);
}
.footer-brand .gc-g {
  inset: 5px 4px auto 5px;
  font-size: 49px;
}
.footer-brand .gc-c {
  left: 23px;
  top: 19px;
  color: #08152f;
  font-size: 26px;
}

/* Original supplied logo */
.brand-logo {
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.26);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand:hover .brand-logo {
  transform: scale(1.05) rotate(-3deg);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.34),
    0 10px 28px rgba(255, 73, 61, 0.2);
}
.footer-brand .brand-logo {
  width: 70px;
  height: 70px;
  flex-basis: 70px;
}
@media (max-width: 520px) {
  .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .footer-brand .brand-logo {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
}

/* Straight, seamless customer ticker */
.trust-bar {
  position: relative;
  width: 100%;
  height: 72px;
  margin: 0;
  transform: none;
  overflow: hidden;
  background: var(--red);
  border: 0;
}
.ticker {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  gap: 0;
  align-items: stretch;
  animation: ticker-aligned 65s linear infinite;
  will-change: transform;
}
.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 46px;
  height: 72px;
  padding-right: 46px;
  white-space: nowrap;
}
.ticker-group span {
  color: #672c37;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ticker-group strong {
  color: #fff;
  font:
    700 24px/1 "Barlow Condensed",
    sans-serif;
}
.ticker-group i {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-style: normal;
}
@keyframes ticker-aligned {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 520px) {
  .trust-bar,
  .ticker-group {
    height: 60px;
  }
  .ticker-group {
    gap: 30px;
    padding-right: 30px;
  }
  .ticker-group strong {
    font-size: 21px;
  }
}

/* Contact inquiry dialog */
body.dialog-open {
  overflow: hidden;
}
.contact-dialog {
  width: min(1040px, calc(100% - 40px));
  max-width: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #080f22;
  color: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  overflow: visible;
}
.contact-dialog[open] {
  animation: dialog-in 0.45s var(--ease);
}
.contact-dialog::backdrop {
  background: rgba(2, 6, 16, 0.78);
  backdrop-filter: blur(9px);
  animation: backdrop-in 0.3s ease;
}
.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 610px;
  overflow: hidden;
}
.dialog-shell::after {
  content: "GC";
  position: absolute;
  left: -18px;
  bottom: -55px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font:
    800 210px/0.8 "Barlow Condensed",
    sans-serif;
  pointer-events: none;
}
.dialog-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: 300 27px/1 Inter;
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s;
}
.dialog-close:hover,
.dialog-close:focus-visible {
  transform: rotate(90deg);
  background: var(--red);
}
.dialog-intro {
  position: relative;
  z-index: 1;
  padding: 70px 48px;
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(43, 88, 199, 0.35),
      transparent 42%
    ),
    #050a17;
  border-right: 1px solid #27334e;
}
.dialog-kicker {
  margin: 0 0 25px;
  color: #ff6b63;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.dialog-intro h2 {
  margin: 0;
  color: #fff;
  font:
    700 57px/0.88 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}
.dialog-intro > p:not(.dialog-kicker) {
  margin: 28px 0;
  color: #9ba7be;
  font-size: 12px;
  line-height: 1.8;
}
.direct-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 62px;
}
.direct-contact span {
  margin-bottom: 11px;
  color: #69758e;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.direct-contact a {
  margin: 4px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #38445e;
  color: #fff;
  font:
    600 20px "Barlow Condensed",
    sans-serif;
  transition: color 0.2s;
}
.direct-contact a:hover {
  color: #ff7068;
}
.direct-contact .business-id,
.contact .business-id {
  margin: 15px 0 0;
  color: #7f8ba2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  text-transform: uppercase;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 70px 58px 50px;
  background: #0b142a;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-form label > span {
  color: #9ba6bb;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #34415c;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 13px Inter;
  padding: 11px 0 13px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.contact-form textarea {
  min-height: 125px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5f6b82;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: linear-gradient(90deg, rgba(255, 73, 61, 0.045), transparent);
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: auto;
  padding-top: 12px;
}
.form-footer small {
  max-width: 210px;
  color: #68758d;
  font-size: 8px;
  line-height: 1.55;
}
.form-footer .button {
  cursor: pointer;
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 760px) {
  .contact-dialog {
    width: min(100% - 24px, 600px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
  }
  .dialog-shell {
    grid-template-columns: 1fr;
  }
  .dialog-intro {
    padding: 54px 30px 35px;
    border: 0;
    border-bottom: 1px solid #27334e;
  }
  .dialog-intro h2 {
    font-size: 45px;
  }
  .dialog-intro > p:not(.dialog-kicker) {
    max-width: 460px;
  }
  .direct-contact {
    margin-top: 28px;
  }
  .contact-form {
    padding: 40px 30px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .contact-dialog {
    width: 100%;
    max-height: 100dvh;
  }
  .dialog-intro,
  .contact-form {
    padding-left: 22px;
    padding-right: 22px;
  }
  .dialog-close {
    top: 12px;
    right: 12px;
  }
  .dialog-intro h2 {
    font-size: 39px;
  }
}

/* Home is intentionally a focused introduction matching the hero concept. */
.home-page main > .section,
.home-page main > .process-rail,
.home-page footer {
  display: none;
}
.home-page .hero-actions {
  min-height: 51px;
}
.home-page .hero-actions .text-link {
  padding: 15px 0 8px;
}

/* Desktop viewport fit and tighter inner-page rhythm. */
@media (min-width: 851px) {
  .home-page .hero-grid {
    min-height: calc(100svh - 154px);
  }
  .home-page .hero-copy {
    padding: clamp(38px, 5vh, 68px) 40px 38px 0;
  }
  .home-page .hero h1 {
    font-size: clamp(68px, 6.4vw, 100px);
  }
  .home-page .hero-intro {
    margin-block: 22px;
  }
  .home-page .hero-stats {
    margin-top: clamp(28px, 4vh, 46px);
  }
  .home-page .hero-visual {
    height: min(620px, calc(100svh - 190px));
    min-height: 480px;
  }

  .page-hero {
    min-height: 430px;
    padding: 78px 0 58px;
  }
  .page-hero .breadcrumb {
    margin-bottom: 26px;
  }
  .page-hero .page-intro {
    margin-top: 24px;
  }
  .inner-section {
    padding: 82px 0;
  }
  .inner-split {
    gap: 72px;
  }
  .feature-grid {
    margin-top: 44px;
  }
  .feature-card {
    min-height: 205px;
  }
  .feature-card h3 {
    margin-top: 38px;
  }
  .page-cta {
    padding: 68px 0;
  }
  footer {
    padding-top: 82px;
  }
  .footer-grid h2 {
    margin-top: 34px;
  }
  .footer-bottom {
    margin-top: 48px;
  }
}

/* Compact editorial headers for the dedicated content pages. */
.page-main .page-hero {
  min-height: 320px;
  padding: 42px 0;
  align-items: center;
}
.page-main .page-hero > .container {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: clamp(48px, 7vw, 110px);
}
.page-main .page-hero h1 {
  max-width: 860px;
  font-size: clamp(52px, 4.7vw, 68px);
  line-height: 0.84;
  white-space: nowrap;
}
.page-main .page-hero .page-intro {
  max-width: 470px;
  margin: 0 0 4px;
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  line-height: 1.75;
}
.page-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.page-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 51px;
  padding: 15px 22px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(255, 73, 61, 0.18);
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.page-hero-action span {
  font-size: 18px;
}
.page-hero-action:hover,
.page-hero-action:focus-visible {
  transform: translateY(-3px);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}
.page-main .page-hero::after {
  right: 1vw;
  bottom: -7vw;
  font-size: 18vw;
  opacity: 0.72;
}

@media (max-width: 850px) {
  .page-main .page-hero {
    min-height: 350px;
    padding: 54px 0 48px;
  }
  .page-main .page-hero > .container {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }
  .page-main .page-hero h1 {
    font-size: clamp(52px, 13vw, 70px);
    white-space: normal;
  }
  .page-main .page-hero .page-intro {
    max-width: 560px;
    padding-left: 18px;
  }
}
.honey-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.product-art.product-photo {
  background: #fff;
}
.product-art.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
}
.product-card:hover .product-art.product-photo img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.08);
}

/* Inner pages */
.page-main {
  padding-top: 82px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  padding: 105px 0 75px;
  background: #070d1e;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(#000, transparent);
}
.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  font:
    800 22vw/0.75 "Barlow Condensed",
    sans-serif;
  white-space: nowrap;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 38px;
  color: #8290a8;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.page-hero .breadcrumb a {
  color: #ff665e;
}
.page-hero h1 {
  max-width: 950px;
  margin: 0;
  color: #fff;
  font:
    700 clamp(70px, 9vw, 126px) / 0.78 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}
.page-hero h1 em {
  color: var(--red);
  font-style: normal;
}
.page-hero .page-intro {
  max-width: 560px;
  margin: 35px 0 0 40%;
  color: #a8b3c8;
  font-size: 15px;
  line-height: 1.8;
}
.nav-links a[aria-current="page"] {
  color: #fff;
}
.nav-links a[aria-current="page"]::after {
  right: 0 !important;
}
.inner-section {
  padding: 110px 0;
}
.inner-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}
.inner-split h2 {
  margin: 0;
  color: var(--navy);
  font:
    700 clamp(48px, 5vw, 72px) / 0.88 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.inner-copy {
  padding-left: 45px;
  border-left: 1px solid var(--line);
}
.inner-copy p {
  color: #667085;
  font-size: 14px;
  line-height: 1.85;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 65px;
}
.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #f7f8f5;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 50px rgba(15, 28, 57, 0.1);
}
.feature-card > span {
  color: var(--red);
  font-size: 10px;
}
.feature-card h3 {
  margin: 55px 0 10px;
  color: var(--navy);
  font:
    600 28px "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.feature-card p {
  margin: 0;
  color: #77808d;
  font-size: 11px;
  line-height: 1.7;
}
.inner-dark {
  background: #070d1e;
  color: #fff;
}
.inner-dark h2 {
  color: #fff;
}
.inner-dark .feature-card {
  border-color: #26324c;
  background: rgba(255, 255, 255, 0.035);
}
.inner-dark .feature-card h3 {
  color: #fff;
}
.inner-dark .feature-card p {
  color: #9aa7bd;
}
.page-cta {
  padding: 90px 0;
  background: var(--red);
  color: #fff;
}
.page-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.page-cta h2 {
  margin: 0;
  font:
    700 clamp(44px, 5vw, 70px) / 0.9 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.page-cta .button {
  background: #fff;
  color: var(--navy);
}
@media (max-width: 850px) {
  .page-hero {
    min-height: 480px;
  }
  .page-hero .page-intro {
    margin-left: 0;
  }
  .inner-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inner-copy {
    padding-left: 0;
    border: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .page-hero {
    min-height: 430px;
    padding-bottom: 55px;
  }
  .page-hero h1 {
    font-size: 64px;
  }
  .inner-section {
    padding: 80px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-cta {
    padding: 70px 0;
  }
}

/* Accessible mobile navigation drawer */
@media (max-width: 850px) {
  .site-header {
    z-index: 100;
    height: 82px;
    overflow: visible;
  }
  .nav {
    position: relative;
    z-index: 2;
  }
  .menu-toggle {
    z-index: 102;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }
  .nav-links {
    z-index: 101;
    inset: 82px 0 0;
    min-height: calc(100dvh - 82px);
    height: calc(100dvh - 82px);
    padding: clamp(28px, 7vh, 64px) 24px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 0;
    background: linear-gradient(145deg, #0b1630 0%, #050a17 72%);
    color: #fff;
    opacity: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.38s var(--ease),
      opacity 0.28s ease,
      visibility 0.38s;
  }
  .nav-links::before {
    content: "NAVIGATION";
    display: block;
    margin-bottom: 18px;
    color: #ff6a62;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.4px;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links > a:not(.button) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: #f6f8fc;
    font:
      600 clamp(27px, 8vw, 38px) / 1 "Barlow Condensed",
      sans-serif;
    letter-spacing: 0.02em;
  }
  .nav-links > a:not(.button)::before {
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    margin-right: 18px;
    color: #61708f;
    font:
      600 9px Inter,
      sans-serif;
    letter-spacing: 1px;
  }
  .nav-links {
    counter-reset: nav-item;
  }
  .nav-links > a:not(.button)::after {
    position: static;
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-left: auto;
    border-radius: 50%;
    background: #38445e;
    transition:
      background 0.25s,
      box-shadow 0.25s;
  }
  .nav-links > a[aria-current="page"] {
    color: #ff625a;
  }
  .nav-links > a[aria-current="page"]::after {
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(255, 73, 61, 0.14);
  }
  .nav-links .button {
    width: 100%;
    min-height: 58px;
    margin-top: 28px;
    padding: 16px 20px;
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    font-size: 11px;
  }
  .nav-links .button:hover,
  .nav-links .button:focus-visible {
    background: #fff;
    color: #070d1e;
  }
}
@media (max-width: 420px) {
  .nav-links {
    padding-inline: 18px;
  }
  .nav-links > a:not(.button) {
    min-height: 60px;
  }
}

/* Footer readability safeguard: compact, but never faint or undersized. */
body > footer {
  padding: 26px 0 12px;
}
body > footer .footer-grid {
  align-items: start;
}
body > footer .contact {
  row-gap: 8px;
}
body > footer .contact > a {
  padding-bottom: 4px;
  border-color: #65728c;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
}
body > footer .contact .business-id {
  margin-top: 4px;
  color: #c6cede;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.8px;
}
body > footer .contact address {
  width: 100%;
  max-width: 520px;
  margin-top: 0;
  color: #c6cede;
  font-size: 12px;
  line-height: 1.55;
}
body > footer .footer-bottom {
  color: #aeb9cc;
  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 850px) {
  body > footer {
    padding-top: 24px;
  }
  body > footer .footer-grid {
    grid-template-columns: minmax(250px, 0.9fr) minmax(330px, 1.1fr);
  }
}

@media (max-width: 620px) {
  body > footer .footer-grid {
    grid-template-columns: 1fr;
  }
  body > footer .contact {
    grid-template-columns: 1fr;
  }
  body > footer .contact .business-id,
  body > footer .contact address {
    grid-column: auto;
  }
}

/* Final light-theme cascade guard: intentionally last. */
.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: #dce2ea;
  box-shadow: 0 10px 34px rgba(18, 38, 76, 0.08);
}
.site-header .brand-name strong,
.site-header .nav-links {
  color: #10244d;
}
.site-header .nav-links > a:not(.button) {
  color: #4d5b70;
}
.site-header .nav-links > a:not(.button):hover,
.site-header .nav-links > a[aria-current="page"] {
  color: #10244d;
}
.site-header .button-dark {
  border-color: #cad2df;
  background: #fff;
  color: #10244d;
}
.site-header .button-dark:hover,
.site-header .button-dark:focus-visible {
  border-color: #10244d;
  background: #10244d;
  color: #fff;
}
.site-header .menu-toggle {
  border-color: #cbd3df;
  background: #f5f7fa;
}
.site-header .menu-toggle > span:not(.sr-only) {
  background: #10244d;
}
.hero {
  background: #f3f6fb;
  color: #172033;
}
.hero h1,
.hero h1 > span {
  color: #10244d;
}
.hero h1 em:first-of-type span {
  color: transparent;
  -webkit-text-stroke-color: #e24940;
}
.hero h1 em:last-of-type span {
  color: #e24940;
}
.hero .hero-intro {
  color: #59677c;
}
.hero .hero-stats {
  color: #10244d;
  border-color: #cdd5e1;
}
.hero .hero-stats > div {
  border-color: #cdd5e1;
}
.hero .hero-stats strong {
  color: #10244d;
}
.hero .hero-stats small,
.hero .scroll-cue {
  color: #68768c;
}
.services-page .feature-card:nth-child(n) {
  border-color: #d6dde5;
  background: #fff;
  color: #172033;
  box-shadow: 0 12px 30px rgba(24, 45, 82, 0.07);
}
.services-page .feature-card:nth-child(2),
.services-page .feature-card:nth-child(5) {
  background: #edf2fa;
}
.services-page .feature-card:nth-child(3) {
  background: #fff0ee;
}
.services-page .feature-card h3,
.services-page .feature-card p,
.services-page .feature-card span {
  color: inherit;
}
@media (max-width: 850px) {
  .site-header .nav-links {
    background: linear-gradient(145deg, #fff 0%, #eef2f7 100%);
    color: #10244d;
    box-shadow: -20px 25px 50px rgba(16, 36, 77, 0.14);
  }
  .site-header .nav-links > a:not(.button) {
    border-color: #d2dae5;
    color: #10244d;
  }
}

/* Readability guard for light surfaces. */
.hero .hero-actions .text-link {
  border-color: #718097;
  color: #10244d;
}

.hero .hero-actions .text-link:hover,
.hero .hero-actions .text-link:focus-visible {
  border-color: #e24940;
  color: #c73530;
}

body > footer .contact > a {
  border-color: #74839a;
  color: #10244d;
}

body > footer .contact > a:hover,
body > footer .contact > a:focus-visible {
  border-color: #e24940;
  color: #c73530;
}

body > footer .contact .business-id,
body > footer .contact address {
  color: #43536a;
}

body > footer .footer-bottom,
body > footer .footer-bottom span {
  color: #536177;
}

/* WCAG-conscious contrast refinements across shared labels and controls. */
:root {
  --red: #c73530;
}

.brand-name small,
.eyebrow,
.services-kicker,
.quality-kicker,
.page-hero h1 em,
.certifications span,
.product-card small,
.client-wall-heading p {
  color: #b52d29;
}

.button-red,
.trust-bar {
  background-color: #c73530;
}

.button-red {
  border-color: #c73530;
  color: #fff;
}

.button-red:hover,
.button-red:focus-visible {
  background-color: #a92522;
  border-color: #a92522;
  color: #fff;
}

.hero .eyebrow {
  color: #b52d29;
}

.hero .hero-stats small,
.hero .scroll-cue,
.hero-index span {
  color: #526177;
}

.dimension-card,
.dimension-card strong {
  color: #fff;
}

.dimension-card small {
  color: #cbd5e6;
}

.certifications p,
.product-card p,
.feature-card p,
.quality-summary p {
  color: #4d5b70;
}

.service-method-steps span,
.service-method-steps small,
.quality-metrics span {
  color: #4b5a70;
}

.ticker-group > span,
.ticker-group > i {
  color: #fff;
  opacity: 1;
}

.hero-visual .quality-badge small {
  color: #4b596d;
}

.ticker-pvg small {
  color: #176f35;
  font-size: 8px;
}

.service-method-heading p {
  color: #b52d29;
}

.quality-metrics span {
  color: #43536a;
}

.quality-direction .quality-kicker {
  color: #ffaaa5;
}

/* Keep the inquiry experience consistent with the light site theme. */
.contact-dialog {
  border-color: #cfd7e3;
  background: #fff;
  color: #172033;
  box-shadow: 0 40px 100px rgba(16, 36, 77, 0.25);
}

.dialog-intro {
  background: #edf2f8;
  color: #172033;
}

.dialog-intro h2,
.direct-contact a {
  color: #10244d;
}

.dialog-intro > p:not(.dialog-kicker),
.direct-contact span {
  color: #526177;
}

.direct-contact a {
  border-color: #8290a4;
}

.contact-form {
  background: #fff;
  color: #172033;
}

.contact-form label > span,
.form-footer small {
  color: #43536a;
}

.contact-form input,
.contact-form textarea {
  border-color: #aeb9c8;
  background: #f7f9fb;
  color: #172033;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #65748a;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c73530;
  background: #fff;
}

.dialog-close {
  border-color: #c73530;
  background: #c73530;
  color: #fff;
}

.hero .hero-stats small,
.service-method-steps span,
.service-method-steps small,
.quality-metrics span,
.contact-form label > span,
.form-footer small,
body > footer .footer-bottom {
  font-size: 10px;
  line-height: 1.5;
}

/* Colored structural panels: navy framing with a vivid blue page banner. */
.site-header,
.site-header.scrolled {
  background: rgba(10, 25, 54, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 34px rgba(10, 25, 54, 0.2);
}

.site-header .brand-name strong,
.site-header .nav-links,
.site-header .nav-links > a:not(.button),
.site-header .nav-links > a:not(.button):hover,
.site-header .nav-links > a[aria-current="page"] {
  color: #fff;
}

.site-header .nav-links > a:not(.button)::after {
  background: #ff7169;
}

.site-header .button-dark {
  border-color: #d14a44;
  background: #c73530;
  color: #fff;
}

.site-header .button-dark:hover,
.site-header .button-dark:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #10244d;
}

.site-header .menu-toggle {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.site-header .menu-toggle > span:not(.sr-only) {
  background: #fff;
}

body .page-main .page-hero,
.page-main .page-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(90, 149, 222, 0.28), transparent 32%),
    linear-gradient(125deg, #112b56 0%, #1e497c 58%, #285d92 100%);
  color: #fff;
  border-bottom-color: #315f91;
}

.page-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

body .page-main .page-hero h1,
.page-hero h1 {
  color: #fff;
}

.page-hero h1 em {
  color: #ffaaa5;
}

/* Charcoal-teal outer frame to complement the teal page banners. */
.site-header,
.site-header.scrolled {
  background: rgba(7, 31, 38, 0.98);
  border-bottom-color: rgba(118, 196, 197, 0.18);
  box-shadow: 0 10px 34px rgba(5, 24, 30, 0.22);
}

body > footer {
  background: #092f36;
  border-top-color: #28646a;
}

body > footer .footer-bottom {
  border-color: rgba(167, 215, 216, 0.2);
}

@media (max-width: 850px) {
  .site-header .nav-links {
    background: linear-gradient(145deg, #092f36 0%, #104751 100%);
    box-shadow: -20px 25px 50px rgba(5, 24, 30, 0.34);
  }
}

/* Final brand palette: navy frame with a light steel page banner. */
.site-header,
.site-header.scrolled {
  background: #0b1f42;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 34px rgba(11, 31, 66, 0.2);
}

body .page-main .page-hero,
.page-main .page-hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(64, 80, 105, 0.07), transparent 36%),
    linear-gradient(125deg, #f8f9fb 0%, #f0f2f5 58%, #e7eaee 100%);
  color: #10244d;
  border-bottom-color: #d5d9df;
}

.page-hero::before {
  opacity: 0.65;
  background:
    linear-gradient(rgba(16, 36, 77, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 77, 0.07) 1px, transparent 1px);
}

body .page-main .page-hero h1,
.page-hero h1 {
  color: #10244d;
}

.page-hero h1 em {
  color: #b52d29;
}

body .page-main .page-hero .page-intro,
.page-hero .page-intro {
  color: #43536a;
}

/* Exact line-icon and alignment treatment for the reference About page. */
.about-icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.about-certifications {
  align-items: stretch;
}

.about-cert-card {
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 112px;
  height: 100%;
  align-items: center;
}

.about-cert-icon {
  display: block;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
}

.about-cert-icon svg,
.about-strength-grid i svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.about-cert-card > div {
  display: grid;
  align-content: center;
  min-height: 74px;
}

.about-cert-card h2 {
  min-height: 20px;
}

.about-strength-grid {
  align-items: stretch;
}

.about-strength-grid article {
  display: grid;
  grid-template-rows: 44px 31px 1fr;
  align-items: start;
}

.about-strength-grid i {
  width: 42px;
  height: 42px;
  min-height: 42px;
  margin: 0 auto;
}

.about-strength-grid h3 {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  margin: 5px 0 7px;
}

.about-reference .client-wall-heading {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.about-reference .client-wall {
  border-top: 0;
}
.about-reference .about-capability-layout {
  grid-template-columns: calc(66.666667% - 4.6667px) minmax(0, 1fr);
}
.about-reference .about-intro-panel p,
.about-reference .about-cert-card p,
.about-reference .about-strength-intro,
.about-reference .about-strength-grid article p,
.about-reference .about-applications li {
  color: #111;
}
.about-reference .about-intro-panel p {
  font-size: 15px;
  line-height: 1.55;
}
.about-reference .about-cert-card p {
  font-size: 12px;
  line-height: 1.45;
}
.about-reference .about-strength-intro {
  font-size: 13px;
  line-height: 1.55;
}
.about-reference .about-strength-grid article p {
  font-size: 11px;
  line-height: 1.45;
}
.about-reference .about-applications li {
  font-size: 12px;
  line-height: 1.45;
}

.about-reference .client-wall-heading::after {
  display: none;
}

.about-reference .client-wall-heading > p,
.about-reference .client-wall-heading > h2 {
  margin: 0;
  white-space: nowrap;
}

.about-reference .client-wall-heading > span {
  width: 100%;
  height: 1px;
  background: #d9827e;
}

.about-reference .client-logo-grid {
  gap: 4px;
  border: 0;
  background: transparent;
}

.about-reference .client-logo {
  min-height: 76px;
  border: 1px solid #d6dce4;
}

@media (max-width: 620px) {
  .about-reference .client-wall-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-reference .client-wall-heading > span {
    display: none;
  }

  .about-reference .client-wall-heading > p,
  .about-reference .client-wall-heading > h2 {
    white-space: normal;
  }
}

/* Definitive corporate typography and readability rules. */
body,
body *,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

.home-page .hero h1 {
  font-size: clamp(44px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-page .hero-intro {
  color: #111;
  font-size: 14px;
  line-height: 1.55;
}

.home-page .hero-stats strong {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  white-space: nowrap;
}

.home-page .hero-stats small {
  color: #111;
  font-size: 11px;
  line-height: 1.35;
}

.about-reference .about-reference-intro {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
}
.about-reference .about-reference-title h1 {
  font-size: clamp(28px, 2.55vw, 38px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.about-reference .about-intro-panel p,
.about-reference .about-cert-card p,
.about-reference .about-strength-intro,
.about-reference .about-strength-grid article p,
.about-reference .about-applications li {
  color: #111;
}

.about-reference .about-intro-panel p {
  font-size: 15px;
  line-height: 1.55;
}

.about-reference .about-cert-card p {
  font-size: 12px;
  line-height: 1.45;
}

.about-reference .about-strength-intro {
  font-size: 13px;
  line-height: 1.55;
}

.about-reference .about-strength-grid h3 {
  min-height: 48px;
  margin: 5px 0 7px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}
.about-reference .about-strength-grid article {
  grid-template-rows: 44px minmax(48px, auto) 1fr;
}

.about-reference .about-strength-grid article p {
  font-size: 11px;
  line-height: 1.45;
}

.about-reference .about-applications li {
  font-size: 12px;
  line-height: 1.45;
}

.about-reference .about-capability-layout {
  grid-template-columns: calc(66.666667% - 4.6667px) minmax(0, 1fr);
}

.about-reference .client-wall {
  border-top: 0;
}

.services-page .inner-copy p,
.services-page .feature-card p,
.services-page .service-method-steps small,
.products-page .product-section-heading > p,
.products-page .product-details,
.quality-page .quality-summary > p,
.quality-page .quality-stage > p {
  color: #111;
}

.services-page .inner-copy p,
.products-page .product-section-heading > p,
.quality-page .quality-summary > p {
  font-size: 15px;
  line-height: 1.6;
}

.services-page .feature-card p,
.quality-page .quality-stage > p {
  font-size: 14px;
  line-height: 1.55;
}

.services-page .service-method-steps small,
.products-page .product-details {
  font-size: 13px;
  line-height: 1.5;
}

.quality-page .quality-direction-grid article p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.about-reference .about-cert-card small,
.services-page .services-kicker,
.services-page .feature-card > span,
.services-page .service-method-heading > p,
.products-page .product-kicker,
.products-page .product-card > small,
.quality-page .quality-kicker,
.quality-page .quality-stage small {
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .about-reference .about-capability-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .about-reference .about-reference-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Final Products-page responsive typography and advantages layout. */
.products-page .product-benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.products-page .product-benefits strong {
  grid-column: 1 / -1;
  margin-right: 0;
}

.products-page .product-benefits span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
}

@media (max-width: 900px) {
  .products-page .product-section-heading {
    padding-bottom: 20px;
  }

  .products-page .product-section-heading h2 {
    font-size: 27px;
    line-height: 0.96;
  }

  .products-page .product-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-page .product-benefits strong {
    width: auto;
    margin-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .products-page .product-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products-page .product-section-heading {
    padding-bottom: 20px;
  }

  .products-page .product-section-heading h2 {
    font-size: 31px;
    line-height: 0.94;
  }
}

/* Consistent display lettering for the complete homepage headline. */
.home-page .hero h1,
.home-page .hero h1 span,
.home-page .hero h1 em {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif !important;
  font-style: normal;
  font-variant-ligatures: none;
  text-rendering: geometricPrecision;
}
.home-page .hero h1 em:first-of-type span {
  color: transparent;
  -webkit-text-stroke: 1.4px #e24940;
  paint-order: stroke fill;
}

/* Stronger homepage product showcase treatment. */
.home-page .hero-product-showcase {
  border: 1px solid rgba(10, 37, 78, 0.2);
  background:
    radial-gradient(circle at 50% 48%, rgba(44, 91, 157, 0.1), transparent 46%),
    #ffffff;
  box-shadow:
    0 28px 65px rgba(8, 31, 67, 0.2),
    0 8px 22px rgba(8, 31, 67, 0.12);
}
.home-page .hero-product-showcase .hero-product-slides {
  inset: 8px;
  background: #fff;
}
.home-page .hero-product-showcase .hero-product-slide img {
  filter: saturate(1.12) contrast(1.2) brightness(0.98);
}
.home-page .hero-product-showcase:hover .hero-product-slide img {
  filter: saturate(1.2) contrast(1.24) brightness(1);
}
.home-page .hero-product-showcase .image-vignette {
  background:
    linear-gradient(
      180deg,
      rgba(7, 22, 48, 0.12),
      transparent 24%,
      transparent 74%,
      rgba(7, 22, 48, 0.24)
    ),
    linear-gradient(90deg, rgba(7, 22, 48, 0.08), transparent 30%);
}

.about-reference .client-logo:hover strong,
.about-reference .client-logo:hover small,
.about-reference .client-logo:focus-visible strong,
.about-reference .client-logo:focus-visible small {
  color: inherit;
}

.about-reference .client-logo.logo-rane:hover strong,
.about-reference .client-logo.logo-rane:focus-visible strong {
  color: #fff;
}

.home-page .hero-intro,
.home-page .hero-stats small,
.about-reference .about-intro-panel p,
.about-reference .about-cert-card p,
.about-reference .about-strength-intro,
.about-reference .about-strength-grid article p,
.about-reference .about-applications li,
.services-page .inner-copy p,
.services-page .feature-card p,
.services-page .service-method-steps small,
.products-page .product-section-heading > p,
.products-page .product-details,
.quality-page .quality-summary > p,
.quality-page .quality-stage > p {
  font-weight: 500;
}

.about-reference .client-logo,
.about-reference .client-logo:hover,
.about-reference .client-logo:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  border-color: #d6dce4;
  transform: none;
  transition: none;
}
@media (max-width: 1100px) {
  .about-reference .about-capability-layout {
    grid-template-columns: 1fr;
  }
}

/* Consistent readable body copy across all inner pages. */
.services-page .inner-copy p,
.services-page .feature-card p,
.services-page .service-method-steps small,
.products-page .product-section-heading > p,
.products-page .product-details,
.quality-page .quality-summary > p,
.quality-page .quality-stage > p,
.quality-page .quality-direction-grid article p {
  color: #111;
}

.services-page .inner-copy p,
.products-page .product-section-heading > p,
.quality-page .quality-summary > p,
.quality-page .quality-direction-grid article p {
  font-size: 15px;
  line-height: 1.6;
}

.services-page .feature-card p,
.quality-page .quality-stage > p {
  font-size: 14px;
  line-height: 1.55;
}

.services-page .service-method-steps small,
.products-page .product-details {
  font-size: 13px;
  line-height: 1.5;
}

.quality-page .quality-direction-grid article p {
  color: #fff;
}

.home-page .hero-intro,
.home-page .hero-stats small {
  color: #111;
}

.home-page .hero-intro {
  font-size: 16px;
  line-height: 1.6;
}

.home-page .hero-stats small {
  font-size: 11px;
  line-height: 1.35;
}

/* Corporate typography: one highly legible family across the website. */
body,
body *,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

.about-reference .about-strength-grid h3 {
  min-height: 34px;
  margin: 5px 0 7px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.about-reference .about-cert-card small,
.services-page .services-kicker,
.services-page .feature-card > span,
.services-page .service-method-heading > p,
.products-page .product-kicker,
.products-page .product-card > small,
.quality-page .quality-kicker,
.quality-page .quality-stage small {
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.home-page .hero h1 {
  font-size: clamp(44px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-page .hero-stats strong {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  white-space: nowrap;
}

.about-reference .about-intro-title h1 {
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

/* About page rebuilt from the supplied reference layout. */
.about-page .about-reference-section {
  padding: 32px 0 48px;
  background:
    radial-gradient(circle at 12% 10%, rgba(33, 76, 145, 0.045), transparent 30%),
    #f8f9fb;
}

.about-reference-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: center;
}

.about-reference-title .section-page-label {
  margin-bottom: 14px;
}

.about-reference-title h1 {
  margin: 0;
  color: #0b1f42;
  font: 700 clamp(38px, 3vw, 46px) / 0.93 "Barlow Condensed", sans-serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.about-reference-title h1 em {
  color: #c72f2b;
  font-style: normal;
}

.about-reference-copy {
  padding: 25px 30px;
  border: 1px solid #d7dce3;
  border-left: 3px solid #c73530;
  background: rgba(255, 255, 255, 0.78);
  color: #172033;
  box-shadow: 0 12px 35px rgba(22, 42, 76, 0.035);
}

.about-reference-copy p {
  margin: 0 0 15px;
  font-size: 13px;
  line-height: 1.65;
}

.about-reference-copy p:last-child {
  margin-bottom: 0;
}

.about-reference-copy strong {
  color: #b52d29;
  font-weight: 800;
  text-transform: uppercase;
}

.about-certifications {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-cert-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid #d6dce4;
  background: rgba(255, 255, 255, 0.76);
}

.about-cert-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid #d52f2b;
  border-radius: 50%;
  color: #c72f2b;
  font: 800 28px/1 "Barlow Condensed", sans-serif;
}

.about-cert-card small {
  color: #273754;
  font-size: 10px;
  font-weight: 700;
}

.about-cert-card h2 {
  margin: 2px 0 5px;
  color: #0b1f42;
  font: 700 20px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.about-cert-card p {
  margin: 0;
  color: #4d5b70;
  font-size: 10px;
  line-height: 1.45;
}

.about-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  margin-top: 18px;
}

.about-strength-panel,
.about-applications {
  padding: 18px 20px;
  border: 1px solid #d6dce4;
  background: rgba(255, 255, 255, 0.76);
}

.about-panel-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}

.about-panel-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #b52d29;
  font: 800 16px/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.about-panel-heading span {
  height: 1px;
  flex: 1;
  background: #df8e8a;
}

.about-strength-intro {
  max-width: 910px;
  margin: 14px 0 15px;
  color: #35445a;
  font-size: 11px;
  line-height: 1.6;
}

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

.about-strength-grid article {
  min-width: 0;
  padding: 4px 14px 0;
  border-right: 1px solid #dce1e7;
  text-align: center;
}

.about-strength-grid article:first-child {
  padding-left: 0;
}

.about-strength-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-strength-grid i {
  display: block;
  min-height: 38px;
  color: #d22f2b;
  font: 700 34px/1 "Barlow Condensed", sans-serif;
  font-style: normal;
}

.about-strength-grid h3 {
  min-height: 28px;
  margin: 6px 0 7px;
  color: #0b1f42;
  font: 700 12px/1.15 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.about-strength-grid p {
  margin: 0;
  color: #4d5b70;
  font-size: 9px;
  line-height: 1.5;
}

.about-strength-grid strong {
  color: #c72f2b;
}

.about-applications ul {
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.about-applications li {
  position: relative;
  padding-left: 25px;
  color: #26364e;
  font-size: 10px;
  line-height: 1.4;
}

.about-applications li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid #d22f2b;
  border-radius: 50%;
  color: #c72f2b;
  font-size: 8px;
  font-weight: 800;
}

.about-reference .client-wall {
  margin-top: 22px;
  padding-top: 0;
}

.about-reference .client-wall-heading {
  margin-bottom: 12px;
}

.about-reference .client-wall-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #df8e8a;
}

.about-reference .client-logo-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.about-reference .client-logo {
  min-height: 68px;
  background: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1100px) {
  .about-capability-layout {
    grid-template-columns: 1fr;
  }

  .about-reference .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .about-page .about-reference-section {
    padding-top: 36px;
  }

  .about-reference-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-certifications {
    grid-template-columns: 1fr;
  }

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

  .about-strength-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .about-reference-title h1 {
    font-size: 41px;
  }

  .about-reference-copy,
  .about-strength-panel,
  .about-applications {
    padding: 18px;
  }

  .about-strength-grid {
    grid-template-columns: 1fr;
  }

  .about-strength-grid article {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #dce1e7;
  }

  .about-strength-grid article:last-child {
    border-bottom: 0;
  }

  .about-reference .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Fit the complete homepage and client ticker at 100% zoom on standard laptops. */
@media (min-width: 851px) {
  .home-page .hero-grid {
    min-height: calc(100svh - 154px);
  }

  .home-page .hero-copy {
    padding: 24px 40px 24px 0;
  }

  .home-page .hero .hero-copy > .eyebrow {
    margin-bottom: 14px;
    padding: 10px 16px;
  }

  .home-page .hero h1 {
    font-size: clamp(68px, 6vw, 78px);
  }

  .home-page .hero-intro {
    margin: 14px 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .home-page .hero-actions .button {
    min-height: 54px;
    padding-block: 14px;
  }

  .home-page .hero-stats {
    margin-top: 20px;
    padding-top: 18px;
  }

  .home-page .hero-visual {
    height: min(560px, calc(100svh - 190px));
    min-height: 450px;
  }
}

/* Final single-border homepage capability label. */
.home-page .hero .hero-copy > .eyebrow {
  width: fit-content;
  max-width: 100%;
  min-height: 0;
  margin: 0 0 22px;
  padding: 13px 18px;
  border: 2px solid #c73530;
  background: rgba(255, 255, 255, 0.72);
}

.home-page .hero .hero-copy > .eyebrow strong {
  display: flex;
  width: auto;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: #8f201d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-page .hero .hero-copy > .eyebrow strong::before,
.home-page .hero .hero-copy > .eyebrow strong::after {
  content: "";
  display: block;
  flex: 0 0 22px;
  height: 2px;
  background: #c73530;
}

/* Boxed homepage capability label. */
.home-page .hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin: 0 0 22px;
  padding: 9px 13px;
  border: 1px solid #c73530;
  background: rgba(255, 255, 255, 0.58);
  color: #9f2724;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .hero .eyebrow > span {
  display: none;
}

/* Compact inner-page identity band: page context, not a second hero. */
body .page-main .page-hero,
.page-main .page-hero {
  min-height: 0;
  padding: 28px 0 30px;
}

body .page-main .page-hero > .container,
.page-main .page-hero > .container {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  min-height: 72px;
}

body .page-main .page-hero h1,
.page-main .page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.page-main .page-hero .page-hero-aside {
  align-self: center;
}

body .page-main .page-hero .page-intro,
.page-main .page-hero .page-intro {
  max-width: 660px;
  margin: 0;
  padding: 3px 0 3px 22px;
  border-left: 2px solid #c73530;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 850px) {
  body .page-main .page-hero,
  .page-main .page-hero {
    padding: 24px 0 26px;
  }

  body .page-main .page-hero > .container,
  .page-main .page-hero > .container {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    min-height: 64px;
  }

  body .page-main .page-hero h1,
  .page-main .page-hero h1 {
    font-size: clamp(31px, 5vw, 39px);
  }
}

@media (max-width: 620px) {
  body .page-main .page-hero,
  .page-main .page-hero {
    padding: 21px 0 23px;
  }

  body .page-main .page-hero > .container,
  .page-main .page-hero > .container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body .page-main .page-hero h1,
  .page-main .page-hero h1 {
    font-size: 34px;
  }

  body .page-main .page-hero .page-intro,
  .page-main .page-hero .page-intro {
    padding-left: 15px;
    font-size: 11px;
  }
}

body > footer {
  background: #0b1f42;
  border-top-color: #294571;
}

body > footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 850px) {
  .site-header .nav-links {
    background: linear-gradient(145deg, #0b1f42 0%, #15325f 100%);
    box-shadow: -20px 25px 50px rgba(6, 17, 39, 0.32);
  }
}

body .page-main .page-hero .page-intro,
.page-hero .page-intro {
  color: #dce8f7;
}

body > footer {
  background: #10244d;
  color: #fff;
  border-top-color: #294571;
}

body > footer .footer-grid h2,
body > footer .footer-brand .brand-name strong {
  color: #fff;
}

body > footer .contact > a {
  border-color: #91a8c9;
  color: #fff;
}

body > footer .contact > a:hover,
body > footer .contact > a:focus-visible {
  border-color: #ffaaa5;
  color: #ffcbc7;
}

body > footer .contact .business-id,
body > footer .contact address {
  color: #d7e1f0;
}

body > footer .footer-bottom,
body > footer .footer-bottom span {
  color: #bfcde1;
}

body > footer .footer-bottom {
  border-color: rgba(255, 255, 255, 0.2);
}

body > footer::after {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.055);
}

@media (max-width: 850px) {
  .site-header .nav-links {
    background: linear-gradient(145deg, #10244d 0%, #173766 100%);
    color: #fff;
    box-shadow: -20px 25px 50px rgba(6, 17, 39, 0.3);
  }

  .site-header .nav-links > a:not(.button) {
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
  }
}

/* Customer-name cards must remain readable in their interactive state. */
.about-page .client-logo:hover,
.about-page .client-logo:focus-visible {
  background: #10244d;
  color: #fff;
}

.about-page .client-logo:hover strong,
.about-page .client-logo:hover small,
.about-page .client-logo:focus-visible strong,
.about-page .client-logo:focus-visible small {
  color: #fff;
}

/* 2026 precision-component catalogue. */
.products-page .product-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid #ccd5e1;
}

.products-page .product-kicker {
  margin: 0 0 10px;
  color: #b52d29;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.products-page .product-section-heading h2 {
  max-width: 650px;
  margin: 0;
  color: #10244d;
  font: 700 clamp(38px, 4.5vw, 64px) / 0.92 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.products-page .product-section-heading > p {
  margin: 0;
  color: #4d5b70;
  font-size: 13px;
  line-height: 1.7;
}

.products-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  border: 0;
  background: transparent;
}

.products-page .product-card {
  grid-template-columns: minmax(0, 1fr) 132px;
  grid-template-rows: auto minmax(74px, auto) auto;
  column-gap: 15px;
  padding: 17px;
  border: 1px solid #d6dde5;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 45, 82, 0.06);
}

.products-page .product-art {
  grid-column: 2;
  grid-row: 1 / 3;
  aspect-ratio: 1;
  border-color: #dce2e9;
  border-radius: 2px;
  background: #f2f4f6;
}

.products-page .product-art.product-photo img,
.products-page .product-card:hover .product-art.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: saturate(0.94) contrast(1.04);
}

.products-page .product-card > small {
  grid-column: 1;
  grid-row: 1;
  margin: 2px 0 0;
  color: #b52d29;
}

.products-page .product-card h3 {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  margin: 8px 0;
  color: #10244d;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 0.96;
}

.products-page .product-details {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  gap: 6px;
  min-height: 108px;
  margin: 15px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #dce2e9;
  color: #43536a;
  font-size: 11px;
  line-height: 1.45;
  list-style: none;
}

.products-page .product-details li {
  position: relative;
  padding-left: 13px;
}

.products-page .product-details li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c73530;
}

.products-page .product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  background: #10244d;
  color: #fff;
}

.products-page .product-benefits strong {
  margin-right: auto;
  font: 700 18px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.products-page .product-benefits span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .products-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .products-page .product-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-page .product-grid {
    grid-template-columns: 1fr;
  }

  .products-page .product-card {
    grid-template-columns: minmax(0, 1fr) 126px;
  }

  .products-page .product-benefits strong {
    width: 100%;
    margin-bottom: 4px;
  }
}

/* Home hero uses the complete precision-component catalogue. */
.hero-visual.hero-catalogue .hero-product-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.015);
}

.hero-visual.hero-catalogue:hover .hero-product-image {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.035);
}

.hero-visual.hero-catalogue .image-vignette {
  background:
    linear-gradient(
      180deg,
      rgba(5, 13, 30, 0.32),
      transparent 24%,
      transparent 70%,
      rgba(5, 13, 30, 0.62)
    ),
    linear-gradient(90deg, rgba(5, 13, 30, 0.22), transparent 34%);
}

/* Single-product animated home showcase. */
.hero-product-showcase {
  background: #e9edf2;
}

.hero-product-slides,
.hero-product-slide {
  position: absolute;
  inset: 0;
}

.hero-product-slides {
  z-index: 0;
  overflow: hidden;
}

.hero-product-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.06);
  animation: hero-product-cycle 45s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero-product-slide:nth-child(2) {
  animation-delay: 5s;
}
.hero-product-slide:nth-child(3) {
  animation-delay: 10s;
}
.hero-product-slide:nth-child(4) {
  animation-delay: 15s;
}
.hero-product-slide:nth-child(5) {
  animation-delay: 20s;
}
.hero-product-slide:nth-child(6) {
  animation-delay: 25s;
}
.hero-product-slide:nth-child(7) {
  animation-delay: 30s;
}
.hero-product-slide:nth-child(8) {
  animation-delay: 35s;
}
.hero-product-slide:nth-child(9) {
  animation-delay: 40s;
}

.hero-product-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06);
}

.hero-product-slide figcaption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 28px;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(8, 20, 44, 0.88);
  color: #fff;
  font: 700 14px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-product-showcase:hover .hero-product-slide {
  animation-play-state: paused;
}

.hero-product-showcase .image-vignette {
  background:
    linear-gradient(
      180deg,
      rgba(5, 13, 30, 0.28),
      transparent 26%,
      transparent 68%,
      rgba(5, 13, 30, 0.5)
    ),
    linear-gradient(90deg, rgba(5, 13, 30, 0.16), transparent 34%);
}

@keyframes hero-product-cycle {
  0% {
    opacity: 1;
    transform: scale(1.06) translateX(12px);
  }
  1.8%,
  9.4% {
    opacity: 1;
    transform: scale(1.01) translateX(0);
  }
  11.1%,
  100% {
    opacity: 0;
    transform: scale(1.035) translateX(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product-slide {
    display: none;
    animation: none;
  }

  .hero-product-slide:first-child {
    display: block;
    opacity: 1;
    transform: none;
  }
}

/* Harmonized header and inner-page banner palette. */
body .page-main .page-hero,
.page-main .page-hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(64, 80, 105, 0.055), transparent 38%),
    linear-gradient(125deg, #fcfcfd 0%, #f7f8fa 58%, #eef0f3 100%);
  color: #10244d;
  border-bottom-color: #d9dde3;
}

.page-hero::before {
  opacity: 0.55;
  background:
    linear-gradient(rgba(16, 36, 77, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 77, 0.055) 1px, transparent 1px);
}

body .page-main .page-hero h1,
.page-hero h1 {
  color: #10244d;
}

.page-hero h1 em {
  color: #b52d29;
}

body .page-main .page-hero .page-intro,
.page-hero .page-intro {
  color: #43536a;
}

/* Final About reference alignment overrides. */
.about-icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.about-certifications {
  align-items: stretch;
}
.about-cert-card {
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 112px;
  height: 100%;
  align-items: center;
}
.about-cert-icon {
  display: block;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 0;
}
.about-cert-icon svg,
.about-strength-grid i svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-cert-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter:
    contrast(1.12)
    saturate(1.1)
    drop-shadow(0.2px 0 0 #d7332f)
    drop-shadow(-0.2px 0 0 #d7332f);
}
.about-cert-card > div {
  display: grid;
  align-content: center;
  min-height: 74px;
}
.about-strength-grid article {
  display: grid;
  grid-template-rows: 44px 31px 1fr;
  align-items: start;
}
.about-strength-grid i {
  position: relative;
  width: 52px;
  height: 44px;
  min-height: 44px;
  margin: 0 auto;
  overflow: hidden;
}
.about-strength-grid i img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: auto;
  max-width: none;
  height: 44px;
  mix-blend-mode: multiply;
  filter:
    contrast(1.12)
    saturate(1.1)
    drop-shadow(0.18px 0 0 #e23b35)
    drop-shadow(-0.18px 0 0 #e23b35);
}
.about-strength-grid article:nth-child(1) i img {
  transform: translateX(-1px);
}
.about-strength-grid article:nth-child(2) i img {
  transform: translateX(-123px);
}
.about-strength-grid article:nth-child(3) i img {
  transform: translateX(-249px);
}
.about-strength-grid article:nth-child(4) i img {
  transform: translateX(-382px);
}
.about-strength-grid article:nth-child(5) i img {
  transform: translateX(-514px);
}
.about-strength-grid h3 {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  margin: 5px 0 7px;
}
.about-reference .client-wall-heading {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.about-reference .client-wall-heading::after {
  display: none;
}
.about-reference .client-wall-heading > p,
.about-reference .client-wall-heading > h2 {
  margin: 0;
  white-space: nowrap;
}
.about-reference .client-wall-heading > span {
  width: 100%;
  height: 1px;
  background: #d9827e;
}
.about-reference .client-logo-grid {
  gap: 4px;
  border: 0;
  background: transparent;
}
.about-reference .client-logo {
  min-height: 82px;
  border: 1px solid #d6dce4;
  background: rgba(255, 255, 255, 0.7);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}
.about-reference .client-logo:hover {
  color: inherit;
  background: #f2f6fb;
  border-color: #bdc8d7;
  transform: translateY(-2px);
}
.about-reference .client-logo strong {
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.45px;
}
.about-reference .client-logo small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.9px;
}
.about-reference .logo-rane strong {
  display: inline-block;
  padding: 4px 9px 5px;
  color: #fff;
  background: #174a91;
  box-shadow: 0 3px 0 rgba(17, 53, 108, 0.24);
  font-style: italic;
  transform: rotate(-4deg);
}
.about-reference .logo-cat strong {
  font-size: clamp(26px, 2vw, 33px);
  letter-spacing: -2px;
}
.about-reference .logo-cat strong span {
  display: block;
}
.about-reference .logo-tafe strong,
.about-reference .logo-tecno strong {
  color: #d9272e;
}
.about-reference .logo-rambal strong,
.about-reference .logo-keen strong {
  color: #163f8c;
}
.about-reference .logo-pvg strong {
  color: #239342;
}
.about-reference .logo-pvg small {
  color: #239342;
}
.about-reference .logo-ellar strong {
  position: relative;
  padding-left: 22px;
  color: #1c2d4d;
}
.about-reference .logo-ellar strong::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 17px;
  background:
    linear-gradient(
      to bottom,
      #e74732 0 20%,
      transparent 20% 30%,
      #e74732 30% 50%,
      transparent 50% 60%,
      #e74732 60% 80%,
      transparent 80%
    );
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 35% 100%, 0 50%);
  transform: translateY(-50%);
}
.about-reference .logo-entwine strong,
.about-reference .logo-subajeyam strong {
  color: #1a4b91;
}
.about-reference .logo-sufi strong {
  font-size: clamp(22px, 1.8vw, 29px);
  font-style: italic;
}
@media (max-width: 620px) {
  .about-reference .client-wall-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about-reference .client-wall-heading > span {
    display: none;
  }
  .about-reference .client-wall-heading > p,
  .about-reference .client-wall-heading > h2 {
    white-space: normal;
  }
}

/* Final corporate typography overrides — keep at stylesheet end. */
.quality-reference {
  padding-bottom: 24px;
  color: #111;
  background: #f8f9fb;
}
.quality-reference-hero {
  background: #fff;
}
.quality-reference-hero-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) 270px;
  min-height: 230px;
  align-items: center;
}
.quality-reference-copy > p:first-child {
  margin: 0 0 10px;
  color: #c72f2b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.quality-reference-copy h1 {
  margin: 0;
  color: #0b1f42;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}
.quality-reference-copy h1 span {
  color: #d7332f;
}
.quality-reference-copy i {
  display: block;
  width: 34px;
  height: 3px;
  margin: 12px 0;
  background: #d7332f;
}
.quality-reference-copy > p:last-child {
  margin: 0;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.quality-reference-hero-image {
  width: 100%;
  height: 230px;
  object-fit: contain;
}
.quality-reference-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quality-reference-proof span {
  display: grid;
  min-height: 110px;
  padding: 8px;
  place-items: center;
  align-content: center;
  border-left: 1px solid #d6dce4;
  text-align: center;
}
.quality-reference-proof b {
  color: #d7332f;
  font-size: 24px;
}
.quality-reference-proof img {
  display: block;
  width: 46px;
  height: 24px;
  object-fit: contain;
}
.quality-proof-icon {
  display: block;
  width: 34px;
  height: 29px;
  background-color: transparent;
  background-image: url("assets/quality-proof-icons-transparent.png");
  background-repeat: no-repeat;
  background-size: 207px 29px;
}
.quality-proof-icon.proof-shield {
  background-position: 0 0;
}
.quality-proof-icon.proof-people {
  background-position: -86px 0;
}
.quality-proof-icon.proof-globe {
  background-position: -173px 0;
}
.quality-reference-proof strong {
  color: #0b1f42;
  font-size: 24px;
}
.quality-reference-proof small {
  color: #111;
  font-size: 10px;
  line-height: 1.35;
}
.quality-reference-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
  padding: 0;
  border: 1px solid #d6dce4;
  background: #fff;
}
.quality-reference-stage {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px 16px;
  min-height: 190px;
  padding: 14px 16px;
  border-right: 1px solid #d6dce4;
}
.quality-reference-stage:last-child {
  border-right: 0;
}
.quality-reference-stage-split {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
}
.quality-stage-media {
  display: grid;
  gap: 12px;
  align-content: start;
}
.quality-stage-label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.quality-stage-label span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: #c72f2b;
  border: 1px solid #c72f2b;
  border-radius: 50%;
  font-size: 10px;
}
.quality-stage-label small {
  color: #c72f2b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.quality-stage-media img {
  display: block;
  width: 120px;
  height: 125px;
  object-fit: contain;
}
.quality-stage-media .quality-engineering-drawing {
  filter: none;
  mix-blend-mode: normal;
}
.quality-stage-copy {
  padding-top: 4px;
}
.quality-stage-copy h2 {
  margin: 0;
}
.quality-stage-copy p {
  margin: 18px 0 0;
}
.quality-stage-copy ul {
  margin: 18px 0 0;
  padding: 0;
}
.quality-reference-stage-split:nth-child(3) .quality-stage-copy ul {
  padding-top: 0;
}
.quality-reference-stage header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 34px auto 1fr;
  gap: 10px;
  align-items: center;
}
.quality-reference-stage header span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #c72f2b;
  border: 1px solid #c72f2b;
  border-radius: 50%;
  font-size: 10px;
}
.quality-reference-stage header small {
  color: #c72f2b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.quality-reference-stage h2 {
  margin: 0;
  color: #0b1f42;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.quality-reference-stage > img {
  width: 120px;
  height: 125px;
  object-fit: contain;
}
.quality-reference-stage p,
.quality-reference-stage li {
  color: #111;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}
.quality-reference-stage ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.quality-reference-stage:nth-child(3) ul {
  padding-top: 10px;
}
.quality-reference-stage li::before {
  content: "✓";
  margin-right: 7px;
  color: #d7332f;
}
.quality-section-title {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 560px;
  margin: 8px auto;
}
.quality-section-title span {
  height: 1px;
  background: #df8e8a;
}
.quality-section-title h2 {
  margin: 0;
  color: #0b1f42;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.quality-specialization .services-specialization-panel {
  grid-template-columns: 0.85fr 1.2fr 1.2fr 1fr;
  padding-block: 16px;
}
.quality-services-list {
  padding-left: 20px;
}
.quality-services-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.quality-services-heading img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}
.quality-services-list h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.quality-services-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.quality-services-list li {
  position: relative;
  padding-left: 14px;
  color: #fff;
  font-size: 11px;
  line-height: 1.45;
}
.quality-services-list li + li {
  margin-top: 7px;
}
.quality-services-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e13c36;
}
.quality-advantage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid #d6dce4;
  background: #fff;
}
.quality-advantage-grid article {
  min-height: 152px;
  padding: 14px 12px;
  border-right: 1px solid #d6dce4;
  text-align: center;
}
.quality-advantage-grid article:last-child {
  border-right: 0;
}
.quality-advantage-grid img {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 6px;
  object-fit: contain;
  background: transparent;
  filter:
    saturate(1.7)
    contrast(1.45)
    drop-shadow(0 0 0.35px #e5322d);
}
.quality-advantage-grid h3 {
  min-height: 32px;
  margin: 5px 0;
  color: #0b1f42;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.quality-advantage-grid p {
  margin: 0;
  color: #111;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}
.quality-working {
  margin-top: 12px;
  padding: 10px 0 14px;
  background: linear-gradient(90deg, #f7f8fa, #eef2f7);
}
.quality-working-steps {
  padding-top: 2px;
}
.quality-working-steps li {
  grid-template-rows: 44px 15px 20px minmax(42px, auto);
  align-items: start;
}
.quality-working-steps img {
  align-self: center;
}
.quality-working-steps li:nth-child(1) img {
  transform: translateX(4px);
}
.quality-working-steps li:nth-child(2) img {
  transform: translateX(8px);
}
.quality-working-steps li:nth-child(3) img,
.quality-working-steps li:nth-child(4) img,
.quality-working-steps li:nth-child(5) img {
  transform: translateX(4px);
}
.quality-working-steps b {
  align-self: center;
  margin: 0;
  color: #c72f2b;
  font-size: 10px;
  font-weight: 800;
}
.quality-working-steps strong {
  align-self: center;
  margin: 0;
}
.quality-working-steps p {
  align-self: start;
  max-width: 150px;
  margin: 0;
  color: #111;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}
.quality-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr repeat(4, 1fr);
  margin-top: 10px;
  padding: 0;
  border: 1px solid #d6dce4;
  background: #fff;
}
.quality-metrics span {
  display: grid;
  min-height: 68px;
  padding: 9px 7px;
  align-content: center;
  border-right: 1px solid #d6dce4;
  text-align: center;
}
.quality-metrics span:last-child {
  border-right: 0;
}
.quality-metrics .quality-metric-badge:nth-child(1),
.quality-metrics .quality-metric-badge:nth-child(2) {
  border-right: 0;
}
.quality-metrics strong {
  color: #0b1f42;
  font-size: 14px;
  font-weight: 800;
}
.quality-metrics small {
  color: #111;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}
.quality-metrics .quality-metric-badge {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.quality-metric-badge img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  background: transparent;
}
.quality-metric-badge b {
  display: grid;
  font-weight: inherit;
}
.quality-metric-badge strong {
  color: #184b86;
  font-size: 11px;
  text-transform: uppercase;
}
.quality-metric-badge:nth-child(3) strong {
  font-size: 10px;
  white-space: nowrap;
}
.quality-metric-badge small {
  color: #184b86;
  font-weight: 700;
  text-transform: uppercase;
}
.quality-lower-reference {
  width: min(1180px, calc(100% - 48px));
  margin: 8px auto 0;
}
.quality-lower-reference img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1000px) {
  .quality-reference-hero-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .quality-reference-proof {
    grid-column: 1 / -1;
  }
  .quality-reference-stages {
    grid-template-columns: 1fr;
  }
  .quality-reference-stage {
    border-right: 0;
    border-bottom: 1px solid #d6dce4;
  }
  .quality-specialization .services-specialization-panel {
    grid-template-columns: 1fr 1fr;
  }
  .quality-advantage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quality-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 650px) {
  .quality-reference-hero-grid,
  .quality-specialization .services-specialization-panel,
  .quality-advantage-grid,
  .quality-metrics {
    grid-template-columns: 1fr;
  }
}
.services-specialist {
  color: #111;
  background: #f7f8fa;
}
.services-specialist-hero {
  min-height: 304px;
  overflow: hidden;
  background: #fff;
}
.services-specialist-hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(0, 1.12fr);
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  min-height: 304px;
  align-items: center;
}
.services-specialist-copy {
  position: relative;
  z-index: 2;
  padding: 30px 20px 28px 0;
}
.services-specialist-kicker {
  margin: 0 0 12px;
  color: #c72f2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.services-specialist-copy h1 {
  margin: 0;
  color: #0b1f42;
  font-size: clamp(34px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.services-specialist-copy h1 span {
  color: #d7332f;
}
.services-specialist-copy > i,
.services-specialization-intro > i,
.services-working-title > i {
  display: block;
  width: 38px;
  height: 3px;
  margin: 17px 0;
  background: #d7332f;
}
.services-specialist-copy > p:last-child {
  max-width: 470px;
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.services-specialist-visual {
  position: relative;
  min-height: 304px;
}
.services-specialist-visual img {
  position: absolute;
  display: block;
  object-fit: cover;
  background: #eef0f3;
  filter: saturate(0.65) contrast(1.08);
  box-shadow: 0 18px 34px rgba(11, 31, 66, 0.12);
}
.services-specialist-visual .service-visual-reference {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}
.service-visual-shaft {
  z-index: 1;
  top: 18px;
  right: -10%;
  width: 80%;
  height: 220px;
  border-radius: 110px 0 0 110px;
}
.service-visual-collar {
  z-index: 3;
  right: 8%;
  bottom: 10px;
  width: 150px;
  height: 118px;
  border-radius: 14px;
}
.service-visual-rod {
  z-index: 2;
  right: 35%;
  bottom: -2px;
  width: 190px;
  height: 108px;
  border-radius: 14px;
}
.services-specialization {
  padding: 14px 0 24px;
}
.services-specialization-title {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 560px;
  margin: 0 auto 10px;
}
.services-specialization-title span {
  height: 2px;
  background: #d7332f;
}
.services-specialization-title h2 {
  margin: 0;
  color: #0b1f42;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.services-specialization-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr 1.08fr 1.22fr;
  padding: 22px 24px;
  color: #fff;
  border-radius: 0;
  background:
    radial-gradient(circle at 95% 10%, rgba(39, 88, 150, 0.2), transparent 28%),
    #082246;
}
.services-specialization-panel > * {
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}
.services-specialization-panel > :first-child {
  padding-left: 0;
}
.services-specialization-panel > :last-child {
  padding-right: 0;
  border-right: 0;
}
.services-specialization-intro h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}
.services-specialization-intro h2 em {
  color: #ef4c44;
  font-style: normal;
}
.services-specialization-intro p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}
.services-plating-card header {
  display: flex;
  gap: 10px;
  align-items: center;
}
.services-plating-card header b {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 16px;
}
.services-plating-card h3 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}
.services-plating-card header span {
  color: #ee4b44;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.services-plating-content {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.services-plating-content img {
  width: 96px;
  height: 96px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
}
.services-plating-content ul,
.services-specialization-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-plating-content li,
.services-specialization-list li {
  position: relative;
  padding-left: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.42;
}
.services-plating-content li + li,
.services-specialization-list li + li {
  margin-top: 7px;
}
.services-plating-content li::before,
.services-specialization-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ee3e38;
}
.services-specialization-list {
  position: relative;
  padding-right: 122px !important;
}
.services-specialization-list h3 {
  margin: 5px 0 15px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}
.services-image-strip {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 108px;
  height: 100%;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.services-image-strip img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 0;
}
.services-working {
  padding: 16px 0 18px;
  background: linear-gradient(90deg, #f5f7fa, #eef2f7);
}
.services-working-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.services-working-title p {
  margin: 0 0 10px;
  color: #c72f2b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.services-working-title h2 {
  margin: 0;
  color: #0b1f42;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.services-working-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-working-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}
.services-working-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  left: calc(50% + 30px);
  width: calc(100% - 48px);
  height: 2px;
  background:
    radial-gradient(circle, #c72f2b 0 1.5px, transparent 2px)
      left center / 24px 2px repeat-x,
    linear-gradient(#9ba4b1, #9ba4b1) center / 100% 1px no-repeat;
}
.services-working-steps img {
  position: relative;
  z-index: 1;
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: contrast(1.15);
}
.services-page .services-working-steps li:nth-child(1) img,
.services-page .services-working-steps li:nth-child(3) img,
.services-page .services-working-steps li:nth-child(4) img,
.services-page .services-working-steps li:nth-child(5) img {
  transform: translateX(4px);
}
.services-page .services-working-steps li:nth-child(2) img {
  transform: translateX(8px);
}
.services-working-steps span {
  margin-top: 6px;
  color: #c72f2b;
  font-size: 10px;
  font-weight: 800;
}
.services-working-steps strong {
  margin: 2px 0 5px;
  color: #0b1f42;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.services-working-steps small {
  max-width: 150px;
  color: #111;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}
.services-specialist-cta {
  padding: 14px 0;
  color: #fff;
  background: #082246;
}
.services-specialist-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.services-specialist-cta p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}
.services-specialist-cta strong {
  font-weight: 800;
}
.services-specialist-cta .button {
  min-height: 50px;
  padding: 14px 22px;
}
@media (max-width: 1000px) {
  .services-specialization-panel {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .services-specialization-panel > * {
    border-right: 0;
  }
  .services-working-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .services-specialist-hero-grid {
    grid-template-columns: 1fr;
  }
  .services-specialist-copy {
    padding-right: 0;
  }
  .services-specialist-visual {
    min-height: 240px;
  }
  .services-specialization-panel {
    grid-template-columns: 1fr;
  }
  .services-specialization-panel > * {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }
  .services-specialization-panel > :last-child {
    border-bottom: 0;
  }
  .services-working-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .services-specialist-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
.services-reference {
  background:
    radial-gradient(circle at 12% 10%, rgba(33, 76, 145, 0.045), transparent 30%),
    #f8f9fb;
}
.services-reference-section {
  padding: 32px 0 28px;
}
.services-reference-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
}
.services-reference-title .section-page-label {
  margin-bottom: 14px;
}
.services-reference-title h1 {
  margin: 0;
  color: #0b1f42;
  font-size: clamp(28px, 2.55vw, 38px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.services-reference-title h1 em {
  color: #c72f2b;
  font-style: normal;
}
.services-reference-copy {
  padding: 18px 24px;
  border: 1px solid #d6dce4;
  border-left: 3px solid #d53a34;
  background: rgba(255, 255, 255, 0.7);
}
.services-reference-copy p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.services-reference-copy p + p {
  margin-top: 14px;
}
.services-reference-copy strong {
  color: #c72f2b;
  text-transform: uppercase;
}
.services-certifications {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.services-cert-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 112px;
  padding: 16px 18px;
  align-items: center;
  border: 1px solid #d6dce4;
  background: rgba(255, 255, 255, 0.72);
}
.services-cert-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #d7332f;
  border: 2px solid #d7332f;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}
.services-cert-card small {
  color: #c72f2b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-cert-card h2 {
  margin: 4px 0;
  color: #0b1f42;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}
.services-cert-card p {
  margin: 0;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.services-capability-layout {
  display: grid;
  grid-template-columns: calc(66.666667% - 4.6667px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.services-core-panel,
.services-outcomes {
  padding: 16px 18px;
  border: 1px solid #d6dce4;
  background: rgba(255, 255, 255, 0.72);
}
.services-panel-heading {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr);
  gap: 14px;
  align-items: center;
}
.services-panel-heading h2 {
  margin: 0;
  color: #c72f2b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.services-panel-heading span {
  height: 1px;
  background: #df8e8a;
}
.services-core-intro {
  margin: 12px 0 14px;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.services-core-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.services-core-grid article {
  display: grid;
  min-width: 0;
  padding: 2px 8px 0;
  grid-template-rows: 42px minmax(34px, auto) auto;
  align-content: start;
  border-right: 1px solid #dce1e7;
  text-align: center;
}
.services-core-grid article:last-child {
  border-right: 0;
}
.services-core-grid b {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  place-items: center;
  color: #d7332f;
  border: 2px solid #d7332f;
  border-radius: 50%;
  font-size: 12px;
}
.services-core-grid h3 {
  display: flex;
  min-height: 34px;
  margin: 3px 0 4px;
  align-items: center;
  justify-content: center;
  color: #0b1f42;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.services-core-grid p {
  margin: 0;
  color: #111;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}
.services-outcomes ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.services-outcomes li {
  position: relative;
  padding-left: 26px;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.services-outcomes li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #e13c36;
  border: 1px solid #e13c36;
  border-radius: 50%;
  font-size: 10px;
}
.services-process {
  margin-top: 18px;
}
.services-process-heading {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}
.services-process-heading p,
.services-process-heading h2 {
  margin: 0;
  text-transform: uppercase;
}
.services-process-heading p {
  color: #c72f2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.services-process-heading h2 {
  color: #0b1f42;
  font-size: 17px;
  font-weight: 800;
}
.services-process-heading span {
  height: 1px;
  background: #df8e8a;
}
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-process-grid li {
  display: grid;
  min-height: 82px;
  padding: 12px 14px;
  align-content: center;
  border: 1px solid #d6dce4;
  background: rgba(255, 255, 255, 0.72);
}
.services-process-grid span {
  color: #d7332f;
  font-size: 10px;
  font-weight: 800;
}
.services-process-grid strong {
  margin: 4px 0;
  color: #0b1f42;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.services-process-grid small {
  color: #111;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .services-reference-intro,
  .services-capability-layout {
    grid-template-columns: 1fr;
  }
  .services-reference-intro {
    gap: 24px;
  }
  .services-certifications {
    grid-template-columns: 1fr;
  }
  .services-core-grid,
  .services-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .services-reference-section {
    padding-top: 24px;
  }
  .services-reference-title h1 {
    font-size: 28px;
  }
  .services-core-grid,
  .services-process-grid {
    grid-template-columns: 1fr;
  }
  .services-core-grid article {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #dce1e7;
  }
  .services-process-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .services-process-heading span {
    display: none;
  }
}
.about-reference .client-logo,
.about-reference .client-logo:hover,
.about-reference .client-logo:focus,
.about-reference .client-logo:focus-visible {
  z-index: auto;
  color: inherit;
  background: rgba(255, 255, 255, 0.7);
  border-color: #d6dce4;
  box-shadow: none;
  filter: none;
  transform: none;
  transition: none;
}
.about-reference .client-logo::after,
.about-reference .client-logo:hover::after,
.about-reference .client-logo:focus::after,
.about-reference .client-logo:focus-visible::after {
  opacity: 0;
  transform: none;
  transition: none;
}
.about-reference .client-logo:hover strong,
.about-reference .client-logo:hover small,
.about-reference .client-logo:focus strong,
.about-reference .client-logo:focus small,
.about-reference .client-logo:focus-visible strong,
.about-reference .client-logo:focus-visible small {
  color: inherit;
}
.about-reference .client-logo.logo-rane:hover strong,
.about-reference .client-logo.logo-rane:focus strong,
.about-reference .client-logo.logo-rane:focus-visible strong {
  color: #fff;
}
body,
body *,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}
.home-page .hero h1 {
  font-size: clamp(44px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.home-page .hero-intro {
  color: #111;
  font-size: 14px;
  line-height: 1.55;
}
.home-page .hero-stats strong {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  white-space: nowrap;
}
.home-page .hero-stats small {
  color: #111;
  font-size: 11px;
  line-height: 1.35;
}
.about-reference .about-reference-intro {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
}
.about-reference .about-reference-title h1 {
  font-size: clamp(28px, 2.55vw, 38px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.about-reference .about-intro-panel p,
.about-reference .about-cert-card p,
.about-reference .about-strength-intro,
.about-reference .about-strength-grid article p,
.about-reference .about-applications li,
.services-page .inner-copy p,
.services-page .feature-card p,
.services-page .service-method-steps small,
.products-page .product-section-heading > p,
.products-page .product-details,
.quality-page .quality-summary > p,
.quality-page .quality-stage > p {
  color: #111;
}
.about-reference .about-intro-panel p,
.services-page .inner-copy p,
.products-page .product-section-heading > p,
.quality-page .quality-summary > p {
  font-size: 15px;
  line-height: 1.6;
}
.about-reference .about-cert-card p,
.about-reference .about-applications li {
  font-size: 12px;
  line-height: 1.45;
}
.about-reference .about-strength-intro {
  font-size: 13px;
  line-height: 1.55;
}
.about-reference .about-strength-grid h3 {
  min-height: 32px;
  margin: 3px 0 4px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}
.about-reference .about-strength-grid article {
  grid-template-rows: 44px minmax(32px, auto) auto;
  align-content: start;
  padding: 2px 8px 0;
}
.about-reference .about-strength-grid article p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}
.services-page .feature-card p,
.quality-page .quality-stage > p {
  font-size: 14px;
  line-height: 1.55;
}
.services-page .service-method-steps small,
.products-page .product-details {
  font-size: 13px;
  line-height: 1.5;
}
.quality-page .quality-direction-grid article p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}
.about-reference .about-cert-card small,
.services-page .services-kicker,
.services-page .feature-card > span,
.services-page .service-method-heading > p,
.products-page .product-kicker,
.products-page .product-card > small,
.quality-page .quality-kicker,
.quality-page .quality-stage small {
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.about-reference .about-capability-layout {
  grid-template-columns: calc(66.666667% - 4.6667px) minmax(0, 1fr);
}
.about-reference .client-wall {
  border-top: 0;
}
@media (max-width: 1100px) {
  .about-reference .about-capability-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .about-reference .about-reference-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Products page: final cascade overrides. */
.products-page .product-section-heading {
  padding: 20px 22px;
  border-bottom: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 16px 18px -18px rgba(16, 36, 77, 0.42);
}
.products-page .product-section-heading h2 {
  font-size: 32px;
  line-height: 1;
}
.products-page .product-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 145px;
  column-gap: 10px;
  padding: 16px 16px 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(16, 36, 77, 0.11);
}
.products-page .product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #c73530 0 74px, #10244d 74px 100%);
}
.products-page .product-card::after {
  display: none;
}
.products-page .product-card h3 {
  margin: 4px 0;
  font-size: 20px;
  line-height: 1;
}
.products-page .product-card > small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 34px;
  margin-top: 3px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0ef;
  color: #b52d29;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.products-page .product-art {
  width: calc(100% + 16px);
  height: calc(100% + 25px);
  min-height: 152px;
  margin: -13px -16px -12px 0;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, #f7f8fa, #e9edf2);
  box-shadow: inset 0 0 0 1px rgba(16, 36, 77, 0.08);
}
.products-page .product-details {
  min-height: 100px;
  margin: 12px -16px 0;
  padding: 14px 16px 16px;
  border-top: 0;
  background: #f6f8fb;
}
.products-page .product-benefits {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
}
.products-page .product-benefits strong {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  width: auto;
  margin: -16px 8px -16px -16px;
  padding: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  background: #c73530;
  color: #fff;
  line-height: 1.15;
}
.products-page .product-benefits span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
}
@media (max-width: 900px) {
  .products-page .product-section-heading {
    padding: 18px 20px;
  }
  .products-page .product-section-heading h2 {
    font-size: 27px;
    line-height: 0.96;
  }
  .products-page .product-benefits {
    grid-template-columns: minmax(255px, 1fr) repeat(3, minmax(0, 1fr));
  }
  .products-page .product-benefits strong {
    margin-bottom: -16px;
  }
}
@media (max-width: 620px) {
  .products-page .product-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .products-page .product-benefits strong {
    grid-column: 1 / -1;
    grid-row: auto;
    margin: -16px -16px 4px;
    padding: 16px;
    border-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  }
}
