/* Home – Preuves (mini stats + 3 cas avant/après)
   Conçu pour s'intégrer au design existant (style.css + services-style.css)
*/

.home-proofs .hp-stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top: 14px;
}

.home-proofs .hp-stat{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.home-proofs .hp-val{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.7rem;
  line-height: 1.1;
}

.home-proofs .hp-label{
  margin-top: 6px;
  font-weight: 800;
  opacity: .92;
}

.home-proofs .hp-sub{
  margin-top: 4px;
  font-size: .92rem;
  opacity: .75;
}

.home-proofs .hp-link{
  display:inline-block;
  margin-top: 10px;
  font-weight: 800;
  text-decoration: none;
  color: rgba(255,255,255,.92);
}

.home-proofs .hp-link:hover{ text-decoration: underline; }

.home-proofs .hp-cases{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top: 16px;
}

.home-proofs .hp-case{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .18s ease, filter .18s ease;
}

.home-proofs .hp-case:hover{ transform: translateY(-2px); filter: brightness(1.03); }

.home-proofs .hp-case-media{
  position: relative;
  display:block;
  text-decoration:none;
}

.home-proofs .hp-case-media img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.home-proofs .hp-badge{
  position:absolute;
  left:12px;
  top:12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  font-weight: 900;
  font-size: .85rem;
}

.home-proofs .hp-case-body{
  padding: 14px 14px 16px;
}

.home-proofs .hp-kicker{
  font-size: .9rem;
  opacity: .78;
}

.home-proofs .hp-title{
  display:block;
  margin-top: 6px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .1px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.97);
}

.home-proofs .hp-title:hover{ text-decoration: underline; }

.home-proofs .hp-nums{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.home-proofs .hp-col{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  padding: 10px 10px;
}

.home-proofs .hp-mini{
  font-size: .78rem;
  opacity: .72;
}

.home-proofs .hp-num{
  margin-top: 4px;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.home-proofs .hp-num span{ font-size: .85rem; opacity: .75; font-weight: 800; }

.home-proofs .hp-red{ color: var(--red); }

.home-proofs .hp-gain{
  margin-top: 10px;
  font-weight: 900;
  opacity: .92;
}

.home-proofs .hp-actions{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  align-items:center;
}

@media (max-width: 1100px){
  .home-proofs .hp-stats{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proofs .hp-cases{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px){
  .home-proofs .hp-stats{ grid-template-columns: 1fr; }
  .home-proofs .hp-cases{ grid-template-columns: 1fr; }
  .home-proofs .hp-actions .btn{ width: 100%; }
}
