/* Index WHY CHOOSE US — networking-style cards */
.home-why-networking{
  background:#f4f8fc;
  padding:70px 0 76px;
  border-top:1px solid #e8eef6;
  border-bottom:1px solid #e8eef6;
}
.home-why-networking .home-section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}
.home-why-networking .home-section-heading small{
  display:inline-block;
  margin-bottom:10px;
  color:#255da8;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
}
.home-why-networking .home-section-heading h2{
  margin:0;
  color:#0b2d5c;
}
.home-why-networking .home-section-heading h2 em{
  color:#176fe5;
  font-style:normal;
}
.home-why-networking .home-section-heading p{
  margin:10px auto 0;
  color:#65758b;
}
.why-network-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.why-network-card{
  --accent:#176fe5;
  --soft:#eaf3ff;
  --corner:#e8f2ff;
  position:relative;
  overflow:hidden;
  min-height:235px;
  padding:28px 24px 24px;
  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,border-color .22s ease;
}
.why-network-card:hover{
  transform:translateY(-9px);
  box-shadow:0 22px 45px rgba(30,72,120,.15);
}
.why-network-corner{
  position:absolute;
  top:-46px;
  right:-48px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:var(--corner);
}
.why-network-icon{
  position:relative;
  z-index:1;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:18px;
  background:var(--soft);
  color:var(--accent);
}
.why-network-icon svg{
  width:31px;
  height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.why-network-card h3{
  position:relative;
  z-index:1;
  margin:0 0 10px;
  color:#082c5b;
  font-size:20px;
  line-height:1.25;
}
.why-network-card p{
  position:relative;
  z-index:1;
  min-height:66px;
  margin:0 0 15px;
  color:#5e718b;
  font-size:14px;
  line-height:1.55;
}
.why-network-link{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:39px;
  padding:9px 14px;
  border-radius:999px;
  background:var(--soft);
  color:var(--accent);
  font-size:13px;
  font-weight:800;
}
.why-blue{--accent:#176fe5;--soft:#eaf3ff;--corner:#e7f1ff}
.why-green{--accent:#0a9f55;--soft:#eaf9f0;--corner:#e5f7ec}
.why-purple{--accent:#7a3df0;--soft:#f3ebff;--corner:#efe5ff}
.why-red{--accent:#ef3434;--soft:#fff0f0;--corner:#ffe9e9}
@media(max-width:1020px){
  .why-network-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:620px){
  .home-why-networking{padding:52px 0 58px}
  .why-network-grid{grid-template-columns:1fr;gap:15px}
  .why-network-card{min-height:auto}
  .why-network-card p{min-height:auto}
}
