/* =========================
   ENTERPRISE
========================= */
.enterprise{
  padding: 120px 0;
}

.enterprise-box{
  border-radius: 40px;
  padding: 90px;
  background: linear-gradient(
    135deg,
    rgba(0,119,182,0.15),
    rgba(0,180,216,0.08)
  );

  border: 1px solid rgba(255,255,255,0.08);
}

.enterprise-box h2{
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 850px;
}

.enterprise-box p{
  font-size: 18px;
  line-height: 1.9;
  color: #c2d2e2;
  max-width: 850px;
  margin-bottom: 50px;
}

.stats{
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(220px, 1fr)
  );

  gap: 25px;
  margin-top: 70px;
}

.stat-card{
  padding: 40px;
  border-radius: 25px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.06);
}

.stat-card h3{
  font-size: 28px;
  color: #58d5ff;
  margin-bottom: 10px;
}

.stat-card p{
  color: #b7c7d8;
}