:root {
  --navy: #0a1971;
  --navy-deep: #000835;
  --navy-footer: #000835;
  --orange: #fd4f00;
  --text: #444444;
  --muted: #5e648e;
  --gray: #54595f;
  --line: #e6e8ee;
  --soft: #f5f5f5;
  --white: #ffffff;
  --page: #f5f5f5;
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
  --header-h: 88px;
  --container: 1200px;
  --radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: transparent;
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(10, 25, 113, 0.08);
}

.header-inner {
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  height: 56px;
  width: auto;
}

.logo-color {
  display: none;
}

.logo-white {
  display: block;
}

.site-header.is-scrolled .logo-white {
  display: none;
}

.site-header.is-scrolled .logo-color {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-header.is-scrolled .nav-link {
  color: var(--navy);
}

.nav-link svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link svg,
.nav-item:focus-within .nav-link svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
  white-space: normal;
}

.dropdown a:hover {
  color: var(--orange);
  background: #fff7f2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: 0.2s ease;
}

.site-header.is-scrolled .menu-toggle span,
.site-header.is-scrolled .menu-toggle span::before,
.site-header.is-scrolled .menu-toggle span::after {
  background: var(--navy);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-orange {
  color: var(--orange);
  border-color: var(--orange);
  background: transparent;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: #e04600;
  border-color: #e04600;
  color: var(--white);
}

.btn-outline-navy {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.text-link {
  color: var(--orange);
  font-weight: 500;
  font-size: 15px;
}

.text-link:hover {
  text-decoration: underline;
}

.orange {
  color: var(--orange);
}

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.media-bg,
.media-bg iframe,
.media-bg video,
.media-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-bg {
  pointer-events: none;
  background: #111;
}

.media-bg iframe,
.media-bg video,
.media-bg img {
  border: 0;
  object-fit: cover;
}

.media-bg iframe,
.media-bg img {
  transform: scale(1.12);
}

.media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 42, 0.55) 0%, rgba(2, 6, 42, 0.18) 62%, rgba(2, 6, 42, 0.08) 100%);
}

.media-bg .video-poster {
  z-index: 0;
  transform: none;
}

.media-bg iframe,
.media-bg video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.media-bg.is-playing iframe,
.media-bg.is-playing video {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), 1100px);
  margin: 0 auto;
  padding-top: var(--header-h);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 500;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero h1 .orange {
  color: var(--orange);
}

.hero p {
  max-width: 620px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

/* Competencies */
.competencies {
  padding: 96px 0 80px;
  background:
    url("../assets/images/bg-white-abstract.png") left bottom / cover no-repeat,
    var(--page);
}

.section-title {
  margin: 0 0 48px;
  text-align: center;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.card {
  min-width: 0;
}

.card-media {
  --cut: 56px;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(
    0 var(--cut),
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%
  );
}

.card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card h3,
.card h3 a {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.card h3 a:hover {
  color: var(--orange);
}

.card p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
}

/* Trusted */
.trusted {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}

.trusted .media-bg iframe {
  transform: scale(1.18);
}

.trusted .media-bg::after {
  background: linear-gradient(90deg, rgba(2, 6, 42, 0.72) 0%, rgba(2, 6, 42, 0.38) 48%, rgba(2, 6, 42, 0.16) 100%);
}

.trusted-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trusted-copy h2 {
  margin: 0 0 20px;
  max-width: 640px;
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.trusted-copy p {
  margin: 0 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
}

/* Applications */
.applications {
  padding: 100px 0 80px;
  background: var(--page) url("../assets/images/bg-white-abstract.png") center / cover no-repeat;
}

.applications-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.applications h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.applications p {
  margin: 0 0 28px;
  color: var(--text);
  max-width: 520px;
}

.body-map {
  position: relative;
  min-height: 720px;
}

.body-map img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 680px;
  width: auto;
}

.hotspot {
  position: absolute;
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  white-space: nowrap;
}

.hotspot:hover {
  color: var(--orange);
}

.hotspot .gt {
  color: var(--orange);
  margin-left: 4px;
}

.hs-endoscopy { top: 14%; left: 2%; }
.hs-cardio { top: 34%; left: 2%; }
.hs-ortho { top: 56%; left: 6%; }
.hs-robotic { top: 18%; right: 2%; }
.hs-gyn { top: 48%; right: 4%; }

.body-map::before {
  content: "";
  position: absolute;
  inset: 8% 18%;
  background:
    linear-gradient(var(--line), var(--line)) left 18% top 17% / 14% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) left 18% top 37% / 14% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) left 22% top 59% / 12% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) right 16% top 21% / 18% 1px no-repeat,
    linear-gradient(var(--line), var(--line)) right 14% top 51% / 16% 1px no-repeat;
  pointer-events: none;
}

