:root {
  --container: 1180px;
  --radius: 6px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  line-height: 1.17;
}

h2 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  overflow-wrap: normal;
}

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

.section {
  padding: 110px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-150%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--accent-soft);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

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

.button-primary:hover {
  background: var(--green-dark);
}

.button-sm {
  min-height: 44px;
  padding-inline: 20px;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-ghost svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--navy);
  background: rgba(255, 255, 255, 10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.035);
  backdrop-filter: blur(12px);
  transition:
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  height: 70px;
  color: var(--navy);
  background: var(--white);
  border-color: transparent;
  box-shadow: 0 5px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  display: block;
  width: 160px;
  height: 54px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.82rem;
  font-weight: 600;
}

.primary-nav .nav-link {
  position: relative;
  padding: 8px 0;
  color: inherit;
}

.primary-nav .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav .nav-link:hover::after,
.primary-nav .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 7px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 17, 29, 0.94) 0%,
      rgba(7, 27, 34, 0.82) 39%,
      rgba(7, 38, 39, 0.2) 70%
    ),
    linear-gradient(0deg, rgba(6, 14, 26, 0.54), transparent 50%),
    url("../images/biotech-hero_1.jpg") center / cover no-repeat;
  filter: var(--hero-image-filter);
  transform: scale(1.015);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 0.8px,
    transparent 0.8px
  );
  background-size: 28px 28px;
  content: "";
  opacity: 0.2;
  mask-image: linear-gradient(90deg, #000, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero-copy {
  max-width: 710px;
  padding: 60px 0;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 27px;
  color: var(--white);
  font-size: clamp(3.3rem, 6.4vw, 5.5rem);
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--accent-highlight);
}

.hero-copy > p {
  max-width: 625px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 44px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 3px;
  height: 7px;
  margin-top: 9px;
  background: var(--white);
  border-radius: 3px;
  animation: scrollCue 1.7s ease infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

.section-heading {
  align-items: start;
}

.section-intro > [class*="col"],
.section-heading > [class*="col"],
.contact-panel {
  min-width: 0;
}

.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 15%,
      rgba(var(--bs-primary-rgb), 0.09),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 84%,
      rgba(var(--bs-primary-rgb), 0.07),
      transparent 30%
    ),
    var(--green-light);
}

