/* Rekaz Stats Bar — floating credibility card (Places-style) */
.rekaz-stats-bar{
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(20,20,30,0.35);
  padding: 34px 10px;
  max-width: 1100px;
  margin: -70px auto 0;
  position: relative;
  z-index: 5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.rekaz-stat{
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 10px 16px;
  border-inline-end: 1px solid #ececec;
}
.rekaz-stat:last-child{ border-inline-end: none; }
.rekaz-stat-num{
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #16161d;
  line-height: 1.2;
}
.rekaz-stat-label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #8a8a94;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
}

@media (max-width: 780px){
  .rekaz-stats-bar{
    margin-top: -40px;
    padding: 24px 8px;
  }
  .rekaz-stat{
    min-width: 45%;
    border-inline-end: none;
    padding: 12px 8px;
  }
  .rekaz-stat-num{ font-size: 26px; }
}
