@font-face {
  font-family: "TykSans";
  src: url("assets/fonts/TykSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TykSans";
  src: url("assets/fonts/TykSans-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #008fc7;
  --primary-dark: #006b99;
  --teal: #1dc7b7;
  --navy: #112943;
  --ink: #26384c;
  --muted: #6d7d90;
  --line: #e6edf4;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 41, 67, 0.14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "TykSans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.rich-content {
  color: var(--ink);
  line-height: 1.85;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin: 1.1em 0 0.45em;
  color: var(--navy);
  line-height: 1.25;
}

.rich-content p {
  margin: 0 0 1em;
}

.rich-content ul,
.rich-content ol {
  margin: 0 0 1.1em 1.25em;
  padding: 0;
}

.rich-content li {
  margin: 0.35em 0;
}

.rich-content blockquote {
  margin: 1.2em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  background: var(--soft);
  color: var(--muted);
}

.rich-content a {
  color: var(--primary);
  text-decoration: underline;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  overflow: hidden;
  border-radius: 14px;
}

.rich-content th,
.rich-content td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.rich-content th {
  background: var(--soft);
  color: var(--navy);
}

.rich-content pre,
.rich-content code {
  background: #f1f5f9;
  border-radius: 8px;
}

.rich-content pre {
  padding: 14px;
  overflow: auto;
}

.notice-box {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 12px;
  font-weight: 700;
}

.notice-box.form-message {
  margin: 10px 0 0;
  width: 100%;
}

.notice-box.success {
  background: #e8fff7;
  color: #08785d;
  border: 1px solid #b5f1df;
}

.notice-box.error {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

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

.topbar {
  background: #08324f;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

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

.topbar a {
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: #fff;
}

.topbar-links,
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-contact span {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 237, 244, 0.9);
}

.nav-wrap {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px 16px 16px 4px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 143, 199, 0.28);
}

.brand strong {
  display: block;
  color: var(--navy);
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.brand .brand-mark {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 30px;
  color: #31475e;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 30px 0;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.active {
  color: var(--primary);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

/* Dropdown nav */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item > a .arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 10px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 101;
}

.dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown a:hover {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
}

.dropdown a::after {
  display: none !important;
}

.nav-item:hover > .dropdown,
.nav-item.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover > a .arrow,
.nav-item.is-open > a .arrow {
  transform: rotate(180deg);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 0;
  cursor: pointer;
}

.nav-cta,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 15px 34px rgba(0, 143, 199, 0.25);
}

.btn.ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 143, 199, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eff9fd 0%, #fff 92%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 280px;
  background:
    radial-gradient(circle at 20% 30%, rgba(29, 199, 183, 0.22), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(0, 143, 199, 0.24), transparent 32%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-grid {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 64px;
  padding: 60px 0 100px;
}

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

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

h1 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.welcome-copy p,
.process-copy p,
.rd p,
.global p,
.cta-band p {
  color: var(--muted);
  font-size: 17px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 19px;
}

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

.hero-visual {
  display: grid;
  place-items: center;
}

.medical-stage {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1.16 / 1;
  border-radius: 42px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(239, 249, 253, 0.8)),
    radial-gradient(circle at 40% 35%, rgba(29, 199, 183, 0.18), transparent 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.medical-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(0, 143, 199, 0.16);
}

.medical-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 11%;
  height: 16px;
  border-radius: 50%;
  background: rgba(17, 41, 67, 0.08);
  filter: blur(4px);
}

.medical-stage.has-real-image,
.factory-card.has-real-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(0, 143, 199, 0.12);
}

.medical-stage.has-real-image::before,
.medical-stage.has-real-image::after,
.factory-card.has-real-image::before,
.factory-card.has-real-image::after {
  display: none;
}

.stage-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 26px;
}

.lamp {
  position: absolute;
  top: 18%;
  width: 118px;
  height: 70px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 143, 199, 0.16);
}

