:root{
  --bg:#eef4f8;
  --bg-2:#f7fbfd;
  --card:#ffffff;
  --line:#d7e4ec;
  --text:#173042;
  --muted:#5f7484;
  --primary:#0a6f95;
  --primary-2:#d9932f;
  --accent:#e8f3f8;
  --shadow:0 18px 45px rgba(15, 52, 74, .08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin:0;
  padding:32px 18px 48px;
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg-2) 100%);
  color:var(--text);
  min-height:100vh;
}
.medical-bg{
  position:fixed;
  inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.medical-shape{
  position:absolute;
  border-radius:999px;
  filter:blur(20px);
  opacity:.35;
}
.shape-1{
  width:360px;height:360px;
  background:#dff1f7;
  top:-80px;right:-60px;
}
.shape-2{
  width:280px;height:280px;
  background:#fff0d9;
  bottom:10%;left:-60px;
}
.shape-3{
  width:180px;height:180px;
  background:#dbeef6;
  top:42%;right:12%;
}
.wrap{
  position:relative;
  z-index:1;
  max-width:1120px;
  margin:0 auto;
}
.card{
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  margin-bottom:18px;
  box-shadow:var(--shadow);
}
.hero{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.hero-left{
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.hero-logo{
  width:168px;
  max-width:38vw;
  height:auto;
  object-fit:contain;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  padding:10px;
  box-shadow:0 8px 24px rgba(14,48,69,.08);
}
.pill{
  display:inline-block;
  background:linear-gradient(90deg,var(--primary),#178ab4);
  color:#fff;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  margin-bottom:10px;
  text-transform:uppercase;
}
h1,h2,h3{
  margin:0 0 10px 0;
  letter-spacing:-.02em;
}
h1{font-size:clamp(1.8rem,4vw,2.6rem);line-height:1.08}
h2{font-size:1.45rem}
h3{font-size:1.02rem;color:var(--primary)}
.muted{color:var(--muted)}
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.tabs,.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
button{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  border-radius:999px;
  padding:11px 16px;
  cursor:pointer;
  font-weight:600;
  transition:.18s ease;
  box-shadow:0 3px 10px rgba(15,52,74,.04);
}
button:hover{
  transform:translateY(-1px);
  border-color:#bdd3df;
}
button.active{
  background:linear-gradient(90deg,var(--primary),#178ab4);
  color:#fff;
  border-color:transparent;
}
.overview{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.overview-item{
  background:linear-gradient(180deg,#f9fdff 0%, #eff7fb 100%);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
}
.overview-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:700;
}
.overview-value{
  font-weight:700;
  color:var(--text);
}
.lang{display:none}
.lang.active{display:block}
.lang-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:10px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.section{
  position:relative;
  padding:18px 18px 18px 20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff 0%, #f9fcfe 100%);
  margin-bottom:16px;
}
.section::before{
  content:"";
  position:absolute;
  left:0;
  top:16px;
  bottom:16px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--primary),var(--primary-2));
}
ul{
  margin:0;
  padding-left:20px;
  line-height:1.65;
}
li+li{margin-top:6px}
.small{font-size:14px}
.footer-note{
  text-align:center;
}
@media (max-width:900px){
  .grid,.overview{grid-template-columns:1fr}
  .hero-left{flex-direction:column}
  .lang-header{flex-direction:column;align-items:flex-start}
}
@media print{
  body{
    background:#fff;
    color:#000;
    padding:0;
  }
  .medical-bg,.tabs,.actions{display:none!important}
  .card{
    background:#fff;
    box-shadow:none;
    border:1px solid #ddd;
    break-inside:avoid;
  }
  .lang{display:block!important}
}
