.lp-stats{
  background: var(--lp-about-title);
  color: #fff;
}

.lp-stats__inner{
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: clamp(14px, 1.4vw, var(--lp-page-pad));
  padding-block: clamp(54px, 7vw, 110px);
  text-align: center;
}

.lp-stats__headline{
  margin: 0;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.lp-stats__headlineMain{
  color: #fff;
}

.lp-stats__headlineAccent{
  color: #fff;
}

.lp-stats__grid{
  margin-top: clamp(34px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 44px);
  align-items: start;
}

.lp-stats__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.lp-stats__badge{
  width: 56px;
  height: 56px;
  position: relative;
  flex: 0 0 auto;
}

.lp-stats__badgeStroke{
  width: 50px;
  height: 50px;
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  border: 1px solid var(--lp-stroke);
  border-radius: 25px 0 0 0;
  z-index: 1;
}

.lp-stats__badgeLayer{
  width: 50px;
  height: 50px;
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  background: var(--lp-accent);
  border-radius: 25px 0 0 0;
  transform: translate(5px, 5px);
  transition: transform .22s ease;
  z-index: 2;
}

html[dir="ltr"] .lp-stats__badgeStroke{
  border-radius: 0 25px 0 0;
}

html[dir="ltr"] .lp-stats__badgeLayer{
  border-radius: 0 25px 0 0;
  transform: translate(-5px, 5px);
}

.lp-stats__item:hover .lp-stats__badgeLayer,
.lp-stats__item:focus-within .lp-stats__badgeLayer{
  transform: translate(0, 0);
}

.lp-stats__value{
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
  direction: ltr;
}

.lp-stats__num{
  font-size: clamp(32px, 2.8vw, 46px);
  font-weight: 700;
  color: #fff;
}

.lp-stats__plus{
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  color: #fff;
  transform: translateY(-2px);
}

.lp-stats__label{
  margin-top: 8px;
  color: #fff;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1100px){
  .lp-stats__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3.2vw, 46px);
  }
}

@media (max-width: 900px){
  .lp-stats__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 46px);
  }
}

@media (max-width: 520px){
  .lp-stats__inner{
    padding-inline: 16px;
  }
  .lp-stats__grid{
    grid-template-columns: 1fr;
    gap: 44px;
  }
}