.lamp::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 22px;
  right: 22px;
  height: 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #d9f6f8, #fff);
}

.lamp-left {
  left: 23%;
  transform: rotate(-16deg);
}

.lamp-right {
  right: 19%;
  transform: rotate(18deg);
}

.table {
  position: absolute;
  left: 22%;
  right: 20%;
  bottom: 31%;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #dff2f9);
  box-shadow: 0 16px 30px rgba(17, 41, 67, 0.12);
}

.table::after {
  content: "";
  position: absolute;
  left: 45%;
  top: 100%;
  width: 34px;
  height: 80px;
  background: linear-gradient(180deg, #c2e7f4, #7ebcd0);
}

.monitor,
.panel {
  position: absolute;
  border-radius: 18px;
  background: #123a5c;
}

.monitor {
  right: 12%;
  top: 36%;
  width: 84px;
  height: 68px;
  box-shadow: inset 0 0 0 8px #fff;
}

.panel {
  left: 12%;
  top: 42%;
  width: 72px;
  height: 92px;
  background: linear-gradient(180deg, #fff, #dceff7);
}

.bed-head,
.bed-body,
.bed-rail,
.wheel,
.control {
  position: absolute;
}

.bed-head {
  left: 14%;
  top: 38%;
  width: 72px;
  height: 142px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #daf2f8);
  box-shadow: 0 10px 24px rgba(17, 41, 67, 0.12);
}

.bed-body {
  left: 25%;
  right: 12%;
  top: 47%;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #d8f2f9);
  box-shadow: 0 24px 42px rgba(17, 41, 67, 0.16);
}

.bed-rail {
  top: 39%;
  width: 120px;
  height: 36px;
  border-radius: 18px;
  background: var(--primary);
}

.rail-a {
  left: 34%;
}

.rail-b {
  right: 18%;
}

.wheel {
  bottom: 25%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #183c5c;
  border: 6px solid #d9f2f8;
}

.w1 {
  left: 34%;
}

.w2 {
  right: 22%;
}

.control {
  right: 17%;
  top: 28%;
  width: 86px;
  height: 74px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(17, 41, 67, 0.14);
}

.node,
.core-screen,
.network-line {
  position: absolute;
}

.core-screen {
  left: 33%;
  top: 32%;
  width: 180px;
  height: 140px;
  border-radius: 26px;
  background: linear-gradient(135deg, #123a5c, #0c8dbd);
  box-shadow: inset 0 0 0 12px #fff, 0 22px 40px rgba(17, 41, 67, 0.17);
}

.core-screen::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 60px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 0 rgba(255, 255, 255, 0.45);
}

.node {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(17, 41, 67, 0.12);
}

.node::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

.n1 {
  top: 16%;
  left: 16%;
}

.n2 {
  top: 15%;
  right: 14%;
}

.n3 {
  bottom: 18%;
  left: 17%;
}

.n4 {
  bottom: 18%;
  right: 15%;
}

.network-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 143, 199, 0.45), transparent);
  transform-origin: left center;
}

.l1 {
  left: 26%;
  top: 31%;
  width: 250px;
  transform: rotate(20deg);
}

.l2 {
  left: 28%;
  bottom: 34%;
  width: 240px;
  transform: rotate(-18deg);
}

.l3 {
  left: 28%;
  top: 50%;
  width: 235px;
}