.about::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(
        104deg,
        transparent 0 12px,
        rgba(var(--bs-primary-rgb), 0.075) 12px 14px
      )
      top left / 31% 72% no-repeat,
    repeating-linear-gradient(
        104deg,
        transparent 0 12px,
        rgba(var(--bs-primary-rgb), 0.07) 12px 14px
      )
      bottom right / 31% 72% no-repeat;
  content: "";
  mask-image:
    radial-gradient(ellipse at top left, #000 0%, transparent 68%),
    radial-gradient(ellipse at bottom right, #000 0%, transparent 68%);
  mask-composite: add;
  pointer-events: none;
}

.about::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about .purpose-grid {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.about .purpose-card {
  background: rgba(255, 255, 255, 0.38);
}

.scroll-fill-text {
  --text-filled-color: var(--navy);
  max-width: 100%;
  color: transparent;
}

.scroll-fill-line {
  --highlight-offset: 0%;
  position: relative;
  display: block;
  max-width: 100%;
  width: max-content;
  white-space: nowrap;
}

.scroll-fill-base {
  display: block;
  color: var(--text-filled-color);
  opacity: 0.34;
}

.scroll-fill-active {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: var(--text-filled-color);
  clip-path: inset(0 calc(100% - var(--highlight-offset)) 0 0);
  pointer-events: none;
  transition: clip-path 0.12s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-intro {
  margin-bottom: 68px;
}

.section-intro .lead {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.75;
}

.section-intro p:not(.lead),
.section-heading > p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.purpose-grid {
  border: 1px solid var(--line);
}

.purpose-card {
  position: relative;
  min-height: 310px;
  padding: 40px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.purpose-card:last-child {
  border-right: 0;
}

.purpose-card .number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #cbd5e1;
  font-size: 0.7rem;
  font-weight: 700;
}

.icon-box {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 45px;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
}

.icon-box svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.purpose-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.purpose-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.purpose-grid {
  position: relative;
}

.stats-bar {
  margin-top: 0;
}

.statistics-section {
  padding: 58px 0;
  background:
    linear-gradient(
      135deg,
      rgba(var(--bs-primary-rgb), 0.96),
      var(--green-dark)
    ),
    var(--green);
}

.stats-bar .stat-item {
  position: relative;
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.statistics-section .stats-bar .stat-item {
  border-color: rgba(255, 255, 255, 0.25);
}

.stats-bar .stat-item:first-child {
  padding-left: 0;
}

.stats-bar .stat-item:last-child {
  padding-right: 0;
  border: 0;
}

.stat-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 15px;
  place-items: center;
  color: var(--white);
}

.stat-icon svg {
  width: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  transform-origin: center;
  transition:
    color 0.55s ease,
    filter 0.55s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-bar strong {
  display: block;
  color: var(--green);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  overflow: hidden;
}

.odometer-digit {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  font-size: 1em;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
  vertical-align: bottom;
}

.odometer-ribbon {
  display: flex;
  flex-direction: column;
  animation: odometerRoll 1.8s cubic-bezier(0.12, 0.82, 0.22, 1)
    var(--odometer-delay) forwards;
  transform: translateY(0);
}

.odometer-ribbon > span {
  display: block;
  height: 1.2em;
  flex: 0 0 1.2em;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

.odometer-suffix {
  display: inline-block;
  font-size: 1em;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
  vertical-align: bottom;
}

@keyframes odometerRoll {
  to {
    transform: translateY(calc(var(--odometer-steps) * -1.2em));
  }
}

.statistics-section .stats-bar strong {
  color: var(--white);
}

.stats-bar .stat-item > strong + span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.statistics-section .stats-bar .stat-item > strong + span {
  color: rgba(255, 255, 255, 0.75);
}

@media (hover: hover) and (pointer: fine) {
  .stats-bar .stat-item:hover .stat-icon svg {
    color: var(--white);
    filter: drop-shadow(0 6px 8px rgba(15, 23, 42, 0.28));
  }

  .stats-bar .stat-item:hover .stat-icon-time svg {
    transform: rotate(32deg) scale(1.15);
  }

  .stats-bar .stat-item:hover .stat-icon-group svg {
    transform: translateY(-3px) scale(1.16);
  }

  .stats-bar .stat-item:hover .stat-icon-globe svg {
    transform: rotateY(180deg) scale(1.12);
  }

  .stats-bar .stat-item:hover .stat-icon-science svg {
    transform: rotate(-12deg) translateY(-3px) scale(1.14);
  }
}

.companies {
  background:
    linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.04), transparent 45%),
    var(--surface);
}

.section-heading {
  margin-bottom: 58px;
  align-items: end;
}

.section-heading > p {
  max-width: 510px;
  margin: 0 0 5px;
}

.section-heading.centered {
  display: block;
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .scroll-fill-line {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.centered p {
  margin: 18px auto 0;
}

.company-grid {
  --bs-gutter-y: 1.5rem;
}

.company-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.company-carousel {
  display: none;
}

.company-tile {
  position: relative;
  display: block;
  height: 455px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.company-tile:nth-child(even) {
  margin-top: 42px;
}

.company-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.95);
  transition:
    filter 0.55s ease,
    transform 0.6s ease;
}

.company-tile > span {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  display: grid;
  min-height: 40px;
  padding: 6px 8px;
  place-items: center;
  color: var(--white);
  background: var(--company-label);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.7rem, 1.1vw, 0.94rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.tile-label-top > span {
  top: 0;
  border-radius: 12px 12px 0 0;
}

.tile-label-bottom > span {
  bottom: 0;
  border-radius: 0 0 12px 12px;
}

.company-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.2));
  content: "";
  pointer-events: none;
}

.company-tile:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .company-tile:hover {
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
    transform: translateY(-8px);
  }

  .company-tile:hover img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.045);
  }
}

.company-tile:focus-visible img {
  filter: grayscale(0) contrast(1);
}

