:root {
  --navy: #163f70;
  --navy-2: #0e2e55;
  --navy-3: #092443;
  --cyan: #7bcbd8;
  --cyan-2: #9ee4ea;
  --cyan-soft: #e7f8fa;
  --white: #ffffff;
  --ink: #14263b;
  --muted: #637386;
  --line: #dbe5ec;
  --surface: #f6fafc;
  --success: #13815b;
  --danger: #c73f4b;
  --shadow-sm: 0 12px 35px rgba(12, 44, 76, .08);
  --shadow-md: 0 24px 70px rgba(9, 39, 70, .15);
  --shadow-lg: 0 30px 90px rgba(3, 23, 48, .28);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Tajawal", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--navy-3); background: var(--cyan-2); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #edf3f6; }
::-webkit-scrollbar-thumb {
  border: 2px solid #edf3f6;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--cyan), var(--navy));
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

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

.section { padding: 110px 0; position: relative; }

.noscript {
  position: fixed;
  z-index: 99999;
  inset: 0 0 auto;
  padding: 9px 18px;
  color: #fff;
  background: #c0392b;
  text-align: center;
}

/* Loading and page progress */
.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .65s var(--ease), visibility .65s var(--ease);
}

.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-mark {
  width: 72px;
  aspect-ratio: 1;
  padding: 7px;
  border: 2px solid rgba(255,255,255,.16);
  border-radius: 50%;
  animation: loaderSpin 1.15s linear infinite;
}

.loader-mark span {
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: #fff;
  border-radius: 50%;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }

.scroll-progress {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: 3px;
  direction: ltr;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-2), var(--cyan), #fff);
  box-shadow: 0 0 14px rgba(123,203,216,.8);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(14, 46, 85, .1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), border .35s;
}

.site-header.scrolled {
  height: 72px;
  border-color: rgba(255,255,255,.08);
  background: rgba(13, 43, 79, .96);
  box-shadow: 0 12px 40px rgba(3, 20, 39, .2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }

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

.brand-symbol {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: #1d4777;
}

.brand-symbol img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 19px; font-weight: 800; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: var(--cyan-2); font-size: 9px; font-weight: 700; letter-spacing: 1.8px; direction: ltr; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-weight: 600;
  transition: color .25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--cyan);
  transition: width .3s var(--ease);
}

.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  transition: border .25s, background .25s, transform .25s;
}

.nav-cta:hover { border-color: var(--cyan); background: rgba(123,203,216,.12); transform: translateY(-2px); }
.nav-cta svg { width: 18px; height: 18px; color: var(--cyan); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(255,255,255,.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: max(780px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(123,203,216,.12), transparent 32%),
    linear-gradient(135deg, #0d2e56 0%, #174878 48%, #133b6b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5,30,57,.2), transparent);
}

.medical-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to left, #000, transparent 72%);
  -webkit-mask-image: linear-gradient(to left, #000, transparent 72%);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.glow-one { left: -170px; top: 90px; width: 430px; height: 430px; border: 1px solid rgba(123,203,216,.16); box-shadow: inset 0 0 90px rgba(123,203,216,.05); }
.glow-two { right: 33%; bottom: -260px; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.08); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
  padding-top: var(--header-h);
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(123,203,216,.26);
  border-radius: 999px;
  color: var(--cyan-2);
  background: rgba(123,203,216,.08);
  font-size: 14px;
  font-weight: 600;
}

.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(123,203,216,.1); }
.pulse-dot::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(.45); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 75px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.9px;
}

