/* Stats Section Styles */
.stats-section {
  position: relative;
  background: url("https://goma-innovation.com/wp-content/uploads/2026/03/1771844262167.jpg")
    center/cover no-repeat;
  background-color: #222;
  background-blend-mode: overlay;
  min-height: 70vh;
  padding: 4.5rem 0 4rem 0;
  color: #fff;
  z-index: 1;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.68);
  z-index: 0;
}
.stats-section .container {
  position: relative;
}
.stats-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.stats-section .subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #eaeaea;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2rem;
  margin-top: 1.5rem;
}
.stats-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  min-width: 180px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stats-card strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  display: block;
}
.stats-card .stat-label {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 400;
  margin-top: 0.5rem;
}
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .stats-section {
    padding: 2.5rem 0 2rem 0;
  }
  .stats-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .stats-section h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-section h2 {
    font-size: 1.1rem;
  }
}
