/* ===================================================================
   PROPUESTA DE VALOR — banda gris claro con tarjetas blancas
   =================================================================== */
.value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:34px}
.vcard{padding:22px;border-radius:var(--radius);background:var(--paper);border:1px solid var(--line)}
.vcard .vi{
  width:40px;height:40px;border-radius:10px;display:grid;place-items:center;
  margin-bottom:14px;font-size:1.15rem;background:var(--blue-10);color:var(--blue);
}
.vcard:nth-child(even) .vi{background:var(--orange-14);color:var(--orange)}
.vcard h3{font-size:1.06rem;font-weight:600;margin-bottom:6px}
.vcard p{font-size:.9rem;color:var(--muted)}

@media(max-width:900px){.value-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.value-grid{grid-template-columns:1fr}}
