.stats {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background-color: var(--color-white);
}

.stats-bg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.stats-bg-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.stats__container {
  position: relative;
  z-index: 1;
}

.stats__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.stats__title {
  font-weight: 800;
  color: var(--color-navy-light);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 190px;
  width: 100%;
  padding: 24px;
  background-color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.25);
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.stat-card__divider {
  width: 48px;
  height: 2px;
  margin-top: 12px;
  margin-bottom: 12px;
  background-color: var(--color-orange);
}

.stat-card__number {
  font-family: var(--fira-sans-condensed);
  font-weight: 800;
  font-size: 44px;
  line-height: 120%;
  color: color: var(--color-navy-light);
  letter-spacing: -0.02em;
}

.stat-card__text {
  margin-top: 8px;
  font-family: var(--fira-sans-condensed);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-navy-light);
}

@media (max-width: 991px) {
  .stats {
    padding: 64px 0;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }

  .stat-card {
    max-width: none;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .stats {
    padding: 48px 0;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }
}
