/* =====================================
   FIX LAYOUT – FORCE GRID
===================================== */

/* HERO */
#projet-nextr .hero{
  display:grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items:center !important;
  gap:60px !important;
  max-width:1200px;
  margin:0 auto;
}

/* AVANTAGES */
#projet-nextr .grid{
  display:grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap:20px !important;
  max-width:1200px;
  margin:0 auto;
}

/* PRICING */
#projet-nextr .plans{
  display:grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap:30px !important;
  max-width:1200px;
  margin:0 auto;
}

/* CENTRAGE DES SECTIONS */
#projet-nextr section{
  width:100%;
}

/* ICONES */
#projet-nextr .icon{
  margin-left:auto;
  margin-right:auto;
}

/* RESPONSIVE */
@media(max-width:992px){
  #projet-nextr .hero{
    grid-template-columns:1fr !important;
    text-align:center;
  }

  #projet-nextr .grid{
    grid-template-columns:1fr !important;
  }

  #projet-nextr .plans{
    grid-template-columns:1fr !important;
  }
}