:root {
  --navy: #071a36;
  --blue: #075fd8;
  --blue-bright: #0b78ff;
  --cyan: #38bdf8;
  --ice: #edf7ff;
  --mist: #f6f9fc;
  --line: #dbe6f0;
  --ink: #10233f;
  --muted: #5f7088;
  --white: #ffffff;
  --green: #16845b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: var(--navy);
  color: #dcecff;
  font-size: 12px;
  letter-spacing: 0.015em;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-inner > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar a:hover {
  color: white;
}

.dot {
  color: #5f7796;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(219, 230, 240, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand > span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: #083f9b;
  font-size: 20px;
  letter-spacing: 0.11em;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-logo-image {
  width: 62px;
  height: 40px;
  display: grid;
  flex: 0 0 62px;
  place-items: center;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #3d5069;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.mobile-menu a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 95, 216, 0.2);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 50px;
  min-width: 210px;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 10px;
  box-shadow: 0 22px 60px rgba(7, 26, 54, 0.17);
}

.mobile-menu nav a {
  border-radius: 11px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(56, 189, 248, 0.2), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #ebf6ff 52%, #f8fbff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image: linear-gradient(rgba(9, 81, 164, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 81, 164, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 52px;
  padding-block: 72px 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #4c617b;
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 23px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 36px rgba(7, 95, 216, 0.24);
}

.button-primary:hover {
  background: #034daF;
}

.button-secondary {
  border: 1px solid #b9d0e8;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 27px;
  color: #50637c;
  font-size: 12px;
  font-weight: 700;
}

.hero-facts span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 42px 42px 130px 42px;
  background: white;
  padding: 9px;
  box-shadow: 0 36px 90px rgba(15, 57, 105, 0.2);
}

.hero-image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 34px 34px 120px 34px;
}

.hero-badge {
  position: absolute;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(7, 26, 54, 0.17);
  backdrop-filter: blur(12px);
}

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

.hero-badge span {
  color: var(--muted);
  font-size: 11px;
}

.badge-top {
  top: -24px;
  right: 34px;
}

.badge-bottom {
  left: -32px;
  bottom: 25px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -80px;
  background: rgba(11, 120, 255, 0.12);
}

.hero-orb-two {
  width: 140px;
  height: 140px;
  left: 46%;
  top: 60px;
  border: 32px solid rgba(56, 189, 248, 0.1);
}

.proof-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: white;
}

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

.proof-grid article {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
  padding: 18px 28px;
}

.proof-grid article:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid b {
  color: var(--navy);
  font-size: 13px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 110px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 78px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--mist);
  box-shadow: 0 26px 80px rgba(7, 26, 54, 0.12);
}

.image-card img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 18px;
  background: rgba(7, 26, 54, 0.86);
  color: white;
  padding: 17px 19px;
  backdrop-filter: blur(12px);
}

.image-caption span {
  color: #80c9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.image-caption strong {
  font-size: 15px;
  line-height: 1.35;
}

.section-copy h2,
.section-heading h2,
.holding-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.stat-row div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--mist);
  padding: 17px 14px;
}

.stat-row strong {
  color: var(--blue);
  font-size: 18px;
}

.stat-row span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.products-section {
  background: var(--mist);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid #dce7f1;
  border-radius: 26px;
  background: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(13, 46, 82, 0.12);
}