/* CTA */
.cta {
  position: relative;
  z-index: 0;
  padding: 110px 0;
  background: url("../assets/images/bg-cta.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 42, 0.16);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta h2 {
  margin: 0 auto 18px;
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cta p {
  margin: 0 auto 32px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: var(--navy-footer);
  color: rgba(255, 255, 255, 0.78);
  padding: 0;
}

.footer-edge,
.banner-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 2px);
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
  pointer-events: none;
  z-index: 3;
}

.has-banner-edge {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 36px 0 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer h4 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--orange);
}

.contact-list li {
  margin-bottom: 12px;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.social svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Inner page */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 64px;
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
}

.page-body {
  padding: 72px 0 96px;
}

.page-body h2 {
  color: var(--navy);
}

/* Competencies listing */
.page-hero-video {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero-video .media-bg {
  position: absolute;
  inset: 0;
}

.page-hero-video .media-bg iframe,
.page-hero-video .media-bg video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transform: none;
}

.page-hero-video .hero-content {
  padding-top: var(--header-h);
}

.page-hero-video h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero-video p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.comp-list {
  padding: 80px 0 40px;
  background:
    url("../assets/images/bg-white-abstract-2.png") left bottom / cover no-repeat,
    var(--page);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}

.split-row-reverse {
  direction: rtl;
}

.split-row-reverse > * {
  direction: ltr;
}

.split-copy h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.split-copy p {
  margin: 0 0 22px;
  color: var(--text);
}

.split-media {
  --cut: 56px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(
    0 var(--cut),
    var(--cut) 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%
  );
}

.split-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.cap-block {
  margin-top: 36px;
}

.cap-title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.cap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--orange);
}

.cap-list a {
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
}

.cap-list a:hover {
  color: #e04600;
}

.cap-list .gt {
  color: var(--orange);
  margin-left: 4px;
}

.page-cta {
  position: relative;
  z-index: 0;
  padding: 100px 0;
  background: url("../assets/images/bg-cta.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 42, 0.16);
}

.page-cta .container {
  position: relative;
  z-index: 1;
}

.page-cta .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.page-cta h2 {
  margin: 0 auto 28px;
  max-width: 780px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
}

.page-cta-cdmo {
  background: url("../assets/images/bg-cdmo-cta.jpg?v=3") center / cover no-repeat;
}

.page-cta-cdmo p {
  margin: 0 auto 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero-image .media-bg img {
  transform: none;
}

.page-hero-image .hero-content p {
  max-width: 640px;
}

.app-expertise {
  padding: 100px 0 80px;
  background: var(--page);
}

.app-expertise h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.app-topics {
  padding: 24px 0 72px;
  background: var(--page);
}

.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.app-row-reverse {
  direction: rtl;
}

.app-row-reverse > * {
  direction: ltr;
}

.app-copy h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.app-copy p {
  margin: 0;
  color: var(--text);
}

.app-photo {
  margin: 0;
}

.app-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* CDMO page */
.cdmo-intro {
  padding: 96px 0;
  background:
    url("../assets/images/bg-white-abstract-left.png") left center / 42% no-repeat,
    var(--page);
}

.cdmo-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.cdmo-intro h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.cdmo-intro p {
  margin: 0;
  color: var(--text);
}

.cdmo-intro .btn {
  margin-top: 28px;
}

.cdmo-caps {
  padding: 96px 0 80px;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.cdmo-caps h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.03em;
}

.cdmo-caps > .container > p {
  margin: 0 auto 48px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
}

.cdmo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
  text-align: left;
}

.cdmo-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
  font-size: 20px;
}