.company-card {
  padding: 42px;
  background: var(--white);
  border: 1px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.company-card:hover {
  border-color: rgba(var(--bs-primary-rgb), 0.16);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.company-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
}

.company-card-top > span {
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
}

.company-logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
}

.company-logo svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.logo-leaf {
  color: var(--green);
  background: var(--green-light);
}
.logo-helix {
  color: #3459a7;
  background: #edf2ff;
}
.logo-cell {
  color: #7a4ca3;
  background: #f6effc;
}
.logo-orbit {
  color: #b76b19;
  background: #fff5e6;
}

.company-type {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-card h3 {
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.company-card p {
  min-height: 54px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 0.9rem;
}

.company-card > a {
  display: inline-flex;
  gap: 9px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.company-card > a span {
  color: var(--green);
}

.solutions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(var(--bs-primary-rgb), 0.06),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(var(--bs-primary-rgb), 0.05),
      transparent 30%
    ),
    var(--white);
}

.solutions > .container {
  position: relative;
  z-index: 1;
}

.molecule-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.solutions-grid {
  --bs-gutter-y: 1rem;
}

.solution-card {
  --solution-ease: cubic-bezier(0.26, 1, 0.9, 1);
  position: relative;
  min-height: 285px;
  padding: 33px 28px;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 3px solid transparent;
  transition:
    transform 0.8s var(--solution-ease),
    box-shadow 0.8s var(--solution-ease);
}

.solution-card::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 160%;
  aspect-ratio: 1;
  background: var(--green);
  border-radius: 58% 42% 68% 32% / 44% 58% 42% 56%;
  content: "";
  opacity: 0.08;
  transform: translate(-50%, -50%) scale(0.08) rotate(-18deg);
  transform-origin: center;
  transition:
    border-radius 0.95s var(--solution-ease),
    opacity 0.7s ease,
    transform 0.95s var(--solution-ease);
}

.solution-card::after {
  position: absolute;
  z-index: 0;
  top: -45px;
  left: -55px;
  width: 145px;
  height: 145px;
  background: rgba(255, 255, 255, 0.11);
  border-radius: 38% 62% 45% 55% / 62% 38% 62% 38%;
  content: "";
  opacity: 0;
  transform: scale(0.35) rotate(25deg);
  transition:
    opacity 0.65s ease 0.1s,
    transform 0.9s var(--solution-ease) 0.06s;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .solution-card:hover {
    box-shadow: 0 22px 45px rgba(var(--bs-primary-rgb), 0.18);
    transform: translateY(-7px);
  }

  .solution-card:hover::before {
    border-radius: 42% 58% 35% 65% / 55% 38% 62% 45%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.45) rotate(12deg);
  }

  .solution-card:hover::after {
    opacity: 1;
    transform: scale(1.15) rotate(-12deg);
  }
}

.solution-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition:
    color 0.65s var(--solution-ease),
    transform 0.75s var(--solution-ease),
    box-shadow 0.75s var(--solution-ease);
}

.solution-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.solution-card h3 {
  margin-bottom: 11px;
  font-size: 1.15rem;
  transition:
    color 0.6s ease,
    transform 0.7s var(--solution-ease);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  transition:
    color 0.6s ease,
    transform 0.7s var(--solution-ease);
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: var(--green);
  font-size: 1.3rem;
  transition:
    color 0.6s ease,
    transform 0.75s var(--solution-ease);
}

@media (hover: hover) and (pointer: fine) {
  .solution-card:hover h3,
  .solution-card:hover p {
    color: var(--white);
    transform: translateY(-2px);
  }

  .solution-card:hover .solution-icon {
    color: var(--green-dark);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.15);
    transform: translateY(-4px) rotate(-6deg) scale(1.06);
  }

  .solution-card:hover .card-arrow {
    color: var(--white);
    transform: translateX(8px);
  }
}

.solution-card-wide {
  display: flex;
  min-height: 160px;
  align-items: center;
  gap: 30px;
}

.solution-card-wide .solution-icon {
  flex: 0 0 auto;
  margin: 0;
}

