:root{
      --red:#D7263D;       /* principal */
      --violet:#6C3BC0;    /* accent */
      --violet-dark:#2a1f47;
      --mauve:#f7f4ff;
      --mauve-alt:#e4dbff;
      --white:#ffffff;
      --dark:#0f0f14;
      --muted:#f6f6fb;
      --text:#1b1b22;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;color:var(--text);background:var(--white);}
    a{color:inherit;text-decoration:none}
    .mauve{background:var(--mauve)}
    .mauve-alt{background:var(--mauve-alt)}
    /* Sticky header */
    .header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.9);backdrop-filter:saturate(1.1) blur(8px);border-bottom:1px solid #eee}
    .container{max-width:1100px;margin:auto;padding:0 20px}
    .nav{display:flex;align-items:center;justify-content:space-between;height:64px}
    .brand{display:flex;align-items:center;gap:.6rem;font-weight:800;letter-spacing:.3px}
    .brand span em {color:#422479}
    .brand__logo{width:50px;height:50px;display:grid;place-items:center;color:white;font-weight:900}
    .menu{display:flex;gap:1rem;align-items:center}
    .menu a{padding:.5rem .75rem;border-radius:10px;font-weight:600}
    .menu a.is-active, .menu a:hover:not(.cta), .btn--ghost{background:var(--muted)}
    .cta{background:linear-gradient(135deg,var(--red),var(--violet));color:white;padding:.6rem 1rem;border-radius:999px;font-weight:800;box-shadow:0 6px 20px rgba(215,38,61,.25);transition:background  .6s ease;}
    .menu a.cta:hover, .sticky-cta a:hover, .btn--primary:hover{background: linear-gradient(135deg, var(--violet), var(--red)); /* inversion */}
    /* Hero */
    .hero{position:relative;overflow:hidden;background:radial-gradient(1200px 600px at 80% -20%, rgba(108,59,192,.15), transparent 60%),
                        radial-gradient(900px 500px at -10% 20%, rgba(215,38,61,.15), transparent 60%);}    
    .hero .inner{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;padding:72px 0 40px;align-items:center}
    .badge{display:inline-flex;gap:.5rem;align-items:center;padding:.35rem .6rem;border-radius:999px;background:rgba(108,59,192,.12);color:var(--violet);font-weight:700;font-size:.85rem}
    h1{font-size:clamp(2rem,4vw,3rem);line-height:1.1;margin:.6rem 0}
    .lead{font-size:1.125rem;color:#3a3a46;max-width:48ch}
    .actions{display:flex;gap:.8rem;margin-top:1rem;flex-wrap:wrap}
    .btn{display:inline-flex;align-items:center;gap:.5rem;border:0;border-radius:12px;padding:.9rem 1.1rem;font-weight:800;cursor:pointer}
    .btn--primary{background:linear-gradient(135deg,var(--red),var(--violet));color:white}
    .btn--ghost{background:transparent;border:2px solid var(--muted)}
    .hero-card{background:var(--dark);color:white;border-radius:18px;overflow:hidden;box-shadow:0 25px 60px rgba(0,0,0,.18)}
    .hero-media{position:relative;aspect-ratio:4/3;background:linear-gradient(135deg,#1a1a23,#2a1f47);display:grid;place-items:center}
    .hero-media svg{width:60%;opacity:.25}

    /* Slider (hero) */
.slider{position:relative;width:100%;height:100%;overflow:hidden}
.slides{display:flex;width:300%;height:100%;transition:transform .6s ease}
.slide{flex:0 0 100%;position:relative}
.slider .slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* clé: voir l'image entière */
  display: block;
}
.slider-dotbar{position:absolute;left:50%;bottom:10px;transform:translateX(-50%);display:flex;gap:.4rem;z-index:2}
.slider-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.5)}
.slider-dot.is-active{background:#fff}


    /* Sections */
    section{scroll-margin-top:84px;padding:56px 0;border-top:1px solid #f1f1f4}
    section header h2{font-size:clamp(1.5rem,3vw,2rem);margin:0}
    .kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.2rem}
    .kpi{  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
      color:#fff;background:linear-gradient(135deg, #4b2f7f 0%, #a37ae9 100%);padding:1rem;border-radius:14px;text-align:center}
    .kpi strong{font-size:1.6rem}
    .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
    .card{background:var(--white);border:1px solid #eee;border-radius:14px;padding:1rem}
    .card h3{margin-top:0}
    #contact .grid-contact{
      display:grid;
      grid-template-columns: 1fr 2fr;
      gap:1rem;
      align-items:stretch;
    }
    #contact .card--form-soft{
      color:#2b214f;
      border:1px solid var(--violet);
    }

    .instructors{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
    .coach{border:1px solid #eee;border-radius:14px;overflow:hidden}
    .coach .ph {
  height: 180px;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
    .coach .bio{padding:1rem;background-color:#fff}

    .pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
    .price{border:2px solid var(--muted);border-radius:16px;padding:1.2rem}
    .price--highlight{border-color:var(--violet);box-shadow:0 10px 30px rgba(108,59,192,.18)}
    .price .pamount{font-size:2rem;font-weight:900}

    .faq details{border:1px solid #eee;border-radius:12px;padding:1rem}
    .faq details+details{margin-top:.6rem}

    .card--map{
      padding:0;
      overflow:hidden;
      min-height:340px;
    }
    .map-embed{
      display:block;
      width:100%;
      height:100%;
      border:0;
      border-radius:0;
      margin:0;
    }

    /* Footer sticky CTA */
    .sticky-cta{position:fixed;right:20px;bottom:20px;z-index:999;transition: opacity 0.3s ease, visibility 0.3s ease;}
    .sticky-cta a{display:inline-flex;align-items:center;gap:.6rem;padding:.9rem 1.1rem;border-radius:999px;color:white;background:linear-gradient(135deg,var(--red),var(--violet));font-weight:900;box-shadow:0 14px 40px rgba(215,38,61,.35);transition:background  .6s ease;}
    .sticky-cta.is-hidden {opacity: 0;visibility: hidden;pointer-events: none;}
    
    /* Active link indicator */
    .menu a.active{background:rgba(108,59,192,.12);color:var(--violet)}

    /* Footer en dégradé violet foncé */
.site-footer{
  background: linear-gradient(135deg, #2a1f47 0%, #4b2f7f 100%);
  padding:1.5rem 0;
  text-align:center;
  font-size:.9rem;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.1);
}
.site-footer .container{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  align-items:center;
}
.site-footer .footer-nav{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
}
.site-footer .footer-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}
.site-footer .footer-nav a:hover{
  text-decoration:underline;
}

/* Bouton "Espace membres" avec un dégradé distinct */
.btn--member{
  display:inline-block;
  padding:.5rem;
  border-radius:999px;
  color:#fff;
  background: linear-gradient(135deg, #d7263d 0%, #6c3bc0 100%);
  text-decoration:none;
  transition:opacity .25s ease;
}
.btn--member:hover{
  opacity:.85;
  text-decoration: none;
}

.benefit-icon img {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-content {
  overflow: hidden;
  transition: height .35s ease;
  height: 0;
}
details[open] .faq-content {
  height: auto; /* sera ajusté en JS */
}
.faq summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; } /* enlève la flèche native */
.faq-content { overflow: hidden; height: 0; transition: height .35s ease; }

/* Small niceties */
.shadow-sm{box-shadow:0 6px 20px rgba(0,0,0,.06)}
.tag{display:inline-block;background:var(--muted);padding:.25rem .5rem;border-radius:8px;font-weight:700;font-size:.8rem}

/* Modal */
.modal{position:fixed;inset:0;display:none;z-index:1200}
.modal.is-open{display:block}
.modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.45);backdrop-filter:blur(2px)}
.modal__dialog{
  position:relative;max-width:min(800px, 92vw);max-height:80vh;overflow:auto;
  margin:6vh auto;background:#fff;border-radius:16px;padding:1.2rem 1.2rem 1.4rem;
  box-shadow:0 20px 60px rgba(0,0,0,.25)
}
.modal__title{margin:0 0 .6rem;font-size:1.25rem}
.modal__close{
  position:absolute;top:.4rem;right:.6rem;border:0;background:transparent;
  font-size:1.8rem;line-height:1;color:#666;cursor:pointer
}
.modal__content{line-height:1.5}
.modal__content h1,.modal__content h2,.modal__content h3{margin:.8rem 0 .4rem}
.modal__content p{margin:.5rem 0}

/* Responsive */
@media (min-width: 961px){
  .hamb{display:none}
}

@media (max-width: 640px){
  .modal__dialog{margin:4vh auto;max-height:88vh;padding:1rem}
}

@media (max-width: 960px){
    .hero .inner{grid-template-columns:1fr;padding-top:30px;padding-left: 16px;padding-right: 16px;}
    .grid-3, .instructors{grid-template-columns:1fr}
    .kpis{grid-template-columns:1fr 1fr}
    .menu{display:none}
    .menu.is-open{display:flex;position:absolute;top:64px;left:0;right:0;flex-direction:column;background:white;border-bottom:1px solid #eee;padding:10px}
    .hamb{display:block}
    .map-embed{ height:300px;width: 100%; }
    .card--map{width: 100%;border-radius: 12px; }
    .pricing{ grid-template-columns: 1fr; }
    .price{ width: 100%;}
    #contact .grid-contact{grid-template-columns: 1fr;}
    #contact .card--form-soft, #contact form{ width: 100%; }
    .price .pamount{margin:0}
    section{padding-top:30px;padding-bottom: 30px;}
    h3{margin:0}
}


