.ch {
  background: #4B4CEB;
  width: 100%;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.ch::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.ch::after {
  content: '';
  position: absolute;
  bottom: -140px; right: 180px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.ch__left { position: relative; z-index: 1; }
.ch__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.ch__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #B5FF47;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.ch__badge-text {
  font-family: 'Onest', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ch__title {
  font-family: 'Benzin', 'Arial Black', sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ch__title .green { color: #B5FF47; }
.ch__sub {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 460px;
}
.ch__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 28px;
}
.ch__price-from {
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}
.ch__price-val {
  font-family: 'Benzin', 'Arial Black', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.ch__price-unit {
  font-family: 'Onest', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.ch__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ch__btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #4B4CEB;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-family: 'Benzin', 'Arial Black', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ch__btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 13px 22px;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.ch__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ch__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: 'Onest', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.ch__pill-check { color: #B5FF47; font-size: 11px; }
.ch__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.ch__stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 18px;
}
.ch__stat-val {
  font-family: 'Benzin', 'Arial Black', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #B5FF47;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.ch__stat-label {
  font-family: 'Onest', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .ch {
    grid-template-columns: 1fr;
    padding: 36px 24px 40px;
  }
  .ch__title { font-size: 38px; }
  .ch__sub { font-size: 14px; }
  .ch__price-val { font-size: 30px; }
  .ch__right {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .ch__stat { flex: 1; min-width: 130px; }
  .ch__stat-val { font-size: 24px; }
  .ch__cta { flex-direction: column; align-items: stretch; }
  .ch__btn-main, .ch__btn-sec { justify-content: center; }
}