.competitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(34, 197, 94, .32);
  border-radius: 4px;
  background: rgba(34, 197, 94, .08);
  color: #b9c2ce;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.competitor-badge strong {
  color: #fff;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 21px 0 0;
  padding: 0;
  color: #c9d1dc;
  font-size: 12px;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 13px;
}

.hero-proof li::before {
  position: absolute;
  top: .45em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  content: "";
}

.hero-proof strong {
  color: #fff;
}

.offer-note > strong {
  color: #d8dee8;
}

@media (max-width: 700px) {
  .competitor-badge {
    margin-bottom: 9px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 14px;
  }

  .hero-proof li {
    min-width: 0;
    padding: 8px 6px 8px 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    background: rgba(10, 14, 22, .54);
    font-size: 9.5px;
    line-height: 1.35;
  }

  .hero-proof li::before {
    top: 12px;
    left: 6px;
  }

  .hero-actions .button-primary {
    min-height: 48px;
    white-space: normal;
  }
}