.product-image {
  height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #eaf4fd 100%);
  padding: 15px 10px 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.product-copy {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 21px;
}

.product-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.product-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.product-copy span {
  min-height: 53px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

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

.light-heading h2,
.light-heading > p {
  color: white;
}

.light-heading > p {
  opacity: 0.68;
}

.light-heading .eyebrow {
  color: #6fc8ff;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.facility-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
}

.facility-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.facility-card > div {
  display: grid;
  gap: 9px;
  padding: 25px;
}

.facility-card p {
  margin: 0;
  color: #6fc8ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facility-card h3 {
  margin: 0;
  font-size: 21px;
}

.facility-card span {
  color: #b8c7d9;
  font-size: 13px;
  line-height: 1.65;
}

.holding-section {
  padding-block: 70px;
  background: var(--ice);
}

.holding-card {
  border: 1px solid #cfe3f5;
  border-radius: 28px;
  background: white;
  padding: 48px;
  text-align: center;
}

.holding-card h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(30px, 3.5vw, 44px);
}

.holding-card > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.quality-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.credential-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.credential-card {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(7, 26, 54, 0.065);
}

.credential-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  content: "";
  background: var(--blue);
}

.ifa-card::before {
  background: var(--green);
}

.credential-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fbff;
  padding: 14px;
}

.credential-logo img {
  width: 100%;
  height: 100%;
  max-height: 140px;
  object-fit: contain;
}

.white-logo img {
  mix-blend-mode: multiply;
}

.credential-copy {
  align-self: center;
}

.card-kicker {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ifa-card .card-kicker {
  color: var(--green);
}

.credential-copy h3,
.lab-report-intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.credential-copy dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.credential-copy dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #edf1f5;
  padding-bottom: 8px;
}

.credential-copy dt {
  color: var(--muted);
  font-size: 11px;
}

.credential-copy dd {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.status-pill {
  position: absolute;
  top: 17px;
  right: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #e9f8f1;
  color: #0e714b;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 900;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a36d;
  box-shadow: 0 0 0 4px rgba(22, 163, 109, 0.12);
}

.credential-summary {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.mini-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 17px;
}

.mini-results span {
  border-radius: 11px;
  background: var(--mist);
  color: var(--muted);
  padding: 10px;
  font-size: 9px;
}

.mini-results b {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 14px;
}

.document-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--blue);
  padding-top: 17px;
  font-size: 12px;
  font-weight: 900;
}

.document-link span {
  font-size: 17px;
}

