@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

.aqpop-overlay{
  --aqpop-accent:#007f7f;
  --aqpop-bg:#002323;
  --aqpop-light:#b9dcdc;
  --aqpop-mid:#73b9b9;
  --aqpop-display:'Sora',sans-serif;
  --aqpop-body:'DM Sans',sans-serif;
  position:fixed;inset:0;z-index:999999;
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  background:rgba(0,10,10,.72);
  backdrop-filter:blur(6px);
  opacity:0;visibility:hidden;
  transition:opacity .4s ease,visibility .4s ease;
}
.aqpop-overlay.aqpop-open{opacity:1;visibility:visible;}
.aqpop-overlay *{box-sizing:border-box;}

.aqpop-modal{
  position:relative;
  width:100%;max-width:520px;
  background:linear-gradient(160deg,var(--aqpop-bg),#001414);
  border:1px solid rgba(115,185,185,.32);
  border-radius:20px;
  padding:44px 40px 40px;
  box-shadow:0 40px 90px -30px rgba(0,0,0,.85);
  overflow:hidden;
  transform:translateY(24px) scale(.96);
  opacity:0;
  transition:transform .5s cubic-bezier(.16,1,.3,1),opacity .5s ease;
  font-family:var(--aqpop-body);
}
.aqpop-overlay.aqpop-open .aqpop-modal{transform:translateY(0) scale(1);opacity:1;}

/* Halo décoratif */
.aqpop-glow{
  position:absolute;top:-40%;left:50%;transform:translateX(-50%);
  width:80%;height:70%;
  background:radial-gradient(ellipse at center,rgba(0,127,127,.35),transparent 70%);
  filter:blur(60px);pointer-events:none;z-index:0;
}
.aqpop-content{position:relative;z-index:1;text-align:center;}

/* Fermeture */
.aqpop-close{
  position:absolute;top:16px;right:16px;z-index:2;
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(185,220,220,.08);
  border:1px solid rgba(185,220,220,.2);
  color:var(--aqpop-light);cursor:pointer;
  transition:all .25s ease;
}
.aqpop-close:hover{background:rgba(185,220,220,.18);color:#fff;transform:rotate(90deg);}

/* Eyebrow */
.aqpop-eyebrow{
  display:inline-block;margin-bottom:16px;
  font-family:var(--aqpop-display);
  font-size:11px;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--aqpop-mid);
  padding:6px 16px;border-radius:100px;
  background:rgba(0,127,127,.12);border:1px solid rgba(115,185,185,.25);
}

/* Titre */
.aqpop-title{
  font-family:var(--aqpop-display);
  font-size:29px;font-weight:800;line-height:1.15;letter-spacing:.5px;
  text-transform:uppercase;color:#fff;margin:0 0 6px;
}
.aqpop-title em{
  display:block;font-style:normal;font-weight:700;
  color:var(--aqpop-accent);
  background:linear-gradient(100deg,var(--aqpop-accent),var(--aqpop-mid));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-top:4px;
}

/* Sous-titre + date */
.aqpop-sub{
  font-size:14px;line-height:1.6;font-weight:300;
  color:var(--aqpop-light);margin:14px 0 22px;
}
.aqpop-sub strong{
  display:inline-block;font-family:var(--aqpop-display);
  font-weight:700;color:#fff;font-size:16px;margin-left:4px;
}

/* Puces garanties */
.aqpop-perks{
  list-style:none;margin:0 0 28px;padding:0;
  display:flex;flex-direction:column;gap:10px;
  text-align:left;max-width:340px;margin-left:auto;margin-right:auto;
}
.aqpop-perks li{
  display:flex;align-items:center;gap:12px;
  font-size:14px;font-weight:400;color:rgba(185,220,220,.9);
}
.aqpop-check{
  flex-shrink:0;width:26px;height:26px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--aqpop-accent);color:#fff;
}

/* Boutons */
.aqpop-actions{display:flex;flex-direction:column;gap:12px;}
.aqpop-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:15px 28px;border-radius:8px;
  font-family:var(--aqpop-display);
  font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;
  text-decoration:none;cursor:pointer;transition:all .35s ease;
}
.aqpop-btn-primary{
  color:#fff;
  background:linear-gradient(110deg,var(--aqpop-bg) 0%,var(--aqpop-accent) 55%,var(--aqpop-mid) 100%);
  background-size:200% 100%;background-position:0% 50%;
  box-shadow:0 8px 24px -6px rgba(0,127,127,.6);
}
.aqpop-btn-primary:hover{background-position:100% 50%;transform:translateY(-2px);box-shadow:0 12px 30px -6px rgba(0,127,127,.7);}
.aqpop-btn-primary svg{transition:transform .3s ease;}
.aqpop-btn-primary:hover svg{transform:translateX(4px);}
.aqpop-btn-ghost{
  color:var(--aqpop-light);
  border:1px solid rgba(185,220,220,.3);background:transparent;
}
.aqpop-btn-ghost:hover{border-color:var(--aqpop-accent);color:#fff;background:rgba(0,127,127,.15);}

/* Responsive */
@media(max-width:520px){
  .aqpop-modal{padding:40px 24px 32px;border-radius:16px;}
  .aqpop-title{font-size:23px;}
  .aqpop-sub strong{display:block;margin:6px 0 0;}
}
@media(prefers-reduced-motion:reduce){
  .aqpop-overlay,.aqpop-modal{transition:opacity .2s ease;}
  .aqpop-modal{transform:none;}
  .aqpop-close:hover{transform:none;}
}
