/* =====================================================
   NS-WEB — Scoping local page Webinaires
   Tous les sélecteurs préfixés .ns-web-*
   ===================================================== */

.ns-web-wrap {
  --ink:     #1B2A4A;
  --sage:    #8fa67a;
  --sage-dk: #667167;
  --forest:  #37443a;
  --ivoire:  #f6f3ef;
  --orange:  #FB6123;
  --gold:    #D4AF37;
  --lavande: #C6A5CE;
  --border:  rgba(55,68,58,.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--forest);
  background: var(--ivoire);
  line-height: 1.75;
}

@keyframes ns-web-up {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── HERO ── */
.ns-web-stage {
  padding: clamp(3rem,6vw,5.5rem) 1.5rem;
  display: flex !important;
  justify-content:center; align-items:center;
  min-height: 320px;
  background: radial-gradient(circle at top, #f8f6f1 0%, #efe9de 68%, #e8e1d4 100%);
  position: relative;
  z-index: 1;
}
.ns-web-stage-inner {
  width: min(820px,100%); text-align:center;
  animation: ns-web-up 1s ease both;
}
.ns-web-kicker {
  text-transform:uppercase; letter-spacing:.22em;
  font-size:.75rem; color:var(--sage-dk); margin-bottom:1.25rem;
}

/* Neutralise gradient-or global sur h1 */
.ns-web-title {
  margin:0 !important;
  font-size: clamp(2.4rem,7vw,4.5rem) !important;
  font-weight:400 !important;
  font-family: Georgia,"Playfair Display",serif !important;
  color: var(--forest) !important;
  background: none !important; -webkit-background-clip:unset !important;
  -webkit-text-fill-color: var(--forest) !important;
  background-clip:unset !important; text-shadow:none !important;
  border-bottom:none !important; padding-bottom:0 !important;
  line-height:1.1 !important;
}

.ns-web-lead {
  max-width:680px; margin:1.25rem auto 0;
  font-size:clamp(1.05rem,1.6vw,1.2rem);
  color:var(--sage-dk); line-height:1.85;
}
.ns-web-lead strong { color:var(--forest); }

.ns-web-stage-actions {
  margin-top:2.25rem; display:flex;
  justify-content:center; flex-wrap:wrap; gap:.85rem;
}
.ns-web-stage-actions a {
  padding:.85rem 1.35rem; text-decoration:none;
  border-radius:999px; font-size:.95rem;
  font-weight:600; transition:.25s ease;
}
.ns-web-btn-primary { background:var(--sage); color:#fff !important; }
.ns-web-btn-primary:hover { background:var(--sage-dk); transform:translateY(-2px); }
.ns-web-btn-ghost { color:var(--forest) !important; border:1px solid rgba(55,68,58,.18); background:rgba(255,255,255,.55); }
.ns-web-btn-ghost:hover { background:rgba(255,255,255,.88); transform:translateY(-2px); }

/* ── SECTIONS ── */
.ns-web-section { padding:clamp(3rem,6vw,5rem) 1.5rem; }
.ns-web-section-inner { max-width:1080px; margin:0 auto; }
.ns-web-sec-head { display:flex; align-items:flex-start; gap:1rem; margin-bottom:2.25rem; }
.ns-web-sec-icon { font-size:1.9rem; flex-shrink:0; line-height:1; margin-top:.15rem; }
.ns-web-eyebrow { text-transform:uppercase; letter-spacing:.18em; font-size:.72rem; color:var(--sage-dk); margin-bottom:.3rem; }

/* Neutralise gradient-or sur h2 */
.ns-web-sec-title {
  margin:0 0 .5rem !important;
  font-size:clamp(1.7rem,4vw,2.4rem) !important;
  font-family:Georgia,"Playfair Display",serif !important;
  font-weight:400 !important;
  color:var(--forest) !important;
  background:none !important; -webkit-background-clip:unset !important;
  -webkit-text-fill-color:var(--forest) !important;
  background-clip:unset !important; text-shadow:none !important;
  border-bottom:none !important; padding-bottom:0 !important;
}

.ns-web-sec-desc { color:var(--sage-dk); line-height:1.85; max-width:700px; }

/* ── REPLAYS ── */
.ns-web-replay-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem;
}
.ns-web-replay-card {
  background:rgba(255,255,255,.78); backdrop-filter:blur(10px);
  border-radius:18px; border:1px solid var(--border);
  box-shadow:0 2px 4px rgba(0,0,0,.03),0 10px 32px rgba(0,0,0,.05);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .3s ease,box-shadow .3s ease;
}
.ns-web-replay-card:hover { transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,.06),0 22px 40px rgba(0,0,0,.09); }
.ns-web-replay-video { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; }
.ns-web-replay-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.ns-web-replay-body { padding:1.5rem 1.6rem 1.8rem; display:flex; flex-direction:column; gap:.6rem; flex:1; }
.ns-web-replay-tag {
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.72rem; text-transform:uppercase; letter-spacing:.16em;
  background:rgba(143,166,122,.14); color:var(--sage-dk);
  border-radius:999px; padding:.22rem .65rem; width:fit-content;
}

/* Neutralise gradient-or sur h3 */
.ns-web-replay-title {
  margin:0 !important; font-size:1.1rem !important;
  font-family:Georgia,serif !important; font-weight:600 !important;
  color:var(--forest) !important; background:none !important;
  -webkit-text-fill-color:var(--forest) !important;
  text-shadow:none !important; border-bottom:none !important;
  padding-bottom:0 !important; line-height:1.3 !important;
}

.ns-web-replay-desc { margin:0; font-size:.92rem; color:var(--sage-dk); line-height:1.7; }

/* ── À VENIR ── */
.ns-web-coming-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem; margin-top:2rem;
}
.ns-web-coming-card {
  background:rgba(255,255,255,.6); border:1px solid var(--border);
  border-radius:16px; padding:1.5rem 1.6rem;
  display:flex; flex-direction:column; gap:.65rem;
  transition:transform .25s,box-shadow .25s;
}
.ns-web-coming-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,.07); }
.ns-web-coming-emoji {
  font-size:2rem; width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px; background:radial-gradient(circle at top,rgba(143,166,122,.2),rgba(143,166,122,.06));
}

