:root {
  --ink: #10213f;
  --ink-soft: #34415b;
  --navy: #071b58;
  --blue: #0c3b78;
  --teal: #0b7d83;
  --green: #77a934;
  --red: #9b1c31;
  --mist: #eef5f6;
  --cloud: #f7fafb;
  --line: #dbe5e8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 33, 63, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: var(--mist);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 120px));
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero.compact {
  min-height: 520px;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 27, 88, 0.92), rgba(7, 27, 88, 0.66) 45%, rgba(7, 27, 88, 0.22)),
    linear-gradient(0deg, rgba(7, 27, 88, 0.36), rgba(7, 27, 88, 0.05));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.hero-content > * {
  max-width: 980px;
}

.eyebrow {
  margin-bottom: 18px;
  color: #a6dfe2;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  color: var(--ink);
}

h3 {
  font-size: 1.24rem;
  color: var(--ink);
}

.lead {
  margin-top: 22px;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.88);
}

.section-lead {
  max-width: 760px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
}

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

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

.button.outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

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

.section {
  padding: 84px 0;
}

.section.muted {
  background: var(--cloud);
}

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

.section.dark h2,
.section.dark h3,
.section.dark .section-lead {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head .section-lead {
  max-width: 590px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.card-link {
  margin-top: 20px;
  display: inline-flex;
  color: var(--teal);
  font-weight: 850;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.icon-badge.teal {
  background: var(--teal);
}

.icon-badge.green {
  background: var(--green);
}

.icon-badge.red {
  background: var(--red);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.split-image {
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border: 4px solid #cce5d0;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.metric {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.service-strip a {
  min-height: 140px;
  padding: 24px;
  background: var(--white);
}

.service-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-strip strong {
  font-size: 1.18rem;
}

.home-section-head {
  align-items: center;
}

.compact-actions {
  margin-top: 22px;
}

.home-services-showcase {
  display: grid;
  gap: 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
}

.home-services-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-services-intro .eyebrow {
  margin-bottom: 0;
  color: var(--teal);
}

.home-services-intro h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.home-services-intro p:last-child {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.home-services-intro.single-tile {
  max-width: 920px;
}

.home-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-services-list.compact-lines {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-line {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--cloud);
}

.home-service-line strong,
.home-service-line span {
  display: block;
}

.home-service-line strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.home-service-line span:last-child {
  margin-top: 8px;
  color: var(--ink-soft);
}

.home-services-list.compact-lines .home-service-line {
  align-items: center;
  min-height: 94px;
}

.home-services-list.compact-lines .home-service-line strong {
  font-size: 1.08rem;
}

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

.home-service-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
}

.home-service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--navy);
  content: "";
}

.home-service-card:nth-child(2)::before,
.home-service-card:nth-child(4)::before {
  background: var(--teal);
}

.home-service-card:nth-child(3)::before,
.home-service-card:nth-child(6)::before {
  background: var(--green);
}

.home-service-card:nth-child(5)::before {
  background: var(--red);
}

.home-service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.home-service-body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

.home-service-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.home-service-body p {
  margin-top: 12px;
  color: var(--ink-soft);
}

/* Unified services tile — split copy + 2x3 grid */
.services-tile-section {
  position: relative;
  overflow: hidden;
}

.services-tile-section::before {
  position: absolute;
  top: -160px;
  right: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(11, 125, 131, 0.08), rgba(11, 125, 131, 0) 65%);
  content: "";
  pointer-events: none;
}

.services-tile-section::after {
  position: absolute;
  bottom: -200px;
  left: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(7, 27, 88, 0.06), rgba(7, 27, 88, 0) 65%);
  content: "";
  pointer-events: none;
}

.services-tile-section .section-inner {
  position: relative;
  z-index: 1;
}

.services-tile {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 33, 63, 0.06);
}

.services-tile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-tile-copy .eyebrow {
  color: var(--teal);
}

.services-tile-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.015em;
}

