.stats-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 14%,rgba(31,223,168,.08),transparent 24%),
    linear-gradient(135deg,#15106d 0%,#20138a 52%,#17106f 100%);
}

.stats-layout{
  display:grid;
  grid-template-columns:minmax(280px,.8fr) minmax(0,1.7fr);
  gap:64px;
  align-items:center;
}

.stats-photo{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

.stats-photo__frame{
  position:relative;
  width:min(100%,360px);
  aspect-ratio:.72;
  padding:0 14px 18px;
  overflow:hidden;
  border-radius:0 0 180px 180px;
  background:linear-gradient(180deg,#1fdfa8,#4ef21a);
  box-shadow:0 24px 60px rgba(0,0,0,.24);
}

.stats-photo__frame::before{
  content:"";
  position:absolute;
  inset:0;
  border:2px solid rgba(248,248,252,.16);
  border-radius:0 0 180px 180px;
  pointer-events:none;
}

.stats-photo__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0 0 160px 160px;
}

.stats-photo__logo{
  width:min(220px,70%);
  height:auto;
}

.stats-heading{
  max-width:820px;
  margin-bottom:28px;
}

.stats-heading h2{
  margin-bottom:18px;
}

.stats-heading p{
  max-width:760px;
  color:rgba(248,248,252,.78);
  font-size:1.05rem;
}

.stats-list{
  display:grid;
  gap:28px;
}

.stats-item{
  display:grid;
  grid-template-columns:minmax(190px,.65fr) minmax(0,1.35fr);
  gap:34px;
  align-items:center;
}

.stats-item__metric{
  text-align:center;
}

.stats-item__metric strong{
  display:block;
  color:#f8f8fc;
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-size:clamp(3.6rem,7vw,6.2rem);
  line-height:.8;
  letter-spacing:-.04em;
}

.stats-item__plus{
  margin-right:.05em;
}

.stats-item__label{
  display:block;
  margin-top:12px;
  color:#f8f8fc;
  font-size:1.1rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.stats-people{
  display:flex;
  justify-content:center;
  gap:2px;
  margin-top:16px;
}

.stats-people svg{
  width:20px;
  height:34px;
  fill:#f8f8fc;
}

.stats-people svg.is-accent{
  fill:#1fdfa8;
}

.stats-people svg.is-lime{
  fill:#4ef21a;
}

.stats-item__copy h3{
  margin:0 0 10px;
  color:#f8f8fc;
  font-family:"Barlow Condensed",Impact,sans-serif;
  font-size:2rem;
  text-transform:uppercase;
}

.stats-item__copy p{
  margin:0;
  color:rgba(248,248,252,.84);
  font-size:1.06rem;
  line-height:1.65;
}

.stats-divider{
  display:flex;
  align-items:center;
  padding-left:calc(190px + 34px);
}

.stats-divider span{
  position:relative;
  display:block;
  width:100%;
  height:7px;
  border-radius:999px;
  background:linear-gradient(90deg,#1fdfa8 0%,#1fdfa8 72%,#4ef21a 72%,#4ef21a 100%);
}

.stats-divider span::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:160px;
  height:22px;
  border-radius:999px;
  transform:translateY(-50%);
  background:#4ef21a;
  box-shadow:0 0 28px rgba(78,242,26,.28);
}

@media(max-width:980px){
  .stats-layout{
    grid-template-columns:1fr;
  }

  .stats-photo{
    order:2;
  }

  .stats-content{
    order:1;
  }
}

@media(max-width:720px){
  .stats-item{
    grid-template-columns:1fr;
    gap:20px;
  }

  .stats-divider{
    padding-left:0;
  }

  .stats-divider span::after{
    width:34%;
  }

  .stats-item__copy{
    text-align:center;
  }
}
