﻿@font-face {
  font-family: "FigmaInter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://static.figma.com/uploads/2cca21a49f7dad1daa612d73d50357644671964a");
}

@font-face {
  font-family: "FigmaInter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://static.figma.com/uploads/43d730c59dee2754d29e0d946ba8cb8339656979") format("woff2");
}

:root {
  --navy: #001f4d;
  --deep: #071526;
  --deep-2: #0b1829;
  --green: #069747;
  --green-bright: #45e887;
  --mint: #dffbed;
  --text: #001936;
  --muted: #516b89;
  --page: #f4f8fc;
  --line: #e4ebf3;
  --card: #ffffff;
  --shadow: 0 14px 34px rgba(12, 30, 55, 0.07);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Inter", "FigmaInter", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(100% - 240px, 1680px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 68px;
  background: transparent;
  box-shadow: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 26, 59, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: 230px 1fr 286px;
  align-items: center;
  height: 68px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 47px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease;
}

.site-header.is-scrolled .nav-menu {
  color: #071932;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 27px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: transparent;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: #ffffff;
}

.btn-green {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.btn-large {
  min-height: 58px;
  padding-inline: 37px;
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-white {
  min-height: 56px;
  background: #ffffff;
  color: var(--navy);
}

.btn-download {
  min-height: 56px;
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--deep);
  color: #ffffff;
}

.hero-video-bg,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-video-bg {
  background: url("../assets/spine-hero.svg") center / cover no-repeat;
  filter: saturate(1.12) contrast(1.06);
  opacity: 0.95;
  transform: scale(1.04);
  transform-origin: 62% 48%;
  animation: hero-spine-motion 16s ease-in-out infinite alternate;
}

.hero-video-bg::after {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 68% 48%, rgba(69, 232, 135, 0.14), transparent 26%),
    radial-gradient(circle at 54% 58%, rgba(69, 232, 135, 0.1), transparent 32%);
  content: "";
  opacity: 0.72;
  animation: hero-spine-glow 7s ease-in-out infinite alternate;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(6, 18, 34, 0.94) 0%, rgba(8, 23, 38, 0.82) 42%, rgba(9, 24, 35, 0.38) 73%, rgba(8, 19, 30, 0.68) 100%),
    linear-gradient(180deg, rgba(5, 15, 27, 0.18) 0%, rgba(5, 15, 27, 0.42) 100%);
}

@keyframes hero-spine-motion {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
    filter: saturate(1.05) contrast(1.02) brightness(0.94);
  }

  50% {
    transform: scale(1.085) translate3d(-1.6%, 1.1%, 0);
    filter: saturate(1.16) contrast(1.08) brightness(1);
  }

  100% {
    transform: scale(1.06) translate3d(1.3%, -0.8%, 0);
    filter: saturate(1.1) contrast(1.05) brightness(0.97);
  }
}

@keyframes hero-spine-glow {
  from {
    opacity: 0.45;
    transform: translate3d(-1%, 0, 0) scale(1);
  }

  to {
    opacity: 0.82;
    transform: translate3d(1.5%, -1%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-bg,
  .hero-video-bg::after {
    animation: none;
  }
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) 178px;
  align-items: center;
  gap: 40px;
  padding: 0 17px 83px;
}

.hero-copy {
  max-width: 840px;
}

.label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  color: var(--green-bright);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.43em;
  line-height: 1;
  text-transform: uppercase;
}

.label span {
  width: 41px;
  height: 1px;
  background: currentColor;
}

.label.dark {
  color: var(--green);
}

.label.center {
  justify-content: center;
  gap: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 31px;
  max-width: 850px;
  color: #ffffff;
  font-family: "Inter", "FigmaInter", Arial, sans-serif;
  font-size: clamp(4.35rem, 5.95vw, 6.05rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.hero h1 strong {
  display: block;
  color: var(--green-bright);
}

.hero-text {
  max-width: 660px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", "FigmaInter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 51px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  font-weight: 800;
}

.hero-badges i,
.strip-inner span:first-child,
.strip-inner span:nth-child(2),
.strip-inner span:nth-child(3) {
  color: var(--green-bright);
}

.hero-badges b {
  color: #ffffff;
}

.hero-stats {
  display: grid;
  gap: 15px;
}

.hero-stats div {
  position: relative;
  min-height: 65px;
  padding: 14px 18px 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(7, 18, 32, 0.74);
}

.hero-stats div::before {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 12px;
  width: 5px;
  border-radius: 999px;
  background: var(--green-bright);
  content: "";
}

.hero-stats b {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
}

.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 31px;
  display: grid;
  justify-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.scroll-mark span {
  width: 1px;
  height: 40px;
  background: var(--green);
}

.cert-strip {
  min-height: 38px;
  background: #07172b;
  color: #ffffff;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  font-size: 12px;
  font-weight: 800;
}

.strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce9fb;
}

.section {
  padding: 123px 0;
}

.categories {
  background: var(--page);
}

.section-head {
  max-width: 680px;
  margin-bottom: 70px;
}

.section-head.with-link {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.about-copy h2,
.global h2 {
  margin-bottom: 23px;
  color: #001b3d;
  font-size: clamp(2.55rem, 3.9vw, 3.55rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.03;
}

.section-head p:not(.label),
.about-copy p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.78;
}

.text-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}

.category-card {
  min-height: 440px;
  padding: 35px 35px 34px;
  border-top: 3px solid #63d58e;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.num {
  color: #dff5e9;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.icon,
.portfolio-grid article > span,
.facility-cards span {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border: 1px solid #b9edcf;
  border-radius: 16px;
  background: #eaf8f0;
  color: var(--green);
  font-size: 27px;
  font-weight: 800;
}

.category-card h3,
.portfolio-grid h3,
.facility-cards h3 {
  margin-bottom: 18px;
  color: #001430;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.34;
}

.category-card p,
.portfolio-grid p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.78;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 53px 0 32px;
}

.chips span {
  padding: 5px 13px;
  border: 1px solid #b9edcf;
  border-radius: 999px;
  background: #edfbf3;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.category-card > a {
  display: block;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.portfolio {
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-grid article {
  min-height: 286px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(10, 31, 61, 0.04);
}

.portfolio-grid article > span {
  margin-bottom: 29px;
  border: 0;
}

.portfolio-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.about {
  background: var(--page);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 0.95fr;
  align-items: center;
  gap: 99px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 29px;
}

.experience-card {
  position: absolute;
  right: -24px;
  bottom: -18px;
  width: 198px;
  min-height: 108px;
  padding: 16px 22px;
  border-radius: 24px;
  background: #10386f;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 28, 66, 0.2);
}

.experience-card b {
  display: block;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.experience-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.about-copy {
  padding-top: 31px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px 78px;
  margin: 36px 0 34px;
}

.metrics b {
  display: block;
  color: var(--navy);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.metrics em {
  color: var(--green);
  font-size: 17px;
  font-style: normal;
}

.metrics span {
  color: #7488a5;
  font-size: 12px;
  font-weight: 700;
}

.facility {
  position: relative;
  overflow: hidden;
  padding: 116px 0 82px;
  background:
    linear-gradient(rgba(6, 18, 34, 0.9), rgba(6, 18, 34, 0.95)),
    url("../assets/facility-bg.svg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.facility h2 {
  margin: 0;
  color: #effff6;
  font-size: clamp(6rem, 12.45vw, 11.9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.facility h2::first-letter {
  color: #ffffff;
}

.facility-sub {
  margin: 23px 0 73px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 19px;
  font-weight: 900;
}

.facility-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 58px;
  text-align: left;
}

.facility-cards article {
  min-height: 239px;
  padding: 31px 29px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.facility-cards span {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-color: rgba(31, 201, 91, 0.28);
  background: rgba(31, 201, 91, 0.12);
}

.facility-cards h3 {
  color: #ffffff;
}

.facility-cards p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 700;
}

.global {
  padding: 74px 0 16px;
  background: #061222;
  color: #ffffff;
}

.global-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 58px;
}

.global h2 {
  max-width: 600px;
  color: #ffffff;
}

.global-stats {
  display: flex;
  gap: 54px;
}

.global-stats b {
  display: block;
  color: #c9ffdc;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.global-stats span {
  color: #7d8ea8;
  font-size: 12px;
  font-weight: 700;
}

.map-card {
  padding: 48px 40px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 45%, rgba(16, 131, 61, 0.08), transparent 48%),
    #071322;
  overflow: hidden;
}

.map-card svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1120 / 590;
  overflow: hidden;
}

.land {
  fill: rgba(13, 41, 40, 0.92);
  stroke: rgba(22, 129, 78, 0.72);
  stroke-width: 1.4;
}

.routes path {
  fill: none;
  stroke: #0f8248;
  stroke-dasharray: 7 12;
  stroke-opacity: 0.32;
}

.pin circle:first-child {
  fill: rgba(29, 204, 89, 0.12);
}

.pin circle:nth-child(2) {
  fill: #24d061;
  stroke: rgba(85, 255, 145, 0.42);
  stroke-width: 9;
}

.pin text {
  fill: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  text-anchor: middle;
}

.map-legend {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, max-content));
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7788a2;
  font-size: 12px;
  font-weight: 800;
}

.map-legend span {
  white-space: nowrap;
}

.map-legend span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #22c55e;
  content: "";
  vertical-align: middle;
}

.partnership {
  padding: 121px 0 118px;
  background: linear-gradient(135deg, #0d4d27, #10833d);
  color: #ffffff;
  text-align: center;
}

.partnership h2 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(3.7rem, 5.7vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -0.078em;
  line-height: 1;
}

.partnership p:not(.label) {
  max-width: 600px;
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 700;
}

.partner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer {
  padding: 70px 0 27px;
  background: #061222;
  color: #8192ad;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.2fr;
  gap: 72px;
  padding-bottom: 64px;
}

.footer h3 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 14px;
}

.footer p,
.footer a {
  display: block;
  color: #8192ad;
  font-size: 13px;
  font-weight: 700;
}

.footer a {
  margin-bottom: 17px;
}

.footer img {
  width: 150px;
  height: auto;
  margin-bottom: 28px;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 29px;
}

.social span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #41516a;
  font-size: 12px;
}

