.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 30, 61, 0.05);
  transition: var(--transition);
}
.top-header { 
  background: var(--color-navy); 
  color: rgba(255, 255, 255, 0.85); 
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-header-inner { 
  min-height: 38px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 18px; 
}
.top-contact, .top-tools, .social-links { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}
.top-contact a { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  color: rgba(255, 255, 255, 0.8); 
  font-weight: 500; 
}
.top-contact a:hover {
  color: var(--color-white);
}
.top-icon { 
  font-size: 14px; 
  opacity: 0.8;
}
.top-icon-svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
  display: inline-block;
}
.social-links a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  display: block;
  transition: var(--transition);
}
.social-links { 
  gap: 10px; 
}
.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
}
.social-links a:hover {
  border-color: var(--color-medical-blue);
  color: var(--color-white);
  background: var(--color-medical-blue);
}
.main-header { 
  background: transparent; 
  position: relative; 
}
.header-inner { 
  min-height: 84px; /* Reduced from 112px for sleeker layout */
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 24px; 
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
}
.brand img { 
  width: 196px; /* Optimized sizing */
  max-width: 100%; 
  height: auto; 
  display: block; 
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--color-navy);
  border-radius: 8px;
  font-weight: 900;
}
.brand small { display: block; color: var(--color-muted); font-size: 11px; line-height: 1.1; }
.main-nav { 
  display: flex; 
  align-items: center; 
  justify-content: flex-end; 
  gap: 32px; 
  flex: 1; 
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px; 
  font-weight: 600; 
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.main-nav a { 
  color: var(--color-text); 
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-medical-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav a:hover::after, .main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav a:hover, .main-nav a.active { 
  color: var(--color-medical-blue); 
}
.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}
.language-switcher { 
  display: flex; 
  gap: 4px; 
  align-items: center; 
}
.language-switcher a {
  min-width: 32px;
  text-align: center;
  padding: 4px 6px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}
.language-switcher a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,.08);
}
.language-switcher a.active { 
  background: var(--color-medical-blue); 
  color: var(--color-white); 
}
.menu-toggle { 
  display: none; 
  width: 40px; 
  height: 40px; 
  border: 1px solid rgba(7, 30, 61, 0.08); 
  background: transparent; 
  border-radius: 8px; 
  cursor: pointer;
}
.menu-toggle span { 
  display: block; 
  width: 18px; 
  height: 2px; 
  margin: 4px auto; 
  background: var(--color-navy); 
  transition: var(--transition);
}
.search-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(7, 30, 61, 0.06);
  border-radius: 8px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.search-toggle:hover {
  background: var(--color-ice);
  border-color: rgba(7, 30, 61, 0.12);
}
.search-toggle::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  left: 11px;
  top: 11px;
}
.search-toggle::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--color-navy);
  transform: rotate(45deg);
  left: 21px;
  top: 24px;
}
.search-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 16px 0;
  background: white;
  border-top: 1px solid rgba(7, 30, 61, 0.05);
  border-bottom: 1px solid rgba(7, 30, 61, 0.05);
  box-shadow: var(--shadow-md);
  z-index: 90;
}
.search-panel.open { 
  display: block; 
}
.search-inner { 
  display: flex; 
  gap: 12px; 
}
.search-inner input { 
  flex: 1; 
  border: 1px solid var(--color-border); 
  border-radius: 8px; 
  padding: 12px 16px; 
  font-size: 15px;
}
.hero {
  padding: 76px 0 58px;
  background:
    linear-gradient(115deg, rgba(246, 250, 255, .98), rgba(234, 244, 255, .82)),
    radial-gradient(circle at 80% 20%, rgba(20, 121, 201, .18), transparent 30%);
  border-bottom: 1px solid var(--color-border);
}
.hero-home {
  min-height: clamp(520px, 70vh, 760px);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: var(--color-navy);
}
.hero-home .hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.85s ease;
  will-change: transform, opacity;
}
.hero-home .hero-slide-image.active {
  opacity: 1;
  animation: heroCinemaZoom 7s ease-in-out both;
}

.hero-home .hero-slide-image:nth-child(2n).active {
  animation-name: heroCinemaDrift;
}

.hero-home .hero-slide-image:nth-child(3n).active {
  animation-name: heroCinemaPull;
}

@keyframes heroCinemaZoom {
  from { transform: scale(1.045) translate3d(0, 0, 0); }
  to { transform: scale(1.015) translate3d(-.45%, 0, 0); }
}

@keyframes heroCinemaDrift {
  from { transform: scale(1.015) translate3d(-.35%, 0, 0); }
  to { transform: scale(1.045) translate3d(.45%, 0, 0); }
}