.services-tile-lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.services-tile-cta {
  align-self: flex-start;
  margin-top: 28px;
  padding: 0 24px;
  min-height: 50px;
}

.services-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.service-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px 24px 26px;
  background: var(--white);
  color: inherit;
  transition: background 0.2s ease;
}

.service-cell::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--cell-color, var(--navy));
  content: "";
  transition: width 0.25s ease;
}

.service-cell:hover {
  background: var(--cloud);
}

.service-cell:hover::before {
  width: 6px;
}

.service-cell-num {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--cell-color, var(--navy));
  background: color-mix(in srgb, var(--cell-color, var(--navy)) 12%, transparent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-cell h3 {
  font-size: 1.12rem;
  letter-spacing: -0.005em;
}

.service-cell p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.api-home-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 34px;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .services-tile {
    padding: 40px;
    gap: 40px;
  }
}

.api-home-copy .section-lead {
  max-width: 680px;
}

.api-home-media {
  position: relative;
  min-height: 420px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.api-home-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.api-home-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 88, 0.12), rgba(7, 27, 88, 0.72)),
    linear-gradient(90deg, rgba(11, 125, 131, 0.1), rgba(7, 27, 88, 0.16));
  content: "";
}

.api-home-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 27, 88, 0.78);
  backdrop-filter: blur(8px);
}

.api-home-overlay strong,
.api-home-overlay span {
  display: block;
}

.api-home-overlay strong {
  font-size: 1.2rem;
}

.api-home-overlay span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.page-title {
  padding: 76px 0 54px;
  background: var(--mist);
}

.page-title.visual-title {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(238, 245, 246, 0.96), rgba(255, 255, 255, 0.9)),
    var(--mist);
}

.page-title h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.page-title .lead {
  color: var(--ink-soft);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--mist);
  font-weight: 800;
  font-size: 0.88rem;
}

.title-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 48px;
}

.title-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.title-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.title-stat {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 27, 88, 0.88);
}

.title-stat strong,
.title-stat span {
  display: block;
}

.title-stat strong {
  font-size: 1.16rem;
}

.title-stat span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.service-highlights {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.highlight-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.highlight-card.large {
  grid-row: span 2;
  min-height: 478px;
}

.highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.highlight-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 27, 88, 0.92), rgba(7, 27, 88, 0.26) 72%),
    linear-gradient(90deg, rgba(7, 27, 88, 0.38), rgba(11, 125, 131, 0.1));
  content: "";
}

.highlight-card > div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.highlight-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.highlight-card h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.highlight-card p {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

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

.capability-item {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-item:hover {
  border-color: rgba(11, 125, 131, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.capability-item strong,
.capability-item span {
  display: block;
}

.capability-item strong {
  font-size: 1.08rem;
}

.capability-item span {
  margin-top: 6px;
  color: var(--ink-soft);
}

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

.served-panel {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 22px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--cloud);
}

.served-panel strong {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.served-panel span {
  color: var(--ink);
  font-weight: 850;
}

.api-proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.api-proof-tile {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
}

.api-proof-tile strong {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.api-proof-tile span {
  color: var(--ink);
  font-weight: 850;
}

.api-supply-layout {
  align-items: start;
  gap: 34px;
}

.api-sourcing-showcase {
  display: grid;
  gap: 18px;
  margin-top: -8px;
}

.api-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.api-product-card {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 88, 0.98), rgba(12, 59, 120, 0.82)),
    var(--navy);
  box-shadow: var(--shadow);
}

.api-product-card.coenzymes {
  background:
    linear-gradient(135deg, rgba(11, 125, 131, 0.98), rgba(119, 169, 52, 0.8)),
    var(--teal);
}

.api-product-card h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

.api-product-card p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.api-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.api-product-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.98rem;
  font-weight: 800;
}

.api-product-tags.light span {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
}

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

.supply-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 88, 0.96), rgba(11, 125, 131, 0.84)),
    var(--navy);
  box-shadow: var(--shadow);
}

.supply-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(11, 125, 131, 0.96), rgba(119, 169, 52, 0.78)),
    var(--teal);
}