body {
  font-family: "Instrument Sans", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-head h2,
.about-copy h2,
.global h2,
.facility h2,
.partnership h2,
.category-card h3,
.portfolio-grid h3,
.facility-cards h3,
.footer h3 {
  font-family: "Instrument Sans", sans-serif;
}

p,
.hero-text,
.section-head p:not(.label),
.about-copy p,
.category-card p,
.portfolio-grid p,
.facility-cards p,
.partnership p:not(.label),
.footer p {
  font-family: "Inter", sans-serif;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #ffffff;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: clamp(3.4rem, 4.9vw, 66.893px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 strong {
  font-weight: 900;
}

.section-head h2,
.about-copy h2,
.global h2,
.facility h2,
.partnership h2 {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.category-card h3,
.portfolio-grid h3,
.facility-cards h3,
.experience-card b,
.metrics b,
.global-stats b,
.num {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-menu,
.btn,
.hero-text,
.section-head p:not(.label),
.about-copy p,
.category-card p,
.portfolio-grid p,
.facility-cards p,
.partnership p:not(.label),
.footer p,
.footer a {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-menu,
.btn {
  font-size: 16px;
}

.hero-text {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.45;
}

.hero-stats b {
  font-size: 26px;
}

.hero-stats span {
  font-size: 13px;
}

.label,
.scroll-mark,
.strip-inner,
.text-link,
.category-card > a,
.portfolio-grid a,
.facility-sub,
.pin text,
.footer h3,
.hero-badges span,
.hero-stats span,
.metrics span,
.global-stats span,
.map-legend {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-weight: 700;
}

.site-header .wrap,
.hero .wrap {
  width: min(100% - 240px, 1680px);
}

.nav {
  grid-template-columns: 260px 1fr 298px;
  height: 96px;
}

.site-header {
  height: 96px;
}

.brand {
  width: 150px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-menu {
  gap: 45px;
}

.nav-actions {
  gap: 14px;
}

.nav-actions .btn {
  min-height: 52px;
  padding-inline: 30px;
}

.nav-actions .btn-green {
  padding-inline: 32px;
}

.site-header {
  height: 80px;
}

.nav.wrap {
  width: min(100% - 240px, 1680px);
}

.nav {
  grid-template-columns: 180px 1fr 298px;
  height: 80px;
  gap: 24px;
}

.brand {
  width: 112px;
}

.brand img {
  width: 112px;
  height: auto;
}

.nav-menu {
  gap: 44px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 19.5px;
}

.site-header.is-scrolled .nav-menu {
  color: rgba(7, 25, 50, 0.88);
}

.nav-actions {
  gap: 16px;
}

.nav-actions .btn {
  min-width: 0;
  min-height: 0;
  padding: 10px 24px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
}

.nav-actions .btn-outline {
  min-width: 0;
}

.nav-actions .btn-green {
  min-width: 0;
}

.category-grid {
  gap: 24px;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 396px;
  padding: 32px 32px 31px;
  border-top-width: 3px;
  border-radius: 22px;
}

.card-top {
  margin-bottom: 25px;
}

.category-card .num {
  font-size: 49px;
}

.category-card .icon {
  width: 51px;
  height: 51px;
  border-radius: 14px;
  font-size: 24px;
}

.category-card h3 {
  min-height: 50px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.3;
}

.category-card p {
  min-height: 105px;
  font-size: 15px;
  line-height: 1.75;
}

.category-card .chips {
  gap: 10px;
  margin: auto 0 29px;
}

.category-card .chips span {
  padding: 5px 12px;
  font-size: 12px;
}

.category-card > a {
  padding-top: 21px;
  font-size: 14px;
}

.hero-inner {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 212px;
  gap: 80px;
  min-height: 100vh;
  padding: 142px 0 90px;
}

.hero-copy {
  max-width: 860px;
}

.hero .label {
  margin-bottom: 53px;
}

.hero h1 {
  max-width: 845px;
  margin-bottom: 42px;
}

.hero-text {
  max-width: 580px;
  margin: 0 0 57px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.78;
}

.hero-actions {
  gap: 20px;
  margin-bottom: 0;
}

.hero-actions .btn-large {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-height: 54.6px;
  padding: 16px 36px;
  line-height: 1;
}

.hero-actions .btn-green {
  width: auto;
  min-width: 263px;
}

.hero-actions .btn-glass {
  width: 148.68px;
  min-width: 148.68px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.071);
}

.hero-actions .btn span {
  margin-left: 8px;
  font-size: 18px;
  line-height: 0;
}

.hero-badges {
  gap: 15px;
  margin-bottom: 120px;
}

.hero-badges span {
  font-family: "Inter", sans-serif;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.025em;
  line-height: 18px;
  white-space: nowrap;
}

.hero-badges span:nth-child(1) {
  width: 250px;
}

.hero-badges span:nth-child(2) {
  width: 237px;
}

.hero-badges span:nth-child(3) {
  width: 282px;
}

.hero-badges i {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.hero-badges b {
  font-size: 12px;
  font-weight: 700;
}

.hero-stats {
  position: absolute;
  top: clamp(300px, 47vh, 460px);
  right: -64px;
  align-self: start;
  width: 212px;
  gap: 16px;
  margin-top: 0;
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 169.61px;
  height: 63.35px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(5, 13, 26, 0.55);
}

.hero-stats div::before {
  position: static;
  flex: 0 0 7px;
  height: 40px;
}

.hero-stats p {
  min-width: 0;
  margin: 0;
}

.hero-stats b {
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.scroll-mark {
  bottom: 96px;
  transform: translateX(-50%);
  gap: 14px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.scroll-mark span {
  height: 48px;
  background: rgba(6, 151, 71, 0.8);
}

.cert-strip {
  min-height: 70px;
  background: #06172a;
}

.strip-inner {
  min-height: 70px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 18px;
}

.strip-inner span {
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.strip-inner b {
  font-weight: 600;
}

.hero .cert-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  z-index: 2;
}

.hero .cert-strip .wrap {
  width: min(100% - 240px, 1680px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Instrument Sans", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
}

.experience-card b {
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.experience-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.metrics b {
  color: #0d2d5e;
  font-family: "Instrument Sans", sans-serif;
  font-size: 27.2px;
  font-weight: 900;
  line-height: 1;
}

.metrics em {
  color: var(--green);
  font-size: 17px;
  font-style: normal;
}

.metrics span {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.5;
}

.about-copy p:not(.label) {
  margin: 0 0 20px;
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.facility {
  padding: 116px 0 82px;
}

.facility h2 {
  margin: 0 0 12px;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #e9fff3 42%, #b8f9cf 66%, #79d5df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Instrument Sans", sans-serif;
  font-size: 176px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.facility h2 span {
  color: transparent;
}

.facility-sub {
  margin: 0 0 73px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.facility-cards {
  gap: 22px;
  margin-bottom: 58px;
}

.facility-cards article {
  min-height: 239px;
  padding: 31px 29px;
  border-radius: 22px;
}

.facility-cards h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.facility-cards p {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.625;
}

.facility .btn-large {
  min-height: 54.6px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.partnership {
  padding: 136px 0 118px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, #0c5328 0%, #10823d 100%);
  text-align: center;
}

.partnership .label {
  justify-content: center;
  margin-bottom: 34px;
  color: rgba(170, 255, 203, 0.72);
}

.partnership h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.partnership p:not(.label) {
  max-width: 480px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.partner-actions {
  gap: 20px;
}

.partner-actions .btn {
  min-height: 54.6px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.partner-actions .btn svg {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.partner-actions .btn-white {
  min-width: 234px;
  border-color: #ffffff;
  background: #ffffff;
  color: #001f4d;
}

.partner-actions .btn-download {
  min-width: 299px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .hero-stats {
    width: auto;
  }

  .hero-stats div {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .wrap,
  .site-header .wrap,
  .hero .wrap {
    width: min(100% - 56px, 1412px);
  }

  .hero .cert-strip .wrap {
    width: min(100% - 56px, 1412px);
  }

  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-menu {
    gap: 24px;
  }

  .facility h2 {
    font-size: clamp(84px, 15vw, 176px);
  }

  .partnership h2 {
    font-size: clamp(48px, 8vw, 80px);
  }

  .category-grid,
  .portfolio-grid,
  .facility-cards {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .global-head {
    grid-template-columns: 1fr;
  }

  .global-stats {
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-inner,
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-panel {
    width: min(100%, 260px);
  }

  .ceo-layout,
  .team-summary,
  .overview-facts,
  .department-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .wrap,
  .site-header .wrap,
  .hero .wrap {
    width: min(100% - 28px, 1412px);
  }

  .hero .cert-strip .wrap {
    width: min(100% - 28px, 1412px);
  }

  .site-header,
  .nav {
    height: 72px;
  }

  .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
  }

  .site-header.is-scrolled .nav-toggle {
    border-color: var(--line);
    background: #ffffff;
  }

  .site-header.is-scrolled .nav-toggle span {
    background: var(--navy);
  }

  .nav-menu,
  .nav-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    display: none;
    background: #ffffff;
  }

  .nav-menu {
    top: 72px;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu.open {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 83px;
  }

  .hero .label {
    margin-bottom: 32px;
  }

  .hero h1 {
    margin-bottom: 28px;
  }

  .hero-badges {
    margin-bottom: 0;
  }

  .hero-stats {
    position: static;
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-actions,
  .partner-actions {
    flex-direction: column;
  }

  .hero-actions .btn-large {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head.with-link,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .metrics,
  .global-stats,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .map-legend {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-legend span {
    white-space: normal;
  }

  .page-hero,
  .about-hero-inner {
    min-height: auto;
  }

  .about-hero-inner {
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .about-page-section {
    padding: 76px 0;
  }

  .about-info-card {
    padding: 26px;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .about-hero p:not(.label) {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1396px);
  }

  .site-header .wrap,
  .hero .wrap {
    width: min(100% - 24px, 1396px);
  }

  .hero .cert-strip .wrap {
    width: min(100% - 24px, 1396px);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .strip-inner {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .category-card,
  .portfolio-grid article,
  .facility-cards article {
    padding: 26px;
  }

  .experience-card {
    right: 14px;
  }
}

.label,
.partnership .label {
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #16a34a;
  line-height: 1.5;
  text-transform: uppercase;
}

.label.center {
  gap: 14px;
}

.about-copy .label {
  margin: 0 0 32px;
  color: #16a34a;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.partnership .label {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.global h2 {
  max-width: 520px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 51.2px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--deep);
  color: #ffffff;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: 80px;
  padding-top: 80px;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #ffffff;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: clamp(3.4rem, 4.9vw, 66.893px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.about-hero p:not(.label) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
}

.about-hero-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(7, 21, 38, 0.2), rgba(7, 21, 38, 0.86)),
    url("../assets/spine-hero.svg") 62% center / cover no-repeat;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.about-hero-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(69, 232, 135, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(69, 232, 135, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.28;
}

.about-hero-spine {
  position: absolute;
  inset: 32px 32px 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 13, 26, 0.26);
}

.about-hero-metrics {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 13, 26, 0.72);
}

.about-hero-metrics b {
  display: block;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.about-hero-metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.about-page-section {
  padding: 104px 0 112px;
  background:
    radial-gradient(circle at 8% 18%, rgba(6, 151, 71, 0.1), transparent 28%),
    linear-gradient(180deg, #f4f8fc 0%, #eef5fb 54%, #f8fbfe 100%);
}

.about-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-info-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.about-info-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), rgba(69, 232, 135, 0.18));
  content: "";
}

.about-span-2 {
  grid-column: 1 / -1;
}

.about-info-card .label {
  margin-bottom: 18px;
}

.about-info-card h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.about-info-card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
}

.about-info-card p,
.about-list,
.about-list li,
.certificate-grid em {
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.about-info-card p {
  margin: 0 0 18px;
}

.overview-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.overview-facts div {
  min-height: 124px;
  padding: 20px;
  border: 1px solid #dbe6f1;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.9)),
    radial-gradient(circle at 100% 0%, rgba(6, 151, 71, 0.12), transparent 42%);
}

.overview-facts span,
.department-grid span {
  display: block;
  color: #94a3b8;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.overview-facts b {
  display: block;
  margin-top: 11px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.overview-facts a {
  display: inline-block;
  margin-left: 4px;
  color: var(--green);
  font-weight: 800;
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.about-list b {
  color: var(--text);
  font-weight: 800;
}

.about-list a {
  color: var(--green);
  font-weight: 800;
}

.about-list ul {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-left: 20px;
}

.ceo-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  gap: 42px;
}

.ceo-photo {
  display: grid;
  min-height: 360px;
  place-items: end start;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(6, 18, 34, 0.08), rgba(6, 18, 34, 0.74)),
    url("../assets/spine-hero.svg") 62% center / cover no-repeat;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.ceo-quote {
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.ceo-name {
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.statement-card {
  display: grid;
  align-content: start;
  min-height: 310px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 100% 0%, rgba(6, 151, 71, 0.12), transparent 46%);
}

.statement-card p:not(.label) {
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(27px, 2.3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
}

.team-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.team-summary div {
  padding: 20px;
  border: 1px solid #b9edcf;
  border-radius: 18px;
  background: #edfbf3;
}

.team-summary b {
  display: block;
  color: var(--navy);
  font-family: "Instrument Sans", sans-serif;
  font-size: 27.2px;
  font-weight: 900;
  line-height: 1;
}

.team-summary span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.department-grid div {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #dbe6f1;
  border-radius: 16px;
  background: #f8fbfe;
}

.department-grid b {
  color: var(--navy);
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.team-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: #edfbf3;
  color: #475569;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.certificate-grid a {
  display: grid;
  min-height: 178px;
  align-content: start;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid #63d58e;
  border-radius: 20px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbfe),
    radial-gradient(circle at 100% 0%, rgba(6, 151, 71, 0.12), transparent 46%);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.certificate-grid a:hover {
  border-color: #b9edcf;
  box-shadow: 0 18px 42px rgba(12, 30, 55, 0.1);
  transform: translateY(-3px);
}

.certificate-grid span {
  color: #dff5e9;
  font-family: "Instrument Sans", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.certificate-grid b {
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
}

.certificate-grid em {
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .about-hero-inner,
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-panel {
    min-height: 360px;
  }

  .ceo-layout,
  .team-summary,
  .overview-facts,
  .department-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-hero,
  .about-hero-inner {
    min-height: auto;
  }

  .about-hero-inner {
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 76px;
  }

  .about-page-section {
    padding: 76px 0;
  }

  .about-info-card {
    padding: 26px;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .about-hero p:not(.label) {
    font-size: 18px;
  }
}

.about-ref-body {
  background: #ffffff;
}

.about-ref-body .site-header {
  height: 100px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(12, 30, 55, 0.06);
}

.about-ref-body .nav {
  height: 100px;
  grid-template-columns: 180px 1fr 298px;
}

.about-ref-body .nav-menu {
  gap: 44px;
  color: #0f1b2d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 19.5px;
}

.about-ref-body .nav-menu a.active,
.about-ref-body .nav-menu a[aria-current="page"] {
  color: #069747;
}

.about-ref-body .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: #ffffff;
}

.about-ref {
  color: #0f1b2d;
  background: #ffffff;
}

.about-ref .label {
  margin-bottom: 34px;
  color: #009647;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-ref h1,
.about-ref h2,
.about-ref h3 {
  font-family: "Instrument Sans", sans-serif;
  color: #0f1b2d;
  font-weight: 900;
  letter-spacing: 0;
}

.about-ref p {
  font-family: "Inter", sans-serif;
  color: #334966;
}

.about-ref-hero {
  padding: 170px 0 72px;
  background:
    linear-gradient(90deg, rgba(15, 27, 45, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 27, 45, 0.045) 1px, transparent 1px),
    #f8fbfe;
  background-size: 90px 90px;
}

.about-ref-hero-grid,
.about-ref-two-col,
.about-ref-ceo-grid,
.about-ref-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 92px;
}

.about-ref-copy h1 {
  max-width: 700px;
  margin: 0 0 34px;
  font-size: clamp(58px, 5.2vw, 92px);
  line-height: 1.04;
}

.about-ref-copy h1 strong {
  display: block;
  color: #169b48;
  font: inherit;
}

.about-ref-copy p:not(.label) {
  max-width: 660px;
  margin: 0 0 46px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
}

.about-ref-hero-media,
.about-ref-media-card {
  position: relative;
  overflow: hidden;
  min-height: 576px;
  border-radius: 36px;
  background: #061222;
}

.about-ref-hero-media img,
.about-ref-media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.about-ref-hero-media::after,
.about-ref-media-card::after,
.about-ref-ceo-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(4, 17, 31, 0.82) 100%);
  content: "";
}

.about-ref-pill {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(5, 13, 26, 0.72);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.about-ref-float {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  min-width: 160px;
  padding: 20px 26px;
  border: 1px solid rgba(37, 199, 110, 0.22);
  border-radius: 16px;
  background: rgba(5, 13, 26, 0.82);
}

.about-ref-float b {
  display: block;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.about-ref-float span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.about-ref-section {
  padding: 104px 0;
}

.about-ref-overview {
  background: #ffffff;
}

.about-ref-text h2,
.about-ref-team h2,
.about-ref-cert-head h2,
.about-ref-center-head h2 {
  margin: 0 0 36px;
  font-size: clamp(48px, 4.2vw, 64px);
  line-height: 1.05;
}

.about-ref-text p:not(.label),
.about-ref-team p,
.about-ref-cert-head p,
.about-ref-center-head p {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
}

.about-ref-media-card {
  min-height: 576px;
}

.about-ref-facts {
  padding: 10px 0 140px;
  background: #ffffff;
}

.about-ref-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-ref-fact-grid div {
  min-height: 122px;
  padding: 30px;
  border: 1px solid #e3eaf2;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(12, 30, 55, 0.06);
}

.about-ref-fact-grid span {
  display: block;
  color: #94a3b8;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-ref-fact-grid b {
  display: block;
  margin-top: 16px;
  color: #001430;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.about-ref-ceo,
.about-ref-team,
.about-ref-standards {
  padding: 120px 0;
  background: #f3f7fb;
}

.about-ref-ceo-photo {
  position: relative;
  min-height: 666px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(5,13,26,0.72)),
    url("../assets/surgery.svg") center / cover no-repeat;
}

.about-ref-ceo-photo span {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 1;
  color: #ffffff;
}

.about-ref-ceo-photo b,
.about-ref-ceo-photo small {
  display: block;
  font-family: "Inter", sans-serif;
}

.about-ref-ceo-photo b {
  font-size: 26px;
  font-weight: 900;
}

.about-ref-ceo-photo small {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
}

.about-ref-quote {
  position: relative;
  padding: 52px;
  border: 1px solid #dcefe4;
  border-radius: 34px;
  background: #ffffff;
}

.about-ref-quote::before {
  position: absolute;
  top: 34px;
  left: 42px;
  color: rgba(22, 163, 74, 0.12);
  content: "â€œ";
  font-family: Georgia, serif;
  font-size: 118px;
  line-height: 1;
}

.about-ref-quote p {
  position: relative;
  margin: 0 0 42px;
  color: #15304f;
  font-size: 22px;
  font-style: italic;
  line-height: 1.72;
}

.about-ref-quote div {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #dcefe4;
}

.about-ref-quote span {
  display: grid;
  width: 56px;
  height: 56px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  background: #169b48;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.about-ref-quote b {
  color: #001430;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.about-ref-quote em {
  color: #526a88;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
}

.about-ref-center-head {
  max-width: 900px;
  margin: 0 auto 92px;
  text-align: center;
}

.about-ref-direction {
  background: #ffffff;
}

.about-ref-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.about-ref-direction-grid article {
  min-height: 456px;
  padding: 46px;
  border: 1px solid #d8eadf;
  border-radius: 28px;
  background: linear-gradient(135deg, #f2fbf6, #ffffff);
}

.about-ref-direction-grid article:nth-child(2) {
  border-color: #dce4ee;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.about-ref-direction-grid i,
.about-ref-standard-grid i {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 20px;
  background: #169b48;
  color: #ffffff;
  font-style: normal;
  font-size: 28px;
}

.about-ref-direction-grid article:nth-child(2) i {
  background: #0b2d5e;
}

.about-ref-direction-grid span {
  display: block;
  margin-bottom: 24px;
  color: #009647;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-ref-direction-grid h3 {
  margin: 0 0 28px;
  font-size: 25px;
  line-height: 1.32;
}

.about-ref-direction-grid p {
  margin: 0;
  color: #526a88;
  font-size: 19px;
  line-height: 1.7;
}

.about-ref-team-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.08fr);
}

.about-ref-team-total {
  margin: 44px 0 26px;
  padding: 38px 34px;
  border-radius: 26px;
  background: #169b48;
  color: #ffffff;
}

.about-ref-team-total b {
  display: block;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.about-ref-team-total span,
.about-ref-exp em {
  display: block;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.about-ref-exp {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 26px;
  border: 1px solid #d8eadf;
  border-radius: 20px;
  background: #ffffff;
}

.about-ref-exp span,
.about-ref-departments i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #e9f8ef;
  color: #169b48;
  font-style: normal;
}

.about-ref-exp b {
  color: #001430;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.about-ref-exp em {
  margin: 0;
  color: #526a88;
  font-style: normal;
  font-weight: 500;
}

.about-ref-departments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-ref-departments div {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 144px;
  padding: 26px;
  border: 1px solid #e3eaf2;
  border-radius: 24px;
  background: #ffffff;
}

.about-ref-departments div.active {
  border-color: #b8efcd;
  box-shadow: 0 22px 46px rgba(22, 163, 74, 0.12);
}

.about-ref-departments b {
  color: #001430;
  font-family: "Instrument Sans", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.about-ref-departments span {
  grid-column: 1 / -1;
  color: #001430;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.about-ref-departments em {
  position: relative;
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f5;
}

.about-ref-departments em::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, #169b48, #7edca3);
  content: "";
}

.about-ref-certs {
  background: #ffffff;
}

.about-ref-cert-head {
  max-width: 760px;
  margin-bottom: 78px;
}

.about-ref-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.about-ref-cert-grid article {
  overflow: hidden;
  border: 1px solid #e3eaf2;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 30, 55, 0.06);
}

.about-ref-cert-grid article > div {
  min-height: 176px;
  padding: 38px 24px;
  background:
    radial-gradient(circle at 100% 0%, transparent 0 86px, rgba(22, 163, 74, 0.14) 87px 88px, transparent 89px),
    radial-gradient(circle at 0% 100%, transparent 0 58px, rgba(22, 163, 74, 0.12) 59px 60px, transparent 61px),
    #dffbed;
  text-align: center;
}

.about-ref-cert-grid i {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 18px;
  background: #169b48;
  color: #ffffff;
  font-style: normal;
  font-size: 28px;
}

.about-ref-cert-grid article > div span {
  color: #009647;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-ref-cert-grid h3 {
  margin: 28px 24px 12px;
  font-size: 18px;
  line-height: 1.3;
}

.about-ref-cert-grid p {
  min-height: 62px;
  margin: 0 24px 24px;
  color: #8a9ab5;
  font-size: 14px;
  line-height: 1.65;
}

.about-ref-cert-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 24px 26px;
}

.about-ref-cert-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9edcf;
  border-radius: 999px;
  color: #009647;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.about-ref-cert-grid a:nth-child(2) {
  border-color: #169b48;
  background: #169b48;
  color: #ffffff;
}

.about-ref-standards {
  background: #f3f7fb;
}

.about-ref-standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.about-ref-standard-grid article {
  min-height: 328px;
  padding: 36px;
  border-radius: 26px;
  background: #ffffff;
}

.about-ref-standard-grid i {
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  border: 1px solid #b9edcf;
  background: #e9f8ef;
  color: #169b48;
}

.about-ref-standard-grid h3 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.3;
}

.about-ref-standard-grid p {
  margin: 0;
  color: #526a88;
  font-size: 17px;
  line-height: 1.72;
}

.about-ref-cta {
  padding: 132px 0 138px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, #185b2f 0%, #46a43a 100%);
  text-align: center;
}

.about-ref-cta .label {
  justify-content: center;
  color: rgba(255,255,255,.65);
}

.about-ref-cta h2 {
  max-width: 880px;
  margin: 0 auto 34px;
  color: #ffffff;
  font-size: clamp(54px, 5vw, 84px);
  line-height: 1.06;
}

.about-ref-cta p:not(.label) {
  max-width: 640px;
  margin: 0 auto 52px;
  color: rgba(255,255,255,.86);
  font-size: 22px;
  line-height: 1.62;
}

@media (max-width: 1200px) {
  .about-ref-hero-grid,
  .about-ref-two-col,
  .about-ref-ceo-grid,
  .about-ref-team-grid,
  .about-ref-direction-grid {
    grid-template-columns: 1fr;
  }

  .about-ref-cert-grid,
  .about-ref-standard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .about-ref-body .site-header,
  .about-ref-body .nav {
    height: 72px;
  }

  .about-ref-hero {
    padding-top: 120px;
  }

  .about-ref-fact-grid,
  .about-ref-departments,
  .about-ref-cert-grid,
  .about-ref-standard-grid {
    grid-template-columns: 1fr;
  }

  .about-ref-copy h1,
  .about-ref-text h2,
  .about-ref-team h2,
  .about-ref-cert-head h2,
  .about-ref-center-head h2,
  .about-ref-cta h2 {
    font-size: clamp(42px, 12vw, 58px);
  }
}

/* About page reference-match refinements */
.about-ref-body .nav.wrap {
  width: min(100% - 240px, 1680px);
}

.about-ref-body .nav-actions .btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
}

.about-ref .label {
  gap: 14px;
  margin-bottom: 28px;
  color: #16a34a;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 16.5px;
}

.about-ref-hero {
  padding: 170px 0 75px;
  background:
    linear-gradient(90deg, rgba(15, 27, 45, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 27, 45, 0.04) 1px, transparent 1px),
    #f8fbfe;
  background-size: 90px 90px;
}

.about-ref-hero-grid,
.about-ref-two-col {
  display: grid;
  grid-template-columns: 531.6px 531.6px;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.about-ref-copy h1 {
  max-width: 531.6px;
  margin: 0 0 28px;
  color: #0a1628;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.06;
}

.about-ref-copy p:not(.label) {
  max-width: 520px;
  margin: 0 0 36px;
  color: #475569;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.82;
}

.about-ref-copy .btn-large {
  min-height: 53px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.about-ref-hero-media,
.about-ref-media-card {
  width: 531.6px;
  min-height: 398.7px;
  height: 398.7px;
  border-radius: 28px;
}

.about-ref-hero-media::after,
.about-ref-media-card::after,
.about-ref-ceo-photo::after {
  background: rgba(54, 129, 184, 0.52);
}

.about-ref-pill {
  top: 25px;
  right: 25px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(5, 13, 26, 0.72);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.about-ref-float {
  bottom: 30px;
  left: 30px;
  min-width: 150px;
  padding: 18px 24px;
  border-radius: 16px;
}

.about-ref-float b {
  font-size: 30px;
}

.about-ref-float span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
}

.about-ref-section {
  padding: 100px 0;
}

.about-ref-text h2,
.about-ref-team h2,
.about-ref-cert-head h2,
.about-ref-center-head h2 {
  margin: 0 0 28px;
  color: #0a1628;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
}

.about-ref-text p:not(.label) {
  max-width: 531.6px;
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.82;
}

.about-ref-facts {
  padding: 8px 0 140px;
}

.about-ref-fact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-ref-fact-grid div {
  min-height: 99.55px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
}

.about-ref-fact-grid span {
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 15.75px;
}

.about-ref-fact-grid b {
  margin-top: 0;
  color: #0a1628;
  font-size: 17.6px;
  line-height: 1.375;
}

.about-ref-ceo,
.about-ref-team,
.about-ref-standards {
  padding: 120px 0;
  background: #f3f7fb;
}

.about-ref-ceo-grid {
  display: grid;
  grid-template-columns: 400px 539.6px;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.about-ref-ceo-photo {
  width: 400px;
  min-height: 533.33px;
  height: 533.33px;
  border-radius: 28px;
}

.about-ref-ceo-photo span {
  bottom: 28px;
  left: 28px;
}

.about-ref-ceo-photo b {
  color: #ffffff;
  font-size: 24px;
}

.about-ref-ceo-photo small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.about-ref-quote {
  width: 539.6px;
  min-height: 389.6px;
  padding: 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
}

.about-ref-quote::before {
  top: 30px;
  left: 34px;
  font-size: 96px;
}

.about-ref-quote p {
  margin: 0 0 32px;
  color: #334155;
  font-size: 16px;
  font-style: italic;
  line-height: 1.85;
}

.about-ref-quote div {
  grid-template-columns: 48px 1fr;
  padding-top: 28px;
}

.about-ref-quote span {
  width: 48px;
  height: 48px;
  font-size: 14px;
}

.about-ref-quote b {
  font-size: 16.8px;
}

.about-ref-quote em {
  color: #64748b;
  font-size: 12px;
}

.about-ref-center-head {
  max-width: 1159.2px;
  margin: 0 auto 84px;
}

.about-ref-center-head p:not(.label) {
  max-width: 580px;
  margin: 0 auto;
  color: #64748b;
  font-size: 15px;
  line-height: 1.625;
}

.about-ref-direction-grid {
  gap: 30px;
}

.about-ref-direction-grid article {
  min-height: 392px;
  padding: 46px;
  border-radius: 28px;
}

.about-ref-direction-grid h3 {
  margin: 0 0 24px;
  color: #001430;
  font-size: 22px;
  line-height: 1.32;
}

.about-ref-direction-grid p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.78;
}

.about-ref-team-grid {
  grid-template-columns: 459.23px minmax(0, 1fr);
  gap: 100px;
}

.about-ref-team p {
  max-width: 459.23px;
  margin: 0 0 32px;
  color: #475569;
  font-size: 15px;
  line-height: 1.82;
}

.about-ref-team-total {
  width: 459.23px;
  min-height: 143.8px;
  margin: 0 0 20px;
  padding: 28px;
  border-radius: 22px;
}

.about-ref-team-total b {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 60.8px;
  line-height: 1;
}

.about-ref-team-total span {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 21px;
}

.about-ref-exp {
  width: 459.23px;
  min-height: 84.8px;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
}

.about-ref-exp b {
  color: #0a1628;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16.8px;
  line-height: 1.5;
}

.about-ref-exp em {
  color: #64748b;
  font-size: 12px;
  line-height: 18px;
}

.about-ref-departments {
  gap: 20px;
}

.about-ref-departments div {
  min-height: 136.6px;
  padding: 20px;
  border-radius: 22px;
}

.about-ref-departments div > i {
  width: 48px;
  height: 48px;
}

.about-ref-departments b {
  color: #16a34a;
  font-size: 32px;
  line-height: 1;
}

.about-ref-departments span {
  margin-bottom: 12px;
  color: #0a1628;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}

.about-ref-certs {
  padding-bottom: 100px;
}

.about-ref-cert-head {
  max-width: 640px;
  margin-bottom: 78px;
}

.about-ref-cert-head p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.625;
}

.about-ref-cert-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.about-ref-cert-grid article {
  border-radius: 24px;
}

.about-ref-cert-grid article > div {
  height: 140px;
  min-height: 140px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-ref-cert-grid i {
  width: 58px;
  height: 58px;
  margin: 0 0 12px;
  border-radius: 16px;
  font-size: 23px;
}

.about-ref-cert-grid article > div span {
  font-size: 11.5px;
  font-weight: 800;
}

.about-ref-cert-grid h3 {
  margin: 20px 20px 6px;
  color: #0a1628;
  font-size: 14px;
  line-height: 21px;
}

.about-ref-cert-grid p {
  min-height: 37.38px;
  margin: 0 20px 20px;
  color: #94a3b8;
  font-size: 11.5px;
  line-height: 1.625;
}

.about-ref-cert-grid nav {
  gap: 10px;
  padding: 0 20px 20px;
}

.about-ref-cert-grid a {
  min-height: 34.85px;
  padding: 8px 0;
  font-size: 11.5px;
  font-weight: 600;
}

.about-ref-standard-grid {
  gap: 28px;
}

.about-ref-standard-grid article {
  min-height: 286.98px;
  padding: 28px;
  border-radius: 24px;
}

.about-ref-standard-grid h3 {
  margin: 0 0 12px;
  color: #0a1628;
  font-size: 15.5px;
  line-height: 23.25px;
}

.about-ref-standard-grid p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.625;
}

.about-ref-cta {
  padding: 132px 0 138px;
}

.about-ref-cta h2 {
  max-width: 1159.2px;
  margin: 0 auto 24px;
  color: #ffffff;
  font-size: 70.4px;
  line-height: 1.05;
}

.about-ref-cta p:not(.label) {
  max-width: 500px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 17px;
  line-height: 1.78;
}

.about-ref-cta .partner-actions .btn {
  min-height: 54.6px;
  padding: 16px 36px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.about-ref-cta .btn-white {
  min-width: 172.08px;
  color: #1a4d2e;
}

.about-ref-cta .btn-download {
  min-width: 282.36px;
}

@media (max-width: 1200px) {
  .about-ref-hero-grid,
  .about-ref-two-col,
  .about-ref-ceo-grid,
  .about-ref-team-grid {
    grid-template-columns: 1fr;
  }

  .about-ref-hero-media,
  .about-ref-media-card,
  .about-ref-ceo-photo,
  .about-ref-quote,
  .about-ref-team-total,
  .about-ref-exp {
    width: 100%;
  }
}

/* About page animated polish */
.about-ref {
  overflow: hidden;
}

.about-ref-hero {
  position: relative;
  overflow: hidden;
  animation: about-grid-drift 18s linear infinite;
}

.about-ref-hero::before,
.about-ref-hero::after,
.about-ref-cta::before {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.about-ref-hero-grid {
  position: relative;
  z-index: 1;
}

.about-ref-hero::before {
  width: 460px;
  height: 460px;
  top: 118px;
  right: max(24px, calc((100vw - 1180px) / 2 - 90px));
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 50%;
  animation: about-orbit-soft 9s ease-in-out infinite;
}

.about-ref-hero::after {
  width: 240px;
  height: 240px;
  left: max(18px, calc((100vw - 1180px) / 2 - 120px));
  bottom: -82px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  animation: about-float-soft 7s ease-in-out infinite alternate;
}

.about-ref-copy,
.about-ref-text,
.about-ref-ceo-copy,
.about-ref-team-grid > div:first-child,
.about-ref-cert-head,
.about-ref-center-head {
  animation: about-rise-in 0.72s ease both;
}

.about-ref-hero-media,
.about-ref-media-card,
.about-ref-ceo-photo,
.about-ref-quote,
.about-ref-fact-grid div,
.about-ref-direction-grid article,
.about-ref-departments div,
.about-ref-cert-grid article,
.about-ref-standard-grid article {
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  animation: about-rise-in 0.72s ease both;
}

.about-ref-hero-media {
  animation-delay: 0.1s;
}

.about-ref-fact-grid div:nth-child(2),
.about-ref-direction-grid article:nth-child(2),
.about-ref-departments div:nth-child(2),
.about-ref-cert-grid article:nth-child(2),
.about-ref-standard-grid article:nth-child(2) {
  animation-delay: 0.08s;
}

.about-ref-fact-grid div:nth-child(3),
.about-ref-departments div:nth-child(3),
.about-ref-cert-grid article:nth-child(3),
.about-ref-standard-grid article:nth-child(3) {
  animation-delay: 0.16s;
}

.about-ref-fact-grid div:nth-child(4),
.about-ref-departments div:nth-child(4),
.about-ref-cert-grid article:nth-child(4),
.about-ref-standard-grid article:nth-child(4) {
  animation-delay: 0.24s;
}

.about-ref-fact-grid div:nth-child(5),
.about-ref-departments div:nth-child(5),
.about-ref-cert-grid article:nth-child(5) {
  animation-delay: 0.32s;
}

.about-ref-fact-grid div:nth-child(6),
.about-ref-departments div:nth-child(6) {
  animation-delay: 0.4s;
}

.about-ref-departments div:nth-child(7) {
  animation-delay: 0.48s;
}

.about-ref-departments div:nth-child(8) {
  animation-delay: 0.56s;
}

.about-ref-hero-media:hover,
.about-ref-media-card:hover,
.about-ref-ceo-photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(12, 30, 55, 0.16);
}

.about-ref-hero-media img,
.about-ref-media-card img {
  transform: scale(1.04);
  transform-origin: center;
  animation: about-image-breathe 12s ease-in-out infinite alternate;
  transition: transform 0.6s ease;
}

.about-ref-hero-media:hover img,
.about-ref-media-card:hover img {
  transform: scale(1.08);
}

.about-ref-hero-media::before,
.about-ref-media-card::before,
.about-ref-ceo-photo::before,
.about-ref-cert-grid article > div::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.about-ref-hero-media::before,
.about-ref-media-card::before,
.about-ref-ceo-photo::before {
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  opacity: 0.8;
}

.about-ref-pill,
.about-ref-float {
  animation: about-float-soft 4.8s ease-in-out infinite alternate;
}

.about-ref-float {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.about-ref-copy .btn-large,
.about-ref-cta .partner-actions .btn {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.about-ref-copy .btn-large:hover,
.about-ref-cta .partner-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.22);
}

.about-ref-fact-grid div:hover,
.about-ref-direction-grid article:hover,
.about-ref-departments div:hover,
.about-ref-cert-grid article:hover,
.about-ref-standard-grid article:hover,
.about-ref-quote:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 163, 74, 0.36);
  box-shadow: 0 26px 56px rgba(12, 30, 55, 0.1);
}

.about-ref-direction-grid article,
.about-ref-team-total,
.about-ref-cert-grid article > div,
.about-ref-standard-grid article {
  position: relative;
  overflow: hidden;
}

.about-ref-direction-grid article::after,
.about-ref-team-total::after,
.about-ref-standard-grid article::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.52) 46%, transparent 68%);
  content: "";
  transform: translateX(-130%);
  transition: transform 0.72s ease;
}

.about-ref-direction-grid article:hover::after,
.about-ref-team-total:hover::after,
.about-ref-standard-grid article:hover::after {
  transform: translateX(130%);
}

.about-ref-direction-grid i,
.about-ref-standard-grid i,
.about-ref-cert-grid i,
.about-ref-exp span,
.about-ref-departments i {
  animation: about-icon-pulse 3.6s ease-in-out infinite;
}

.about-ref-departments em::after {
  transform-origin: left;
  animation: about-bar-fill 1.25s ease both;
}

.about-ref-cert-grid article > div {
  position: relative;
}

.about-ref-cert-grid article > div::before {
  inset: -80px auto auto -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.14);
  animation: about-float-soft 6s ease-in-out infinite alternate;
}

.about-ref-cta {
  position: relative;
  overflow: hidden;
}

.about-ref-cta::before {
  width: 540px;
  height: 540px;
  top: -230px;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: about-cta-ring 10s ease-in-out infinite alternate;
}

.about-ref-cta .wrap {
  position: relative;
  z-index: 1;
}

@keyframes about-grid-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 90px 0, 0 90px, 0 0;
  }
}

@keyframes about-rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-float-soft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes about-orbit-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, 16px, 0) scale(1.04);
  }
}

@keyframes about-image-breathe {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-10px, 8px, 0);
  }
}

@keyframes about-icon-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.1);
  }
}

@keyframes about-bar-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes about-cta-ring {
  from {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.96);
  }

  to {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-ref *,
  .about-ref *::before,
  .about-ref *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* About page refined redesign */
.about-ref-body .site-header {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
}

.about-ref-hero {
  min-height: auto;
  padding: 160px 0 86px;
  background:
    radial-gradient(circle at 78% 22%, rgba(22, 163, 74, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(15, 27, 45, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 27, 45, 0.04) 1px, transparent 1px),
    #f8fbfe;
  background-size: auto, 90px 90px, 90px 90px, auto;
}

.about-ref-copy h1 {
  max-width: 531.6px;
  margin-bottom: 28px;
  font-size: 64px;
  line-height: 1.06;
}

.about-ref-copy h1 strong {
  display: block;
}

.about-ref-text h2,
.about-ref-team h2,
.about-ref-cert-head h2,
.about-ref-center-head h2 {
  font-size: 48px;
  line-height: 1.08;
}

.about-ref-cta h2 {
  font-size: 70.4px;
  line-height: 1.05;
}

.about-ref-hero-media,
.about-ref-media-card,
.about-ref-ceo-photo {
  border: 1px solid rgba(22, 163, 74, 0.16);
  box-shadow: 0 24px 58px rgba(12, 30, 55, 0.12);
}

.about-ref-hero-media::after,
.about-ref-media-card::after,
.about-ref-ceo-photo::after {
  background:
    linear-gradient(180deg, rgba(6, 18, 34, 0.06), rgba(6, 18, 34, 0.7)),
    rgba(54, 129, 184, 0.28);
}

.about-ref-facts {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.about-ref-fact-grid div,
.about-ref-direction-grid article,
.about-ref-departments div,
.about-ref-cert-grid article,
.about-ref-standard-grid article,
.about-ref-quote {
  box-shadow: 0 18px 42px rgba(12, 30, 55, 0.06);
}

.about-ref-fact-grid div,
.about-ref-departments div,
.about-ref-cert-grid article,
.about-ref-standard-grid article {
  position: relative;
  overflow: hidden;
}

.about-ref-fact-grid div::after,
.about-ref-departments div::after,
.about-ref-cert-grid article::after,
.about-ref-standard-grid article::after {
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #16a34a, #45e887);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.about-ref-fact-grid div:hover::after,
.about-ref-departments div:hover::after,
.about-ref-cert-grid article:hover::after,
.about-ref-standard-grid article:hover::after {
  transform: scaleX(1);
}

.about-ref-ceo {
  background:
    linear-gradient(90deg, rgba(22, 163, 74, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 163, 74, 0.045) 1px, transparent 1px),
    #f3f7fb;
  background-size: 86px 86px;
}

.about-ref-direction-grid article {
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 163, 74, 0.09), transparent 32%),
    #ffffff;
}

.about-ref-direction-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(11, 45, 94, 0.09), transparent 32%),
    #ffffff;
}

.about-ref-cta {
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, #185b2f 0%, #46a43a 100%);
}

@media (max-width: 820px) {
  .about-ref-copy h1,
  .about-ref-text h2,
  .about-ref-team h2,
  .about-ref-cert-head h2,
  .about-ref-center-head h2,
  .about-ref-cta h2 {
    font-size: clamp(42px, 12vw, 58px);
  }
}

/* About overview reference layout */
.about-ref-overview {
  padding: 58px 0 0;
  background: #ffffff;
}

.about-ref-overview .about-ref-two-col {
  width: min(100% - 240px, 1680px);
  grid-template-columns: minmax(460px, 0.9fr) minmax(620px, 1.1fr);
  gap: clamp(58px, 7vw, 120px);
  align-items: start;
}

.about-ref-overview .about-ref-text .label {
  gap: 12px;
  margin-bottom: 18px;
  color: #16a34a;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.about-ref-overview .about-ref-text .label span {
  width: 34px;
  height: 3px;
  border-radius: 999px;
}

.about-ref-overview .about-ref-text h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #071526;
  font-size: 40px;
  line-height: 1.08;
}

.about-ref-overview .about-ref-text h2::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #16a34a;
  content: "";
}

.about-ref-overview .about-ref-text p:not(.label) {
  max-width: 650px;
  margin: 0 0 11px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.about-ref-overview .about-ref-media-card {
  width: 100%;
  height: 300px;
  min-height: 300px;
  border: 1px solid rgba(12, 30, 55, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(12, 30, 55, 0.1);
}

.about-ref-overview .about-ref-media-card::before,
.about-ref-overview .about-ref-media-card::after,
.about-ref-overview .about-ref-float {
  display: none;
}

.about-ref-overview .about-ref-media-card img {
  min-height: 300px;
  object-position: center;
  transform: none;
  animation: none;
}

.about-ref-facts {
  padding: 28px 0 58px;
  background: #ffffff;
}

.about-ref-fact-grid {
  display: grid;
  width: min(100% - 240px, 1680px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-ref-fact-grid div {
  position: relative;
  display: grid;
  min-height: 78px;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid #e3eaf2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(12, 30, 55, 0.055);
}

.about-ref-fact-grid div:nth-child(3n) {
  border-right: 1px solid #e3eaf2;
}

.about-ref-fact-grid div:nth-child(n + 4) {
  border-bottom: 1px solid #e3eaf2;
}

.about-ref-fact-grid div::before {
  display: grid;
  width: 30px;
  height: 30px;
  grid-row: span 2;
  place-items: center;
  align-self: center;
  border: 2px solid rgba(22, 163, 74, 0.72);
  border-radius: 9px;
  color: #16a34a;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 900;
  content: "";
}

.about-ref-fact-grid div:nth-child(1)::before {
  content: "01";
}

.about-ref-fact-grid div:nth-child(2)::before {
  content: "02";
}

.about-ref-fact-grid div:nth-child(3)::before {
  content: "03";
}

.about-ref-fact-grid div:nth-child(4)::before {
  content: "04";
}

.about-ref-fact-grid div:nth-child(5)::before {
  content: "05";
}

.about-ref-fact-grid div:nth-child(6)::before {
  content: "06";
}

.about-ref-fact-grid div::after {
  display: none;
}

.about-ref-fact-grid span {
  margin: 0 0 5px;
  color: #7d8899;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.about-ref-fact-grid b {
  margin: 0;
  color: #071526;
  font-size: 16px;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .about-ref-overview .about-ref-two-col,
  .about-ref-fact-grid {
    width: min(100% - 48px, 920px);
  }

  .about-ref-overview .about-ref-two-col {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .about-ref-overview {
    padding-top: 52px;
  }

  .about-ref-overview .about-ref-two-col,
  .about-ref-fact-grid {
    width: min(100% - 32px, 560px);
  }

  .about-ref-overview .about-ref-text h2 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .about-ref-overview .about-ref-media-card,
  .about-ref-overview .about-ref-media-card img {
    height: 250px;
    min-height: 250px;
  }

  .about-ref-fact-grid {
    grid-template-columns: 1fr;
  }

  .about-ref-fact-grid div,
  .about-ref-fact-grid div:nth-child(3n),
  .about-ref-fact-grid div:nth-child(n + 4) {
    border-right: 0;
    border-bottom: 1px solid #e3eaf2;
  }

  .about-ref-fact-grid div:last-child {
    border-bottom: 0;
  }
}

/* About CEO message reference layout */
.about-ref-ceo {
  padding: 64px 0;
  background: #ffffff;
}

.about-ref-ceo-grid {
  width: min(100% - 240px, 1680px);
  min-height: 497px;
  grid-template-columns: minmax(330px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(58px, 7vw, 120px);
  align-items: center;
  padding: 30px 70px;
  border: 1px solid rgba(12, 30, 55, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 72% 28%, rgba(22, 163, 74, 0.18), transparent 30%),
    linear-gradient(135deg, #06251f 0%, #08371f 56%, #06331d 100%);
  box-shadow: 0 18px 42px rgba(12, 30, 55, 0.16);
}

.about-ref-ceo-photo {
  width: 100%;
  height: 416px;
  min-height: 416px;
  border: 0;
  border-radius: 10px;
  box-shadow: none;
}

.about-ref-ceo-photo::after {
  background: linear-gradient(180deg, transparent 42%, rgba(5, 13, 26, 0.72) 100%);
}

.about-ref-ceo-photo span {
  bottom: 22px;
  left: 24px;
  z-index: 2;
}

.about-ref-ceo-photo b {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.about-ref-ceo-photo small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.3;
}

.about-ref-ceo-copy .label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.22em;
}

.about-ref-ceo-copy .label span {
  display: none;
}

.about-ref-quote {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-ref-quote::before {
  position: static;
  display: block;
  margin: -8px 0 8px;
  color: #16a34a;
  content: "“";
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 0.8;
}

.about-ref-quote p {
  max-width: 780px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.about-ref-quote div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.about-ref-quote span {
  display: grid;
  width: 48px;
  height: 48px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  font-size: 0;
}

.about-ref-quote span::before {
  color: #ffffff;
  content: "DS";
  font-size: 14px;
  font-weight: 900;
}

.about-ref-quote b {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.about-ref-quote em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .about-ref-ceo-grid {
    width: min(100% - 48px, 920px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px;
  }
}

@media (max-width: 820px) {
  .about-ref-ceo {
    padding: 48px 0;
  }

  .about-ref-ceo-grid {
    width: min(100% - 32px, 560px);
    padding: 22px;
  }

  .about-ref-ceo-photo {
    height: 260px;
    min-height: 260px;
  }

  .about-ref-quote p {
    font-size: 15px;
  }
}

/* Vision and mission reference layout */
.about-ref-direction {
  padding: 52px 0 58px;
  background: #ffffff;
}

.about-ref-direction .wrap {
  width: min(100% - 240px, 1680px);
}

.about-ref-direction .about-ref-center-head {
  max-width: 760px;
  margin: 0 auto 32px;
}

.about-ref-direction .about-ref-center-head .label {
  justify-content: center;
  margin-bottom: 14px;
  color: #168545;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.about-ref-direction .about-ref-center-head .label span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
}

.about-ref-direction .about-ref-center-head h2 {
  margin: 0;
  color: #071526;
  font-size: 34px;
  line-height: 1.05;
}

.about-ref-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-ref-direction-grid article {
  position: relative;
  display: grid;
  min-height: 286px;
  grid-template-columns: 104px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 26px;
  padding: 34px 42px 34px 30px;
  overflow: hidden;
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 30, 55, 0.1);
}

.about-ref-direction-grid article::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: #168545;
  content: "";
}

.about-ref-direction-grid article:nth-child(2)::before {
  background: #061f45;
}

.about-ref-direction-grid article::after {
  display: none;
}

.about-ref-direction-grid i {
  display: grid;
  width: 86px;
  height: 86px;
  grid-row: 1 / span 3;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #168545;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(22, 133, 69, 0.22);
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-style: normal;
  line-height: 1;
}

.about-ref-direction-grid article:nth-child(2) i {
  border: 1px solid #e6edf4;
  background: #ffffff;
  color: #071526;
  box-shadow: 0 14px 30px rgba(12, 30, 55, 0.1);
}

.about-ref-direction-grid span {
  margin: 8px 0 18px;
  color: #168545;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.about-ref-direction-grid article:nth-child(2) span {
  color: #071526;
}

.about-ref-direction-grid h3 {
  margin: 0 0 20px;
  color: #071526;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.58;
}

.about-ref-direction-grid p {
  grid-column: 2;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

@media (max-width: 1200px) {
  .about-ref-direction .wrap {
    width: min(100% - 48px, 920px);
  }

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

@media (max-width: 820px) {
  .about-ref-direction {
    padding: 52px 0;
  }

  .about-ref-direction .wrap {
    width: min(100% - 32px, 560px);
  }

  .about-ref-direction-grid article {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .about-ref-direction-grid i {
    grid-row: auto;
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
    font-size: 40px;
  }

  .about-ref-direction-grid p {
    grid-column: auto;
  }
}

/* Team reference layout */
.about-ref-team {
  padding: 54px 0 58px;
  background: #ffffff;
}

.about-ref-team-grid {
  width: min(100% - 240px, 1680px);
  grid-template-columns: minmax(390px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 4vw, 68px);
  align-items: start;
}

.about-ref-team .label {
  gap: 12px;
  margin-bottom: 20px;
  color: #168545;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.about-ref-team .label span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
}

.about-ref-team h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #071526;
  font-size: 34px;
  line-height: 1.12;
}

.about-ref-team p:not(.label) {
  max-width: 500px;
  margin: 0 0 22px;
  color: #475569;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.62;
}

.about-ref-team-total {
  display: grid;
  width: min(100%, 360px);
  min-height: 97px;
  margin: 0 0 12px;
  padding: 18px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #168545, #0f7c2f);
  box-shadow: 0 12px 26px rgba(22, 133, 69, 0.18);
}

.about-ref-team-total::after {
  display: none;
}

.about-ref-team-total b {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 0.95;
}

.about-ref-team-total span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.25;
}

.about-ref-exp {
  display: grid;
  width: min(100%, 360px);
  min-height: 97px;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  margin-left: 0;
  padding: 18px;
  border: 1px solid #e4ebf3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(12, 30, 55, 0.06);
}

.about-ref-exp span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9f8ef;
  color: #168545;
  font-size: 17px;
  font-weight: 900;
}

.about-ref-exp b {
  color: #071526;
  font-size: 13px;
  line-height: 1.25;
}

.about-ref-exp em {
  grid-column: 2;
  color: #64748b;
  font-size: 11px;
  line-height: 1.25;
}

.about-ref-departments {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 18px 22px;
}

.about-ref-departments div {
  position: relative;
  display: grid;
  min-height: 123px;
  grid-template-columns: 52px minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px 24px;
  overflow: hidden;
  border: 1px solid #e4ebf3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(12, 30, 55, 0.075);
}

.about-ref-departments div::after {
  display: none;
}

.about-ref-departments div.active {
  border-color: #dbe8df;
  box-shadow: 0 12px 28px rgba(12, 30, 55, 0.075);
}

.about-ref-departments i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #168545;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.about-ref-departments span {
  grid-column: auto;
  margin: 0;
  color: #071526;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.38;
}

.about-ref-departments b {
  color: #071526;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-ref-departments em {
  position: absolute;
  right: 24px;
  bottom: 12px;
  left: 24px;
  grid-column: auto;
  height: 4px;
  border-radius: 999px;
  background: #edf1f5;
}

.about-ref-departments em::after {
  width: var(--bar);
  background: linear-gradient(90deg, #168545, #7edca3);
}

@media (max-width: 1200px) {
  .about-ref-team-grid {
    width: min(100% - 48px, 920px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 820px) {
  .about-ref-team {
    padding: 48px 0;
  }

  .about-ref-team-grid {
    width: min(100% - 32px, 560px);
  }

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

/* About hero reference layout */
.about-ref-hero {
  padding: 132px 0 34px;
  background: #ffffff;
  animation: none;
}

.about-ref-hero::before,
.about-ref-hero::after {
  display: none;
}

.about-ref-hero-grid {
  width: min(100% - 240px, 1680px);
  grid-template-columns: minmax(500px, 0.8fr) minmax(640px, 1.2fr);
  gap: clamp(48px, 5vw, 78px);
  align-items: start;
}

.about-ref-copy .label {
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.about-ref-copy .label span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
}

.about-ref-copy h1 {
  max-width: 600px;
  margin-bottom: 28px;
  color: #071526;
  font-size: 58px;
  line-height: 1.02;
}

.about-ref-copy p:not(.label) {
  max-width: 620px;
  margin-bottom: 28px;
  color: #334155;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.72;
}

.about-ref-copy .btn-large {
  min-height: 44px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 150, 71, 0.22);
}

.about-ref-hero-media {
  width: 100%;
  height: 392px;
  min-height: 392px;
  border: 1px solid rgba(7, 21, 38, 0.12);
  border-radius: 14px;
  background: #061222;
  box-shadow: 0 16px 32px rgba(12, 30, 55, 0.14);
}

.about-ref-hero-media::before {
  display: none;
}

.about-ref-hero-media::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 13, 24, 0.02) 0%, rgba(4, 13, 24, 0.58) 100%),
    linear-gradient(90deg, rgba(3, 30, 24, 0.18), transparent 44%);
}

.about-ref-hero-media img {
  min-height: 392px;
  object-position: center;
  transform: none;
  animation: none;
}

.about-ref-hero-media:hover,
.about-ref-hero-media:hover img {
  transform: none;
}

.about-ref-pill {
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 14px 28px;
  border: 1px solid rgba(22, 163, 74, 0.42);
  border-radius: 14px;
  background: rgba(5, 13, 26, 0.82);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.about-ref-float {
  bottom: 28px;
  left: 28px;
  z-index: 2;
  min-width: 152px;
  padding: 20px 26px;
  border: 1px solid rgba(22, 163, 74, 0.42);
  border-radius: 14px;
  background: rgba(5, 13, 26, 0.84);
}

.about-ref-float b {
  font-size: 36px;
  line-height: 0.9;
}

.about-ref-float span {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2;
}

.about-ref-stat-strip {
  display: grid;
  width: min(100% - 240px, 1680px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(90deg, #08a543 0%, #087d31 100%);
  box-shadow: 0 18px 34px rgba(0, 150, 71, 0.28);
}

.about-ref-stat-strip div {
  display: grid;
  min-height: 92px;
  grid-template-columns: 54px minmax(84px, max-content) minmax(92px, 1fr);
  align-items: center;
  gap: clamp(12px, 1.25vw, 18px);
  padding: 20px clamp(22px, 2.2vw, 38px);
  border-right: 3px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.about-ref-stat-strip div:last-child {
  border-right: 0;
}

.about-ref-stat-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.about-ref-stat-strip b {
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(30px, 2.25vw, 38px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.about-ref-stat-strip small {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 800;
  line-height: 1.18;
  min-width: 0;
  max-width: 124px;
  overflow-wrap: break-word;
}

@media (max-width: 1200px) {
  .about-ref-hero-grid,
  .about-ref-stat-strip {
    width: min(100% - 48px, 920px);
  }

  .about-ref-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .about-ref-hero {
    padding: 108px 0 42px;
  }

  .about-ref-hero-grid,
  .about-ref-stat-strip {
    width: min(100% - 32px, 560px);
  }

  .about-ref-hero-media,
  .about-ref-hero-media img {
    height: 320px;
    min-height: 320px;
  }

  .about-ref-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-ref-stat-strip div:nth-child(2) {
    border-right: 0;
  }

  .about-ref-stat-strip div {
    min-height: 96px;
    grid-template-columns: 48px auto 1fr;
    padding: 20px;
  }

  .about-ref-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .about-ref-stat-strip b {
    font-size: 30px;
  }

  .about-ref-stat-strip small {
    font-size: 11px;
  }
}

.product-page-body .site-header {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(12, 30, 55, 0.06);
}

.product-page-body .nav-menu {
  color: #0f1b2d;
}

.product-page-body .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: #ffffff;
}

.product-detail-page {
  background: #f4f8fc;
  color: #0a1628;
}

.product-hero {
  min-height: auto;
  padding: 160px 0 86px;
  background: #f8fbfe;
  color: #0a1628;
}

.product-hero-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 27, 45, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 27, 45, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.product-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  align-items: center;
  gap: 84px;
}

.product-hero-copy h1 {
  max-width: 640px;
  margin: 0 0 28px;
  color: #0a1628;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(58px, 5vw, 84px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.product-hero-copy p:not(.label) {
  max-width: 560px;
  margin: 0 0 38px;
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.82;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-main-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid #dce7f2;
  border-radius: 30px;
  background: #061222;
  box-shadow: 0 24px 60px rgba(12, 30, 55, 0.12);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.product-main-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 26, 0.12), rgba(5, 13, 26, 0.76));
  content: "";
}

.product-image-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(5, 13, 26, 0.74);
}

.product-image-caption span {
  display: block;
  color: #45e887;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-image-caption b {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.product-section {
  padding: 96px 0;
  background: #ffffff;
}

.product-section:nth-of-type(even) {
  background: #f4f8fc;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.product-section-head h2,
.product-gallery-head h2,
.product-download-grid h2,
.product-contact h2 {
  margin: 0;
  color: #0a1628;
  font-family: "Instrument Sans", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-section-head.compact {
  max-width: 740px;
  margin-bottom: 44px;
}

.product-table-card,
.component-grid article,
.product-gallery-grid figure,
.product-download-card {
  border: 1px solid #e3eaf2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 30, 55, 0.06);
}

.product-table-card {
  overflow: hidden;
}

.product-table-card table,
.component-grid table {
  width: 100%;
  border-collapse: collapse;
}

.product-table-card th,
.product-table-card td,
.component-grid th,
.component-grid td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8eef5;
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.product-table-card th {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-table-card td:first-child,
.component-grid th {
  color: #0a1628;
  font-weight: 800;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.component-grid article {
  overflow: hidden;
  padding: 28px;
}

.component-grid h3 {
  margin: 0 0 10px;
  color: #0a1628;
  font-family: "Instrument Sans", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.component-grid p {
  margin: 0 0 22px;
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
}

.component-grid th,
.component-grid td {
  padding: 13px 0;
}

.component-grid th {
  width: 86px;
}

.product-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
}

.product-gallery-grid figure {
  overflow: hidden;
  margin: 0;
}

.product-gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  background: #061222;
}

.product-gallery-grid figcaption {
  padding: 18px 20px;
  color: #0a1628;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.product-downloads {
  background:
    radial-gradient(circle at 18% 20%, rgba(22, 163, 74, 0.11), transparent 28%),
    #f4f8fc;
}

.product-download-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) 360px;
  align-items: center;
  gap: 80px;
}

.product-download-grid .label {
  justify-content: flex-start;
}

.product-download-grid p:not(.label) {
  max-width: 580px;
  margin: 22px 0 0;
  color: #64748b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.product-download-card {
  display: grid;
  min-height: 210px;
  align-content: center;
  gap: 9px;
  padding: 34px;
  border-top: 3px solid #63d58e;
}

.product-download-card span {
  color: #dff5e9;
  font-family: "Instrument Sans", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.product-download-card b {
  color: #0a1628;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.product-download-card em {
  color: var(--green);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.product-contact {
  padding: 122px 0 128px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(135deg, #0c5328 0%, #10823d 100%);
  text-align: center;
}

.product-contact .label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
}

.product-contact h2 {
  max-width: 760px;
  margin: 0 auto 44px;
  color: #ffffff;
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1.06;
}

@media (max-width: 1100px) {
  .product-hero-inner,
  .product-layout,
  .product-download-grid {
    grid-template-columns: 1fr;
  }

  .component-grid,
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .product-hero {
    padding-top: 120px;
  }

  .product-main-image,
  .product-main-image img {
    min-height: 340px;
  }

  .product-table-card {
    overflow-x: auto;
  }

  .product-section-head h2,
  .product-gallery-head h2,
  .product-download-grid h2,
  .product-contact h2 {
    font-size: clamp(36px, 11vw, 48px);
  }
}

/* About page enhanced motion */
.about-motion-ready .about-ref-copy,
.about-motion-ready .about-ref-hero-media,
.about-motion-ready .about-ref-stat-strip,
.about-motion-ready .about-ref-text,
.about-motion-ready .about-ref-media-card,
.about-motion-ready .about-ref-fact-grid div,
.about-motion-ready .about-ref-ceo-grid,
.about-motion-ready .about-ref-direction-grid article,
.about-motion-ready .about-ref-team-grid > div:first-child,
.about-motion-ready .about-ref-departments div,
.about-motion-ready .about-ref-cert-head,
.about-motion-ready .about-ref-cert-grid article,
.about-motion-ready .about-ref-standard-grid article,
.about-motion-ready .about-ref-cta .wrap {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.16, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.about-motion-ready .about-ref-copy.is-visible,
.about-motion-ready .about-ref-hero-media.is-visible,
.about-motion-ready .about-ref-stat-strip.is-visible,
.about-motion-ready .about-ref-text.is-visible,
.about-motion-ready .about-ref-media-card.is-visible,
.about-motion-ready .about-ref-fact-grid div.is-visible,
.about-motion-ready .about-ref-ceo-grid.is-visible,
.about-motion-ready .about-ref-direction-grid article.is-visible,
.about-motion-ready .about-ref-team-grid > div:first-child.is-visible,
.about-motion-ready .about-ref-departments div.is-visible,
.about-motion-ready .about-ref-cert-head.is-visible,
.about-motion-ready .about-ref-cert-grid article.is-visible,
.about-motion-ready .about-ref-standard-grid article.is-visible,
.about-motion-ready .about-ref-cta .wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-ref-body .nav-menu a {
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.about-ref-body .nav-menu a:hover,
.about-ref-body .nav-menu a.active {
  transform: translateY(-1px);
}

.about-ref-hero {
  background:
    linear-gradient(90deg, rgba(15, 27, 45, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 27, 45, 0.022) 1px, transparent 1px),
    #ffffff;
  background-size: 76px 76px;
  animation: about-bg-slide 22s linear infinite;
}

.about-ref-hero-media,
.about-ref-media-card,
.about-ref-ceo-photo {
  isolation: isolate;
}

.about-ref-hero-media::before,
.about-ref-media-card::before,
.about-ref-ceo-photo::before {
  display: block;
  inset: 0;
  z-index: 2;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18) 42%, transparent 58%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 7px);
  opacity: 0.38;
  mix-blend-mode: screen;
  transform: translateX(-62%);
  animation: about-media-scan 5.8s ease-in-out infinite;
}

.about-ref-media-card::before {
  animation-delay: 0.8s;
}

.about-ref-ceo-photo::before {
  animation-delay: 1.2s;
}

.about-ref-hero-media img,
.about-ref-media-card img {
  animation: about-media-breathe 10s ease-in-out infinite alternate;
}

.about-ref-pill,
.about-ref-float {
  animation: about-badge-float 4.6s ease-in-out infinite alternate;
}

.about-ref-float {
  animation-delay: 0.35s;
}

.about-ref-stat-strip {
  position: relative;
  isolation: isolate;
  background-size: 180% 100%;
  animation: about-stat-sheen 7s ease-in-out infinite alternate;
}

.about-ref-stat-strip::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(90deg, #08a543 0%, #0aa84c 38%, #087d31 100%);
  content: "";
  animation: about-stat-sheen 6.5s ease-in-out infinite alternate;
}

.about-ref-stat-icon {
  position: relative;
}

.about-ref-stat-icon::after,
.about-ref-direction-grid i::after,
.about-ref-departments i::after,
.about-ref-cert-grid i::after,
.about-ref-standard-grid i::after {
  position: absolute;
  inset: -7px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.82);
  animation: about-ring-pulse 2.8s ease-in-out infinite;
}

.about-ref-direction-grid i,
.about-ref-departments i,
.about-ref-cert-grid i,
.about-ref-standard-grid i {
  position: relative;
}

.about-ref-fact-grid div,
.about-ref-direction-grid article,
.about-ref-departments div,
.about-ref-cert-grid article,
.about-ref-standard-grid article,
.about-ref-quote {
  background-image:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(22, 163, 74, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 254, 0.98));
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-position 0.32s ease;
}

.about-ref-fact-grid div:hover,
.about-ref-direction-grid article:hover,
.about-ref-departments div:hover,
.about-ref-cert-grid article:hover,
.about-ref-standard-grid article:hover,
.about-ref-quote:hover {
  transform: translateY(-6px);
}

.about-ref-departments em::after {
  animation: about-progress-fill 1.1s ease both;
}

.about-ref-team-total,
.about-ref-exp {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.about-ref-team-total:hover,
.about-ref-exp:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(12, 30, 55, 0.12);
}

.about-ref-quote::before {
  animation: about-quote-pop 3.8s ease-in-out infinite;
}

.about-ref-cta {
  background-size: auto, 28px 28px, auto;
  animation: about-cta-drift 13s ease-in-out infinite alternate;
}

.about-ref-copy .btn-large,
.about-ref-cta .partner-actions .btn {
  position: relative;
  overflow: hidden;
}

.about-ref-copy .btn-large::after,
.about-ref-cta .partner-actions .btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.34) 46%, transparent 66%);
  content: "";
  transform: translateX(-130%);
  transition: transform 0.58s ease;
}

.about-ref-copy .btn-large:hover::after,
.about-ref-cta .partner-actions .btn:hover::after {
  transform: translateX(130%);
}

@keyframes about-bg-slide {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 76px 0, 0 76px, 0 0;
  }
}

@keyframes about-media-scan {
  0%,
  45% {
    transform: translateX(-62%);
  }

  100% {
    transform: translateX(62%);
  }
}

@keyframes about-media-breathe {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-6px, 5px, 0);
  }
}

@keyframes about-badge-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-7px);
  }
}

@keyframes about-stat-sheen {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes about-ring-pulse {
  0% {
    opacity: 0.38;
    transform: scale(0.82);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes about-progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes about-quote-pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes about-cta-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 28px 28px, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-motion-ready .about-ref-copy,
  .about-motion-ready .about-ref-hero-media,
  .about-motion-ready .about-ref-stat-strip,
  .about-motion-ready .about-ref-text,
  .about-motion-ready .about-ref-media-card,
  .about-motion-ready .about-ref-fact-grid div,
  .about-motion-ready .about-ref-ceo-grid,
  .about-motion-ready .about-ref-direction-grid article,
  .about-motion-ready .about-ref-team-grid > div:first-child,
  .about-motion-ready .about-ref-departments div,
  .about-motion-ready .about-ref-cert-head,
  .about-motion-ready .about-ref-cert-grid article,
  .about-motion-ready .about-ref-standard-grid article,
  .about-motion-ready .about-ref-cta .wrap {
    opacity: 1;
    transform: none;
  }
}

/* About section-triggered impact animations */
.about-motion-ready .about-ref-hero,
.about-motion-ready .about-ref-overview,
.about-motion-ready .about-ref-facts,
.about-motion-ready .about-ref-ceo,
.about-motion-ready .about-ref-direction,
.about-motion-ready .about-ref-team,
.about-motion-ready .about-ref-certs,
.about-motion-ready .about-ref-standards,
.about-motion-ready .about-ref-cta {
  animation: none;
}

.about-motion-ready .about-ref-hero::before,
.about-motion-ready .about-ref-hero::after,
.about-motion-ready .about-ref-cta::before {
  animation: none;
}

.about-motion-ready .about-ref-hero-media::before,
.about-motion-ready .about-ref-media-card::before,
.about-motion-ready .about-ref-ceo-photo::before,
.about-motion-ready .about-ref-pill,
.about-motion-ready .about-ref-float,
.about-motion-ready .about-ref-hero-media img,
.about-motion-ready .about-ref-media-card img,
.about-motion-ready .about-ref-quote::before,
.about-motion-ready .about-ref-stat-strip,
.about-motion-ready .about-ref-stat-strip::before,
.about-motion-ready .about-ref-stat-icon::after,
.about-motion-ready .about-ref-direction-grid i::after,
.about-motion-ready .about-ref-departments i::after,
.about-motion-ready .about-ref-cert-grid i::after,
.about-motion-ready .about-ref-standard-grid i::after {
  animation: none;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-copy {
  animation: about-copy-impact 1.18s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-hero-media {
  animation: about-media-impact 1.24s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.18s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-hero-media::before {
  animation: about-scan-once 1.45s ease both 0.78s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-pill,
.about-motion-ready .about-ref-hero.section-in-view .about-ref-float {
  animation: about-badge-impact 0.95s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.92s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-stat-strip {
  animation: about-strip-impact 1.08s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.34s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-stat-strip div {
  animation: about-stat-pop 0.9s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-stat-strip div:nth-child(2) {
  animation-delay: 0.1s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-stat-strip div:nth-child(3) {
  animation-delay: 0.18s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-stat-strip div:nth-child(4) {
  animation-delay: 0.26s;
}

.about-motion-ready .about-ref-overview.section-in-view .about-ref-text {
  animation: about-slide-left-impact 1.05s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-overview.section-in-view .about-ref-media-card {
  animation: about-slide-right-impact 1.12s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.2s;
}

.about-motion-ready .about-ref-overview.section-in-view .about-ref-text h2::after {
  animation: about-line-draw 1.05s ease both 0.55s;
  transform-origin: left;
}

.about-motion-ready .about-ref-facts.section-in-view .about-ref-fact-grid div {
  animation: about-fact-flip 0.95s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-facts.section-in-view .about-ref-fact-grid div:nth-child(2) {
  animation-delay: 0.07s;
}

.about-motion-ready .about-ref-facts.section-in-view .about-ref-fact-grid div:nth-child(3) {
  animation-delay: 0.14s;
}

.about-motion-ready .about-ref-facts.section-in-view .about-ref-fact-grid div:nth-child(4) {
  animation-delay: 0.21s;
}

.about-motion-ready .about-ref-facts.section-in-view .about-ref-fact-grid div:nth-child(5) {
  animation-delay: 0.28s;
}

.about-motion-ready .about-ref-facts.section-in-view .about-ref-fact-grid div:nth-child(6) {
  animation-delay: 0.35s;
}

.about-motion-ready .about-ref-ceo.section-in-view .about-ref-ceo-grid {
  animation: about-panel-impact 1.16s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-ceo.section-in-view .about-ref-ceo-photo {
  animation: about-photo-reveal 1.16s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.24s;
}

.about-motion-ready .about-ref-ceo.section-in-view .about-ref-quote::before {
  animation: about-quote-drop 0.92s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.52s;
}

.about-motion-ready .about-ref-direction.section-in-view .about-ref-center-head {
  animation: about-heading-lock 0.98s ease both;
}

.about-motion-ready .about-ref-direction.section-in-view .about-ref-direction-grid article {
  animation: about-card-split-left 1.1s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.22s;
}

.about-motion-ready .about-ref-direction.section-in-view .about-ref-direction-grid article:nth-child(2) {
  animation-name: about-card-split-right;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-team-grid > div:first-child {
  animation: about-slide-left-impact 1.05s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-team-total,
.about-motion-ready .about-ref-team.section-in-view .about-ref-exp {
  animation: about-summary-lock 0.96s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.32s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-exp {
  animation-delay: 0.32s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div {
  animation: about-dept-stack 0.9s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(2) {
  animation-delay: 0.07s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(3) {
  animation-delay: 0.14s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(4) {
  animation-delay: 0.21s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(5) {
  animation-delay: 0.28s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(6) {
  animation-delay: 0.35s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(7) {
  animation-delay: 0.42s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments div:nth-child(8) {
  animation-delay: 0.49s;
}

.about-motion-ready .about-ref-team.section-in-view .about-ref-departments em::after {
  animation: about-progress-fill 1.35s ease both 0.48s;
}

.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-head,
.about-motion-ready .about-ref-standards.section-in-view .about-ref-center-head {
  animation: about-heading-lock 0.98s ease both;
}

.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-grid article,
.about-motion-ready .about-ref-standards.section-in-view .about-ref-standard-grid article {
  animation: about-card-rise-scale 0.95s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-grid article:nth-child(2),
.about-motion-ready .about-ref-standards.section-in-view .about-ref-standard-grid article:nth-child(2) {
  animation-delay: 0.08s;
}

.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-grid article:nth-child(3),
.about-motion-ready .about-ref-standards.section-in-view .about-ref-standard-grid article:nth-child(3) {
  animation-delay: 0.16s;
}

.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-grid article:nth-child(4),
.about-motion-ready .about-ref-standards.section-in-view .about-ref-standard-grid article:nth-child(4) {
  animation-delay: 0.24s;
}

.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-grid article:nth-child(5) {
  animation-delay: 0.32s;
}

.about-motion-ready .about-ref-cta.section-in-view .wrap {
  animation: about-cta-impact 1.18s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

@keyframes about-copy-impact {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-media-impact {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.96);
    filter: saturate(0.72);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes about-scan-once {
  from {
    opacity: 0.52;
    transform: translateX(-78%);
  }

  to {
    opacity: 0;
    transform: translateX(78%);
  }
}

@keyframes about-badge-impact {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-strip-impact {
  from {
    opacity: 0;
    transform: translateY(24px) scaleX(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes about-stat-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-slide-left-impact {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-slide-right-impact {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-line-draw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes about-fact-flip {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(12deg) translateY(18px);
  }

  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0) translateY(0);
  }
}

@keyframes about-panel-impact {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes about-photo-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0 round 14px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 14px);
  }
}

@keyframes about-quote-drop {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.86);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-heading-lock {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-card-split-left {
  from {
    opacity: 0;
    transform: translateX(-34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes about-card-split-right {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes about-summary-lock {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-dept-stack {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-card-rise-scale {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes about-cta-impact {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-motion-ready .about-ref-hero.section-in-view *,
  .about-motion-ready .about-ref-overview.section-in-view *,
  .about-motion-ready .about-ref-facts.section-in-view *,
  .about-motion-ready .about-ref-ceo.section-in-view *,
  .about-motion-ready .about-ref-direction.section-in-view *,
  .about-motion-ready .about-ref-team.section-in-view *,
  .about-motion-ready .about-ref-certs.section-in-view *,
  .about-motion-ready .about-ref-standards.section-in-view *,
  .about-motion-ready .about-ref-cta.section-in-view * {
    animation: none !important;
  }
}

/* Product categories reference layout */
.categories {
  overflow: hidden;
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 163, 74, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.categories .wrap {
  width: min(100% - 240px, 1680px);
}

.categories .section-head.with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.categories .label {
  margin-bottom: 16px;
  color: #148a3f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.categories .label span {
  width: 38px;
  height: 3px;
  border-radius: 999px;
}

.categories h2 {
  max-width: 850px;
  margin: 0;
  color: #071526;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(38px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.categories .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #10863b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.categories .text-link span,
.category-card > a span {
  display: inline-block;
  width: 16px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 1;
}

.categories .text-link span::before,
.category-card > a span::before {
  color: #10863b;
  content: "->";
  font-size: 14px;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 316px;
  flex-direction: column;
  padding: 94px 28px 26px;
  border: 2px solid rgba(22, 163, 74, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 254, 0.98)),
    radial-gradient(circle at 0% 0%, rgba(22, 163, 74, 0.14), transparent 32%);
  box-shadow:
    0 28px 60px rgba(12, 30, 55, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.category-card::before {
  position: absolute;
  top: 65px;
  right: -2px;
  left: 84px;
  height: 2px;
  border-top: 2px solid rgba(22, 163, 74, 0.3);
  border-top-left-radius: 24px;
  content: "";
}

.category-card::after {
  position: absolute;
  top: 64px;
  right: -9px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(22, 163, 74, 0.42);
  border-right: 2px solid rgba(22, 163, 74, 0.42);
  border-radius: 0 12px 0 0;
  content: "";
}

.category-card .card-top {
  position: absolute;
  top: -10px;
  right: 30px;
  left: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  pointer-events: none;
}

.category-card .num {
  order: 2;
  margin-top: 35px;
  color: #139347;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.92);
}

.category-card .icon {
  position: relative;
  display: grid;
  width: 78px;
  height: 84px;
  order: 1;
  place-items: center;
  border: 6px solid #f8fcfa;
  border-radius: 22px;
  background:
    radial-gradient(circle at 45% 32%, rgba(22, 163, 74, 0.2), transparent 34%),
    linear-gradient(145deg, #071526 0%, #071526 54%, #06261d 100%);
  box-shadow:
    0 0 0 3px rgba(22, 163, 74, 0.22),
    0 16px 34px rgba(12, 30, 55, 0.18);
  clip-path: polygon(50% 0%, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  color: transparent;
  font-size: 0;
}

.category-card .icon::before,
.category-card .icon::after {
  position: absolute;
  content: "";
}

.category-card .icon::before {
  inset: 12px;
  border: 2px solid rgba(185, 237, 207, 0.38);
  clip-path: polygon(50% 0%, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
}

.category-card:nth-child(1) .icon::after {
  width: 34px;
  height: 44px;
  border-right: 3px solid #d5dfaa;
  border-left: 3px solid #d5dfaa;
  background:
    linear-gradient(#d5dfaa, #d5dfaa) center 7px / 30px 3px no-repeat,
    linear-gradient(#d5dfaa, #d5dfaa) center 20px / 38px 3px no-repeat,
    linear-gradient(#d5dfaa, #d5dfaa) center 33px / 30px 3px no-repeat;
  border-radius: 12px;
}

.category-card:nth-child(2) .icon::after {
  width: 38px;
  height: 30px;
  border: 3px solid #d5dfaa;
  border-radius: 7px;
  background:
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(213, 223, 170, 0.9) 8px 11px),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(213, 223, 170, 0.62) 9px 12px);
  transform: skewY(12deg);
}

.category-card:nth-child(3) .icon::after {
  width: 46px;
  height: 46px;
  background:
    linear-gradient(132deg, transparent 0 39%, #d5dfaa 40% 48%, transparent 49%) 5px 5px / 35px 35px no-repeat,
    linear-gradient(42deg, transparent 0 39%, #d5dfaa 40% 48%, transparent 49%) 9px 13px / 32px 32px no-repeat;
  border-radius: 12px;
}

.category-card h3 {
  min-height: 46px;
  margin: 0 0 12px;
  color: #071526;
  font-family: "Instrument Sans", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.category-card p {
  min-height: 78px;
  margin: 0;
  color: #334155;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.62;
}

.category-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: auto 0 18px;
}

.category-card .chips span {
  padding: 5px 12px;
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  background: #edf8f1;
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.08);
  color: #138744;
  font-size: 12px;
  font-weight: 900;
}

.category-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 15px;
  border-top: 1px solid rgba(12, 30, 55, 0.08);
  color: #10863b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1200px) {
  .categories .wrap {
    width: min(100% - 48px, 920px);
  }

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

  .category-card {
    min-height: 304px;
  }
}

@media (max-width: 720px) {
  .categories {
    padding: 64px 0;
  }

  .categories .wrap {
    width: min(100% - 32px, 560px);
  }

  .categories .section-head.with-link {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 44px;
  }

  .category-card {
    min-height: 0;
    padding: 124px 24px 28px;
  }

  .category-card .card-top {
    right: 24px;
    left: 22px;
  }

  .category-card .icon {
    width: 92px;
    height: 98px;
  }

  .category-card .num {
    margin-top: 44px;
    font-size: 34px;
  }

  .category-card::before {
    left: 98px;
  }
}

/* About text-focused section animations */
.about-motion-ready .about-ref-ceo-grid,
.about-motion-ready .about-ref-ceo-copy,
.about-motion-ready .about-ref-quote,
.about-motion-ready .about-ref-quote p,
.about-motion-ready .about-ref-quote div,
.about-motion-ready .about-ref-quote b,
.about-motion-ready .about-ref-quote em {
  opacity: 1;
  visibility: visible;
}

.about-ref-ceo .about-ref-quote,
.about-motion-ready .about-ref-ceo .about-ref-quote,
.about-ref-ceo .about-ref-quote:hover {
  border: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
}

.about-ref-ceo .about-ref-quote p,
.about-motion-ready .about-ref-ceo .about-ref-quote p {
  color: rgba(255, 255, 255, 0.88);
}

.about-ref-ceo .about-ref-quote b,
.about-motion-ready .about-ref-ceo .about-ref-quote b {
  color: #ffffff;
}

.about-ref-ceo .about-ref-quote em,
.about-motion-ready .about-ref-ceo .about-ref-quote em {
  color: rgba(255, 255, 255, 0.76);
}

.about-ref-ceo .about-ref-quote div,
.about-motion-ready .about-ref-ceo .about-ref-quote div {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.about-ref-ceo .about-ref-quote:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.about-ref-ceo-photo {
  background:
    linear-gradient(180deg, rgba(5, 13, 26, 0.02) 34%, rgba(5, 13, 26, 0.78) 100%),
    url("../assets/images/section_images/ChatGPT Image Jun 29, 2026, 04_57_25 PM (3).png") 43% center / cover no-repeat;
}

/* Keep product categories aligned with navbar content width */
.categories .wrap {
  width: min(100% - 240px, 1680px);
}

@media (max-width: 1100px) {
  .categories .wrap {
    width: min(100% - 56px, 1412px);
  }
}

@media (max-width: 820px) {
  .categories .wrap {
    width: min(100% - 28px, 1412px);
  }
}

@media (max-width: 520px) {
  .categories .wrap {
    width: min(100% - 24px, 1396px);
  }
}

/* Facility reference blueprint layout */
.facility {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 54px 0 48px;
  background:
    linear-gradient(90deg, rgba(1, 12, 29, 0.18) 0%, rgba(1, 12, 29, 0.36) 48%, rgba(1, 12, 29, 0.2) 100%),
    url("../assets/images/section_images/ChatGPT Image Jun 29, 2026, 05_06_05 PM.png") left center / cover no-repeat;
  color: #ffffff;
  text-align: left;
}

.facility::before,
.facility::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.facility::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 13, 29, 0.04), rgba(0, 13, 29, 0.42)),
    radial-gradient(circle at 49% 36%, rgba(69, 232, 135, 0.16), transparent 4px),
    radial-gradient(circle at 72% 84%, rgba(69, 232, 135, 0.24), transparent 5px);
}

.facility::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.62);
}

.facility .facility-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 240px, 1680px);
  grid-template-columns: minmax(360px, 0.36fr) minmax(0, 0.64fr);
  grid-template-areas:
    "copy cards"
    "copy cta";
  align-items: start;
  gap: 20px 54px;
}

.facility .facility-inner::before,
.facility .facility-inner::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.facility .facility-inner::before {
  top: 2px;
  right: 90px;
  width: min(54vw, 770px);
  height: 54px;
  background:
    linear-gradient(rgba(31, 201, 91, 0.76), rgba(31, 201, 91, 0.76)) 0 0 / 100% 3px no-repeat,
    linear-gradient(rgba(31, 201, 91, 0.58), rgba(31, 201, 91, 0.58)) 100% 0 / 3px 54px no-repeat;
  border-radius: 0 6px 0 0;
  box-shadow: 0 0 8px rgba(31, 201, 91, 0.28);
}

.facility .facility-inner::after {
  right: 340px;
  bottom: 52px;
  width: min(36vw, 520px);
  height: 38px;
  border-bottom: 2px solid rgba(31, 201, 91, 0.44);
  border-left: 2px solid rgba(31, 201, 91, 0.44);
  border-radius: 0 0 0 8px;
}

.facility .label {
  grid-area: copy;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  color: #65d63c;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

.facility .label span {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #0da33e;
}

.facility h2 {
  grid-area: copy;
  align-self: start;
  margin: 33px 0 0;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(56px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.facility h2 span {
  color: #dffbed;
  font-size: 0;
  letter-spacing: 0;
}

.facility h2 span::before {
  content: "m²";
  font-size: clamp(30px, 2.5vw, 42px);
}

.facility-sub {
  grid-area: copy;
  align-self: start;
  margin: 119px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.facility-cards {
  position: relative;
  display: grid;
  grid-area: cards;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 0;
  text-align: left;
}

.facility-cards::before {
  position: absolute;
  top: 93px;
  left: -154px;
  width: 154px;
  height: 66px;
  border-top: 3px solid rgba(31, 201, 91, 0.7);
  border-left: 3px solid rgba(31, 201, 91, 0.7);
  border-radius: 12px 0 0;
  content: "";
}

.facility-cards::after {
  position: absolute;
  top: 90px;
  left: -160px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #65d63c;
  box-shadow: 0 0 14px rgba(101, 214, 60, 0.9);
  content: "";
}

.facility-cards article {
  position: relative;
  min-height: 250px;
  padding: 90px 28px 28px;
  border: 2px solid rgba(161, 205, 131, 0.64);
  border-radius: 24px;
  background: rgba(3, 17, 36, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(101, 214, 60, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.2);
}

.facility-cards article::before {
  position: absolute;
  top: -35px;
  left: 50%;
  z-index: 1;
  width: 102px;
  height: 102px;
  background: linear-gradient(145deg, #f4ffe9 0%, #cfe8b9 42%, #28bb4d 100%);
  box-shadow:
    0 0 0 3px rgba(31, 201, 91, 0.38),
    0 0 18px rgba(101, 214, 60, 0.34),
    0 18px 34px rgba(0, 0, 0, 0.28);
  clip-path: polygon(50% 0%, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  content: "";
  transform: translateX(-50%);
}

.facility-cards article::after {
  position: absolute;
  top: -3px;
  left: 50%;
  z-index: 3;
  width: 36px;
  height: 36px;
  content: "";
  transform: translateX(-50%);
}

.facility-cards article:nth-child(1)::after {
  border: 3px solid #b9c9a2;
  border-radius: 4px;
  background:
    linear-gradient(#b9c9a2, #b9c9a2) center 9px / 14px 3px no-repeat,
    linear-gradient(#b9c9a2, #b9c9a2) center 20px / 24px 3px no-repeat;
}

.facility-cards article:nth-child(2)::after {
  width: 42px;
  height: 42px;
  background:
    radial-gradient(circle, #b9c9a2 0 3px, transparent 4px) 4px 7px / 17px 17px no-repeat,
    radial-gradient(circle, #b9c9a2 0 3px, transparent 4px) 22px 2px / 17px 17px no-repeat,
    radial-gradient(circle, #b9c9a2 0 3px, transparent 4px) 20px 24px / 17px 17px no-repeat,
    linear-gradient(45deg, transparent 38%, #b9c9a2 39% 45%, transparent 46%) center / 100% 100%;
}

.facility-cards article:nth-child(3)::after {
  width: 38px;
  height: 42px;
  border: 3px solid #b9c9a2;
  border-radius: 18px 18px 16px 16px;
  background: linear-gradient(135deg, transparent 44%, #65d63c 45% 54%, transparent 55%) 8px 2px / 22px 26px no-repeat;
}

.facility-cards span {
  position: absolute;
  top: -25px;
  left: 50%;
  z-index: 2;
  display: block;
  width: 82px;
  height: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(101, 214, 60, 0.16), transparent 43%),
    #061222;
  clip-path: polygon(50% 0%, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  color: transparent;
  font-size: 0;
  transform: translateX(-50%);
}

.facility-cards h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.facility-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.facility .btn-large {
  position: relative;
  z-index: 2;
  grid-area: cta;
  justify-self: center;
  min-height: 54px;
  margin: 0;
  padding: 0 34px;
  border: 1px solid rgba(184, 255, 195, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, #43bd58 0%, #15903d 100%);
  box-shadow:
    0 0 0 3px rgba(67, 189, 88, 0.15),
    0 16px 34px rgba(0, 0, 0, 0.26);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.facility .btn-large span {
  color: transparent;
  font-size: 0;
}

.facility .btn-large span::before {
  color: #ffffff;
  content: "->";
  font-size: 14px;
}

@media (max-width: 1200px) {
  .facility {
    min-height: auto;
    padding: 64px 0;
  }

  .facility .facility-inner {
    width: min(100% - 56px, 1412px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cards"
      "cta";
  }

  .facility .facility-inner::before,
  .facility .facility-inner::after,
  .facility-cards::before,
  .facility-cards::after {
    display: none;
  }

  .facility-sub {
    margin-top: 112px;
  }

  .facility-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
  }
}

@media (max-width: 820px) {
  .facility .facility-inner {
    width: min(100% - 28px, 1412px);
  }

  .facility-cards {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .facility-cards article {
    min-height: 0;
  }

  .facility .btn-large {
    margin-left: 0;
  }
}

/* Global reach reference layout */
.global {
  padding: 58px 0 54px;
  background:
    radial-gradient(circle at 76% 38%, rgba(22, 163, 74, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
  color: #071526;
}

.global > .wrap {
  display: grid;
  width: min(100% - 240px, 1680px);
  grid-template-columns: minmax(360px, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
  gap: 58px;
}

.global-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 0;
}

.global .label {
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 18px;
  color: #148a3f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.global .label span {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: #148a3f;
}

.global h2 {
  max-width: 540px;
  margin: 0;
  color: #071526;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(36px, 3.2vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, max-content));
  gap: 44px;
  justify-content: start;
}

.global-stats b {
  display: block;
  margin-bottom: 4px;
  color: #16a34a;
  font-family: "Instrument Sans", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.global-stats span {
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 298px;
  padding: 20px 22px 0;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 54% 45%, rgba(22, 163, 74, 0.2), transparent 35%),
    radial-gradient(circle at 18% 55%, rgba(22, 163, 74, 0.1), transparent 25%),
    linear-gradient(180deg, rgba(2, 13, 30, 0.99), rgba(3, 17, 36, 0.97));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 46px rgba(12, 30, 55, 0.14);
}

.map-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 201, 91, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 201, 91, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: 0.42;
}

.map-card svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 258px;
  aspect-ratio: auto;
  overflow: visible;
}

.map-frame {
  fill: rgba(4, 16, 35, 0.56);
  stroke: rgba(87, 107, 130, 0.34);
  stroke-width: 2;
}

.map-grid path {
  fill: none;
  stroke: rgba(34, 197, 94, 0.07);
  stroke-width: 1;
}

.land-group {
  filter:
    drop-shadow(0 0 9px rgba(22, 163, 74, 0.15))
    drop-shadow(0 0 20px rgba(22, 163, 74, 0.08));
}

.land {
  fill: rgba(7, 78, 45, 0.76);
  stroke: rgba(30, 154, 94, 0.62);
  stroke-width: 1.8;
}

.north-america,
.europe,
.asia {
  fill: rgba(7, 88, 49, 0.78);
}

.south-america,
.africa,
.australia {
  fill: rgba(8, 70, 45, 0.68);
}

.central-america,
.middle-east-land,
.southeast-asia {
  fill: rgba(9, 82, 47, 0.7);
}

.routes path {
  fill: none;
  stroke: #22c55e;
  stroke-dasharray: 3 10;
  stroke-linecap: round;
  stroke-opacity: 0.5;
  stroke-width: 2.2;
}

.pin .halo {
  fill: url("#pinGlow");
  stroke: rgba(34, 197, 94, 0.24);
  stroke-width: 10;
  filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.85));
}

.pin .core {
  fill: #f2fff4;
  stroke: #22c55e;
  stroke-width: 10;
  filter: drop-shadow(0 0 9px rgba(34, 197, 94, 0.9));
}

.pin {
  position: relative;
  z-index: 3;
}

.pin text {
  fill: #ffffff;
  paint-order: stroke;
  stroke: rgba(3, 17, 36, 0.9);
  stroke-width: 5px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-anchor: middle;
  dominant-baseline: middle;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.55));
}

.map-labels {
  pointer-events: none;
}

.map-labels text {
  fill: #ffffff;
  paint-order: stroke;
  stroke: rgba(3, 17, 36, 0.92);
  stroke-width: 6px;
  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-anchor: middle;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.72));
}

.map-legend {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, auto));
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -22px;
  padding: 12px 22px 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 10, 24, 0.54);
  color: rgba(226, 232, 240, 0.86);
  font-family: "Inter", sans-serif;
  font-size: 0;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
  font-size: 0;
}

.map-legend span::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
  content: "";
}

.map-legend span::after {
  overflow: hidden;
  color: rgba(226, 232, 240, 0.9);
  font-size: 12px;
  text-overflow: ellipsis;
}

.map-legend span:nth-child(1)::after {
  content: "USA - North America";
}

.map-legend span:nth-child(2)::after {
  content: "Europe - Western & Eastern EU";
}

.map-legend span:nth-child(3)::after {
  content: "Middle East - GCC & Beyond";
}

.map-legend span:nth-child(4)::after {
  content: "Africa - Sub-Saharan & North";
}

.map-legend span:nth-child(5)::after {
  content: "Asia-Pacific - APAC Corridor";
}

@media (max-width: 1100px) {
  .global > .wrap {
    width: min(100% - 56px, 1412px);
    grid-template-columns: 1fr;
  }

  .global-stats {
    justify-content: start;
  }
}

@media (max-width: 820px) {
  .global > .wrap {
    width: min(100% - 28px, 1412px);
  }

  .global-stats,
  .map-legend {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: auto;
  }

  .map-card svg {
    height: 220px;
  }
}

/* About standards alignment and icon polish */
.about-ref-standards .about-ref-center-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.about-ref-standards .about-ref-center-head .label {
  justify-content: center;
}

.about-ref-standard-grid i,
.about-ref-cert-grid i {
  font-family: "Instrument Sans", "Inter", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
}

.about-ref-standard-grid i {
  display: grid;
  place-items: center;
}

/* Home page scroll-triggered animation layer */
.home-motion-ready .hero-copy,
.home-motion-ready .hero-visual,
.home-motion-ready .category-card,
.home-motion-ready .about-image,
.home-motion-ready .about-copy,
.home-motion-ready .facility .label,
.home-motion-ready .facility h2,
.home-motion-ready .facility-sub,
.home-motion-ready .facility-cards article,
.home-motion-ready .facility .btn-large,
.home-motion-ready .global-head,
.home-motion-ready .map-card,
.home-motion-ready .partnership .wrap {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1.05s ease,
    transform 1.05s cubic-bezier(0.16, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.home-motion-ready .hero-copy.is-visible,
.home-motion-ready .hero-visual.is-visible,
.home-motion-ready .category-card.is-visible,
.home-motion-ready .about-image.is-visible,
.home-motion-ready .about-copy.is-visible,
.home-motion-ready .facility .label.is-visible,
.home-motion-ready .facility h2.is-visible,
.home-motion-ready .facility-sub.is-visible,
.home-motion-ready .facility-cards article.is-visible,
.home-motion-ready .facility .btn-large.is-visible,
.home-motion-ready .global-head.is-visible,
.home-motion-ready .map-card.is-visible,
.home-motion-ready .partnership .wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-motion-ready .categories.section-in-view .section-head,
.home-motion-ready .about.section-in-view .about-copy h2,
.home-motion-ready .facility.section-in-view h2,
.home-motion-ready .global.section-in-view h2,
.home-motion-ready .partnership.section-in-view h2 {
  animation: home-text-rise-reveal 1.05s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.home-motion-ready .categories.section-in-view .category-card,
.home-motion-ready .facility.section-in-view .facility-cards article {
  animation: home-card-rise 1s cubic-bezier(0.16, 0.72, 0.18, 1) both;
}

.home-motion-ready .categories.section-in-view .category-card:nth-child(2),
.home-motion-ready .facility.section-in-view .facility-cards article:nth-child(2) {
  animation-delay: 0.14s;
}

.home-motion-ready .categories.section-in-view .category-card:nth-child(3),
.home-motion-ready .facility.section-in-view .facility-cards article:nth-child(3) {
  animation-delay: 0.28s;
}

.home-motion-ready .global.section-in-view .routes path {
  stroke-dashoffset: 80;
  animation: home-route-draw 1.7s ease both 0.35s;
}

.home-motion-ready .global.section-in-view .pin {
  animation: home-pin-pop 0.9s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.65s;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes home-text-rise-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes home-card-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes home-route-draw {
  from {
    stroke-dashoffset: 80;
    opacity: 0;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes home-pin-pop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-motion-ready .hero-copy,
  .home-motion-ready .hero-visual,
  .home-motion-ready .category-card,
  .home-motion-ready .about-image,
  .home-motion-ready .about-copy,
  .home-motion-ready .facility .label,
  .home-motion-ready .facility h2,
  .home-motion-ready .facility-sub,
  .home-motion-ready .facility-cards article,
  .home-motion-ready .facility .btn-large,
  .home-motion-ready .global-head,
  .home-motion-ready .map-card,
  .home-motion-ready .partnership .wrap {
    opacity: 1;
    transform: none;
  }
}

.about-motion-ready .about-ref-hero.section-in-view .label,
.about-motion-ready .about-ref-overview.section-in-view .label,
.about-motion-ready .about-ref-ceo.section-in-view .label,
.about-motion-ready .about-ref-direction.section-in-view .label,
.about-motion-ready .about-ref-team.section-in-view .label,
.about-motion-ready .about-ref-certs.section-in-view .label,
.about-motion-ready .about-ref-standards.section-in-view .label,
.about-motion-ready .about-ref-cta.section-in-view .label {
  animation: about-label-type-in 0.9s ease both;
}

.about-motion-ready .about-ref-hero.section-in-view h1,
.about-motion-ready .about-ref-overview.section-in-view h2,
.about-motion-ready .about-ref-ceo.section-in-view .about-ref-quote p,
.about-motion-ready .about-ref-direction.section-in-view h2,
.about-motion-ready .about-ref-team.section-in-view h2,
.about-motion-ready .about-ref-certs.section-in-view h2,
.about-motion-ready .about-ref-standards.section-in-view h2,
.about-motion-ready .about-ref-cta.section-in-view h2 {
  animation: about-text-rise-reveal 1.05s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.16s;
}

.about-motion-ready .about-ref-hero.section-in-view h1 strong {
  animation: about-green-word-impact 0.95s cubic-bezier(0.16, 0.72, 0.18, 1) both 0.48s;
}

.about-motion-ready .about-ref-hero.section-in-view .about-ref-copy p:not(.label),
.about-motion-ready .about-ref-overview.section-in-view .about-ref-text p:not(.label),
.about-motion-ready .about-ref-team.section-in-view p:not(.label),
.about-motion-ready .about-ref-certs.section-in-view .about-ref-cert-head p,
.about-motion-ready .about-ref-standards.section-in-view .about-ref-center-head p,
.about-motion-ready .about-ref-cta.section-in-view p:not(.label) {
  animation: about-paragraph-focus 1s ease both 0.34s;
}

.about-motion-ready .about-ref-ceo.section-in-view .about-ref-ceo-copy {
  animation: about-ceo-copy-restore 1s ease both 0.28s;
}

.about-motion-ready .about-ref-ceo.section-in-view .about-ref-quote p {
  color: rgba(255, 255, 255, 0.9);
}

.about-motion-ready .about-ref-ceo.section-in-view .about-ref-quote div {
  animation: about-signature-slide 0.92s ease both 0.58s;
}

.about-motion-ready .about-ref-direction.section-in-view .about-ref-direction-grid h3,
.about-motion-ready .about-ref-direction.section-in-view .about-ref-direction-grid p,
.about-motion-ready .about-ref-standard-grid article.section-in-view h3,
.about-motion-ready .about-ref-standard-grid article.section-in-view p {
  animation: about-paragraph-focus 0.95s ease both 0.3s;
}

@keyframes about-label-type-in {
  from {
    opacity: 0;
    letter-spacing: 0.28em;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    letter-spacing: inherit;
    transform: translateY(0);
  }
}

@keyframes about-text-rise-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes about-green-word-impact {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-paragraph-focus {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes about-ceo-copy-restore {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-signature-slide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
