/* Homepage top highlights — 4 networking-style cards */
.home-top-trust-cards{
  background:#f4f8fc;
  padding:30px 0 34px;
}
.top-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.top-trust-card{
  --accent:#176fe5;
  --soft:#eaf3ff;
  --corner:#e7f1ff;
  position:relative;
  overflow:hidden;
  min-height:205px;
  padding:26px 23px;
  background:#fff;
  border:1px solid #e0e8f2;
  border-radius:23px;
  box-shadow:0 14px 34px rgba(30,72,120,.07);
  transition:transform .22s ease,box-shadow .22s ease;
}
.top-trust-card:hover{
  transform:translateY(-9px);
  box-shadow:0 22px 45px rgba(30,72,120,.15);
}
.top-trust-corner{
  position:absolute;
  top:-48px;
  right:-48px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:var(--corner);
}
.top-trust-icon{
  position:relative;
  z-index:1;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  margin-bottom:19px;
  border-radius:18px;
  background:var(--soft);
  color:var(--accent);
}
.top-trust-icon svg{
  width:31px;
  height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.top-trust-card h3{
  position:relative;
  z-index:1;
  margin:0 0 8px;
  color:var(--accent);
  font-size:21px;
  line-height:1.2;
}
.top-trust-card p{
  position:relative;
  z-index:1;
  margin:0;
  color:#5e718b;
  font-size:15px;
  line-height:1.5;
}
.trust-blue{--accent:#176fe5;--soft:#eaf3ff;--corner:#e7f1ff}
.trust-green{--accent:#0a9f55;--soft:#eaf9f0;--corner:#e5f7ec}
.trust-purple{--accent:#7a3df0;--soft:#f3ebff;--corner:#efe5ff}
.trust-red{--accent:#ef3434;--soft:#fff0f0;--corner:#ffe9e9}

@media(max-width:1020px){
  .top-trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .home-top-trust-cards{padding:22px 0 26px}
  .top-trust-grid{grid-template-columns:1fr;gap:14px}
  .top-trust-card{min-height:auto}
}
