:root {
  --orange: #f4511e;
  --orange-deep: #de3f0d;
  --ink: #11181d;
  --ink-soft: #1b242a;
  --white: #ffffff;
  --mist: #f4f5f5;
  --line: #d9dddf;
  --muted: #5e686e;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: 1380px;
  --shadow: 0 22px 50px rgba(17, 24, 29, 0.13);
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(244, 81, 30, 0.42);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  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: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 24, 29, 0.1);
  transition: box-shadow 220ms ease, height 220ms ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 35px rgba(17, 24, 29, 0.1);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.brand img {
  width: 222px;
  height: 57px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 1.8vw, 31px);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-nav > a:not(.nav-cta, .nav-phone) {
  position: relative;
  padding: 27px 0 24px;
  white-space: nowrap;
}

.main-nav > a:not(.nav-cta, .nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-phone svg {
  width: 19px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 24, 29, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 29, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 58%);
}

.hero-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 9vw;
  height: 9vw;
  background: var(--ink);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.94;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.2fr);
  align-items: center;
  min-height: 695px;
  padding-block: 54px 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 42px 30px 0;
}

.hero h1,
.section h2,
.contact-section h2,
.standards-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 0.96;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(65px, 5.5vw, 91px);
}

.hero h1 span,
.section h2 em,
.contact-section h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.section-rule {
  display: flex;
  align-items: center;
  width: min(100%, 520px);
  height: 16px;
  margin: 22px 0 18px;
}

.section-rule::before,
.section-rule::after {
  content: "";
  height: 2px;
  flex: 1;
  background: var(--orange);
}