.solution-card-wide p {
  max-width: 650px;
}

.why-us {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(var(--bs-primary-rgb), 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, var(--navy) 0%, var(--dark-gradient-end) 100%);
}

.why-us > .container {
  position: relative;
  z-index: 2;
}

.cell-animation-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.36;
}

.ambient-cell {
  --cell-size: 70px;
  --cell-rotation: 0deg;
  --cell-stretch: 1;
  --core-opacity: 1;
  --daughter-opacity: 0;
  --division-gap: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--cell-size);
  height: var(--cell-size);
  will-change: transform;
}

.cell-core,
.cell-daughter {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(
      circle at 34% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 68% 66%,
      rgba(var(--bs-primary-rgb), 0.15),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(var(--bs-primary-rgb), 0.15),
      rgba(15, 23, 42, 0.08)
    );
  border-radius: 54% 46% 58% 42% / 47% 58% 42% 53%;
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.06),
    0 0 26px rgba(var(--bs-primary-rgb), 0.12);
  filter: blur(0.25px);
}

.cell-core {
  opacity: var(--core-opacity);
  transform: rotate(var(--cell-rotation)) scaleX(var(--cell-stretch));
}

.cell-core::before,
.cell-daughter::before {
  position: absolute;
  top: 31%;
  left: 34%;
  width: 30%;
  height: 28%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.16),
    rgba(var(--bs-primary-rgb), 0.12) 48%,
    rgba(15, 23, 42, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 48% 52% 43% 57% / 55% 42% 58% 45%;
  content: "";
}

.cell-daughter {
  width: 54%;
  height: 54%;
  margin: auto;
  opacity: var(--daughter-opacity);
}

.cell-daughter-a {
  transform: translateX(calc(var(--division-gap) * -1)) rotate(-12deg);
}

.cell-daughter-b {
  transform: translateX(var(--division-gap)) rotate(12deg);
}

.why-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.why-intro h2 {
  margin-bottom: 25px;
  color: var(--white);
}

.why-intro p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.66);
}

.features-grid {
  display: flex;
}

.features-grid article {
  min-height: 225px;
  padding: 33px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.features-grid span {
  color: var(--accent-bright);
  font-size: 0.68rem;
  font-weight: 700;
}

.features-grid h3 {
  margin: 35px 0 10px;
  color: var(--white);
  font-size: 1.1rem;
}

.features-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

/* Director */
.team {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 8% 92%,
      rgba(var(--bs-primary-rgb), 0.1),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(98, 168, 45, 0.08),
      transparent 24%
    ),
    var(--white);
}

.team::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--bs-primary-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(var(--bs-primary-rgb), 0.035) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.team-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.team-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--accent-bright);
  content: "";
}

.team-orbit-one { top: -260px; right: -180px; width: 620px; height: 620px; animation: team-spin 26s linear infinite; }
.team-orbit-two { bottom: -310px; left: -220px; width: 520px; height: 520px; animation: team-spin 34s linear infinite reverse; }

@keyframes team-spin { to { transform: rotate(360deg); } }

.team-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 64px;
}

.team-heading h2 {
  color: var(--navy);
}

.team-heading > p {
  max-width: 490px;
  margin: 0 0 8px;
  color: var(--muted);
}

.director-layout {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(16, 25, 54, 0.12);
}

.director-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(241, 247, 245, 0.92)),
    url("../images/aura_watermark.png") center / 72% auto no-repeat;
}

.director-photo-orbit {
  position: absolute;
  width: min(500px, calc(100% - 42px));
  aspect-ratio: 1;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 34px rgba(var(--bs-primary-rgb), 0.035),
    0 32px 80px rgba(16, 25, 54, 0.1);
}

.director-photo-orbit::before,
.director-photo-orbit::after {
  position: absolute;
  border-radius: inherit;
  content: "";
}

.director-photo-orbit::before {
  inset: 28px;
  border: 1px dashed rgba(var(--bs-primary-rgb), 0.16);
}

.director-photo-orbit::after {
  top: 13%;
  right: 17%;
  width: 13px;
  height: 13px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(var(--bs-primary-rgb), 0.45);
}