.supply-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(7, 27, 88, 0.96), rgba(12, 59, 120, 0.84)),
    var(--navy);
}

.supply-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(155, 28, 49, 0.92), rgba(7, 27, 88, 0.86)),
    var(--red);
}

.supply-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.supply-card h3 {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.supply-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.supply-list li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.45;
}

.product-list-callout {
  margin-top: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.product-list-callout a {
  color: var(--teal);
  font-weight: 850;
}

.clinical-hero .lead {
  max-width: 780px;
}

.clinical-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: grid;
  align-items: center;
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(238, 245, 246, 0.96), rgba(238, 245, 246, 0.9) 32%, rgba(238, 245, 246, 0.62) 55%, rgba(238, 245, 246, 0.18) 74%, rgba(7, 27, 88, 0.12)),
    url("../images/clinical-trial-hero-bg.png");
  background-position: center center;
  background-size: cover;
}

.clinical-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  content: "";
}

.clinical-hero .title-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.clinical-hero .eyebrow {
  color: #86cfd4;
}

.clinical-hero .title-grid > div {
  max-width: 760px;
}

.clinical-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.clinical-hero .lead {
  margin-top: 14px;
  font-size: 1.05rem;
}

.clinical-hero .pill {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.clinical-service-index {
  position: sticky;
  top: 82px;
  z-index: 10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.clinical-service-index .section-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.clinical-service-index .section-inner::-webkit-scrollbar {
  display: none;
}

.clinical-service-index a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.clinical-service-index a:hover {
  color: var(--navy);
  background: var(--mist);
}

.clinical-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.clinical-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
}

.clinical-service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.clinical-service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.clinical-service-body {
  padding: 26px;
}

.service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.service-number.teal {
  background: var(--teal);
}

.service-number.green {
  background: var(--green);
}

.service-number.red {
  background: var(--red);
}

.clinical-service-card:nth-child(2n) .service-number {
  background: var(--teal);
}

.clinical-service-card:nth-child(3n) .service-number {
  background: var(--green);
}

.clinical-service-card:nth-child(5n) .service-number {
  background: var(--red);
}

.clinical-service-body h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.clinical-service-body p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.clinical-summary {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 44px;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.summary-stats div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.summary-stats strong,
.summary-stats span {
  display: block;
}

.summary-stats strong {
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.summary-stats span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 750;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 26px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: step;
}

.process-step::before {
  display: block;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  content: "0" counter(step);
}

.process-step p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.facility-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.facility-zone {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--cloud);
}

.facility-zone h3 {
  margin-bottom: 10px;
}

.facility-overview .section-head {
  margin-bottom: 28px;
}

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

.facility-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
}

.facility-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.facility-photo-card.featured {
  grid-column: span 2;
}

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

.facility-photo-card.featured img {
  height: 360px;
}

.facility-photo-body {
  padding: 20px 22px 24px;
}

.facility-photo-body h3 {
  font-size: 1.2rem;
}

.facility-photo-body p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.facility-action {
  justify-content: center;
}

/* About page — hero + narrative pillars */
.about-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #061238 0%, var(--navy) 55%, #0c3b78 100%);
}

.about-hero::before {
  position: absolute;
  top: -200px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(11, 125, 131, 0.32), rgba(11, 125, 131, 0) 65%);
  content: "";
  pointer-events: none;
}

.about-hero::after {
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(119, 169, 52, 0.18), rgba(119, 169, 52, 0) 65%);
  content: "";
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 48px;
}

.about-hero-copy .eyebrow {
  color: #86cfd4;
}

.about-hero-copy h1 {
  margin-top: 6px;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--white);
}

.about-hero-copy .lead {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.about-hero-stats {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16, 33, 63, 0.06);
}

.about-stat {
  position: relative;
  padding: 14px 16px 14px 22px;
  border-radius: 10px;
  background: var(--cloud);
}

.about-stat::before {
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 4px;
  content: "";
}