.section-rule i {
  width: 8px;
  height: 8px;
  margin-inline: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #31393e;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 13px 28px;
  border: 2px solid var(--orange);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.button-outline {
  background: var(--white);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.hex-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  color: var(--orange);
}

.hex-icon svg {
  width: 47px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust strong,
.hero-trust small {
  display: block;
}

.hero-trust strong {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}

.hero-trust small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 585px;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 8px 0 8px -10px;
  background: var(--orange);
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #e9edef;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.hero-image-detail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 1px;
  background: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-image-detail span {
  padding: 11px 16px;
  background: rgba(17, 24, 29, 0.94);
  color: var(--white);
}

.hero-image-detail span:first-child {
  background: var(--orange);
}

.product-rail {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.product-rail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product-rail a {
  min-height: 114px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.product-rail a:first-child {
  border-left: 1px solid var(--line);
}

.product-rail a:hover {
  background: var(--ink);
  color: var(--white);
}

.product-rail svg {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-rail span {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: 120px;
}

.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section h2,
.contact-section h2 {
  font-size: clamp(54px, 5vw, 78px);
}

.about-section {
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -180px;
  width: 480px;
  height: 180px;
  background: var(--mist);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(58px, 7vw, 110px);
}

.about-copy {
  max-width: 590px;
}

.about-copy .lead {
  margin: 0 0 17px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.about-copy > p:not(.section-label, .lead) {
  margin: 0;
  color: var(--muted);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.trust-list span {
  color: var(--orange);
  font-size: 14px;
}

.about-media {
  position: relative;
  min-height: 650px;
}

.about-primary-image,
.about-secondary-image {
  position: absolute;
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.about-primary-image {
  inset: 0 0 130px 75px;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 4px solid var(--orange);
}

.about-primary-image img,
.about-secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-primary-image img {
  object-position: 17% center;
}

.about-secondary-image {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 220px;
  border: 8px solid var(--white);
}

.about-secondary-image img {
  object-position: left center;
}

.commitments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border: 1px solid var(--line);
}

.commitments article {
  display: flex;
  gap: 20px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.commitments article:last-child {
  border-right: 0;
}

.commitment-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
}

.commitments h3 {
  margin: 0 0 7px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.commitments p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.services-section {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.services-heading,
.process-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.services-heading h2 em,
.process-heading h2 em {
  display: inline;
}

.services-heading > p,
.process-heading > p {
  margin: 0;
  padding-left: 28px;
  border-left: 3px solid var(--orange);
  color: var(--muted);
  font-size: 17px;
}

.services-workbench {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 640px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-tabs {
  background: var(--ink);
  color: var(--white);
}

.service-tab {
  position: relative;
  width: 100%;
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 22px 25px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

.service-tab::after {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  width: 22px;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 4;
}

.service-tab.is-active {
  background: var(--orange);
}

.service-tab.is-active::after {
  opacity: 1;
}

.service-tab span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.service-tab.is-active span {
  color: var(--white);
}

.service-tab strong {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-tab i {
  font-size: 22px;
  font-style: normal;
}

.service-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.service-image {
  position: relative;
  min-height: 425px;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 165px;
  height: 90px;
  background: var(--orange);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-panels {
  min-height: 215px;
}

.service-panel {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
  padding: 30px 42px;
}

.service-panel.is-active {
  display: grid;
}

.panel-number {
  margin: 0 0 6px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.service-panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
}

.service-detail-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange-deep);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-detail-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3e474c;
  font-size: 14px;
}

.service-panel li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 2px;
}

.capabilities {
  margin-top: 72px;
}

.capabilities-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.capabilities-heading span {
  height: 1px;
  background: var(--orange);
}

.capabilities h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  text-transform: uppercase;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.capabilities article {
  min-height: 116px;
  padding: 19px 15px;
  border-right: 1px solid var(--line);
}

.capabilities article:last-child {
  border-right: 0;
}

.capabilities article span,
.facility-capabilities span,
.strength-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.capabilities article strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}

.bis-strip {
  display: grid;
  grid-template-columns: 95px 1.05fr 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
  padding: 28px 34px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 8px solid var(--orange);
}

.bis-strip > img {
  width: 88px;
  max-height: 85px;
  object-fit: contain;
  padding: 8px;
  background: var(--white);
}

.bis-strip p,
.bis-strip h3,
.bis-strip span {
  margin: 0;
}

.bis-strip p {
  color: var(--orange);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.bis-strip h3 {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.bis-strip span {
  display: block;
  margin-top: 7px;
  color: #bac1c5;
  font-size: 12px;
}

.bis-strip ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.bis-strip li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
}

.facilities-section {
  overflow: hidden;
}

.facilities-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: var(--mist);
  z-index: -1;
}

.facilities-top {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: stretch;
  gap: 70px;
}

.facilities-copy {
  padding-block: 28px;
}

.facilities-copy > p:not(.section-label) {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.facility-list li {
  position: relative;
  padding: 0 0 10px 23px;
  border-bottom: 1px solid var(--line);
}

.facility-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.facility-feature {
  position: relative;
  min-height: 520px;
  background: var(--mist);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 4px solid var(--orange);
}

.facility-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 58px;
}

.facility-gallery figure {
  position: relative;
  height: 250px;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.facility-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.facility-gallery figure:nth-child(1) img {
  object-position: 0% center;
}

.facility-gallery figure:nth-child(2) img {
  object-position: 48% center;
}

.facility-gallery figure:nth-child(3) img {
  object-position: 78% center;
}

.facility-gallery figure:nth-child(4) img {
  object-position: 100% center;
}

.facility-gallery figure:hover img {
  transform: scale(1.04);
}

.facility-gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px 25px;
  background: rgba(17, 24, 29, 0.94);
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.facility-gallery figcaption span {
  margin-right: 8px;
  color: var(--orange);
}

.facility-capabilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 38px;
  border-block: 1px solid var(--line);
}

.facility-capabilities article {
  min-height: 112px;
  padding: 23px 24px;
  border-right: 1px solid var(--line);
}

.facility-capabilities article:last-child {
  border-right: 0;
}

.facility-capabilities span {
  margin-bottom: 7px;
}

.facility-capabilities strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.process-section {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  padding-block: 10px 54px;
}

.track-line {
  position: absolute;
  z-index: 0;
  top: 91px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: var(--orange);
}

.process-track article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-track article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 38px;
  margin: 0 auto -4px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  clip-path: polygon(16% 0, 84% 0, 100% 50%, 84% 100%, 16% 100%, 0 50%);
}

.step-icon {
  width: 106px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: 0 auto 13px;
  background: var(--white);
  border: 1px solid rgba(244, 81, 30, 0.6);
}

.step-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-track h3 {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.process-track p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.strengths {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
}

.why-list,
.strength-grid {
  padding: 31px 36px;
  background: var(--white);
  border: 1px solid var(--line);
}

.why-list h3,
.strength-grid > h3 {
  margin: 0 0 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.why-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.why-list li:last-child {
  border-bottom: 0;
}

.why-list span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.strength-grid > h3 {
  grid-column: 1 / -1;
}

.strength-grid > div {
  min-height: 116px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-grid > div:nth-of-type(3n) {
  border-right: 0;
}

.strength-grid > div:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.strength-grid strong {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

.standards-section {
  padding-block: 48px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 8px solid var(--orange);
}

.standards-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 70px;
}

.standards-layout > div:first-child p {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.standards-section h2 {
  max-width: 520px;
  font-size: clamp(37px, 3.1vw, 54px);
}

.standards-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.standards-rail figure {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.standards-rail img {
  width: 70px;
  height: 67px;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
}

.standards-rail figcaption {
  color: #c6cbce;
  font-family: var(--display);
  font-size: 14px;
}

.type-mark strong {
  display: grid;
  place-items: center;
  width: 77px;
  height: 67px;
  border: 2px solid var(--white);
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.clients-section {
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.clients-heading {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 470px);
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.clients-heading h2 {
  margin: 0;
}

.clients-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding-left: 24px;
  border-left: 2px solid var(--orange);
}

.clients-intro strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.9;
}

.clients-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.client-card {
  position: relative;
  min-width: 0;
  min-height: 170px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 180ms ease;
}

.client-card:hover {
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(17, 24, 29, 0.13);
}

.client-card:hover::before {
  width: 100%;
}

.client-logo {
  display: grid;
  place-items: center;
  height: 103px;
  padding: 10px;
  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.client-card:hover .client-logo img {
  transform: scale(1.035);
}

.client-logo-crop {
  position: relative;
  display: block;
  padding: 0;
}

.client-logo-crop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: initial;
}

.crop-wipro img { transform: translateY(-1%); }
.crop-xillion img { transform: translateY(-55%); }
.crop-fujifilm img { transform: translateY(-2%); }
.crop-fujitsu img { transform: translateY(-59%); }
.client-card:hover .crop-wipro img { transform: translateY(-1%) scale(1.03); }
.client-card:hover .crop-xillion img { transform: translateY(-55%) scale(1.03); }
.client-card:hover .crop-fujifilm img { transform: translateY(-2%) scale(1.03); }
.client-card:hover .crop-fujitsu img { transform: translateY(-59%) scale(1.03); }

.client-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 31px;
  padding-top: 9px;
  border-top: 1px solid #edf0f1;
}

.client-meta span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 13px;
}

.client-meta strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.15;
  text-align: right;
  text-overflow: ellipsis;
}

.contact-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background: var(--ink);
}

.contact-angle {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 105px);
  width: 210px;
  height: 100%;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(70px, 9vw, 150px);
}

.contact-copy {
  position: relative;
  min-height: 800px;
  padding: 80px 15px 260px 0;
  color: var(--white);
}

.contact-logo {
  width: 300px;
  max-height: 75px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 50px;
}

.contact-section h2 em {
  margin-top: 4px;
}

.contact-copy > p {
  max-width: 510px;
  margin: 25px 0 30px;
  color: #c7cdd0;
  font-size: 17px;
}

.contact-copy address {
  max-width: 480px;
  font-style: normal;
}

.contact-copy address a {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  line-height: 1.5;
}

.contact-copy address svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-photo {
  position: absolute;
  left: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  right: -30px;
  bottom: 0;
  height: 235px;
  overflow: hidden;
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 42%;
}

.contact-form-wrap {
  padding: 80px 0 58px clamp(92px, 8vw, 126px);
}

.contact-form-wrap > h3 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid label > span {
  font-size: 13px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #cbd0d2;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid input,
.form-grid select {
  height: 53px;
  padding: 0 15px;
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
  padding: 15px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 81, 30, 0.12);
}

.form-grid ::placeholder {
  color: #8b9397;
}

.form-submit {
  width: 100%;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 20px;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #23764a;
  font-size: 13px;
}

.form-status.error {
  color: #b42318;
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-block: 1px solid var(--line);
}

.contact-proof span {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.contact-proof span:last-child {
  border-right: 0;
}

.site-footer {
  background: #0a0f12;
  color: var(--white);
}

.footer-main {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand img {
  width: 240px;
  max-height: 65px;
  object-fit: contain;
  object-position: left;
}

.footer-main > p {
  margin: 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-main > div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 13px;
}

.footer-main > div a + a {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #90999d;
  font-size: 12px;
}

.quote-toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  width: min(410px, calc(100vw - 48px));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: var(--ink);
  color: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.quote-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quote-toast strong,
.quote-toast p {
  margin: 0;
}

.quote-toast strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.quote-toast p {
  color: #c8ced1;
  font-size: 13px;
}

.quote-toast-close {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-layout {
    grid-template-columns: minmax(390px, 0.9fr) minmax(470px, 1.1fr);
  }

  .hero h1 {
    font-size: clamp(61px, 6.4vw, 76px);
  }

  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .capabilities article:nth-child(4) {
    border-right: 0;
  }

  .capabilities article:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .services-workbench {
    grid-template-columns: 285px 1fr;
  }

  .contact-layout {
    gap: 90px;
  }
}

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

  .menu-toggle {
    position: relative;
    z-index: 202;
    display: block;
  }

  .menu-toggle.active > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 201;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 90px 35px 45px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta, .nav-phone) {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 34px;
  }

  .main-nav > a:not(.nav-cta, .nav-phone)::after {
    display: none;
  }

  .nav-phone {
    display: flex;
    margin-top: 22px;
  }

  .nav-cta {
    margin-top: 22px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .hero-copy {
    max-width: 780px;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(66px, 11vw, 94px);
  }

  .hero-media {
    min-height: 540px;
  }

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

  .product-rail a:nth-child(2) {
    border-right: 0;
  }

  .product-rail a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-layout,
  .facilities-top {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 780px;
  }

  .about-media {
    min-height: 580px;
  }

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

  .commitments article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .commitments article:last-child {
    border-bottom: 0;
  }

  .services-workbench {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-tab {
    min-height: 90px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-tab::after {
    display: none;
  }

  .bis-strip {
    grid-template-columns: 85px 1fr;
  }

  .bis-strip ul {
    grid-column: 1 / -1;
  }

  .facility-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .facility-capabilities article:nth-child(3) {
    border-right: 0;
  }

  .facility-capabilities article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }

  .track-line {
    display: none;
  }

  .strengths,
  .standards-layout {
    grid-template-columns: 1fr;
  }

  .clients-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .standards-layout {
    gap: 32px;
  }

  .contact-section::before {
    inset: 0 0 auto 0;
    height: 750px;
  }

  .contact-angle {
    display: none;
  }

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

  .contact-copy {
    min-height: 750px;
    padding: 70px 0 250px;
  }

  .contact-form-wrap {
    padding-block: 70px;
    padding-inline: 0;
  }

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

  .footer-main > p {
    order: 3;
    grid-column: 1 / -1;
    padding-bottom: 25px;
  }
}

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

  .site-header {
    height: 72px;
  }

  .brand img {
    width: 188px;
    height: 50px;
  }

  .section {
    padding-block: 82px;
  }

  .hero-layout {
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(55px, 16vw, 77px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 410px;
    margin-top: 10px;
  }

  .hero-image-detail {
    display: none;
  }

  .product-rail a {
    min-height: 92px;
    padding: 15px 16px;
    gap: 12px;
  }

  .product-rail svg {
    width: 34px;
    height: 34px;
  }

  .product-rail span {
    font-size: 16px;
  }

  .section h2,
  .contact-section h2 {
    font-size: clamp(49px, 15vw, 66px);
  }

  .about-layout,
  .facilities-top {
    gap: 42px;
  }

  .trust-list,
  .facility-list {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 420px;
  }

  .about-primary-image {
    inset: 0 0 78px 28px;
  }

  .about-secondary-image {
    height: 145px;
  }

  .commitments {
    margin-top: 52px;
  }

  .services-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .services-heading > p,
  .process-heading > p {
    padding-left: 18px;
  }

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

  .service-tab {
    min-height: 78px;
  }

  .service-image {
    min-height: 310px;
  }

  .service-panel,
  .service-panel.is-active {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 22px;
  }

  .service-panel ul {
    grid-template-columns: 1fr;
  }

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

  .capabilities article,
  .capabilities article:nth-child(4) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .capabilities article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .bis-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bis-strip > img {
    margin-inline: auto;
  }

  .bis-strip ul {
    grid-column: auto;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .facility-feature {
    min-height: 370px;
  }

  .facility-gallery {
    grid-template-columns: 1fr;
  }

  .facility-gallery figure {
    height: 230px;
  }

  .facility-capabilities {
    grid-template-columns: 1fr 1fr;
  }

  .facility-capabilities article,
  .facility-capabilities article:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .facility-capabilities article:nth-child(2n) {
    border-right: 0;
  }

  .facility-capabilities article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track p {
    max-width: 330px;
  }

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

  .strength-grid > div,
  .strength-grid > div:nth-of-type(3n),
  .strength-grid > div:nth-last-child(-n + 3) {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-grid > div:last-child {
    border-bottom: 0;
  }

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

  .standards-rail figure {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .clients-intro {
    grid-template-columns: auto 1fr;
    padding-left: 18px;
  }

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

  .client-card {
    min-height: 145px;
    padding: 13px;
  }

  .client-logo {
    height: 85px;
    padding: 7px;
  }

  .client-meta strong {
    font-size: 13px;
  }

  .contact-logo {
    width: 245px;
    margin-bottom: 34px;
  }

  .contact-copy {
    padding-top: 58px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }

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

  .contact-proof span:nth-child(2) {
    border-right: 0;
  }

  .contact-proof span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 32px;
  }

  .footer-main > div {
    justify-content: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .footer-main > div a + a {
    padding-left: 0;
    border-left: 0;
  }

  .footer-main > p {
    order: initial;
    grid-column: auto;
    padding-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    padding-block: 13px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