/* Neutralise gradient-or sur h3 cartes à venir */
.ns-web-coming-name {
  margin:0 !important; font-size:1rem !important;
  font-family:Georgia,serif !important; font-weight:600 !important;
  color:var(--forest) !important; background:none !important;
  -webkit-text-fill-color:var(--forest) !important;
  text-shadow:none !important; border-bottom:none !important; padding-bottom:0 !important;
}

.ns-web-coming-desc { margin:0; font-size:.88rem; color:var(--sage-dk); line-height:1.65; }
.ns-web-coming-badge {
  display:inline-flex; align-items:center;
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--orange); border:1px solid rgba(251,97,35,.25);
  border-radius:999px; padding:.2rem .6rem; width:fit-content;
}
.ns-web-coming-link {
  margin-top:auto; display:inline-flex; align-items:center; gap:.4rem;
  font-size:.88rem; font-weight:600; color:var(--sage-dk);
  text-decoration:none; border-bottom:1px dashed rgba(102,113,103,.35);
  width:fit-content; padding-bottom:1px; transition:color .2s;
}
.ns-web-coming-link:hover { color:var(--forest); }

/* ── ENCART INFO ── */
.ns-web-fact {
  display:flex; align-items:flex-start; gap:1rem;
  background:rgba(143,166,122,.1); border-left:4px solid var(--sage);
  border-radius:0 12px 12px 0; padding:1.2rem 1.4rem;
  margin:2.5rem 0 0; font-size:.93rem; line-height:1.65; color:var(--forest);
}
.ns-web-fact-ico { flex-shrink:0; font-size:1.5rem; margin-top:.05rem; }

/* ── FAQ ── */
.ns-web-faq { max-width:720px; margin:0 auto; }
.ns-web-faq-item { border-bottom:1px solid var(--border); }
.ns-web-faq-q {
  width:100%; text-align:left; padding:1rem 0;
  font-size:1rem; font-weight:600; color:var(--forest);
  border:none; background:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:.75rem;
  font-family:system-ui,sans-serif;
}
.ns-web-faq-q::after { content:"+"; font-size:1.2rem; font-weight:400; flex-shrink:0; }
.ns-web-faq-q.open::after { content:"–"; }
.ns-web-faq-a {
  max-height:0; overflow:hidden; font-size:.94rem;
  color:var(--sage-dk); line-height:1.75;
  transition:max-height .35s ease,padding .25s;
}
.ns-web-faq-a.open { max-height:300px; padding-bottom:1rem; }

/* ── NEWSLETTER ── */
.ns-web-nl {
  background:var(--forest); color:rgba(255,255,255,.88);
  border-radius:20px; padding:clamp(2rem,4vw,3rem) clamp(1.5rem,4vw,3rem);
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; flex-wrap:wrap; margin-top:3rem;
}

/* Neutralise gradient-or sur h2 newsletter */
.ns-web-nl h2 {
  margin:0 0 .4rem !important;
  font-size:clamp(1.3rem,3vw,1.8rem) !important;
  font-family:Georgia,serif !important; font-weight:400 !important;
  color:#fff !important; background:none !important;
  -webkit-text-fill-color:#fff !important;
  text-shadow:none !important; border-bottom:none !important; padding-bottom:0 !important;
}

.ns-web-nl p { margin:0; font-size:.92rem; color:rgba(255,255,255,.65); line-height:1.6; }
.ns-web-nl-btn {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--sage); color:#fff !important;
  text-decoration:none; font-weight:700; font-size:.96rem;
  padding:.9rem 1.6rem; border-radius:999px; white-space:nowrap;
  flex-shrink:0; transition:background .25s,transform .25s;
}
.ns-web-nl-btn:hover { background:#7c9268; transform:translateY(-2px); }

/* ── VOIR AUSSI ── */
.ns-web-also { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; margin-top:1.5rem; }
.ns-web-also a {
  font-size:.88rem; color:var(--sage-dk); text-decoration:none;
  border:1px solid rgba(102,113,103,.25); border-radius:999px;
  padding:.35rem .85rem; background:rgba(255,255,255,.5);
  transition:background .2s,color .2s;
}
.ns-web-also a:hover { background:rgba(255,255,255,.9); color:var(--forest); }

/* ── RESPONSIVE ── */
@media (max-width:640px) {
  .ns-web-replay-grid { grid-template-columns:1fr; }
  .ns-web-coming-grid { grid-template-columns:1fr; }
  .ns-web-replay-card:hover,
  .ns-web-coming-card:hover { transform:none; }
  .ns-web-nl { flex-direction:column; text-align:center; }
  .ns-web-nl-btn { align-self:center; }
}