.hero-tabs {
  position: relative;
  z-index: 2;
  margin-top: -76px;
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tab {
  min-height: 86px;
  border: 1px solid rgba(0, 143, 199, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(17, 41, 67, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tab.is-active,
.tab:hover {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  transform: translateY(-3px);
}

.intro-section {
  padding: 34px 0 88px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: stretch;
}

.intro-head,
.intro-card {
  min-height: 280px;
  border-radius: var(--radius);
}

.intro-head {
  padding: 54px;
  background: linear-gradient(135deg, #f5fbfe, #e9f8fc);
  border: 1px solid rgba(0, 143, 199, 0.12);
}

.intro-card {
  color: #fff;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(0, 107, 153, 0.92), rgba(29, 199, 183, 0.86)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.35), transparent 28%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  box-shadow: var(--shadow);
}

.intro-card h3 {
  color: #fff;
  font-size: 32px;
}

.intro-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.welcome,
.solutions,
.news {
  padding: 100px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.factory-card {
  position: relative;
  min-height: 470px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #dff7fc 0%, #f8fcff 48%, #e9f5f9 100%);
  box-shadow: var(--shadow);
}

.factory-sky {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  top: 52px;
  right: 54px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: -150px 38px 0 -42px rgba(255, 255, 255, 0.66);
}

.factory-building {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 66px;
  height: 210px;
  border-radius: 28px 28px 14px 14px;
  background: linear-gradient(135deg, #fff, #d7eef7);
  box-shadow: 0 18px 44px rgba(17, 41, 67, 0.12);
}

.factory-building::before {
  content: "";
  position: absolute;
  left: 58px;
  top: -74px;
  width: 150px;
  height: 74px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(135deg, #fff, #d2edf7);
}

.factory-building::after {
  content: "";
  position: absolute;
  right: 44px;
  top: -108px;
  width: 50px;
  height: 108px;
  border-radius: 14px 14px 0 0;
  background: #6fbad3;
}

.factory-window {
  position: absolute;
  width: 58px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  opacity: 0.82;
}

.fw1 {
  left: 92px;
  bottom: 194px;
}

.fw2 {
  left: 178px;
  bottom: 194px;
}

.fw3 {
  right: 168px;
  bottom: 194px;
}

.fw4 {
  right: 82px;
  bottom: 194px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 800;
}

.certified {
  padding: 100px 0;
  background: var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head.narrow {
  max-width: 920px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.cert-grid article,
.product-card,
.news-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 48px rgba(17, 41, 67, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cert-grid article:hover,
.product-card:hover,
.news-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(17, 41, 67, 0.12);
}

.cert-grid span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  font-weight: 900;
}

.cert-grid p,
.product-card p,
.news-grid p,
.footer p,
.footer a {
  color: var(--muted);
}

.product-card {
  min-height: 300px;
}

.card-image {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 22px;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5fbfe, #ffffff);
  border: 1px solid rgba(0, 143, 199, 0.1);
  padding: 10px;
}

.icon {
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #e7f9fd, #fff);
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

.bed-icon::before {
  left: 16px;
  right: 12px;
  bottom: 24px;
  height: 20px;
  border-radius: 10px;
}

.bed-icon::after {
  left: 14px;
  bottom: 20px;
  width: 10px;
  height: 38px;
  border-radius: 8px;
}

.home-icon::before {
  left: 17px;
  top: 26px;
  width: 48px;
  height: 38px;
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
}

.surgical-icon::before {
  left: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.surgical-icon::after {
  left: 38px;
  bottom: 12px;
  width: 8px;
  height: 32px;
  border-radius: 6px;
}

.rescue-icon::before {
  left: 15px;
  top: 28px;
  width: 52px;
  height: 30px;
  border-radius: 10px;
}

.rescue-icon::after {
  left: 34px;
  top: 17px;
  width: 14px;
  height: 52px;
  border-radius: 8px;
  background: #fff;
}

.product-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
}

.process {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(8, 50, 79, 0.93), rgba(0, 107, 153, 0.9)),
    radial-gradient(circle at 15% 20%, rgba(29, 199, 183, 0.4), transparent 30%);
  color: #fff;
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 60px;
  align-items: center;
}

.process h2,
.process h3 {
  color: #fff;
}

.process p {
  color: rgba(255, 255, 255, 0.78);
}

.process .eyebrow {
  color: #8ff3e8;
}

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

.process-grid article {
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.process-grid b {
  display: inline-flex;
  margin-bottom: 36px;
  color: #8ff3e8;
  font-size: 28px;
}

.rd {
  padding: 110px 0;
  background: #fff;
}

.rd-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.stats article {
  min-height: 190px;
  padding: 34px;
  border-radius: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.stats strong,
.stats span {
  color: var(--primary);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stats p {
  margin-top: 14px;
  margin-bottom: 0;
}

.global {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fbfd, #fff);
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.map-card {
  border-radius: 34px;
  background: linear-gradient(135deg, #e9f8fc, #fff);
  box-shadow: var(--shadow);
  min-height: 430px;
  padding: 42px;
}

.world-map {
  position: relative;
  height: 350px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 23% 38%, rgba(0, 143, 199, 0.28) 0 40px, transparent 42px),
    radial-gradient(circle at 48% 31%, rgba(0, 143, 199, 0.22) 0 56px, transparent 58px),
    radial-gradient(circle at 66% 44%, rgba(29, 199, 183, 0.28) 0 64px, transparent 66px),
    radial-gradient(circle at 80% 62%, rgba(0, 143, 199, 0.24) 0 42px, transparent 44px),
    linear-gradient(180deg, #f8fdff, #e4f6fb);
  overflow: hidden;
}

.world-map::before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 143, 199, 0.28);
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(0, 143, 199, 0.16);
  animation: pulse 2.2s infinite;
}

.p1 { left: 20%; top: 37%; }
.p2 { left: 47%; top: 28%; }
.p3 { left: 61%; top: 47%; }
.p4 { left: 77%; top: 58%; }
.p5 { left: 35%; top: 66%; }

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 14px rgba(0, 143, 199, 0.05);
  }
}

.milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.milestones article {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.milestones strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.milestones span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.news-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.news-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
}

.news-tabs .is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

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

.news-grid article {
  padding: 16px 16px 28px;
}

.news-grid p {
  margin: 22px 14px 8px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.news-grid h3 {
  margin: 0 14px;
}

.news-image {
  height: 210px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 38px;
  height: 70px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.news-image::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 70px;
  bottom: 66px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 143, 199, 0.55);
  box-shadow: 0 20px 0 rgba(0, 143, 199, 0.25);
}

.gradient-a {
  background: linear-gradient(135deg, #d9f6fa, #8ddce7);
}

.gradient-b {
  background: linear-gradient(135deg, #e5fbf8, #9ce3d7);
}

.gradient-c {
  background: linear-gradient(135deg, #e8f4ff, #91c9e9);
}

.cta-band {
  padding: 100px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(29, 199, 183, 0.34), transparent 26%),
    linear-gradient(135deg, #07314e, #006b99);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  min-height: 56px;
  padding: 0 18px;
  font: inherit;
  color: var(--navy);
}

.contact-form textarea {
  min-height: 124px;
  padding-top: 18px;
  resize: vertical;
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
}

.footer {
  padding: 70px 0 50px;
  background: #061f33;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 48px;
}

.footer .brand strong,
.footer h4 {
  color: #fff;
}

.footer .brand small,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer p {
  margin-bottom: 10px;
}

.footer h4 {
  margin-bottom: 18px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer-brand {
  margin-bottom: 22px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.copyright {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav.is-open {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 132px;
    z-index: 1001;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    max-height: calc(100vh - 160px);
    overflow: auto;
  }

  .main-nav.is-open a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--navy);
  }

  .main-nav.is-open a:hover,
  .main-nav.is-open a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--teal));
  }

  .main-nav.is-open a::after {
    display: none;
  }

  .main-nav.is-open .nav-item {
    width: 100%;
  }

  .main-nav.is-open .nav-item > a {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
  }

  .main-nav.is-open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 6px 12px;
    min-width: unset;
    background: transparent;
  }

  .main-nav.is-open .nav-item.is-open > .dropdown {
    display: block;
  }

  .main-nav.is-open .dropdown a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
    color: var(--muted);
    border-radius: 10px;
  }

  .main-nav.is-open .dropdown a:hover {
    color: #fff;
  }

  .hero-grid,
  .welcome-grid,
  .process-wrap,
  .rd-grid,
  .global-grid,
  .cta-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .medical-stage {
    max-width: 500px;
  }

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

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

@media (max-width: 720px) {
  .topbar-inner,
  .topbar-links,
  .topbar-contact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-inner {
    padding: 10px 0;
  }

  .brand {
    min-width: auto;
  }

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

  .hero-slider,
  .hero-grid {
    min-height: 780px;
  }

  .hero-tabs,
  .cert-grid,
  .product-grid,
  .process-grid,
  .stats,
  .news-grid,
  .milestones,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-tabs {
    margin-top: -54px;
  }

  .tab {
    min-height: 64px;
  }

  .intro-head,
  .intro-card {
    padding: 30px;
    min-height: auto;
  }

  .welcome,
  .solutions,
  .news,
  .certified,
  .process,
  .rd,
  .global,
  .cta-band {
    padding: 72px 0;
  }

  .factory-card,
  .map-card {
    min-height: 340px;
  }

  .contact-form button {
    width: 100%;
  }
}

.sub-hero {
  position: relative;
  padding: 92px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(29, 199, 183, 0.2), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(0, 143, 199, 0.2), transparent 28%),
    linear-gradient(180deg, #f0f9fd 0%, #ffffff 100%);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.sub-hero h1 {
  max-width: 780px;
}

.sub-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
}

.sub-visual .medical-stage {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

.page-section {
  padding: 96px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: start;
}

.content-grid p,
.article-wrap p {
  color: var(--muted);
  font-size: 18px;
}

.side-panel {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(17, 41, 67, 0.08);
}

.side-panel a {
  display: block;
  padding: 14px 0;
  color: var(--primary);
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.card-kicker {
  color: var(--primary) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail {
  padding: 100px 0;
  background: #fff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.product-gallery {
  padding: 30px;
  border-radius: 36px;
  background: linear-gradient(135deg, #f4fbfe, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-gallery .medical-stage {
  width: 100%;
  box-shadow: none;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

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

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

.btn.ghost.light {
  background: #eef8fc;
  border-color: #d5edf6;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.spec-table div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.spec-table div:last-child {
  border-right: 0;
}

.spec-table b,
.spec-table span {
  display: block;
}

.spec-table b {
  color: var(--navy);
  margin-bottom: 8px;
}

.spec-table span {
  color: var(--muted);
}

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

.download-card {
  min-height: 250px;
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f4fbfe);
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(17, 41, 67, 0.08);
}

.download-card h3 {
  margin-bottom: 16px;
}

.download-card p {
  color: var(--muted);
}

.download-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 900;
}

.article-page {
  padding: 100px 0;
}

.article-wrap {
  max-width: 860px;
}

.article-wrap blockquote {
  margin: 36px 0;
  padding: 30px;
  border-left: 5px solid var(--primary);
  border-radius: 18px;
  background: var(--soft);
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

.contact-page {
  min-height: 680px;
  display: flex;
  align-items: center;
}

.contact-lines {
  margin-top: 32px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-lines p {
  margin-bottom: 10px;
}

.sitemap-list ul {
  columns: 3;
  gap: 42px;
  padding-left: 20px;
}

.sitemap-list li {
  break-inside: avoid;
  margin-bottom: 12px;
}

.sitemap-list a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .sub-hero-grid,
  .content-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .sub-visual .medical-stage {
    margin: 0;
  }

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .sub-hero,
  .page-section,
  .product-detail,
  .article-page {
    padding: 70px 0;
  }

  .download-grid,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .spec-table div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .spec-table div:last-child {
    border-bottom: 0;
  }

  .sitemap-list ul {
    columns: 1;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.pagination-meta {
  margin-top: 28px;
  text-align: center;
  color: var(--muted, #667085);
  font-size: 0.95rem;
}

.pagination .btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.pagination-ellipsis {
  color: var(--muted, #667085);
  padding: 0 4px;
}