.hero h1 span {
  color: var(--cyan);
  background: linear-gradient(90deg, #64bdcd, #a3e7ed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead { max-width: 630px; margin: 25px 0 0; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.9; }
.hero-en { max-width: 560px; margin: 12px 0 0; color: rgba(158,228,234,.75); font-size: 12px; font-weight: 600; letter-spacing: .4px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  border: 0;
  border-radius: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border .3s;
}

.btn svg { width: 19px; height: 19px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(-3px); }
.btn-primary { color: var(--navy-3); background: var(--cyan); box-shadow: 0 15px 35px rgba(84,185,201,.24); }
.btn-primary:hover { background: #94e0e7; box-shadow: 0 19px 45px rgba(84,185,201,.36); }
.btn-ghost { border: 1px solid rgba(255,255,255,.19); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost:hover { border-color: rgba(123,203,216,.6); background: rgba(123,203,216,.1); }

.hero-contact-row { display: flex; align-items: center; gap: 22px; margin-top: 38px; }
.hero-contact-row > a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.93); transition: transform .25s; }
.hero-contact-row > a:hover { transform: translateY(-2px); }
.mini-icon { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(255,255,255,.06); color: var(--cyan); }
.mini-icon svg { width: 18px; height: 18px; }
.hero-contact-row a > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.hero-contact-row small { color: rgba(255,255,255,.48); font-size: 11px; }
.hero-contact-row b { margin-top: 5px; font-size: 14px; font-weight: 700; }
.contact-divider { width: 1px; height: 42px; background: rgba(255,255,255,.14); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }

.logo-stage {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1.08 / .78;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 38px;
  background: #1d4777;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.08);
  isolation: isolate;
  transform: rotate(-1.5deg);
}

.logo-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,.07), transparent 45%, rgba(5,30,60,.1));
}

.logo-stage > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 740px;
  max-width: none;
  transform: translate(-50%, -52%);
}

.ecg-line { position: absolute; z-index: 3; inset: auto 34px 26px; height: 55px; opacity: .36; }
.ecg-line svg { width: 100%; height: 100%; overflow: visible; }
.ecg-line path { stroke: var(--cyan-2); stroke-width: 2; stroke-dasharray: 520; stroke-dashoffset: 520; animation: drawLine 5s ease-in-out infinite; }
@keyframes drawLine { 0%, 10% { stroke-dashoffset: 520; opacity: 0; } 45%, 75% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: -520; opacity: 0; } }

.visual-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit-one { width: 520px; height: 520px; border: 1px solid rgba(123,203,216,.14); animation: orbit 18s linear infinite; }
.orbit-one::before, .orbit-two::before { content: "+"; position: absolute; display: grid; place-items: center; width: 33px; height: 33px; border: 1px solid rgba(123,203,216,.26); border-radius: 10px; color: var(--cyan); background: var(--navy); font-size: 20px; }
.orbit-one::before { top: 47px; left: 62px; }
.orbit-two { width: 425px; height: 425px; border: 1px dashed rgba(255,255,255,.1); animation: orbit 24s linear reverse infinite; }
.orbit-two::before { right: 12px; bottom: 72px; }
@keyframes orbit { to { transform: rotate(360deg); } }

.floating-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(13, 47, 84, .88);
  box-shadow: 0 18px 45px rgba(5,25,48,.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-tag > span { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--navy-2); background: var(--cyan); }
.floating-tag svg { width: 20px; height: 20px; }
.floating-tag > div { display: flex; flex-direction: column; line-height: 1.25; }
.floating-tag b { font-size: 13px; }
.floating-tag small { margin-top: 4px; color: rgba(255,255,255,.52); font-size: 9px; direction: ltr; }
.tag-medicine { top: 47px; right: -9px; animation: float 5s ease-in-out infinite; }
.tag-equipment { bottom: 45px; left: -22px; animation: float 5s 1.3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(50%);
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

.scroll-cue span { position: relative; width: 24px; height: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 15px; }
.scroll-cue span::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; border-radius: 5px; background: var(--cyan); transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { transform: translate(-50%, 0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%, 14px); opacity: 0; } }

/* Shared headings and reveal */
.section-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 13px; color: var(--navy); font-size: 14px; font-weight: 800; }
.section-kicker::before { content: ""; width: 28px; height: 3px; border-radius: 5px; background: var(--cyan); }
.section-kicker.light { color: var(--cyan-2); }

.section-copy h2, .section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.5px;
}

