.mom-home-overview {
  position: relative;
  z-index: 2;
}

.mom-home-overview__stats {
  position: relative;
  margin-top: -42px;
  padding-bottom: 46px;
}

.mom-home-overview__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mom-home-overview__stat-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 28, 56, 0.88) 0%, rgba(6, 17, 36, 0.94) 100%);
  border: 1px solid rgba(110, 180, 255, 0.20);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mom-home-overview__stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(93, 180, 255, 0.08) inset, 0 0 26px rgba(69, 158, 255, 0.08);
}

.mom-home-overview__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 999px;
  font-size: 28px;
  background: radial-gradient(circle, rgba(74, 170, 255, 0.22) 0%, rgba(74, 170, 255, 0.08) 65%, rgba(74, 170, 255, 0) 100%);
  border: 1px solid rgba(108, 184, 255, 0.18);
  box-shadow: 0 0 18px rgba(79, 173, 255, 0.14), inset 0 1px 0 rgba(255,255,255,0.05);
}

.mom-home-overview__stat-value {
  margin-bottom: 10px;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.mom-home-overview__stat-label {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #c8d9f1;
}

.mom-home-overview__features {
  position: relative;
  padding: 16px 0 70px;
}

.mom-home-overview__heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.mom-home-overview__heading h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.mom-home-overview__heading p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: #c9dbf2;
}

.mom-home-overview__features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mom-home-overview__feature-card {
  position: relative;
  min-height: 280px;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 25, 50, 0.82) 0%, rgba(4, 13, 30, 0.92) 100%);
  border: 1px solid rgba(110, 180, 255, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mom-home-overview__feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 180, 255, 0.34);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34), 0 0 28px rgba(69, 158, 255, 0.10);
}

.mom-home-overview__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  border-radius: 18px;
  font-size: 30px;
  background: linear-gradient(180deg, rgba(20, 55, 101, 0.82) 0%, rgba(11, 28, 55, 0.92) 100%);
  border: 1px solid rgba(110, 180, 255, 0.18);
  box-shadow: 0 0 20px rgba(69, 158, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.05);
}

.mom-home-overview__feature-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.mom-home-overview__feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #c7d8ef;
}

@media (max-width: 1200px) {
  .mom-home-overview__stats-grid,
  .mom-home-overview__features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .mom-home-overview__stats {
    margin-top: -18px;
    padding-bottom: 36px;
  }

  .mom-home-overview__stats-grid,
  .mom-home-overview__features-grid {
    grid-template-columns: 1fr;
  }

  .mom-home-overview__stat-card,
  .mom-home-overview__feature-card {
    padding: 22px 20px;
  }

  .mom-home-overview__heading {
    margin-bottom: 26px;
  }

  .mom-home-overview__heading h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .mom-home-overview__heading p {
    font-size: 16px;
    line-height: 1.65;
  }

  .mom-home-overview__feature-card {
    min-height: auto;
  }
}
