.ces-counterSection{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

/* HERO */
.ces-counterHero{
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ces-counterHero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ces-counterHero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.35) 100%),
    linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,.10));
  z-index: 1;
}

.ces-counterHero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

.ces-counterHero__content{
  max-width: 760px;
  padding: 90px 0;
}

.ces-counterHero__title{
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
}

.ces-counterHero__desc{
  margin: 0;
  max-width: 680px;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.8;
}

/* STATS */
.ces-counterStats{
  position: relative;
  width: 100%;
  background: #080808;
  padding: 42px 0 54px;
}

.ces-counterStats::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(209,0,0,.10), transparent 24%),
    radial-gradient(circle at bottom left, rgba(209,0,0,.08), transparent 24%);
  pointer-events: none;
}

.ces-counterStats__grid{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}

.ces-counterCard{
  position: relative;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.02);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.ces-counterCard:hover{
  transform: translateY(-5px);
  border-color: rgba(209,0,0,.28);
  background: rgba(255,255,255,.035);
}

.ces-counterCard__icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(209,0,0,.10);
  color: var(--ces-red);
  font-size: 22px;
}

.ces-counterCard__numberWrap{
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 14px;
  line-height: 1;
}

.ces-counterCard__number,
.ces-counterCard__suffix{
  color: var(--ces-red);
  font-weight: 800;
  letter-spacing: -.03em;
}

.ces-counterCard__number{
  font-size: clamp(42px, 5vw, 72px);
}

.ces-counterCard__suffix{
  font-size: clamp(24px, 2vw, 36px);
  transform: translateY(-6px);
}

.ces-counterCard__title{
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.ces-counterCard__desc{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.75;
}

/* reveal */
.ces-reveal{
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}

.ces-reveal.is-visible{
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 1199px){
  .ces-counterHero{
    min-height: 500px;
  }

  .ces-counterStats__grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 991px){
  .ces-counterHero{
    min-height: 440px;
  }

  .ces-counterHero__content{
    max-width: 100%;
    padding: 70px 0;
  }

  .ces-counterStats{
    padding: 30px 0 40px;
  }
}

@media (max-width: 640px){
  .ces-counterHero{
    min-height: 360px;
  }

  .ces-counterHero__content{
    padding: 56px 0;
  }

  .ces-counterHero__title{
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.1;
  }

  .ces-counterHero__desc{
    font-size: 15px;
    line-height: 1.7;
  }

  .ces-counterStats__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ces-counterCard{
    padding: 20px 18px;
    border-radius: 18px;
  }

  .ces-counterCard__title{
    font-size: 20px;
  }

  .ces-counterCard__number{
    font-size: clamp(38px, 11vw, 58px);
  }

  .ces-counterCard__suffix{
    font-size: 24px;
    transform: translateY(-4px);
  }
}