.section-copy h2 span, .section-heading h2 span { color: var(--cyan); }
.section-copy > p, .section-heading > p { color: var(--muted); font-size: 17px; line-height: 2; }

.section-heading { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.section-heading .section-kicker { justify-content: center; }
.section-heading .section-kicker::after { content: ""; width: 28px; height: 3px; border-radius: 5px; background: var(--cyan); }
.section-heading > p { margin: 16px auto 0; max-width: 620px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-2 { transition-delay: .28s; }

/* About */
.about { overflow: hidden; background: #fff; }
.about::before { content: ""; position: absolute; left: -180px; top: 20%; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(123,203,216,.14), transparent 70%); }
.about-grid { display: grid; grid-template-columns: .91fr 1.09fr; gap: 85px; align-items: center; }
.about-visual { position: relative; min-height: 500px; display: grid; place-items: center; }

.about-card-main {
  position: relative;
  z-index: 2;
  width: min(100%, 450px);
  min-height: 470px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy), #0c3059);
  box-shadow: var(--shadow-md);
}

.about-card-main::after { content: ""; position: absolute; inset: auto -70px -90px auto; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 80px rgba(255,255,255,.02); }

.about-logo-crop { position: absolute; inset: 26px 26px auto auto; width: 265px; height: 265px; overflow: hidden; border-radius: 50%; opacity: .94; }
.about-logo-crop img { position: absolute; top: 50%; left: 50%; width: 610px; max-width: none; transform: translate(-50%, -50%); }
.about-card-copy { position: relative; z-index: 2; display: flex; flex-direction: column; }
.about-card-copy small { color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; }
.about-card-copy strong { margin-top: 10px; color: #fff; font-size: 33px; line-height: 1.45; }

.plus-pattern { position: absolute; z-index: 3; inset: auto -5px 13px auto; display: grid; grid-template-columns: repeat(3, 22px); gap: 15px; color: var(--cyan); }
.plus-pattern i { position: relative; width: 18px; height: 18px; opacity: .4; }
.plus-pattern i::before, .plus-pattern i::after { content: ""; position: absolute; top: 50%; left: 50%; border-radius: 3px; background: currentColor; transform: translate(-50%,-50%); }
.plus-pattern i::before { width: 18px; height: 3px; }
.plus-pattern i::after { width: 3px; height: 18px; }
.plus-pattern i:nth-child(2), .plus-pattern i:nth-child(5) { opacity: .8; }

.section-copy > p { margin: 20px 0 0; }
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.value-item { display: flex; align-items: flex-start; gap: 13px; padding: 16px; border: 1px solid #e5edf2; border-radius: var(--radius-sm); background: var(--surface); }
.value-item > span { width: 41px; height: 41px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--navy); background: var(--cyan-soft); }
.value-item svg { width: 21px; height: 21px; }
.value-item b { font-size: 15px; }
.value-item p { margin: 3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--navy); font-weight: 800; }
.text-link svg { width: 18px; height: 18px; transition: transform .25s; }
.text-link:hover svg { transform: translateX(-5px); }

/* Services */
.services { overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-3), var(--navy)); }
.services::before { content: ""; position: absolute; top: -250px; right: -230px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.section-watermark { position: absolute; left: -30px; bottom: -60px; color: rgba(255,255,255,.018); font-size: 180px; font-weight: 900; line-height: 1; letter-spacing: -8px; direction: ltr; }
.services .section-heading { position: relative; z-index: 2; }
.services .section-heading h2 { color: #fff; }
.services .section-heading > p { color: rgba(255,255,255,.57); }

.service-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; overflow: hidden; min-height: 345px; padding: 31px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.055); box-shadow: 0 22px 55px rgba(3,22,42,.15); transition: transform .35s var(--ease), background .35s, border .35s; }
.service-card::after { content: ""; position: absolute; inset: auto -70px -90px auto; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; transition: transform .45s var(--ease); }
.service-card:hover { transform: translateY(-9px); border-color: rgba(123,203,216,.35); background: rgba(255,255,255,.085); }
.service-card:hover::after { transform: scale(1.2); }
.service-card.featured { border-color: rgba(123,203,216,.32); background: linear-gradient(145deg, rgba(123,203,216,.19), rgba(255,255,255,.06)); }
.service-number { position: absolute; top: 20px; left: 25px; color: rgba(255,255,255,.08); font-size: 53px; font-weight: 900; line-height: 1; direction: ltr; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(123,203,216,.28); border-radius: 18px; color: var(--navy-3); background: var(--cyan); box-shadow: 0 15px 35px rgba(74,170,187,.18); }
.service-icon svg { width: 29px; height: 29px; }
.service-card h3 { margin: 25px 0 9px; font-size: 24px; }
.service-card p { margin: 0; color: rgba(255,255,255,.59); font-size: 15px; line-height: 1.9; }
.service-en { position: absolute; z-index: 2; right: 31px; bottom: 25px; color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: 1px; direction: ltr; }