.director-profile-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(430px, calc(100% - 80px));
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  background: #eef4f2;
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.82),
    0 24px 60px rgba(16, 25, 54, 0.18);
}

.director-profile-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%, rgba(var(--bs-primary-rgb), 0.14));
  content: "";
  pointer-events: none;
}

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

.director-badge {
  position: absolute;
  z-index: 3;
  right: 15%;
  bottom: 16%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(16, 25, 54, 0.18);
}

.director-badge img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.director-content {
  max-height: 560px;
  margin: 10px 10px 10px 0;
  padding: 48px 44px;
  overflow-y: auto;
  scrollbar-color: rgba(var(--bs-primary-rgb), 0.45) rgba(var(--bs-primary-rgb), 0.08);
  scrollbar-width: thin;
}

.director-content:focus-visible {
  outline: 3px solid rgba(var(--bs-primary-rgb), 0.25);
  outline-offset: -8px;
}

.team-role {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.director-content h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 0.5rem);
}

.director-content p {
  color: var(--muted);
}

.director-lead {
  color: var(--ink) !important;
  font-size: 1.08rem;
  font-weight: 600;
}

.director-focus {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.director-focus > span {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.director-focus ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.director-focus li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.director-focus li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.compliance {
  background: var(--surface);
}

.certification-grid {
  --bs-gutter-y: 1rem;
}

.certification {
  padding: 34px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
}

.cert-seal {
  position: relative;
  display: flex;
  width: 105px;
  height: 105px;
  margin: 0 auto 22px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cert-seal::before,
.cert-seal::after {
  position: absolute;
  inset: 6px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.45;
}

.cert-seal strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.cert-seal span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.cert-seal-gmp {
  color: #315b9e;
}
.cert-seal-glp {
  color: #7b569e;
}

.certification p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.compliance-note {
  margin: 28px 0 0;
  color: #94a3b8;
  font-size: 0.7rem;
  text-align: center;
}

.contact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--white);
}

.contact-map {
  position: relative;
  height: 230px;
  margin: -34px -34px 24px;
  overflow: hidden;
  background: var(--map-surface);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(0.95);
}

.contact-layout {
  position: relative;
  z-index: 2;
}

.contact-panel {
  padding: 55px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 920px;
  margin-bottom: 15px;
}

.contact-panel > p {
  margin-bottom: 30px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label,
.contact-form label > span {
  display: block;
}

.contact-form label > span {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]):not([type="hidden"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: #f8faf9;
  border: 1px solid #dce5e2;
  border-radius: 2px;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:not([type="checkbox"]):not([type="hidden"]):focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #b42318;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.field-meta {
  display: flex !important;
  justify-content: space-between;
  margin: 5px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.captcha-field {
  display: grid;
  gap: 8px;
}

.captcha-prompt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.captcha-prompt label {
  min-width: 0;
  margin: 0;
}

.captcha-prompt strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}

.captcha-refresh {
  min-height: 34px;
  padding: 0 12px;
  color: var(--green);
  background: #f8faf9;
  border: 1px solid #dce5e2;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.captcha-refresh:disabled {
  cursor: wait;
  opacity: 0.58;
}

.captcha-refresh:focus-visible {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}

.contact-form .is-invalid {
  border-color: #b42318;
  background-image: none;
}

.contact-form .is-valid {
  border-color: var(--green);
  background-image: none;
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.09);
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 4px 10px;
  align-items: start;
  cursor: pointer;
}

.consent-field .form-check-input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  border: 1.5px solid var(--green);
  border-radius: 3px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.consent-field .form-check-input:checked {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m3 8 3 3 7-7'/%3E%3C/svg%3E");
  border-color: var(--green);
}

.consent-field .form-check-input:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.2);
}

.consent-field > span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.6;
  text-transform: none !important;
}

.consent-field .field-error {
  grid-column: 2;
}

.submit-button .spinner-border {
  display: none;
}