.lab-report-card {
  display: grid;
  grid-template-columns: 0.92fr 0.82fr 1.26fr;
  gap: 34px;
  margin-top: 18px;
  border: 1px solid #bcd6ed;
  border-radius: 28px;
  background: linear-gradient(135deg, #eaf5ff 0%, #ffffff 72%);
  padding: 34px;
}

.lab-report-intro > p:not(.card-kicker) {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.lab-report-intro .button {
  min-height: 45px;
  padding-inline: 18px;
  font-size: 11px;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  align-content: center;
}

.report-summary-grid div {
  display: grid;
  gap: 4px;
  border: 1px solid #d4e4f2;
  border-radius: 15px;
  background: rgba(255,255,255,0.82);
  padding: 16px 13px;
}

.report-summary-grid strong {
  color: var(--blue);
  font-size: 20px;
}

.report-summary-grid span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.report-table-wrap {
  overflow: hidden;
  align-self: center;
  border: 1px solid #dce7f1;
  border-radius: 16px;
  background: white;
}

.report-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.report-table-wrap th,
.report-table-wrap td {
  border-bottom: 1px solid #edf1f5;
  padding: 9px 11px;
  text-align: left;
}

.report-table-wrap th {
  background: #f4f8fc;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.report-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.report-table-wrap td span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.lab-scope-section {
  background: white;
}

.lab-split {
  grid-template-columns: 0.9fr 1.1fr;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.scope-list article {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--mist);
  padding: 17px;
}

.scope-list b {
  color: var(--navy);
  font-size: 13px;
}

.scope-list span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.lab-image-card img {
  min-height: 520px;
}

.lab-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  display: grid;
  gap: 6px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  padding: 17px;
  box-shadow: 0 18px 50px rgba(7,26,54,0.16);
  backdrop-filter: blur(12px);
}

.lab-note strong {
  color: var(--blue);
  font-size: 13px;
}

.lab-note span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.process-section {
  background: linear-gradient(145deg, #061832 0%, #0b2c59 100%);
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 21px;
  background: rgba(255,255,255,0.055);
  padding: 23px;
}

.process-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(56,189,248,0.13);
  color: #72ceff;
  font-size: 11px;
  font-weight: 900;
}

.process-card h3 {
  margin: 30px 0 9px;
  color: white;
  font-size: 17px;
}

.process-card p {
  margin: 0;
  color: #afc0d4;
  font-size: 11px;
  line-height: 1.6;
}

.city-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.city-section > img,
.city-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.city-section > img {
  object-fit: cover;
}

.city-overlay {
  background: linear-gradient(90deg, rgba(4,18,39,0.95) 0%, rgba(4,18,39,0.75) 54%, rgba(4,18,39,0.36) 100%);
}

.city-content {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.city-content .eyebrow {
  color: #71ccff;
}

.city-content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.customer-grid {
  max-width: 990px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 46px;
}

.customer-grid article {
  min-height: 135px;
  display: grid;
  align-content: end;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.customer-grid strong {
  font-size: 14px;
}

.customer-grid span {
  color: #c3d0df;
  font-size: 10px;
  line-height: 1.5;
}

.video-section {
  background: var(--mist);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  align-items: center;
  gap: 70px;
}

.video-frame {
  overflow: hidden;
  border: 10px solid white;
  border-radius: 32px;
  background: var(--navy);
  box-shadow: 0 28px 80px rgba(7,26,54,0.16);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-points {
  display: grid;
  gap: 10px;
  margin: 25px 0 28px;
}

.video-points span {
  color: #425976;
  font-size: 12px;
  font-weight: 800;
}

.video-points span::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
}

.team-section {
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(7,26,54,0.11);
}

.team-photo {
  height: 320px;
  overflow: hidden;
  background: linear-gradient(145deg, #edf6ff, #dcecff);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88);
}

.initials-photo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(56,189,248,0.34), transparent 30%),
    linear-gradient(145deg, #e7f4ff, #cfe6fb);
}

.initials-photo span {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7,95,216,0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--blue);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.team-copy {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.team-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.team-copy > span {
  min-height: 72px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.contact-section {
  background: linear-gradient(135deg, #e9f5ff 0%, #f9fcff 48%, #eef8ff 100%);
  padding-block: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 54px;
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.contact-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid #ccdeee;
  border-radius: 19px;
  background: #ccdeee;
}

.contact-list a,
.contact-list > div {
  display: grid;
  gap: 5px;
  background: rgba(255,255,255,0.9);
  padding: 15px 17px;
}

.contact-list span,
.map-footer span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
}

.contact-list a:hover strong {
  color: var(--blue);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.map-card {
  overflow: hidden;
  border: 10px solid white;
  border-radius: 30px;
  background: white;
  box-shadow: 0 24px 70px rgba(7,26,54,0.14);
}

.map-card iframe {
  width: 100%;
  height: 475px;
  display: block;
  border: 0;
  background: #dcebf7;
}

.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 20px 11px;
}

.map-footer > div {
  display: grid;
  gap: 5px;
}

.map-footer strong {
  color: var(--navy);
  font-size: 13px;
}

.map-footer a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.footer {
  background: #05142c;
  color: white;
  padding-top: 66px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 45px;
  padding-bottom: 46px;
}

.footer-brand strong,
.footer-brand small {
  color: white;
}

.footer-main > p {
  margin: 0;
  color: #aebed0;
  font-size: 12px;
  line-height: 1.65;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-main nav a {
  color: #c1cedc;
  font-size: 11px;
  font-weight: 700;
}

.footer-main nav a:hover {
  color: white;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.11);
  color: #8193a9;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  background: #10a466;
  color: white;
  padding: 7px 15px 7px 7px;
  box-shadow: 0 14px 40px rgba(8, 102, 63, 0.28);
}

.floating-whatsapp span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #0a925a;
  font-size: 9px;
  font-weight: 900;
}

.floating-whatsapp b {
  font-size: 11px;
}

.screen-reader-note {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

  .mobile-menu {
    display: block;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px 90px;
  }

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

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

  .proof-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid {
    gap: 44px;
  }

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

  .facility-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .facility-card img {
    height: 100%;
    min-height: 240px;
  }

  .credential-grid,
  .lab-report-card,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .lab-report-card {
    gap: 24px;
  }

  .process-grid,
  .team-grid,
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-photo {
    height: 390px;
  }

  .map-card iframe {
    height: 410px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
    padding-block: 9px;
    text-align: center;
  }

  .topbar-inner > span,
  .topbar .dot,
  .topbar-inner div a:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 7px;
  }

  .brand-logo-image {
    width: 49px;
    height: 32px;
    flex-basis: 49px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 44px;
    padding-block: 54px 70px;
  }

  .hero h1 {
    font-size: clamp(41px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-facts {
    display: grid;
  }

  .hero-image-frame {
    border-radius: 28px 28px 76px 28px;
  }

  .hero-image-frame img {
    min-height: 280px;
    border-radius: 21px 21px 68px 21px;
  }

  .badge-top {
    right: 14px;
  }

  .badge-bottom {
    left: 10px;
    bottom: -24px;
  }

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

  .proof-grid article,
  .proof-grid article:first-child {
    min-height: 90px;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 14px;
  }

  .proof-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .section {
    padding-block: 76px;
  }

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

  .image-card img {
    min-height: 320px;
  }

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

  .section-heading {
    display: grid;
    gap: 18px;
    margin-bottom: 34px;
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-image {
    height: 270px;
  }

  .product-copy {
    align-content: center;
  }

  .facility-card {
    display: block;
  }

  .facility-card img {
    height: 220px;
    min-height: 0;
  }

  .holding-card {
    padding: 36px 22px;
  }

  .credential-card {
    grid-template-columns: 95px 1fr;
    gap: 17px;
    padding: 20px;
  }

  .credential-logo {
    min-height: 105px;
    padding: 9px;
  }

  .status-pill {
    display: none;
  }

  .credential-copy h3,
  .lab-report-intro h3 {
    font-size: 21px;
  }

  .credential-copy dl div {
    display: grid;
    gap: 2px;
  }

  .credential-copy dd {
    text-align: left;
  }

  .nih-card .credential-logo {
    grid-row: 1 / span 1;
  }

  .nih-card .credential-copy,
  .document-link {
    grid-column: 1 / -1;
  }

  .lab-report-card {
    padding: 24px 18px;
  }

  .scope-list,
  .process-grid,
  .team-grid,
  .customer-grid {
    grid-template-columns: 1fr;
  }

  .lab-split {
    grid-template-columns: 1fr;
  }

  .lab-image-card img {
    min-height: 340px;
  }

  .city-section {
    min-height: 760px;
  }

  .city-overlay {
    background: linear-gradient(180deg, rgba(4,18,39,0.94) 0%, rgba(4,18,39,0.68) 100%);
  }

  .customer-grid {
    gap: 8px;
  }

  .customer-grid article {
    min-height: 100px;
  }

  .video-grid {
    gap: 38px;
  }

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

  .team-photo {
    height: 245px;
  }

  .team-copy h3 {
    font-size: 18px;
  }

  .team-copy > span {
    min-height: 112px;
  }

  .contact-section {
    padding-block: 76px;
  }

  .contact-grid {
    gap: 36px;
  }

  .map-card iframe {
    height: 330px;
  }

  .map-footer {
    display: grid;
  }

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

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
    padding-block: 20px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .product-card {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

  .team-photo {
    height: 390px;
  }

  .team-copy > span {
    min-height: auto;
  }

  .floating-whatsapp b {
    display: none;
  }

  .floating-whatsapp {
    padding-right: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Springora 2026 professional refinement */
:root {
  --navy: #061a38;
  --navy-soft: #0a2b58;
  --blue: #0968dc;
  --blue-bright: #1383f7;
  --cyan: #46c4f4;
  --ice: #edf7ff;
  --mist: #f5f8fc;
  --line: #d8e5f0;
  --ink: #10243f;
  --muted: #5b6f88;
  --green: #13825a;
  --shadow-soft: 0 18px 55px rgba(7, 36, 74, 0.09);
  --shadow-strong: 0 34px 90px rgba(7, 36, 74, 0.18);
}

html {
  scroll-padding-top: 104px;
}

body {
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

::selection {
  background: rgba(9, 104, 220, 0.2);
  color: var(--navy);
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(19, 131, 247, 0.38);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 104px;
}

.topbar {
  background: linear-gradient(90deg, #04142d 0%, #09264e 100%);
}

.topbar-inner {
  min-height: 38px;
}

.site-header {
  border-bottom-color: rgba(198, 216, 232, 0.74);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(6, 26, 56, 0.05);
}

.nav-wrap {
  min-height: 86px;
}

.brand {
  gap: 13px;
}

.brand-logo-image {
  width: 66px;
  height: 43px;
  flex-basis: 66px;
}

.brand strong {
  background: linear-gradient(90deg, #073c91, #0968dc);
  background-clip: text;
  color: transparent;
  font-size: 21px;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
}

.desktop-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transition: width 180ms ease, left 180ms ease;
}

.desktop-nav a:hover::after {
  left: 0;
  width: 100%;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 21px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 12px 30px rgba(9, 104, 220, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(9, 104, 220, 0.3);
}

.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 18%, rgba(70, 196, 244, 0.26), transparent 29%),
    radial-gradient(circle at 7% 92%, rgba(9, 104, 220, 0.1), transparent 25%),
    linear-gradient(135deg, #f9fcff 0%, #eaf6ff 54%, #f8fbff 100%);
}

.hero::before {
  opacity: 0.42;
  background-size: 58px 58px;
}

.hero::after {
  position: absolute;
  inset: auto -7% -42% auto;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(9, 104, 220, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(9, 104, 220, 0.025), 0 0 0 140px rgba(70, 196, 244, 0.018);
  content: "";
}

.hero-grid {
  min-height: 715px;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 64px;
  padding-block: 78px 88px;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(48px, 5.1vw, 76px);
  line-height: 0.97;
}

.hero-lead {
  max-width: 635px;
  color: #526983;
  font-size: 17px;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow::before {
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero-image-frame {
  border: 8px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
  box-shadow: var(--shadow-strong);
}

.hero-image-frame img {
  min-height: 438px;
}

.hero-badge {
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(6, 26, 56, 0.16);
}

.button {
  min-height: 54px;
  padding-inline: 25px;
  letter-spacing: 0.01em;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
}

.button-primary:hover {
  background: linear-gradient(135deg, #0758bf, #0f78e7);
  box-shadow: 0 20px 42px rgba(7, 95, 216, 0.3);
}

.proof-strip {
  background: linear-gradient(90deg, #ffffff, #f8fbff, #ffffff);
  box-shadow: 0 15px 45px rgba(7, 36, 74, 0.045);
}

.proof-grid article {
  position: relative;
  min-height: 108px;
  padding-left: 31px;
}

.proof-grid article::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 19px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--blue));
  content: "";
}

.section {
  padding-block: 118px;
}

.section-copy h2,
.section-heading h2,
.holding-card h2 {
  text-wrap: balance;
}

.about-section {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.image-card {
  border: 1px solid rgba(206, 220, 233, 0.8);
  box-shadow: var(--shadow-soft);
}

.stat-row div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f9fcff, #eef6fd);
}

.stat-row div::after {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(9, 104, 220, 0.06);
  content: "";
}

.products-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(70, 196, 244, 0.12), transparent 24%),
    var(--mist);
}

.product-card {
  border-color: #d5e4f0;
  box-shadow: 0 12px 36px rgba(7, 36, 74, 0.05);
}

.product-card:hover {
  border-color: rgba(9, 104, 220, 0.28);
  box-shadow: 0 28px 64px rgba(7, 36, 74, 0.13);
}

.product-image {
  background:
    radial-gradient(circle at 50% 90%, rgba(70, 196, 244, 0.18), transparent 38%),
    linear-gradient(180deg, #fbfdff 0%, #eaf4fd 100%);
}

.facilities-section {
  position: relative;
  background:
    radial-gradient(circle at 92% 8%, rgba(70, 196, 244, 0.14), transparent 27%),
    linear-gradient(145deg, #051731 0%, #0a2b58 100%);
}

.facility-card {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.facility-card:hover {
  transform: translateY(-7px);
  border-color: rgba(111, 200, 255, 0.36);
  background: rgba(255, 255, 255, 0.09);
}

.facility-card img {
  filter: saturate(0.96) contrast(1.03);
}

.credential-card,
.lab-report-card {
  box-shadow: var(--shadow-soft);
}

.credential-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(7, 36, 74, 0.12);
}

.lab-report-card {
  border-color: #b6d5ee;
  background:
    radial-gradient(circle at 100% 0%, rgba(70, 196, 244, 0.16), transparent 30%),
    linear-gradient(135deg, #e9f5ff 0%, #ffffff 74%);
}

.scope-list article {
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.scope-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 104, 220, 0.25);
  background: #f8fbff;
}

.process-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(70, 196, 244, 0.12), transparent 26%),
    linear-gradient(145deg, #04142d 0%, #0a2b58 100%);
}

.process-card {
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114, 206, 255, 0.34);
  background: rgba(255, 255, 255, 0.085);
}

.city-section > img {
  filter: saturate(0.9) contrast(1.06);
}

.customer-grid article {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.customer-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.team-section {
  background:
    radial-gradient(circle at 88% 6%, rgba(70, 196, 244, 0.09), transparent 24%),
    #fff;
}

.team-card {
  border-color: #d5e3ef;
  box-shadow: 0 12px 34px rgba(7, 36, 74, 0.05);
}

.team-card:hover {
  border-color: rgba(9, 104, 220, 0.24);
  box-shadow: 0 28px 62px rgba(7, 36, 74, 0.13);
}

.team-photo {
  height: auto;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #f8fbff, #e4f1fb);
}

.team-photo img {
  filter: none;
}

.team-card:nth-child(1) .team-photo img {
  object-position: 50% 18%;
}

.team-card:nth-child(2) .team-photo img {
  object-position: 50% 17%;
}

.team-card:nth-child(3) .team-photo img {
  object-position: 50% 14%;
}

.team-copy {
  border-top: 1px solid #e8eff5;
  padding: 24px;
}

.contact-section {
  background:
    radial-gradient(circle at 6% 12%, rgba(70, 196, 244, 0.16), transparent 24%),
    linear-gradient(135deg, #e8f5ff 0%, #fbfdff 52%, #eef8ff 100%);
}

.map-card {
  border-width: 8px;
  box-shadow: var(--shadow-strong);
}

.footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(70, 196, 244, 0.1), transparent 22%),
    #04142d;
}

.floating-whatsapp {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(8, 102, 63, 0.35);
}

@media (max-width: 1050px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .team-photo {
    height: auto;
  }
}

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

  section[id] {
    scroll-margin-top: 84px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero-grid {
    padding-block: 58px 76px;
  }

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

  .hero-image-frame img {
    min-height: 290px;
  }

  .section {
    padding-block: 82px;
  }

  .proof-grid article {
    padding-left: 28px;
  }

  .proof-grid article::before {
    left: 13px;
  }

  .team-photo {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 430px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 310px;
  }

  .team-photo {
    height: auto;
  }
}
