.c4y-ch {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.c4y-ch__hero {
  position: relative;
  overflow: hidden;
  min-height: 550px;
  padding: 130px 0 4.25rem;
  background: linear-gradient(135deg, rgba(41, 54, 101, 0.05) 0%, rgb(255, 255, 255) 50%, rgba(104, 200, 81, 0.05) 100%);
}

.c4y-ch__blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.05;
  pointer-events: none;
}

.c4y-ch__blob--left {
  width: 18rem;
  height: 18rem;
  left: 5rem;
  top: 5rem;
  background: rgb(41, 54, 101);
}

.c4y-ch__blob--right {
  width: 24rem;
  height: 24rem;
  right: 5rem;
  bottom: 5rem;
  background: rgb(104, 200, 81);
}

.c4y-ch__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--global-content-width, 1200px));
  margin: 0 auto;
}

.c4y-ch__head {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.c4y-ch__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  color: rgb(41, 54, 101);
  background: rgba(41, 54, 101, .10);
}

.c4y-ch__badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.c4y-ch__badge span {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.c4y-ch__title {
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  color: rgb(20, 31, 56) !important;
  font-size: 36px !important;
  line-height: 40px !important;
  font-weight: 700 !important;
}

.c4y-ch__title-accent {
  color: rgb(104, 200, 81);
}

.c4y-ch__desc {
  margin: 0 auto !important;
  max-width: 51rem;
  color: rgb(107, 114, 128) !important;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.c4y-ch__stats {
  background: #fff;
  border-top: 1px solid rgb(228, 231, 236);
  border-bottom: 1px solid rgb(228, 231, 236);
  padding: 3rem 0;
}

.c4y-ch__stats-grid {
  width: min(100% - 3rem, var(--global-content-width, 1200px));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.c4y-ch__stat {
  text-align: center;
}

.c4y-ch__stat-value {
  margin: 0 0 .375rem !important;
  color: rgb(41, 54, 101) !important;
  font-size: 30px !important;
  line-height: 36px !important;
  font-weight: 700 !important;
}

.c4y-ch__stat-label {
  margin: 0 !important;
  color: rgb(107, 114, 128) !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
}

.c4y-ch__head,
.c4y-ch__stat {
  opacity: 0;
  transform: translateY(20px);
}

.c4y-ch.c4y-ch--visible .c4y-ch__head,
.c4y-ch.c4y-ch--visible .c4y-ch__stat {
  transition: opacity .6s ease, transform .6s ease;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .c4y-ch__title {
    font-size: 48px !important;
    line-height: 48px !important;
    font-weight: 700 !important;
    font-style: normal !important;
  }

  .c4y-ch__desc {
    font-size: 20px;
    line-height: 30px;
  }

  .c4y-ch__stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .c4y-ch__stat-value {
    font-size: 36px !important;
    line-height: 40px !important;
  }
}

@media (min-width: 1024px) {
  .c4y-ch__title {
    font-size: 60px !important;
    line-height: 60px !important;
  }
}

@media (max-width: 767px) {
  .c4y-ch__inner,
  .c4y-ch__stats-grid {
    width: min(100% - 2rem, var(--global-content-width, 1200px));
  }

  .c4y-ch__hero {
    padding: 4.5rem 0 3.5rem;
  }

  .c4y-ch__title {
    font-size: 36px !important;
    line-height: 40px !important;
    font-weight: 700 !important;
    font-style: normal !important;
  }

  .c4y-ch__desc {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    color: rgb(107, 114, 128) !important;
  }

  .c4y-ch__stats {
    padding: 2rem 0;
  }
}