.cdmo-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.cdmo-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.cdmo-card .text-link {
  font-size: 14px;
}

.cdmo-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.cdmo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.cdmo-new {
  padding: 80px 0 100px;
  background: var(--page);
  color: var(--navy);
  text-align: center;
}

.cdmo-new .eyebrow {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cdmo-new h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 42px);
}

.cdmo-new h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
}

.cdmo-new p {
  margin: 0 auto;
  max-width: 820px;
  color: var(--text);
}

/* Repair page */
.repair-hero .hero-content p {
  max-width: 640px;
}

.repair-services {
  padding: 100px 0 110px;
  background:
    url("../assets/images/bg-white-abstract-2.png") right bottom / cover no-repeat,
    var(--page);
  text-align: center;
}

.repair-services h2 {
  margin: 0 auto 56px;
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 28px;
  text-align: left;
}

.svc-item h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svc-item h3 span {
  color: var(--navy);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.svc-item p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

/* OEM page */
.oem-intro {
  padding: 96px 0;
  background:
    url("../assets/images/bg-white-abstract-2.png") left bottom / cover no-repeat,
    var(--page);
}

.oem-intro .btn {
  margin-top: 28px;
}

.oem-devices {
  padding: 96px 0 80px;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}

.oem-devices h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 42px);
}

.oem-devices > .container > p {
  margin: 0 auto 48px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.75);
}

.oem-device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}

.oem-device figure {
  margin: 0 0 18px;
  background: #fff;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 20px;
}

.oem-device img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.oem-device h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 18px;
}

.oem-device h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.oem-device p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.oem-story {
  padding: 80px 0;
  background: var(--page);
}

.oem-story + .oem-story {
  padding-top: 0;
}

.oem-story .split-copy .eyebrow {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 12px;
}

.oem-slider {
  position: relative;
  overflow: hidden;
}

.oem-slider img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: none;
}

.oem-slider img.is-active {
  display: block;
}

.oem-slider-nav {
  position: absolute;
  inset: auto 16px 16px auto;
  display: flex;
  gap: 8px;
}

.oem-slider-nav button {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

/* About page */
.about-hero {
  min-height: 675px;
}

.about-hero .hero-content p {
  max-width: 640px;
}

.about-values {
  padding: 100px 0;
  background: var(--page);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.about-vm h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.about-vm p {
  margin: 0 0 28px;
  color: var(--text);
  max-width: 420px;
}

.about-values h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  padding: 28px 24px;
  background: #f7f8fb;
}

.value-card svg {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 16px;
}

.value-card h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.value-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.value-card-navy {
  background: var(--navy);
}

.value-card-navy h4,
.value-card-navy p {
  color: var(--white);
}

.value-card-know {
  grid-column: 2;
}

.about-csr {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.about-csr-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.about-csr h2 {
  margin: 0 0 28px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.about-csr p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
}

.about-quality {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background: url("../assets/images/about-quality.jpg") center / cover no-repeat;
}

.about-quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 42, 0.28) 0%, rgba(2, 6, 42, 0.12) 58%, rgba(2, 6, 42, 0.06) 100%);
}

.about-quality .container {
  position: relative;
  z-index: 1;
}

.about-quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-quality h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.about-quality h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.about-quality p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
}

.about-quote {
  margin: 0;
}

.about-quote-mark {
  display: block;
  color: var(--orange);
  font-size: 96px;
  line-height: 0.7;
  font-weight: 700;
}

.about-quote p {
  margin: 16px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--white);
}

.about-reg {
  padding: 100px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.about-reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-reg h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
}

.about-reg p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
}

.about-certs {
  margin: 0;
  background: var(--white);
  padding: 20px;
}

.about-certs img {
  width: 100%;
}

.about-checks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.about-checks li {
  position: relative;
  padding: 0 0 22px 36px;
  color: rgba(255, 255, 255, 0.9);
}

