.why-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 14px;
  border: 1px solid #dde1ea;
  border-radius: 0;
  background: #f8f9fc;
  list-style: none;
}

.why-proof-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e1e4ec;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 26, 55, .05);
}

.why-proof-from,
.why-proof-to {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.why-proof-from small,
.why-proof-to small {
  color: #8a91a3;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.why-proof-from strong,
.why-proof-to strong {
  font-size: 12px;
  line-height: 1.35;
}

.why-proof-from strong { color: #777f91; }
.why-proof-to strong { color: #4655d1; }

.why-proof-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: #eef0ff;
  color: #5e6df2;
  font-weight: 800;
}

@media (max-width: 900px) {
  .why-proof-strip { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .why-proof-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .why-proof-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}