.submit-button.is-loading .spinner-border {
  display: inline-block;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: none;
  min-height: 56px;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
  animation: statusSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-status.is-success {
  display: flex;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), transparent),
    #f1fbf6;
  border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.form-status.is-error {
  display: flex;
  color: #b42318;
  background: #fff5f3;
  border-color: rgba(180, 35, 24, 0.18);
}

.form-status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

.form-status.is-success .form-status-icon {
  background: var(--green);
}

.form-status.is-error .form-status-icon {
  background: #b42318;
}

.form-status-icon + span {
  padding-top: 1px;
}

@keyframes statusSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-details {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-details > div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > div:first-child {
  padding-top: 0;
}

.contact-details > div:last-child {
  padding-bottom: 0;
  border: 0;
}

.contact-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details address,
.contact-details p,
.contact-details a {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.8;
}

.site-footer {
  padding: 75px 0 25px;
  color: rgba(255, 255, 255, 0.62);
  background: #09101e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-bottom: 60px;
}

.brand-light {
  color: var(--white);
}

.footer-logo {
  width: 190px;
  height: 64px;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 5px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 24px 0;
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.social-links a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.82rem;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.67rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.back-to-top {
  position: fixed;
  z-index: 800;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(15px);
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

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

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

@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
  }
  .section {
    padding: 90px 0;
  }
  .primary-nav {
    gap: 20px;
  }
  .contact-panel {
    padding: 42px;
  }

  .company-showcase {
    grid-template-columns: repeat(5, 210px);
    padding: 10px 4px 28px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .company-tile {
    height: 430px;
    scroll-snap-align: start;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    padding: 6px;
    color: inherit;
    border: 0;
    box-shadow: none !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    padding: 22px;
    color: var(--navy);
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow);
  }

  .primary-nav {
    align-items: stretch !important;
    gap: 10px;
    font-size: 1rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-backdrop {
    background-position: 62% center;
  }

  .hero h1 {
    max-width: 600px;
  }

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

  .section-heading > p {
    max-width: 650px;
  }

  .purpose-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .purpose-card:last-child {
    border-bottom: 0;
  }
  .stats-bar {
    gap: 35px 0;
  }
  .stats-bar .stat-item:nth-child(2) {
    border-right: 0;
  }

  .statistics-section {
    padding: 50px 0;
  }

  .statistics-section .stats-bar .stat-item:nth-child(-n + 2) {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .why-intro {
    position: static;
    max-width: 600px;
  }

  .team-heading { grid-template-columns: 1fr; gap: 24px; }
  .director-layout {
    grid-template-columns: 1fr;
  }
  .director-visual,
  .director-profile-image,
  .director-content {
    min-height: 0;
    max-height: none;
  }
  .director-visual {
    min-height: 420px;
  }
  .director-photo-orbit {
    width: min(410px, calc(100% - 38px));
  }
  .director-profile-image {
    width: min(360px, calc(100% - 48px));
  }
  .director-badge {
    right: calc(50% - 205px);
    bottom: 30px;
    width: 62px;
    height: 62px;
  }
  .director-badge img {
    width: 48px;
    height: 48px;
  }
  .director-content {
    height: 430px;
    margin: 0 10px 10px;
  }

  .contact {
    padding-bottom: 70px;
  }
  .contact-map {
    grid-column: 1 / -1;
    margin: -34px -34px 10px;
  }
  .contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-details > div:not(.contact-map) {
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }
  .contact-details > div:nth-child(2) {
    padding-left: 0;
  }
  .contact-details > div:last-child {
    padding-right: 0;
    border-right: 0;
  }
  .footer-main {
    gap: 50px;
  }
}

@media (max-width: 767.98px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-details > div:not(.contact-map) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .contact-details > div:nth-child(2) {
    padding-top: 0;
  }
  .contact-details > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 75px 0;
  }
  h2 {
    font-size: 2.15rem;
  }

  .brand-logo {
    width: 140px;
    height: 48px;
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
  }

  .hero-backdrop {
    background:
      linear-gradient(
        0deg,
        rgba(6, 17, 29, 0.98) 4%,
        rgba(6, 20, 28, 0.82) 50%,
        rgba(6, 20, 28, 0.35)
      ),
      url("../images/biotech-hero_1.jpg") 66% center / cover no-repeat;
  }

  .hero-copy {
    padding: 130px 0 95px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .scroll-cue {
    display: none;
  }

  .purpose-card {
    padding: 32px;
  }

  .about::before {
    background:
      repeating-linear-gradient(
          104deg,
          transparent 0 10px,
          rgba(var(--bs-primary-rgb), 0.07) 10px 12px
        )
        top left / 55% 38% no-repeat,
      repeating-linear-gradient(
          104deg,
          transparent 0 10px,
          rgba(var(--bs-primary-rgb), 0.06) 10px 12px
        )
        bottom right / 55% 38% no-repeat;
  }

  .company-showcase {
    display: none;
  }

  .company-carousel {
    display: block;
    width: min(100%, 330px);
    margin-inline: auto;
    padding-bottom: 44px;
  }

  .company-carousel .carousel-inner {
    overflow: visible;
  }

  .company-carousel .carousel-item {
    padding: 4px;
  }

  .company-carousel .company-tile,
  .company-carousel .company-tile:nth-child(even) {
    width: 100%;
    height: 440px;
    margin-top: 0;
    transform: none;
  }

  .company-carousel .company-tile > span {
    min-height: 62px;
    font-size: 0.96rem;
  }

  .company-carousel .company-tile img {
    filter: grayscale(0) contrast(1);
  }

  .company-carousel .carousel-indicators {
    bottom: -4px;
    gap: 5px;
    margin-bottom: 0;
  }

  .company-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0;
    background-color: var(--green);
    border: 0;
    border-radius: 50%;
  }

  .company-carousel .carousel-control-prev,
  .company-carousel .carousel-control-next {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    opacity: 1;
    transform: translateY(-50%);
  }

  .company-carousel .carousel-control-prev {
    left: -12px;
  }

  .company-carousel .carousel-control-next {
    right: -12px;
  }

  .company-carousel .carousel-control-prev-icon,
  .company-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
  .stats-bar .stat-item {
    padding: 0 15px;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .stat-icon svg {
    width: 39px;
  }
  .stats-bar strong {
    font-size: 2.2rem;
  }
  .stats-bar .stat-item > strong + span {
    font-size: 0.66rem;
  }

  .company-card {
    padding: 32px;
  }
  .solution-card-wide {
    min-height: 285px;
    align-items: flex-start;
    flex-direction: column;
  }

  .features-grid article,
  .features-grid article:nth-child(2n),
  .features-grid article:nth-last-child(-n + 2) {
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .cell-animation-layer {
    opacity: 0.12;
  }
  .team-heading { margin-bottom: 42px; }
  .director-layout {
    border-radius: 12px;
  }
  .director-visual {
    min-height: 330px;
    background-size: 78% auto;
  }
  .director-photo-orbit {
    width: min(310px, calc(100% - 28px));
    box-shadow:
      inset 0 0 0 22px rgba(var(--bs-primary-rgb), 0.035),
      0 24px 55px rgba(16, 25, 54, 0.09);
  }
  .director-photo-orbit::before {
    inset: 18px;
  }
  .director-profile-image {
    width: min(280px, calc(100% - 32px));
  }
  .director-badge {
    right: calc(50% - 142px);
    bottom: 24px;
    width: 50px;
    height: 50px;
    border-width: 5px;
  }
  .director-badge img {
    width: 39px;
    height: 39px;
  }
  .director-content {
    height: 390px;
    margin: 0 8px 8px;
    padding: 34px 24px;
  }
  .contact {
    padding-top: 65px;
  }
  .contact-panel {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form .button {
    width: 100%;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-details > div,
  .contact-details > div:first-child,
  .contact-details > div:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .contact-details > div:first-child {
    padding-top: 0;
  }
  .contact-details > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .footer-links {
    gap: 25px;
  }
  .footer-bottom {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }

  .molecule-canvas {
    display: none;
  }

  .cell-animation-layer {
    display: none;
  }

  .team-orbit { animation: none; }

  .solution-card::before,
  .solution-card::after {
    transition: none;
  }
}
