/* ==========================================================
   POPUP "En savoir plus" — EB WEB PROD
   ========================================================== */

.ebwp-modal-overlay{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(8,4,20,.75);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.ebwp-modal-overlay.open{
  opacity:1;
  visibility:visible;
}

.ebwp-modal-box{
  position:relative;
  width:100%;
  max-width:560px;
  max-height:85vh;
  overflow-y:auto;
  background:#1a0d35;
  border:1px solid rgba(128,111,235,.35);
  border-radius:18px;
  padding:44px 40px;
  font-family:'Poppins',Arial,sans-serif;
  color:#fff;
  transform:translateY(24px) scale(.97);
  transition:transform .35s ease;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}
.ebwp-modal-overlay.open .ebwp-modal-box{
  transform:translateY(0) scale(1);
}

.ebwp-modal-close{
  position:absolute;
  top:18px;right:18px;
  width:38px;height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}
.ebwp-modal-close:hover{
  background:#e8562f;
  border-color:#e8562f;
  transform:rotate(90deg);
}

.ebwp-modal-icon{
  width:60px;height:60px;
  display:flex;align-items:center;justify-content:center;
  font-size:30px;
  background:linear-gradient(135deg,#5621a0,#806feb);
  border-radius:14px;
  margin-bottom:22px;
}

.ebwp-modal-box h3{
  margin:0 0 16px;
  font-size:26px;
  font-weight:700;
}

.ebwp-modal-box p{
  color:rgba(255,255,255,.75);
  font-size:15px;
  line-height:1.7;
  margin:0 0 16px;
}

.ebwp-modal-box ul{
  margin:0 0 24px;
  padding:0;
  list-style:none;
}
.ebwp-modal-box ul li{
  padding:8px 0 8px 26px;
  position:relative;
  color:rgba(255,255,255,.82);
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.ebwp-modal-box ul li::before{
  content:'\2713';
  position:absolute;
  left:0;
  color:#e8562f;
  font-weight:700;
}

.ebwp-modal-box .ebwp-btn{
  margin-top:6px;
}

/* Empeche le scroll de la page derriere quand la popup est ouverte */
body.ebwp-modal-locked{
  overflow:hidden;
}

@media (max-width:600px){
  .ebwp-modal-box{padding:34px 26px;border-radius:14px;}
}

/* Le bouton "En savoir plus" est passe de <a> a <button> : on annule le style natif */
.ebwp-prest-link{
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  font-family:'Poppins',Arial,sans-serif;
}