.about-stat:nth-child(1)::before {
  background: var(--navy);
}

.about-stat:nth-child(2)::before {
  background: var(--teal);
}

.about-stat:nth-child(3)::before {
  background: var(--green);
}

.about-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.about-stat span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-narrative {
  background: var(--white);
}

.about-narrative-grid {
  display: grid;
  gap: 48px;
}

.about-narrative-intro {
  max-width: 760px;
}

.about-narrative-intro .eyebrow {
  color: var(--teal);
}

.about-narrative-intro h2 {
  margin-top: 6px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.015em;
}

.about-narrative-intro .section-lead {
  margin-top: 18px;
}

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

.about-pillar {
  position: relative;
  padding: 30px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 33, 63, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-pillar::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  content: "";
}

.about-pillar.pillar-navy::before {
  background: var(--navy);
}

.about-pillar.pillar-teal::before {
  background: var(--teal);
}

.about-pillar.pillar-green::before {
  background: var(--green);
}

.about-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 125, 131, 0.22);
  box-shadow: var(--shadow);
}

.about-pillar-num {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.about-pillar.pillar-navy .about-pillar-num {
  color: var(--navy);
  background: rgba(7, 27, 88, 0.1);
}

.about-pillar.pillar-teal .about-pillar-num {
  color: var(--teal);
  background: rgba(11, 125, 131, 0.12);
}

.about-pillar.pillar-green .about-pillar-num {
  color: #4a7220;
  background: rgba(119, 169, 52, 0.16);
}

.about-pillar h3 {
  margin-top: 16px;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
}

.about-pillar p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.team-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.contact-panel {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.contact-panel a {
  color: #b9eef0;
  font-weight: 850;
}

.contact-address {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-address strong {
  color: #b9eef0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-address span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-map-card iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 56px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #061238;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.6fr));
  gap: 34px;
}

.footer-logo {
  width: 170px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-top: 9px;
}

.footer-address {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .grid.three,
  .grid.two,
  .metrics,
  .process,
  .service-highlights,
  .capability-cloud,
  .title-grid,
  .supply-grid,
  .api-product-grid,
  .home-service-grid,
  .api-home-spotlight,
  .clinical-services-grid,
  .clinical-summary,
  .summary-stats,
  .service-strip,
  .facility-map,
  .facility-gallery,
  .contact-grid,
  .footer-inner,
  .split,
  .services-tile,
  .services-tile-grid,
  .about-hero-inner,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 56px 0 48px;
  }

  .about-hero-inner {
    gap: 32px;
  }

  .services-tile {
    padding: 32px 26px;
    gap: 32px;
  }

  .home-services-showcase,
  .home-services-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

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

  .highlight-card.large {
    grid-row: auto;
    min-height: 360px;
  }

  .facility-photo-card.featured {
    grid-column: auto;
  }

  .facility-photo-card img,
  .facility-photo-card.featured img {
    height: 260px;
  }

  .title-grid {
    gap: 30px;
  }

  .title-media,
  .title-media img {
    min-height: 310px;
  }

  .clinical-service-card img {
    height: 220px;
  }

  .api-home-media,
  .api-home-media img {
    min-height: 320px;
  }

  .clinical-hero {
    min-height: 320px;
    padding: 48px 0;
    background:
      linear-gradient(180deg, rgba(238, 245, 246, 0.96), rgba(238, 245, 246, 0.9) 24%, rgba(238, 245, 246, 0.7) 48%, rgba(238, 245, 246, 0.42)),
      url("../images/clinical-trial-hero-bg.png");
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .section-inner,
  .footer-inner,
  .hero-content,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: min(680px, calc(100svh - 122px));
  }

  .clinical-hero {
    min-height: 280px;
    padding: 40px 0;
  }

  .hero-content {
    padding: 52px 0 70px;
  }

  .section {
    padding: 58px 0;
  }

  .page-title {
    padding: 54px 0 38px;
  }

  .card,
  .process-step,
  .contact-panel {
    padding: 22px;
  }
}
