/* ===========================
   HOME (like provided photo)
   подключай после style.css
=========================== */

.home{
  position: relative;
  padding: 8px 2px 18px;
}

/* мягкий фон + «воздух» */
.home::before{
  content:"";
  position:absolute;
  inset:-40px -22px -22px;
  background:
    radial-gradient(1200px 520px at 18% 12%, rgba(56,189,248,.18), transparent 62%),
    radial-gradient(900px 520px at 86% 10%, rgba(34,211,238,.14), transparent 62%),
    radial-gradient(900px 620px at 70% 90%, rgba(148,163,184,.28), transparent 62%);
  filter: blur(.2px);
  pointer-events:none;
}

.hhero{
  position: relative;
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 26px 80px rgba(2,6,23,.10);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

/* легкая текстура */
.hhero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 300px at 25% 30%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(420px 220px at 82% 30%, rgba(255,255,255,.45), transparent 60%);
  opacity: .7;
  pointer-events:none;
}

.hhero__grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  align-items: start;
}

.hhero__pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #0b3a82;
  background: rgba(56,189,248,.18);
  border: 1px solid rgba(56,189,248,.25);
}

.hhero__title{
  margin: 14px 0 10px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.15;
  font-weight: 1000;
  letter-spacing: .2px;
  color: #0f172a;
}

.hhero__text{
  margin: 0;
  color: rgba(15,23,42,.72);
  font-weight: 800;
  line-height: 1.6;
  max-width: 70ch;
}

.hhero__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 14px;
  font-weight: 1000;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 14px 28px rgba(2,6,23,.10);
  transition: transform .15s ease, filter .15s ease;
}
.hbtn:hover{ transform: translateY(-1px); filter: brightness(.99); }

.hbtn--teal{
  color:#fff;
  border-color: rgba(255,255,255,.25);
  background: linear-gradient(135deg, #0ea5a5, #1d4ed8);
  box-shadow: 0 18px 34px rgba(29,78,216,.18);
}
.hbtn--gold{
  color:#fff;
  border-color: rgba(255,255,255,.25);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 18px 34px rgba(245,158,11,.20);
}

.hstats{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  padding: 14px;
}

.hstats__row{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(241,245,249,.75);
  border: 1px solid rgba(15,23,42,.06);
}
.hstats__row + .hstats__row{ margin-top: 10px; }

.hstats__n{
  font-weight: 1100;
  font-size: 26px;
  color: #0b3a82;
  min-width: 64px;
  text-align:left;
}

.hstats__ttl{
  font-weight: 1000;
  color: rgba(15,23,42,.85);
  line-height: 1.2;
}
.hstats__sub{
  margin-top: 2px;
  font-weight: 800;
  font-size: 12.5px;
  color: rgba(15,23,42,.60);
}

.hstats__note{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(241,245,249,.75);
  border: 1px solid rgba(15,23,42,.06);
  font-weight: 800;
  font-size: 13px;
  color: rgba(15,23,42,.65);
}

/* sections */
.hsection{ margin-top: 18px; position:relative; z-index:1; }
.hsection__head{ margin-bottom: 10px; }
.hsection__head--row{ display:flex; align-items:center; justify-content:space-between; gap: 12px; }

.hsection__title{
  margin: 0;
  font-size: 18px;
  font-weight: 1100;
  color: #334155;
}

.hlink{
  font-weight: 900;
  color: rgba(11,58,130,.85);
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.08);
}
.hlink:hover{ background: rgba(241,245,249,.85); }

/* services cards (как на фото) */
.svc{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.svc__card{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(2,6,23,.10);
}

.svc__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.20);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.svc__icon img{ width: 26px; height: 26px; object-fit: contain; }

.svc__title{
  font-weight: 1000;
  color: rgba(15,23,42,.86);
  line-height: 1.25;
}
.svc__sub{
  display:block;
  margin-top: 3px;
  font-weight: 800;
  font-size: 12.5px;
  color: rgba(15,23,42,.60);
}
.svc__chev{
  margin-left:auto;
  font-size: 22px;
  font-weight: 1100;
  color: rgba(15,23,42,.45);
}

/* announcements list */
.ann{
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  overflow:hidden;
}
.ann__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.ann__row:first-child{ border-top:none; }
.ann__row:hover{ background: rgba(241,245,249,.72); }
.ann__title{
  font-weight: 900;
  color: rgba(15,23,42,.80);
  line-height: 1.25;
}
.ann__date{
  font-weight: 800;
  color: rgba(15,23,42,.55);
  white-space: nowrap;
}
.ann__empty{
  padding: 14px;
  color: rgba(15,23,42,.60);
  font-weight: 800;
}

/* logos */
.logos{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.logos__item{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  min-height: 74px;
}
.logos__item:hover{ background: rgba(241,245,249,.82); }
.logos__item img{ max-height: 48px; object-fit: contain; }

@media (max-width: 1000px){
  .hhero__grid{ grid-template-columns: 1fr; }
  .svc{ grid-template-columns: 1fr; }
  .logos{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
