:root {
  --blue-950: #08233e;
  --blue-900: #0a3157;
  --blue-800: #064e98;
  --blue-700: #075fb9;
  --blue-600: #0878d1;
  --cyan-500: #00addb;
  --cyan-300: #6edcf2;
  --red-600: #cf2338;
  --red-500: #e33149;
  --ink: #142436;
  --muted: #607286;
  --soft: #edf7ff;
  --soft-2: #f6faff;
  --white: #ffffff;
  --line: #dce8f3;
  --green: #22b573;
  --shadow-sm: 0 10px 30px rgba(8, 49, 87, 0.08);
  --shadow-md: 0 20px 60px rgba(8, 49, 87, 0.14);
  --shadow-lg: 0 32px 80px rgba(6, 78, 152, 0.20);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 105px 0; }
.section-pad-sm { padding: 72px 0; }

.topbar {
  position: relative;
  z-index: 80;
  color: var(--white);
  background: var(--blue-950);
  font-size: .86rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: var(--white); }
.topbar-status { display: flex; align-items: center; gap: 9px; font-weight: 650; }
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #45e69b;
  box-shadow: 0 0 0 0 rgba(69,230,155,.65);
  animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(69,230,155,0); } 100% { box-shadow: 0 0 0 0 rgba(69,230,155,0); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,232,243,.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(8,49,87,.08); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 235px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .94rem; }
.main-nav > a:not(.nav-cta) { position: relative; color: #30465c; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--blue-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta).active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7,95,185,.20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--blue-800); box-shadow: 0 14px 28px rgba(7,95,185,.26); }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--blue-950); border-radius: 2px; transition: .25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(0,173,219,.17), transparent 24%),
    linear-gradient(135deg, #f8fcff 0%, #edf7ff 50%, #f8fcff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(8,120,209,.12);
  border-radius: 50%;
  right: -230px;
  top: -230px;
  box-shadow: 0 0 0 80px rgba(8,120,209,.035), 0 0 0 160px rgba(8,120,209,.025);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(7,95,185,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,95,185,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.15), transparent 50%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 78px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 6px 12px 6px 6px;
  color: var(--blue-800);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.eyebrow span { padding: 5px 10px; color: var(--white); background: var(--blue-700); border-radius: 999px; }
.hero h1 { max-width: 720px; margin: 0 0 22px; color: var(--blue-950); font-size: clamp(2.75rem, 5.6vw, 5.3rem); line-height: .99; letter-spacing: -.055em; }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.15rem; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 19px; height: 19px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); box-shadow: 0 14px 30px rgba(7,95,185,.25); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(7,95,185,.32); }
.btn-secondary { color: var(--blue-900); background: var(--white); border: 1px solid #cfe0ee; box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--blue-600); }
.btn-outline { color: var(--blue-700); border: 1.5px solid var(--blue-700); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--blue-700); }
.btn-white { color: var(--blue-900); background: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,.12); }
.btn.full { width: 100%; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 0; margin-top: 38px; }
.hero-trust > div { min-width: 132px; padding: 0 22px; border-left: 1px solid #cbddea; }
.hero-trust > div:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong { display: block; color: var(--blue-900); font-size: 1.05rem; }
.hero-trust span { display: block; color: var(--muted); font-size: .78rem; }

.hero-photo-wrap { position: relative; width: 100%; max-width: 540px; margin-left: auto; padding: 16px; background: rgba(255,255,255,.66); border: 1px solid rgba(255,255,255,.9); border-radius: 40px; box-shadow: var(--shadow-lg); transform: rotate(1.3deg); }
.hero-photo-wrap::before { content: ""; position: absolute; inset: 42px -22px -22px 42px; z-index: -1; background: linear-gradient(135deg, rgba(7,95,185,.18), rgba(0,173,219,.08)); border-radius: 36px; }
.hero-photo-wrap img { width: 100%; aspect-ratio: 4 / 4.45; object-fit: cover; object-position: center; border-radius: 28px; }
.availability-card {
  position: absolute;
  left: -48px;
  bottom: 36px;
  width: 280px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  color: var(--blue-950);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.3deg);
}
.availability-card strong, .availability-card span { display: block; }
.availability-card span { color: var(--muted); font-size: .78rem; }
.availability-icon { width: 40px; height: 40px; flex: 0 0 auto; display: grid !important; place-items: center; color: var(--white) !important; background: var(--red-500); border-radius: 12px; font-size: 1.5rem !important; font-weight: 900; }
.hero-badge { position: absolute; top: 34px; right: -26px; padding: 12px 17px; color: var(--white); background: var(--red-500); border: 5px solid var(--white); border-radius: 18px; box-shadow: var(--shadow-md); transform: rotate(-3deg); text-align: center; }
.hero-badge span, .hero-badge strong { display: block; line-height: 1.1; }
.hero-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.hero-badge strong { margin-top: 3px; font-size: 1rem; }

