.promoCard{
  margin:18px auto 16px;
  width:100%;
  max-width:760px;
  background:#FFFFFF;
  border-radius:22px;
  padding:20px;
  border:1px solid rgba(35,47,62,.12);
  box-shadow:
    0 12px 28px rgba(19,25,33,.10),
    0 4px 10px rgba(19,25,33,.06);
}

.promoCard__head{
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}

.promoCard__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(180deg,#232F3E 0%,#131921 100%);
  color:#FFFFFF;
  font-weight:900;
  letter-spacing:.3px;
  font-size:12px;
  text-align:center;
  white-space:nowrap;
  box-shadow:
    0 8px 18px rgba(19,25,33,.14),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.promoCard__stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.stat{
  border-radius:16px;
  padding:16px;
  background:linear-gradient(180deg,#F8FAFC 0%,#F3F4F6 100%);
  border:1px solid rgba(35,47,62,.10);
  color:#131921;
  text-align:center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 2px 6px rgba(19,25,33,.04);
}

.stat__label{
  font-size:12px;
  font-weight:800;
  color:#6B7280;
  opacity:1;
  margin-bottom:10px;
  display:block;
}

.stat__value{
  font-size:34px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.02em;
  margin-top:2px;
  color:#131921;
}

@media (max-width:560px){
  .promoCard{
    padding:16px;
    border-radius:20px;
  }

  .promoCard__badge{
    font-size:10px;
    padding:8px 12px;
    min-height:36px;
    letter-spacing:.2px;
  }

  .promoCard__stats{
    gap:12px;
  }

  .stat{
    padding:14px 12px;
    border-radius:14px;
  }

  .stat__label{
    font-size:11px;
    margin-bottom:8px;
  }

  .stat__value{
    font-size:30px;
  }
}