.about-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' d='M0 12C0 8.82 1.26 5.77 3.51 3.51C5.77 1.26 8.82 0 12 0C15.18 0 18.23 1.26 20.49 3.51C22.74 5.77 24 8.82 24 12C24 15.18 22.74 18.23 20.49 20.49C18.23 22.74 15.18 24 12 24C8.82 24 5.77 22.74 3.51 20.49C1.26 18.23 0 15.18 0 12ZM11.32 17.14L18.22 8.5L16.98 7.5L11.08 14.86L6.91 11.39L5.89 12.61L11.32 17.14Z' fill='%23FD4F00'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.sus-hero {
  min-height: 675px;
}

.sus-intro,
.sus-lifecycle {
  padding: 96px 0 40px;
  background: var(--page);
}

.sus-intro .app-copy h2,
.sus-lifecycle .app-copy h2,
.sus-people .app-copy h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sus-intro .app-copy p,
.sus-lifecycle .app-copy p,
.sus-people .app-copy p {
  margin: 0 0 16px;
}

.sus-design,
.sus-people {
  padding: 96px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.sus-design-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.sus-design h2,
.sus-people h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.03em;
}

.sus-design p,
.sus-people p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
}

.sus-list {
  color: inherit;
}

.sus-list li {
  color: inherit;
}

.sus-list-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.sus-people .app-copy h2,
.sus-people .app-copy p {
  color: var(--white);
}

.about-apart {
  padding: 100px 0 80px;
  background: var(--page);
}

.about-apart-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.about-apart h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
}

.about-apart-head p {
  margin: 0;
  color: var(--text);
}

.apart-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.apart-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.apart-grid p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

/* Careers */
.career-intro {
  padding: 100px 0 40px;
  background: var(--page);
}

.career-intro .app-copy h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.career-intro .app-copy p {
  margin: 0;
  color: var(--text);
}

.career-intro .app-row {
  margin-bottom: 0;
}

.quote-track [hidden] {
  display: none !important;
}

.career-reasons,
.career-values {
  padding: 80px 0 96px;
  background: var(--page);
}

.career-values {
  background: var(--page) url("../assets/images/bg-white-abstract.png") center / cover no-repeat;
}

.career-reasons .eyebrow,
.career-values .eyebrow {
  color: var(--orange);
  text-align: center;
}

.career-reasons h2,
.career-values h2,
.career-voices h2 {
  margin: 0 0 48px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin-bottom: 48px;
}

.reason-grid svg {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 16px;
}

.reason-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.reason-grid p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.career-center {
  text-align: center;
}

.career-voices {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.career-voices h2 {
  color: var(--white);
}

.quote-slider {
  margin-bottom: 40px;
}

.quote-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-track blockquote {
  margin: 0;
}

.quote-track p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.quote-track cite {
  display: block;
  font-style: normal;
}

.quote-track strong {
  display: block;
  font-size: 16px;
}

.quote-track span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.quote-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.quote-nav button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.quote-nav button svg {
  width: 22px;
  height: 22px;
  display: block;
}

.quote-dots {
  display: flex;
  gap: 8px;
}

.quote-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.quote-dots button.is-active {
  background: var(--white);
}

.stand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.stand-grid h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.stand-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' d='M0 12C0 8.82 1.26 5.77 3.51 3.51C5.77 1.26 8.82 0 12 0C15.18 0 18.23 1.26 20.49 3.51C22.74 5.77 24 8.82 24 12C24 15.18 22.74 18.23 20.49 20.49C18.23 22.74 15.18 24 12 24C8.82 24 5.77 22.74 3.51 20.49C1.26 18.23 0 15.18 0 12ZM11.32 17.14L18.22 8.5L16.98 7.5L11.08 14.86L6.91 11.39L5.89 12.61L11.32 17.14Z' fill='%23FD4F00'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.stand-grid p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.career-reach {
  padding: 80px 0 100px;
  background:
    url("../assets/images/bg-white-abstract-2.png") left bottom / cover no-repeat,
    var(--page);
}

.career-reach-panel {
  padding: 72px 56px;
  background: var(--navy-deep);
  color: var(--white);
}