@keyframes heroCinemaPull {
  from { transform: scale(1.05) translate3d(.35%, -.25%, 0); }
  to { transform: scale(1.018) translate3d(0, .25%, 0); }
}
.hero-home-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,30,61,.62) 0%, rgba(7,30,61,.32) 44%, rgba(7,30,61,.10) 72%, transparent 100%),
    linear-gradient(0deg, rgba(7,30,61,.16), rgba(255,255,255,.02));
  z-index: 1;
}
.hero-home-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-items: center;
  justify-items: start;
}
.hero-home .hero-copy-slider {
  width: min(560px, 100%);
  min-height: 330px;
  margin-right: auto;
  margin-left: 0;
}
.hero-home .hero-copy-slide {
  display: grid;
  align-content: center;
  text-align: left;
  color: white;
  transition: opacity .85s ease, transform .85s ease;
}
.hero-home .eyebrow { color: rgba(255,255,255,.82); }
.hero-home h1 {
  color: white;
  text-shadow: 0 12px 36px rgba(7,30,61,.28);
}
.hero-home .hero-lead {
  color: rgba(255,255,255,.86);
  margin-right: auto;
  margin-left: 0;
}
.hero-home .hero-actions { justify-content: flex-start; }
.hero-home .btn-primary {
  background: white;
  color: var(--color-navy);
}
.hero-home .btn-secondary {
  background: rgba(255,255,255,.14);
  color: white;
  border-color: rgba(255,255,255,.42);
}
.breadcrumb {
  padding: 14px 0;
  background: var(--color-ice);
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.breadcrumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--color-blue); font-weight: 800; }
.breadcrumb strong { color: var(--color-muted); font-weight: 750; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 54px; align-items: center; }
.hero-lead { font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-panel { display: grid; gap: 18px; }
.hero-visual {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(7, 30, 61, .78), rgba(10, 79, 163, .26)),
    linear-gradient(45deg, #d9eefc 0 25%, #fff 25% 50%, #cfe7f8 50% 75%, #f7fbff 75%);
  box-shadow: var(--shadow);
}
.image-hero { background: var(--color-navy); }
.image-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}
.hero-visual .hero-slide-image {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .6s ease, transform 1.2s ease;
}
.hero-visual .hero-slide-image.active {
  opacity: 1;
  transform: scale(1);
}
.hero-copy-slider { position: relative; min-height: 290px; }
.hero-copy-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .9s ease, transform .9s ease;
  pointer-events: none;
}
.hero-copy-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.slider-dots {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  cursor: pointer;
}
.slider-dots button.active { background: white; }
.hero-home .slider-dots {
  left: 28px;
  right: auto;
  bottom: 44px;
}
.hero-home .slider-dots button {
  width: 38px;
  height: 4px;
  background: rgba(255,255,255,.5);
}
.hero-home .slider-dots button.active { background: var(--color-medical-blue); }
.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 30, 61, .46), rgba(20, 121, 201, .08));
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.08));
  z-index: 1;
}
.visual-card {
  position: absolute;
  z-index: 2;
  padding: 13px 16px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-weight: 850;
  color: var(--color-navy);
  box-shadow: var(--shadow);
}
.visual-card.top { top: 34px; left: 28px; }
.visual-card.bottom { right: 28px; bottom: 34px; }
.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.badge-grid span { padding: 14px; background: white; border: 1px solid var(--color-border); border-radius: 8px; font-weight: 750; }
.trust-strip { 
  padding: 24px 0; 
  background: white; 
  border-bottom: 1px solid var(--color-border); 
}
.trust-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px; 
}
.trust-grid div { 
  padding: 22px 20px; 
  border: 1px solid rgba(7, 30, 61, 0.05); 
  border-radius: 12px; 
  background: linear-gradient(135deg, #f6faff, #edf5fe); 
  text-align: center;
  box-shadow: 0 4px 12px rgba(7, 30, 61, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(7, 30, 61, 0.06);
  border-color: rgba(20, 121, 201, 0.15);
}
.trust-grid strong { 
  display: block; 
  font-size: 30px; 
  color: var(--color-navy); 
  line-height: 1.2; 
  font-weight: 800;
  margin-bottom: 6px;
}
.trust-grid span { 
  display: block; 
  color: var(--color-text); 
  font-weight: 500; 
  font-size: 13.5px;
  line-height: 1.4;
  opacity: 0.85;
}
.site-footer { padding: 56px 0; background: var(--color-navy); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .9fr 1fr .9fr 1.2fr; gap: 28px; }
.footer-about img {
  width: 180px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.75); display: block; margin-bottom: 8px; }
.footer-title {
  color: white;
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.66);
  font-size: 14px;
}
.site-footer .footer-bottom a {
  display: inline;
  color: inherit;
  margin-bottom: 0;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.site-footer .footer-bottom a:hover {
  color: #fff;
}

