:root{
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Hospital palette */
  --navy:#0b2a4a;
  --navy2:#0a2340;
  --blue:#1f66b2;
  --blue2:#165a9f;
  --ink:#0b1220;
  --muted:#556274;
  --paper:#ffffff;
  --bg:#f5f8fc;
  --line: rgba(11,18,32,.10);
  --shadow: 0 12px 26px rgba(11,18,32,.10);

  --danger:#b42318;
  --dangerBg: rgba(180,35,24,.10);

  --r: 16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }

.sr-only{ position:absolute!important; width:1px;height:1px; padding:0;margin:-1px; overflow:hidden;clip:rect(0,0,0,0); border:0; }
.skip-link{ position:absolute; left:-999px; top:10px; background:#fff; padding:10px 14px; border-radius:12px; z-index:9999; border:1px solid var(--line); }
.skip-link:focus{ left:10px; }

.utilitybar{
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 12px;
}
.ub-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
  flex-wrap:wrap;
}
.ub-left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ub-right{ display:flex; align-items:center; gap:10px; }
.ub-dot{ width:4px; height:4px; border-radius:50%; background: rgba(255,255,255,.55); }
.ub-item{ opacity:.92; }
.ub-link{
  color:#fff;
  font-weight:700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ub-sep{ opacity:.6; }

.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
}
.badge-danger{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
}
.badge-neutral{
  color: rgba(11,18,32,.85);
  background: rgba(11,18,32,.06);
  border: 1px solid rgba(11,18,32,.10);
}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(245,248,252,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:38px;height:38px;border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow: 0 10px 18px rgba(31,102,178,.18);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ color:var(--muted); font-size:12px; margin-top:3px; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{
  color: rgba(11,18,32,.78);
  font-weight:700;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{ background: rgba(11,18,32,.04); }
.nav-cta{
  background: rgba(31,102,178,.10);
  border: 1px solid rgba(31,102,178,.18);
  color: var(--blue2)!important;
}
.nav-cta:hover{ background: rgba(31,102,178,.14)!important; }

.nav-toggle{ display:none; background:transparent; border:0; padding:10px; border-radius:12px; }
.burger{ width:22px;height:2px; background: var(--ink); display:block; position:relative; }
.burger::before,.burger::after{ content:""; position:absolute; left:0; width:22px;height:2px; background: var(--ink); }
.burger::before{ top:-7px; } .burger::after{ top:7px; }

.hero{
  background:
    radial-gradient(1200px 500px at 15% 5%, rgba(31,102,178,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(22,90,159,.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  padding:44px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:18px;
  align-items:start;
}
.hero-kicker{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px; }

h1{
  margin:0;
  font-size:42px;
  letter-spacing:-.8px;
  line-height:1.08;
}
.h1-sub{ color: rgba(11,18,32,.75); font-weight:700; }

.lead{
  margin:12px 0 0;
  color: rgba(11,18,32,.72);
  line-height:1.6;
  max-width:62ch;
}

.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease, opacity .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  box-shadow: 0 14px 28px rgba(31,102,178,.18);
}
.btn-primary:hover{ opacity:.96; }
.btn-outline{
  background:#fff;
  border-color: rgba(11,18,32,.14);
  color: rgba(11,18,32,.88);
}
.btn-outline:hover{ background: rgba(11,18,32,.03); }
.btn-ghost{
  background: transparent;
  border-color: rgba(11,18,32,.12);
  color: rgba(11,18,32,.82);
}
.btn-ghost:hover{ background: rgba(11,18,32,.03); }
.btn-small{ padding:10px 12px; border-radius:12px; font-size:14px; }
.w100{ width:100%; }

.trustbar{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.trustitem{
  display:flex; gap:10px;
  padding:12px;
  border-radius: var(--r);
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 8px 18px rgba(11,18,32,.06);
}
.ti-ico{
  width:36px;height:36px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(31,102,178,.10);
  color: var(--blue2);
}
.ti-title{ font-weight:900; }
.ti-sub{ color: var(--muted); font-size:12px; margin-top:2px; }

.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius: var(--r);
  border:1px solid rgba(180,35,24,.18);
  background: var(--dangerBg);
  color: rgba(11,18,32,.86);
}

.hero-card{
  border-radius: 18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hc-head{ padding:18px 18px 10px; border-bottom:1px solid rgba(11,18,32,.06); }
.hc-head h2{ margin:0; font-size:18px; }
.hc-sub{ margin:6px 0 0; color: var(--muted); font-size:13px; }

.hc-list{ padding:12px; display:grid; gap:10px; }
.hc-row{
  width:100%;
  text-align:left;
  border-radius: 14px;
  border:1px solid rgba(11,18,32,.10);
  background:#fff;
  padding:12px;
  display:flex;
  gap:10px;
  align-items:center;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hc-row:hover{ background: rgba(11,18,32,.03); border-color: rgba(11,18,32,.14); }
.hc-row:active{ transform: translateY(1px); }
.hc-ico{
  width:36px;height:36px;border-radius:12px;
  display:grid; place-items:center;
  background: rgba(31,102,178,.10);
  color: var(--blue2);
  flex:0 0 auto;
}
.hc-text{ display:flex; flex-direction:column; min-width:0; }
.hc-title{ font-weight:900; }
.hc-desc{ color: var(--muted); font-size:12px; margin-top:2px; }

.hc-foot{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:0 12px 12px;
}
.hc-mini{
  border-radius: 14px;
  border:1px solid rgba(11,18,32,.10);
  background: rgba(11,18,32,.02);
  padding:12px;
}
.hc-mini-k{ color: var(--muted); font-size:12px; font-weight:700; }
.hc-mini-v{ margin-top:4px; font-weight:900; }

.section{ padding:56px 0; }
.section-muted{ background: #ffffff; }

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:14px; margin-bottom:18px; flex-wrap:wrap;
}
.section-head h2{ margin:0; font-size:28px; letter-spacing:-.4px; }
.subhead{ margin:0; color: var(--muted); max-width:70ch; line-height:1.5; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  border-radius: 18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px 16px;
}
.card h3{ margin:0 0 8px; font-size:18px; }
.card p{ margin:0 0 10px; color: var(--muted); line-height:1.6; }
.bullets{ margin:0; padding-left:18px; color: rgba(11,18,32,.85); line-height:1.55; }
.bullets li{ margin:7px 0; }

.card-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; align-items:center; }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.panel{
  border-radius: 18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  padding:18px 16px;
}
.panel h3{ margin:0 0 10px; }
.tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px; }
.tag{
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  color: rgba(11,18,32,.85);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
  transition: background .15s ease, transform .15s ease;
}
.tag:hover{ background: rgba(11,18,32,.03); }
.tag:active{ transform: translateY(1px); }
.panel-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }

.doc-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.doc{
  border-radius: 18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  padding:14px;
  display:flex;
  gap:12px;
}
.doc-photo{
  width:54px;height:54px;border-radius:14px;
  display:grid; place-items:center;
  background: rgba(11,42,74,.08);
  color: var(--navy);
  font-weight:900;
}
.doc-body h3{ margin:0; font-size:16px; }
.doc-meta{ margin:4px 0 8px; color: var(--muted); font-size:13px; font-weight:700; }
.doc-desc{ margin:0 0 10px; color: rgba(11,18,32,.78); line-height:1.55; font-size:13px; }
.doc-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.center{ display:flex; justify-content:center; margin-top:18px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.g-item{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
.g-img{
  height:160px;
  background: linear-gradient(135deg, rgba(11,42,74,.10), rgba(31,102,178,.12));
}
.g-item figcaption{
  padding:12px;
  color: rgba(11,18,32,.86);
  font-weight:900;
}

.checks{
  display:flex; flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.check{
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  border-radius:999px;
  padding:10px 12px;
  font-weight:900;
  color: rgba(11,18,32,.82);
}

.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.step{
  border-radius: 18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:16px;
}
.step-n{
  width:34px;height:34px;border-radius:12px;
  display:grid; place-items:center;
  background: rgba(31,102,178,.12);
  color: var(--blue2);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{ margin:0 0 6px; font-size:16px; }
.step p{ margin:0; color: var(--muted); line-height:1.55; font-size:13px; }

.callout{
  margin-top:14px;
  border-radius: 18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  padding:18px 16px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}
.callout h3{ margin:0 0 10px; }
.callout-cta{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end; min-width:280px; }

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.faq-item{
  border-radius: 16px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  overflow:hidden;
}
.faq-item summary{
  padding:14px;
  cursor:pointer;
  font-weight:900;
  color: rgba(11,18,32,.86);
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-body{
  padding:0 14px 14px;
  color: var(--muted);
  line-height:1.6;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact-card, .form{
  border-radius: 18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  padding:18px 16px;
}
.muted{ color: var(--muted); }
.contact-actions{ display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 10px; }

.info{ margin-top:10px; }
.info-row{
  display:flex; justify-content:space-between; gap:14px;
  padding:10px 0;
  border-top:1px solid rgba(11,18,32,.06);
}
.info-k{ color: var(--muted); font-size:13px; font-weight:700; }
.info-v{ color: rgba(11,18,32,.86); font-weight:900; font-size:13px; }
.info-v a{ color: var(--blue2); }

.map{ margin-top:12px; }
.map-placeholder{
  border-radius: 16px;
  border:1px dashed rgba(11,18,32,.18);
  background: rgba(11,18,32,.03);
  padding:14px;
}

.field{ margin-top:12px; }
label{ display:block; font-weight:900; color: rgba(11,18,32,.86); font-size:13px; margin-bottom:6px; }
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(11,18,32,.14);
  padding:12px 12px;
  font-family:var(--font);
  font-size:14px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(31,102,178,.55);
  box-shadow: 0 0 0 4px rgba(31,102,178,.10);
}
.fineprint{
  margin:10px 0 0;
  color: var(--muted);
  font-size:12px;
  line-height:1.45;
}

.sticky-actions{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px;
  display:none;
  gap:10px;
  z-index:60;
  background: rgba(245,248,252,.92);
  border-top:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.sbtn{
  flex:1;
  padding:12px 14px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  border:1px solid rgba(11,18,32,.14);
}
.sbtn-primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
  border-color: transparent;
}
.sbtn-outline{ background:#fff; color: rgba(11,18,32,.86); }

.modal{ position:fixed; inset:0; display:none; z-index:80; }
.modal[aria-hidden="false"]{ display:block; }
.modal-backdrop{ position:absolute; inset:0; background: rgba(11,18,32,.55); }
.modal-panel{
  position:relative;
  width:min(680px, calc(100% - 30px));
  margin:60px auto;
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  border:1px solid rgba(11,18,32,.14);
  overflow:hidden;
}
.modal-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(11,18,32,.08);
}
.modal-head h3{ margin:0; }
.icon-btn{
  border:1px solid rgba(11,18,32,.12);
  background:#fff;
  border-radius: 12px;
  padding:10px 12px;
  cursor:pointer;
}
.modal-body{ padding:16px; }
.table{
  border:1px solid rgba(11,18,32,.12);
  border-radius: 14px;
  overflow:hidden;
  margin-top:10px;
}
.tr{
  display:grid;
  grid-template-columns: 1fr 1fr;
  padding:10px 12px;
  border-top:1px solid rgba(11,18,32,.10);
}
.tr:first-child{ border-top:0; background: rgba(11,18,32,.03); font-weight:900; }
.th{ color: rgba(11,18,32,.86); }
.modal-actions{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }

.footer{
  background: var(--navy);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.12);
  padding:22px 0;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:14px; flex-wrap:wrap;
}
.foot-brand{ font-weight:900; }
.foot-links{ display:flex; gap:14px; }
.foot-links a{ color:rgba(255,255,255,.82); }
.foot-links a:hover{ color:#fff; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trustbar{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .doc-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .faq{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .callout{ flex-direction:column; }
  .callout-cta{ min-width:unset; justify-content:flex-start; }
}
@media (max-width: 820px){
  .nav-toggle{ display:inline-flex; }
  .nav{
    position:absolute;
    right:20px;
    top:74px;
    background: rgba(245,248,252,.98);
    border:1px solid var(--line);
    border-radius: 16px;
    padding:10px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    min-width: 240px;
  }
  .nav a{ width:100%; }
  .nav.is-open{ display:flex; }
  .sticky-actions{ display:flex; }
  h1{ font-size:34px; }
  .gallery{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}