/* Promise */
.promise { padding: 80px 0; background: var(--surface); }
.promise-card { position: relative; overflow: hidden; min-height: 220px; display: grid; grid-template-columns: 145px 1fr auto; align-items: center; gap: 30px; padding: 38px 46px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(110deg, #123964, #194d7e); box-shadow: var(--shadow-md); }
.promise-card::after { content: ""; position: absolute; left: 18%; bottom: -190px; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.promise-symbol { position: relative; width: 130px; height: 130px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 34px; background: #1d4777; }
.promise-symbol img { position: absolute; top: 50%; left: 50%; width: 300px; max-width: none; transform: translate(-50%, -50%); }
.promise-copy { position: relative; z-index: 2; }
.promise-copy span { color: var(--cyan); font-size: 13px; font-weight: 700; }
.promise-copy h2 { max-width: 700px; margin: 8px 0 0; font-size: clamp(25px, 3vw, 39px); line-height: 1.45; }
.btn-white { position: relative; z-index: 2; color: var(--navy); background: #fff; white-space: nowrap; }
.btn-white:hover { background: var(--cyan-soft); }

/* Contact */
.contact { overflow: hidden; background: #fff; }
.contact::before { content: "+"; position: absolute; top: 140px; left: 6%; color: rgba(123,203,216,.13); font-size: 160px; font-weight: 200; line-height: 1; }
.section-heading.dark { margin-bottom: 50px; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: stretch; gap: 25px; }

.contact-panel { position: relative; overflow: hidden; min-height: 620px; padding: 39px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(150deg, var(--navy), var(--navy-3)); box-shadow: var(--shadow-md); }
.contact-panel::before { content: ""; position: absolute; inset: auto -110px -120px auto; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.018), 0 0 0 110px rgba(255,255,255,.012); }
.contact-panel-head { position: relative; z-index: 2; }
.contact-panel-head > span { color: var(--cyan); font-size: 13px; font-weight: 700; }
.contact-panel-head h3 { margin: 6px 0 11px; font-size: 32px; }
.contact-panel-head p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.9; }
.contact-details { position: relative; z-index: 2; display: grid; gap: 13px; margin-top: 35px; }
.detail-row { display: grid; grid-template-columns: 49px 1fr 19px; align-items: center; gap: 13px; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(255,255,255,.055); transition: background .25s, border .25s, transform .25s; }
.detail-row:hover { transform: translateY(-3px); border-color: rgba(123,203,216,.35); background: rgba(123,203,216,.1); }
.detail-icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-2); background: var(--cyan); }
.detail-icon svg { width: 22px; height: 22px; }
.detail-row > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.35; }
.detail-row small { color: rgba(255,255,255,.45); font-size: 11px; }
.detail-row b { margin-top: 5px; font-size: 15px; }
.row-arrow { width: 18px; height: 18px; color: rgba(255,255,255,.4); }
.panel-brand { position: absolute; z-index: 2; left: 39px; bottom: 40px; color: rgba(255,255,255,.18); font-size: 46px; font-weight: 900; line-height: .8; letter-spacing: -1px; text-align: left; }
.panel-brand span { color: rgba(123,203,216,.28); font-size: 9px; letter-spacing: 3px; }

.form-card { padding: 37px; border: 1px solid #e3ebf0; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.form-head { display: flex; align-items: center; gap: 14px; padding-bottom: 24px; border-bottom: 1px solid #e8eef2; }
.form-icon { width: 51px; height: 51px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 15px; color: var(--navy); background: var(--cyan-soft); }
.form-icon svg { width: 25px; height: 25px; }
.form-head h3 { margin: 0; font-size: 23px; }
.form-head p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.contact-form { margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field > span:first-child { display: block; margin-bottom: 7px; color: #283d54; font-size: 13px; font-weight: 700; }
.field > span:first-child i { color: var(--danger); font-style: normal; }
.input-wrap { position: relative; display: block; }
.input-wrap > svg { position: absolute; z-index: 2; top: 50%; right: 15px; width: 19px; height: 19px; color: #8fa1b2; transform: translateY(-50%); pointer-events: none; }
.input-wrap input, .input-wrap select, .input-wrap textarea {
  width: 100%;
  outline: none;
  border: 1px solid #dfe8ee;
  border-radius: 13px;
  color: var(--ink);
  background: #f9fbfc;
  transition: border .25s, box-shadow .25s, background .25s;
}
.input-wrap input, .input-wrap select { height: 51px; padding: 0 45px 0 13px; }
.input-wrap input[dir="ltr"] { padding-right: 45px; text-align: right; }
.input-wrap select { appearance: none; cursor: pointer; }
.select-wrap::after { content: ""; position: absolute; top: 50%; left: 16px; width: 7px; height: 7px; border-left: 1.5px solid #738599; border-bottom: 1.5px solid #738599; transform: translateY(-70%) rotate(-45deg); pointer-events: none; }
.textarea-wrap > svg { top: 17px; transform: none; }
.input-wrap textarea { min-height: 122px; resize: vertical; padding: 13px 45px 13px 13px; line-height: 1.7; }
.input-wrap input::placeholder, .input-wrap textarea::placeholder { color: #9aaaB8; }
.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus { border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 4px rgba(123,203,216,.14); }
.field.invalid .input-wrap input, .field.invalid .input-wrap select, .field.invalid .input-wrap textarea { border-color: rgba(199,63,75,.7); box-shadow: 0 0 0 4px rgba(199,63,75,.08); }
.field-error { display: none; margin-top: 5px; color: var(--danger); font-size: 11px; }
.field.invalid .field-error { display: block; }
.website-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.form-footer { display: flex; align-items: center; gap: 18px; margin-top: 4px; }
.btn-submit { min-width: 175px; color: #fff; background: var(--navy); box-shadow: 0 13px 28px rgba(22,63,112,.18); }
.btn-submit:hover { background: #1c4c80; box-shadow: 0 18px 35px rgba(22,63,112,.25); }
.btn-submit[disabled] { opacity: .75; cursor: wait; transform: none; }
.btn-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: loaderSpin .7s linear infinite; }
.btn-submit.loading .btn-label, .btn-submit.loading > svg { display: none; }
.btn-submit.loading .btn-spinner { display: block; }
.form-footer p { max-width: 310px; margin: 0; color: #8998a7; font-size: 10px; line-height: 1.6; }
.form-status { display: none; margin-top: 15px; padding: 12px 15px; border-radius: 12px; font-size: 13px; font-weight: 600; }
.form-status.show { display: block; }
.form-status.success { color: #0c6445; border: 1px solid rgba(19,129,91,.18); background: rgba(19,129,91,.08); }
.form-status.error { color: #a42e3a; border: 1px solid rgba(199,63,75,.18); background: rgba(199,63,75,.07); }
.form-status.setup { color: #805a06; border: 1px solid rgba(205,148,19,.22); background: rgba(235,180,48,.1); }

/* Map */
.map-section { position: relative; background: var(--surface); }
.map-frame { position: relative; height: 480px; overflow: hidden; }
.map-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(14,46,85,.08), transparent 50%); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.8) contrast(1.03); }
.map-card { position: absolute; z-index: 3; top: 50%; right: max(20px, calc((100% - var(--container)) / 2)); width: min(390px, calc(100% - 40px)); display: grid; grid-template-columns: 57px 1fr; gap: 15px; padding: 22px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); transform: translateY(-50%); }
.map-card.reveal { opacity: 0; transform: translateY(calc(-50% + 28px)); }
.map-card.reveal.revealed { opacity: 1; transform: translateY(-50%); }
.map-pin { width: 57px; height: 57px; display: grid; place-items: center; grid-row: span 2; border-radius: 17px; color: var(--navy); background: var(--cyan-soft); }
.map-pin svg { width: 27px; height: 27px; }
.map-card > div { display: flex; flex-direction: column; }
.map-card small { color: var(--muted); font-size: 11px; }
.map-card strong { margin-top: 2px; color: var(--navy); font-size: 18px; }
.map-card > div span { color: #8b9aa9; font-size: 11px; }
.map-card a { grid-column: 2; display: inline-flex; align-items: center; gap: 5px; width: max-content; color: var(--navy); font-size: 12px; font-weight: 800; }
.map-card a svg { width: 15px; height: 15px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.7); background: #092440; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 70px; padding-top: 67px; padding-bottom: 52px; }
.brand-footer .brand-symbol { width: 56px; height: 56px; }
.brand-footer .brand-symbol img { width: 130px; }
.brand-footer .brand-copy strong { color: #fff; font-size: 21px; }
.footer-brand > p { margin: 12px 0 0; color: rgba(255,255,255,.47); font-size: 13px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links > strong, .footer-contact > strong { margin-bottom: 10px; color: #fff; font-size: 15px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.53); font-size: 13px; transition: color .25s, transform .25s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--cyan); transform: translateX(-3px); }
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--cyan); }
.footer-bottom { min-height: 69px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.37); font-size: 11px; }
.back-to-top { width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: var(--cyan); background: rgba(255,255,255,.04); cursor: pointer; transition: transform .25s, background .25s; }
.back-to-top:hover { transform: translateY(-3px); background: rgba(123,203,216,.1); }
.back-to-top svg { width: 18px; height: 18px; }

.floating-call {
  position: fixed;
  z-index: 700;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 15px;
  color: var(--navy-3);
  background: var(--cyan);
  box-shadow: 0 14px 35px rgba(8,45,72,.22);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s var(--ease), background .25s;
}
.floating-call.show { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-call:hover { background: #9de5eb; transform: translateY(-3px); }
.floating-call svg { width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 1080px) {
  :root { --container: 940px; }
  .main-nav { gap: 21px; }
  .nav-cta { display: none; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(44px, 5.8vw, 62px); }
  .logo-stage { width: 430px; }
  .tag-medicine { right: -2px; }
  .tag-equipment { left: 0; }
  .about-grid { gap: 55px; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .contact-panel { padding: 31px; }
  .form-card { padding: 30px; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-h);
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(8,36,67,.98);
    box-shadow: 0 25px 65px rgba(2,18,36,.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    transform-origin: top;
    transition: opacity .25s, visibility .25s, transform .25s var(--ease);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .main-nav a { padding: 12px 14px; border-radius: 10px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a.active { background: rgba(123,203,216,.1); }
  .hero { height: auto; min-height: 980px; padding: 118px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 0; text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero-lead, .hero-en { margin-inline: auto; }
  .hero-actions, .hero-contact-row { justify-content: center; }
  .hero-visual { min-height: 465px; }
  .logo-stage { width: min(560px, 84vw); }
  .logo-stage > img { width: 155%; }
  .orbit-one { width: 470px; height: 470px; }
  .orbit-two { width: 390px; height: 390px; }
  .tag-medicine { right: 8%; top: 27px; }
  .tag-equipment { left: 7%; bottom: 32px; }
  .scroll-cue { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: 2; }
  .section-copy { text-align: center; }
  .section-copy .section-kicker, .text-link { justify-content: center; }
  .value-item { text-align: right; }
  .service-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .service-card { min-height: 300px; }
  .promise-card { grid-template-columns: 110px 1fr; }
  .promise-symbol { width: 100px; height: 100px; }
  .promise-symbol img { width: 235px; }
  .promise-card .btn { grid-column: 2; justify-self: start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { min-height: 510px; }
  .footer-main { grid-template-columns: 1.2fr .8fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 26px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 7px; letter-spacing: 1.2px; }
  .brand-symbol { width: 44px; height: 44px; border-radius: 13px; }
  .brand-symbol img { width: 102px; }
  .hero { min-height: 920px; padding-top: 105px; }
  .hero h1 { font-size: clamp(38px, 12vw, 50px); line-height: 1.22; }
  .hero-lead { font-size: 16px; line-height: 1.85; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-contact-row { gap: 12px; margin-top: 27px; }
  .hero-contact-row > a { text-align: right; }
  .hero-contact-row b { font-size: 11px; }
  .hero-contact-row small { font-size: 9px; }
  .mini-icon { width: 34px; height: 34px; }
  .contact-divider { height: 34px; }
  .hero-visual { min-height: 370px; }
  .logo-stage { width: 91vw; max-width: 430px; border-radius: 25px; }
  .logo-stage > img { width: 160%; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 300px; height: 300px; }
  .floating-tag { min-width: 143px; padding: 9px 10px; border-radius: 14px; }
  .floating-tag > span { width: 34px; height: 34px; }
  .floating-tag b { font-size: 11px; }
  .tag-medicine { top: 15px; right: 0; }
  .tag-equipment { left: 0; bottom: 17px; }
  .section-copy h2, .section-heading h2 { font-size: 34px; }
  .section-heading { margin-bottom: 38px; }
  .about-visual { min-height: 440px; }
  .about-card-main { min-height: 420px; padding: 28px; }
  .about-logo-crop { width: 235px; height: 235px; }
  .about-logo-crop img { width: 545px; }
  .about-card-copy strong { font-size: 28px; }
  .value-list { grid-template-columns: 1fr; }
  .service-card { padding: 26px; }
  .section-watermark { font-size: 110px; }
  .promise { padding: 55px 0; }
  .promise-card { grid-template-columns: 1fr; gap: 18px; padding: 30px; text-align: center; }
  .promise-symbol { margin-inline: auto; }
  .promise-card .btn { grid-column: auto; justify-self: stretch; }
  .contact-panel { min-height: 540px; padding: 28px; }
  .contact-panel-head h3 { font-size: 28px; }
  .panel-brand { left: 28px; bottom: 30px; font-size: 37px; }
  .form-card { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; }
  .form-footer p { max-width: none; text-align: center; }
  .map-frame { height: 520px; }
  .map-card { top: auto; right: 14px; bottom: 17px; width: calc(100% - 28px); transform: none; }
  .map-card.reveal { transform: translateY(28px); }
  .map-card.reveal.revealed { transform: none; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding-top: 50px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { padding: 17px 0; }
  .floating-call { right: 14px; bottom: 14px; width: 50px; height: 50px; justify-content: center; padding: 0; border-radius: 16px; }
  .floating-call span { display: none; }
}

@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .hero { min-height: 880px; }
  .hero-contact-row { flex-direction: column; align-items: stretch; }
  .contact-divider { display: none; }
  .hero-contact-row > a { justify-content: center; }
  .floating-tag { transform: scale(.92); }
  .tag-medicine { right: -7px; }
  .tag-equipment { left: -7px; }
  .detail-row { grid-template-columns: 45px 1fr; }
  .detail-icon { width: 45px; height: 45px; }
  .row-arrow { display: none; }
}

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

@media print {
  .site-header, .page-loader, .scroll-progress, .floating-call, .scroll-cue, .back-to-top { display: none !important; }
  .hero { min-height: auto; height: auto; padding: 70px 0; }
  .section { padding: 50px 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
