/* Proof/statistics strip below the hero. */
.proof { padding: 30px 0; background: #fff; }

.proof__panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 155px;
  padding: 26px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof__panel article {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 0 25px;
}

.proof__panel article + article { border-left: 1px solid var(--border); }
.proof strong { font-size: 2.45rem; line-height: 1; letter-spacing: -.06em; }
.proof p { display: grid; gap: 9px; font-size: .81rem; }
.proof p b { color: var(--text); font-size: .86rem; }
.proof small { color: var(--muted); font-size: .68rem; line-height: 1.7; }

.proof-icon {
  display: grid;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 7px;
  background: #fff3f2;
  color: var(--accent);
}

.proof-icon::before { font-size: 25px; }
.proof-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-icon--bars::before { content: "$"; font-weight: 700; }
.proof-icon--pdf { border: 2px solid #ffd7d5; font-size: .72rem; font-weight: 800; }

@media (max-width: 1100px) {
  .proof__panel article { padding: 0 14px; gap: 13px; }
}

@media (max-width: 900px) {
  .proof__panel { grid-template-columns: 1fr 1fr; }
  .proof__panel article:nth-child(3) { border-left: 0; }
  .proof__panel article:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 620px) {
  .proof__panel { grid-template-columns: 1fr; }
  .proof__panel article + article { border-top: 1px solid var(--border); border-left: 0; }
  .proof__panel article { min-height: 105px; }
}