.quick-access { position: relative; z-index: 10; margin-top: -25px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-md); overflow: hidden; }
.quick-card { min-height: 92px; display: flex; align-items: center; gap: 14px; padding: 18px 26px; border-right: 1px solid var(--line); transition: background .2s ease; }
.quick-card:last-child { border-right: 0; }
.quick-card:hover { background: var(--soft-2); }
.quick-icon { width: 45px; height: 45px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-700); background: var(--soft); border-radius: 14px; }
.quick-icon svg { width: 22px; height: 22px; fill: currentColor; }
.quick-card strong, .quick-card small { display: block; }
.quick-card strong { color: var(--blue-950); font-size: .93rem; }
.quick-card small { color: var(--muted); }

.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker { display: inline-block; margin-bottom: 12px; color: var(--blue-700); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker.light { color: var(--cyan-300); }
.section-heading h2, .split-copy h2, .diagnostics h2, .contact h2, .location h2 { margin: 0 0 18px; color: var(--blue-950); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.04em; }
.section-heading p, .split-copy > p, .contact-copy > p, .location-copy > p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 330px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(7,95,185,.35); box-shadow: var(--shadow-md); }
.service-card.featured { color: var(--white); background: linear-gradient(150deg, var(--blue-900), var(--blue-700)); border-color: transparent; box-shadow: var(--shadow-md); }
.service-card.featured::after { content: "+"; position: absolute; right: -24px; bottom: -78px; color: rgba(255,255,255,.07); font-size: 17rem; font-weight: 900; line-height: 1; }
.service-number { position: absolute; top: 22px; right: 25px; color: #a9bbcc; font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.featured .service-number { color: rgba(255,255,255,.55); }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; color: var(--blue-700); background: var(--soft); border-radius: 16px; }
.service-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.emergency-icon { color: var(--white); background: var(--red-500); font-size: 2rem; font-weight: 900; }
.service-card h3 { position: relative; margin: 25px 0 12px; color: var(--blue-950); font-size: 1.28rem; line-height: 1.2; }
.service-card p { position: relative; margin: 0 0 22px; color: var(--muted); font-size: .94rem; }
.service-card a { position: absolute; left: 30px; bottom: 27px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-size: .88rem; font-weight: 850; }
.service-card a span { transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(4px); }
.featured h3, .featured p, .featured a { color: var(--white); }
.featured p { color: rgba(255,255,255,.75); }

.ultrasound { background: var(--soft-2); }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 86px; }
.medical-illustration { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, var(--blue-900), var(--blue-700)); border-radius: 38px; box-shadow: var(--shadow-lg); }
.medical-illustration::before { content: ""; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.monitor { position: relative; z-index: 2; width: 300px; height: 205px; padding: 20px; background: #dff6ff; border: 12px solid #e9f4f9; border-radius: 24px; box-shadow: 0 24px 48px rgba(0,0,0,.24); transform: rotate(-3deg); }
.monitor::after { content: ""; position: absolute; width: 68px; height: 72px; left: 50%; bottom: -66px; transform: translateX(-50%); background: #e9f4f9; clip-path: polygon(38% 0, 62% 0, 70% 70%, 100% 85%, 100% 100%, 0 100%, 0 85%, 30% 70%); }
.scan-circle { position: absolute; left: 50%; top: 50%; width: 130px; height: 130px; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle at 45% 48%, #a0dced 0 7%, transparent 8%), radial-gradient(ellipse at 50% 55%, #49839d 0 13%, #204f69 14% 28%, #0d3148 30% 53%, transparent 55%), #123e57; filter: contrast(1.2); }
.scan-wave { position: absolute; left: 25px; right: 25px; bottom: 24px; height: 1px; background: rgba(255,255,255,.7); box-shadow: 0 -24px 0 rgba(255,255,255,.12), 0 -48px 0 rgba(255,255,255,.12); }
.probe { position: absolute; z-index: 3; width: 80px; height: 170px; right: 38px; bottom: 40px; background: linear-gradient(90deg, #e7f0f4, #fff, #c4d5dc); border-radius: 42px 42px 20px 20px; transform: rotate(28deg); box-shadow: 0 20px 34px rgba(0,0,0,.25); }
.probe::before { content: ""; position: absolute; width: 90px; height: 45px; left: -5px; top: -6px; background: #9fb3bd; border-radius: 50%; }
.floating-cross { position: absolute; color: rgba(255,255,255,.25); font-size: 3rem; font-weight: 900; }
.cross-one { top: 45px; left: 46px; transform: rotate(12deg); }
.cross-two { right: 45px; top: 120px; transform: rotate(-8deg); }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.service-tags span { padding: 9px 14px; color: var(--blue-800); background: var(--white); border: 1px solid #cfe2ef; border-radius: 999px; font-size: .88rem; font-weight: 750; box-shadow: 0 6px 18px rgba(8,49,87,.04); }
.info-note { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; margin-bottom: 24px; background: #e8f5ff; border-left: 3px solid var(--blue-600); border-radius: 12px; }
.info-note-icon { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 50%; font-size: .8rem; font-weight: 900; }
.info-note p { margin: 0; color: #456077; font-size: .88rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-700); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.diagnostics { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); }
.diagnostics::before { content: ""; position: absolute; width: 520px; height: 520px; right: -190px; top: -280px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.02); }
.diagnostics-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 70px; }
.diagnostics h2 { color: var(--white); }
.diagnostics-copy p { max-width: 540px; margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 1.04rem; }
.diagnostic-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.diagnostic-card { min-height: 260px; padding: 26px 22px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; backdrop-filter: blur(12px); }
.diagnostic-card span { display: block; color: var(--cyan-300); font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.diagnostic-card h3 { margin: 58px 0 12px; color: var(--white); font-size: 1.22rem; }
.diagnostic-card p { margin: 0; color: rgba(255,255,255,.67); font-size: .88rem; }

.about { background: var(--white); }
.about-grid { grid-template-columns: 1fr 1fr; }
.about-photo { position: relative; padding-right: 24px; }
.about-photo::before { content: ""; position: absolute; left: -22px; bottom: -22px; width: 76%; height: 72%; background: var(--soft); border-radius: 28px; }
.about-photo img { position: relative; width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-md); }
.about-photo-label { position: absolute; right: -8px; bottom: 34px; width: 245px; padding: 17px 19px; color: var(--white); background: var(--blue-800); border: 5px solid var(--white); border-radius: 18px; box-shadow: var(--shadow-md); }
.about-photo-label strong, .about-photo-label span { display: block; }
.about-photo-label span { color: rgba(255,255,255,.74); font-size: .78rem; }
.check-list { display: grid; gap: 16px; margin: 28px 0 30px; }
.check-list > div { display: flex; align-items: flex-start; gap: 12px; }
.check-list span { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: .8rem; font-weight: 900; }
.check-list p { margin: 0; color: var(--muted); font-size: .94rem; }
.check-list strong { color: var(--ink); }

.why-us { background: var(--soft-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 25px; border-right: 1px solid var(--line); }
.why-item:first-child { padding-left: 0; }
.why-item:last-child { border-right: 0; }
.why-item > span { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-700); background: var(--white); border: 1px solid var(--line); border-radius: 14px; font-size: 1.25rem; font-weight: 900; }
.why-item h3 { margin: 0 0 5px; color: var(--blue-950); font-size: 1rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .82rem; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 34px; }
.contact-list a { display: flex; align-items: center; gap: 15px; padding: 13px; border-radius: 15px; transition: background .2s ease; }
.contact-list a:hover { background: var(--soft-2); }
.contact-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-700); background: var(--soft); border-radius: 13px; }
.contact-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { color: var(--muted); font-size: .76rem; }
.contact-list strong { color: var(--blue-950); font-size: .92rem; }
.contact-panel { padding: 36px; background: var(--soft-2); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-sm); }
.contact-panel-head > span { color: var(--blue-700); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel-head h3 { margin: 7px 0 5px; color: var(--blue-950); font-size: 1.65rem; line-height: 1.2; }
.contact-panel-head p { margin: 0 0 24px; color: var(--muted); font-size: .9rem; }
form { display: grid; gap: 9px; }
form label { margin-top: 5px; color: #324b62; font-size: .82rem; font-weight: 800; }
form input, form select, form textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: var(--white); border: 1px solid #cbddea; border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
form textarea { resize: vertical; min-height: 105px; }
form input:focus, form select:focus, form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(8,120,209,.10); }
form .btn { margin-top: 12px; }
.form-note { margin-top: 5px; color: #7a8d9e; text-align: center; font-size: .72rem; line-height: 1.5; }

.location { background: var(--soft-2); }
.location-card { min-height: 430px; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-md); }
.location-map { position: relative; min-height: 430px; overflow: hidden; background: #d8ecf7; }
.map-grid { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(255,255,255,.8) 2px, transparent 2px), linear-gradient(90deg, rgba(255,255,255,.8) 2px, transparent 2px); background-size: 70px 70px; transform: rotate(12deg) scale(1.4); }
.map-road { position: absolute; width: 140%; height: 36px; left: -20%; background: #f7fcff; border: 3px solid rgba(158,192,210,.75); border-radius: 40px; }
.road-one { top: 45%; transform: rotate(-22deg); }
.road-two { top: 25%; transform: rotate(38deg); }
.map-pin { position: absolute; left: 52%; top: 47%; width: 58px; height: 58px; display: grid; place-items: center; background: var(--red-500); border: 7px solid var(--white); border-radius: 50% 50% 50% 0; transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 16px 30px rgba(207,35,56,.28); }
.map-pin span { width: 13px; height: 13px; background: var(--white); border-radius: 50%; }
.location-copy { padding: 58px; align-self: center; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.final-cta { padding: 56px 0; color: var(--white); background: linear-gradient(120deg, var(--blue-800), var(--blue-600)); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta span { color: var(--cyan-300); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.final-cta h2 { margin: 7px 0 0; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.035em; }

.site-footer { padding: 72px 0 26px; color: rgba(255,255,255,.70); background: var(--blue-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr .8fr; gap: 52px; }
.footer-brand img { width: 245px; padding: 10px 14px; background: var(--white); border-radius: 14px; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; }
.site-footer h3 { margin: 0 0 18px; color: var(--white); font-size: .95rem; }
.site-footer a { display: block; margin: 9px 0; transition: color .2s ease; }
.site-footer a:hover { color: var(--white); }
.site-footer p { font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .77rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: #20bd67; border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 16px 34px rgba(18,104,59,.28); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; font-size: .88rem; }
  .nav-cta { padding: 11px 15px; }
  .hero-grid { gap: 48px; }
  .availability-card { left: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .diagnostics-grid, .contact-grid { gap: 54px; }
  .diagnostic-cards { grid-template-columns: 1fr; }
  .diagnostic-card { min-height: auto; }
  .diagnostic-card h3 { margin-top: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2) { border-right: 0; }
  .why-item:nth-child(n+3) { margin-top: 26px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  .topbar-inner { justify-content: center; }
  .topbar-inner > a { display: none; }
  .header-inner { min-height: 72px; }
  .brand { width: 205px; }
  .menu-toggle { display: block; z-index: 76; }
  .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); }
  .main-nav { position: fixed; inset: 72px 0 auto 0; height: calc(100vh - 72px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 26px 50px; background: rgba(255,255,255,.98); transform: translateX(100%); opacity: 0; pointer-events: none; transition: transform .3s ease, opacity .3s ease; }
  .main-nav.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 22px; padding: 16px 20px !important; text-align: center; border: 0 !important; }
  .hero-grid, .split-grid, .diagnostics-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 62px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .eyebrow { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-photo-wrap { margin-inline: auto; }
  .quick-access { margin-top: 30px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-card:last-child { border-bottom: 0; }
  .split-visual { order: 2; }
  .split-copy { order: 1; }
  .medical-illustration { min-height: 450px; }
  .diagnostics-copy { text-align: center; }
  .diagnostics-copy p { margin-inline: auto; }
  .diagnostic-cards { grid-template-columns: repeat(3, 1fr); }
  .about-grid .about-photo { order: 2; }
  .about-grid .split-copy { order: 1; }
  .contact-grid { gap: 42px; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 330px; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 76px 0; }
  .section-pad-sm { padding: 56px 0; }
  .hero { padding-top: 72px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.8rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 0; }
  .hero-trust > div { min-width: 33.333%; padding: 0 10px; }
  .hero-trust strong { font-size: .88rem; }
  .hero-trust span { font-size: .66rem; }
  .hero-photo-wrap { padding: 10px; border-radius: 28px; transform: none; }
  .hero-photo-wrap img { border-radius: 22px; }
  .availability-card { left: 12px; right: 12px; bottom: 20px; width: auto; transform: none; }
  .hero-badge { right: 8px; top: 22px; transform: rotate(-2deg); }
  .quick-access { margin-top: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .medical-illustration { min-height: 390px; border-radius: 28px; }
  .monitor { width: 245px; height: 170px; }
  .probe { width: 65px; height: 140px; right: 26px; bottom: 24px; }
  .diagnostic-cards { grid-template-columns: 1fr; }
  .diagnostic-card { min-height: 210px; }
  .diagnostic-card h3 { margin-top: 54px; }
  .about-photo { padding-right: 0; }
  .about-photo-label { right: 12px; bottom: 18px; width: 230px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .why-item:nth-child(n+3) { margin-top: 0; }
  .why-item:last-child { border-bottom: 0; }
  .contact-panel { padding: 24px 18px; border-radius: 22px; }
  .location-copy { padding: 34px 24px; }
  .location-actions { display: grid; }
  .location-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@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; }
}
