.stats-section{
  background:#061426;
  padding:35px 6%;
}

.stats-container{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.stat-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px 16px;
  text-align:center;
}

.stat-card h3{
  color:var(--dorado);
  font-size:28px;
  margin-bottom:6px;
}

.stat-card p{
  color:white;
  font-size:13px;
  opacity:.8;
}

.benefits{
  background:#061426;
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  padding:12px 6% 35px;
}

.benefit-item{
  color:white;
  font-size:14px;
  opacity:.85;
}

@media(max-width:800px){
  .stats-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .stats-container{
    grid-template-columns:1fr;
  }
}