.career-reach-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.career-reach h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.career-reach p {
  margin: 0 0 28px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.86);
}

.apply-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.apply-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  padding: 22px 24px;
  background: #0a1258;
}

.apply-steps span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.apply-steps h3 {
  margin: 4px 0 8px;
  font-size: 18px;
}

.apply-steps p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

/* News overview */
.news-hero {
  min-height: 675px;
}

.news-list {
  padding: 96px 0 100px;
  background: var(--page);
}

.news-list h2 {
  margin: 0 0 48px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.03em;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.news-grid [hidden] {
  display: none !important;
}

.news-card figure {
  margin: 0 0 22px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.news-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
}

.news-more {
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
}

.news-more .gt {
  margin-left: 4px;
}

.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--navy-deep);
  color: var(--white);
}

.post-hero-copy {
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 56px 64px;
}

.post-hero-inner {
  max-width: 560px;
  margin-left: auto;
  width: 100%;
  padding-right: 40px;
}

.post-date {
  margin: 0 0 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.post-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.post-cat {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
}

.post-hero-media {
  margin: 0;
  min-height: 100%;
}

.post-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.post-body {
  padding: 96px 24px 110px;
  background: var(--page);
}

.post-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: left;
}

.post-wrap p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.post-wrap h2 {
  margin: 40px 0 18px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.03em;
}

.post-wrap ul {
  margin: 0;
  padding: 0 0 0 22px;
}

.post-wrap li {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
}

.pager button {
  min-width: 18px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
}

.pager button.is-active {
  color: var(--orange);
  font-weight: 600;
}

.pager button:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Mobile */
@media (max-width: 1024px) {
  .card-grid,
  .applications-grid,
  .footer-grid,
  .split-row,
  .app-row,
  .cap-list,
  .cdmo-intro-grid,
  .cdmo-grid,
  .svc-grid,
  .oem-device-grid,
  .about-values-grid,
  .about-csr-grid,
  .about-quality-grid,
  .about-reg-grid,
  .about-apart-head,
  .sus-design-grid,
  .career-reach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reason-grid,
  .stand-grid,
  .quote-track,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .apart-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-row-reverse,
  .app-row-reverse {
    direction: ltr;
  }

  .split-row,
  .app-row {
    gap: 28px;
    margin-bottom: 56px;
  }

  .page-hero-video {
    min-height: 70vh;
  }

  .post-hero {
    grid-template-columns: 1fr;
  }

  .post-hero-copy {
    padding: calc(var(--header-h) + 40px) 24px 48px;
  }

  .post-hero-inner {
    max-width: none;
    margin: 0;
    padding-right: 0;
  }

  .post-hero-media img {
    min-height: 320px;
  }

  .page-hero-video .media-bg iframe,
  .page-hero-video .media-bg video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    transform: none;
  }

  .trusted {
    min-height: 520px;
  }

  .trusted-copy {
    width: min(calc(100% - 40px), var(--container));
    padding: 72px 0;
  }

  .card-media {
    --cut: 40px;
  }

  .body-map {
    min-height: 640px;
  }

  .body-map img {
    height: 560px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    padding: 8px 0 20px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    min-width: 0;
    padding: 0 0 8px 16px;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .hero-content {
    width: min(calc(100% - 40px), 1100px);
  }

  .hotspot {
    font-size: 10px;
    padding: 5px 8px;
  }

  .footer-bar {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .body-map {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .body-map img {
    position: static;
    transform: none;
    height: 420px;
  }

  .body-map::before {
    display: none;
  }

  .hotspot {
    position: static;
  }

  .hotspots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .svc-grid,
  .oem-device-grid,
  .app-row,
  .about-values-grid,
  .value-cards,
  .about-csr-grid,
  .about-quality-grid,
  .about-reg-grid,
  .about-apart-head,
  .apart-grid,
  .sus-design-grid,
  .sus-list-split,
  .reason-grid,
  .stand-grid,
  .quote-track,
  .career-reach-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .career-reach-panel {
    padding: 40px 24px;
  }

  .value-card-know {
    grid-column: auto;
  }
}
