:root {
  --ink: #173a43;
  --muted: #637980;
  --primary: #0b6f83;
  --primary-dark: #075366;
  --secondary: #5dc8b8;
  --aqua: #dff5f2;
  --soft: #f5fbfa;
  --cream: #fbfcf8;
  --white: #ffffff;
  --line: rgba(23, 58, 67, .12);
  --shadow: 0 22px 60px rgba(20, 70, 80, .12);
  --shadow-soft: 0 14px 35px rgba(20, 70, 80, .08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fffe 0%, #ffffff 42%, #f7fbfb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

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

.ambient {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  z-index: -1;
  pointer-events: none;
}
.ambient-one { top: 70px; left: -280px; background: #73d7c8; }
.ambient-two { bottom: 0; right: -300px; background: #79c8df; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 255, 254, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(20, 70, 80, .06); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 255px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; color: var(--primary); }
.brand-mark svg { width: 44px; height: 44px; }
.brand strong { display: block; font-size: .98rem; line-height: 1.1; letter-spacing: -.01em; }
.brand small { display: block; margin-top: 4px; color: var(--primary); font-weight: 800; letter-spacing: .14em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; flex: 1; }
.main-nav a { font-size: .94rem; color: #365861; font-weight: 650; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--secondary); transition: width .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.header-cta { padding: 11px 18px; border-radius: 999px; background: var(--ink); color: white; font-weight: 800; font-size: .9rem; box-shadow: 0 8px 18px rgba(23, 58, 67, .16); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .2s ease; }

.hero { padding-top: 70px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 850; color: var(--primary); }
.eyebrow span { width: 28px; height: 2px; background: var(--secondary); border-radius: 4px; }
.hero h1 { margin: 18px 0 20px; max-width: 700px; font-size: clamp(3.6rem, 7vw, 6.9rem); line-height: .92; letter-spacing: -.065em; font-weight: 850; }
.hero h1 em { font-style: normal; color: var(--primary); display: block; }
.hero-lead { font-size: clamp(1.15rem, 2vw, 1.42rem); color: var(--muted); max-width: 610px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { min-height: 54px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 12px 28px rgba(11, 111, 131, .22); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.74); }
.btn-light { background: white; color: var(--primary-dark); margin-top: 26px; }

.hero-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 570px; margin-top: 36px; }
.hero-mini-grid article { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.72); border: 1px solid var(--line); padding: 14px 16px; border-radius: 18px; }
.hero-mini-grid strong, .hero-mini-grid small { display: block; }
.hero-mini-grid strong { font-size: .95rem; }
.hero-mini-grid small { color: var(--muted); font-size: .8rem; margin-top: 2px; }
.mini-icon { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--aqua); color: var(--primary); font-size: .72rem; font-weight: 900; }

.hero-visual { min-height: 570px; position: relative; display: grid; place-items: center; }
.visual-card { position: relative; border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); }
.visual-main { width: min(100%, 470px); aspect-ratio: 1/1.06; border-radius: 42px; background: linear-gradient(145deg, #e9fbf7 0%, #d9f2ef 55%, #eefafa 100%); display: grid; place-items: center; overflow: hidden; }
.visual-main::before { content: ""; position: absolute; inset: 22px; border-radius: 30px; border: 1px solid rgba(11,111,131,.12); }
.nurse-symbol { width: 58%; color: var(--primary); position: relative; z-index: 2; }
.nurse-symbol svg { width: 100%; }
.pulse-ring { position: absolute; border: 1px solid rgba(11,111,131,.14); border-radius: 50%; }
.ring-one { width: 360px; height: 360px; }
.ring-two { width: 250px; height: 250px; }
.visual-label { position: absolute; left: 26px; right: 26px; bottom: 24px; background: rgba(255,255,255,.86); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.9); border-radius: 20px; padding: 15px 16px; display: flex; align-items: center; gap: 12px; z-index: 3; }
.visual-label small, .visual-label strong { display: block; }
.visual-label small { color: var(--muted); font-size: .74rem; }
.visual-label strong { font-size: .94rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 7px rgba(93,200,184,.15); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.95); border-radius: 20px; padding: 14px 16px; box-shadow: var(--shadow-soft); z-index: 4; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { font-size: .7rem; color: var(--muted); }
.floating-card strong { font-size: .82rem; max-width: 170px; }
.floating-icon { min-width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: var(--primary); color: white; font-weight: 900; font-size: .72rem; }
.floating-a { top: 34px; right: -22px; }
.floating-b { bottom: 36px; left: -38px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.72); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: .95rem; }
.trust-grid span { color: var(--muted); font-size: .79rem; margin-top: 3px; }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .care-copy h2, .location-card h2, .contact-card h2 { margin: 14px 0 12px; font-size: clamp(2.35rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.045em; }
.section-heading p, .care-copy p, .location-card p { color: var(--muted); font-size: 1.04rem; margin: 0; }

.services { background: rgba(255,255,255,.62); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 255px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.service-card::before { content: ""; position: absolute; inset: auto -50px -70px auto; width: 160px; height: 160px; border-radius: 50%; background: var(--aqua); transition: transform .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(11,111,131,.2); }
.service-card:hover::before { transform: scale(1.16); }
.service-icon { position: absolute; top: 24px; left: 24px; width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: #eff9f7; color: var(--primary); font-weight: 900; }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 8px; font-size: 1.25rem; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }
.service-more { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.service-more p { color: rgba(255,255,255,.72); }
.service-more .service-icon { background: rgba(255,255,255,.15); color: white; }
.service-more::before { background: rgba(255,255,255,.07); }

.care-team { background: linear-gradient(135deg, #0b6f83 0%, #0b5d72 62%, #0a4e61 100%); color: white; position: relative; overflow: hidden; }
.care-team::after { content: "+"; position: absolute; right: -40px; bottom: -170px; font-size: 560px; line-height: 1; font-weight: 200; color: rgba(255,255,255,.025); pointer-events: none; }
.care-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.eyebrow.light { color: #c8f3ea; }
.care-copy p { color: rgba(255,255,255,.73); max-width: 560px; }
.team-stack { display: grid; gap: 14px; }
.team-card { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 16px; padding: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 22px; backdrop-filter: blur(8px); }
.team-card > span { width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center; background: white; color: var(--primary); font-weight: 900; }
.team-card strong, .team-card small { display: block; }
.team-card strong { font-size: 1.08rem; }
.team-card small { color: rgba(255,255,255,.68); margin-top: 3px; }

.mode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mode-card { display: grid; grid-template-columns: 190px 1fr; gap: 28px; align-items: center; min-height: 280px; padding: 28px; border-radius: 30px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow-soft); }
.mode-graphic { height: 100%; min-height: 220px; border-radius: 24px; display: grid; place-items: center; }
.mode-graphic svg { width: 88px; height: 88px; fill: currentColor; }
.home-graphic { color: var(--primary); background: linear-gradient(145deg, #dff5f2, #f5fffd); }
.hospital-graphic { color: #23566b; background: linear-gradient(145deg, #e5f4f9, #f6fbfd); }
.mode-number { color: var(--primary); font-size: .78rem; font-weight: 900; letter-spacing: .13em; }
.mode-card h3 { font-size: 1.7rem; margin: 7px 0 10px; letter-spacing: -.025em; }
.mode-card p { margin: 0; color: var(--muted); }

.location-section { padding-top: 24px; }
.location-card { background: linear-gradient(135deg, #f3fbf9, #e4f6f2); border: 1px solid rgba(11,111,131,.12); border-radius: 36px; padding: 52px 58px; display: grid; grid-template-columns: 1fr 170px; align-items: center; gap: 30px; overflow: hidden; }
.location-card h2 { font-size: clamp(2.4rem, 4vw, 4.4rem); }
.location-art { display: grid; place-items: center; color: var(--primary); }
.location-art svg { width: 124px; fill: currentColor; filter: drop-shadow(0 14px 25px rgba(11,111,131,.14)); }

.social-section { padding-top: 42px; }
.social-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; }
.social-grid .section-heading { margin-bottom: 0; }
.social-cards { display: grid; gap: 12px; }
.social-chip { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.76); }
.social-chip > span { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: var(--aqua); color: var(--primary); font-size: 1.25rem; font-weight: 900; }
.social-chip strong, .social-chip small { display: block; }
.social-chip small { color: var(--muted); margin-top: 2px; }

.contact { padding-top: 36px; }
.contact-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; background: var(--ink); color: white; border-radius: 38px; padding: 48px 52px; box-shadow: 0 22px 60px rgba(23,58,67,.22); }
.contact-kicker { font-size: .78rem; text-transform: uppercase; letter-spacing: .15em; color: #9fe0d4; font-weight: 850; }
.contact-card h2 { font-size: clamp(2.3rem, 4vw, 4rem); margin-bottom: 8px; }
.contact-copy p { margin: 0; color: rgba(255,255,255,.7); }
.contact-phone { display: flex; align-items: center; gap: 15px; min-width: 310px; background: white; color: var(--ink); padding: 16px 18px; border-radius: 24px; transition: transform .2s ease; }
.contact-phone:hover { transform: translateY(-3px); }
.phone-icon { width: 50px; height: 50px; border-radius: 17px; display: grid; place-items: center; background: var(--aqua); color: var(--primary); }
.phone-icon svg { width: 23px; fill: currentColor; }
.contact-phone small, .contact-phone strong { display: block; }
.contact-phone small { color: var(--muted); font-size: .72rem; }
.contact-phone strong { font-size: 1.1rem; }

.site-footer { padding: 34px 0 92px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-size: .95rem; }
.footer-brand span { color: var(--muted); font-size: .8rem; margin-top: 3px; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { color: var(--muted); font-size: .82rem; }
.footer-phone { font-weight: 850; color: var(--primary); }

.mobile-call { display: none; position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 60; min-height: 58px; border-radius: 999px; background: var(--primary); color: white; align-items: center; justify-content: center; gap: 10px; font-weight: 900; box-shadow: 0 16px 36px rgba(11,111,131,.32); }
.mobile-call svg { width: 20px; fill: currentColor; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: white; color: var(--ink); box-shadow: var(--shadow-soft); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; z-index: 40; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }
.reveal.in-view { animation: revealRise .56s ease both; }

@keyframes revealRise {
  from { opacity: .72; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .main-nav { gap: 18px; }
  .hero-grid, .care-grid, .social-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-copy { max-width: 790px; }
  .hero-visual { min-height: 500px; }
  .visual-main { width: min(80vw, 470px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { gap: 42px; }
  .mode-card { grid-template-columns: 150px 1fr; }
}

@media (max-width: 820px) {
  .section-pad { padding: 76px 0; }
  .header-inner { min-height: 72px; }
  .brand { min-width: auto; flex: 1; }
  .brand strong { font-size: .9rem; }
  .header-cta { display: none; }
  .menu-toggle { display: block; order: 3; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 72px 0 auto 0; background: rgba(249,255,254,.98); backdrop-filter: blur(18px); padding: 28px 20px 36px; border-bottom: 1px solid var(--line); display: grid; gap: 0; transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { font-size: 1rem; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .mode-grid { grid-template-columns: 1fr; }
  .mode-card { grid-template-columns: 160px 1fr; }
  .location-card { grid-template-columns: 1fr 120px; padding: 40px 34px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-phone { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 62px 0; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-lead { font-size: 1.06rem; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 410px; }
  .visual-main { width: 94%; border-radius: 30px; }
  .visual-main::before { inset: 16px; border-radius: 22px; }
  .floating-a { right: -4px; top: 8px; }
  .floating-b { left: -4px; bottom: 8px; }
  .floating-card { max-width: 220px; padding: 11px 12px; border-radius: 16px; }
  .floating-card strong { font-size: .74rem; }
  .floating-icon { min-width: 34px; height: 34px; border-radius: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 8px; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .care-copy h2, .location-card h2, .contact-card h2 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .team-card { grid-template-columns: 52px 1fr; padding: 16px; }
  .team-card > span { width: 44px; height: 44px; border-radius: 14px; }
  .mode-card { grid-template-columns: 1fr; padding: 20px; }
  .mode-graphic { min-height: 160px; }
  .location-card { grid-template-columns: 1fr; padding: 34px 24px; }
  .location-art { justify-content: start; }
  .location-art svg { width: 88px; }
  .contact-card { padding: 34px 22px; border-radius: 28px; }
  .contact-phone { width: 100%; }
  .site-footer { padding-bottom: 98px; }
  .mobile-call { display: flex; }
  .back-to-top { right: 18px; bottom: 88px; }
}

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