.brand-logo-img {
  display: block;
  width: 82px;
  height: 48px;
  object-fit: contain;
}

.tables-disclaimer {
  max-width: 850px;
  margin: -16px auto 30px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.hero-grid {
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
}

.hero .hero-identity {
  margin: 22px 0 0;
  color: #607086;
  font-size: 13px;
  line-height: 1.55;
}

.hero-identity strong { color: var(--blue); }

.hospitals-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hospital-montage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 430px;
  padding: 10px;
  gap: 9px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(9, 37, 71, .18);
  transform: rotate(1deg);
}

.hospital-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #dfeaf4;
}

.hospital-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.hospital-tile:nth-child(1) img { object-position: 54% 50%; }
.hospital-tile:nth-child(2) img { object-position: 48% 50%; }
.hospital-tile:nth-child(3) img { object-position: 52% 50%; }
.hospital-tile:hover img { transform: scale(1.035); }

.hospital-tile::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(3, 20, 38, .86));
}

.hospital-tile figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .38);
}

.hero .network-disclaimer {
  max-width: 570px;
  margin: 16px auto 0;
  padding: 0 18px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  .hospital-montage { height: 430px; transform: none; }
}

@media (max-width: 640px) {
  .brand-logo-img { width: 66px; height: 40px; }
  .tables-disclaimer { margin-top: -14px; font-size: 12px; }
  .hero-visual.hospitals-hero { min-height: 0; }
  .hospital-montage {
    height: auto;
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 26px;
  }
  .hospital-tile { height: 180px; border-radius: 19px; }
  .hospital-tile figcaption { bottom: 13px; }
}
