/* La Sélection — Thème "Whatnot pastel"
   Structure énergique Whatnot · palette claire & pastel (blanc, rose poudré, lavande, menthe, pêche)
   Poppins (display) + Inter (texte) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #FBF7F0;   /* crème / blanc cassé */
  --bg-2:    #F3EEE4;   /* crème soutenu (sections alternées) */
  --ink:     #1E1A17;   /* presque noir chaud (texte) */
  --muted:   #857F77;
  --line:    #EAE3D8;
  --white:   #FFFFFF;

  /* Palette affirmée : rose vif + vert émeraude */
  --rose:    #E5396B;   --rose-d:  #C92A57;       /* rose vif */
  --rose-soft: #FBD8E1;                            /* rose tendre (fonds doux) */
  --emerald: #0E9F6E;   --emerald-d: #0A7D56;      /* vert émeraude */
  --emerald-soft: #C9EBDD;
  /* alias des anciennes variables pastel → rose/émeraude */
  --lav:     var(--emerald-soft);   --lav-d:   var(--emerald);
  --mint:    var(--emerald-soft);   --mint-d:  var(--emerald-d);
  --peach:   var(--rose-soft);      --peach-d: var(--rose-d);
  --butter:  #F6E9C8;

  --primary: #E5396B;   /* CTA rose vif */
  --primary-h:#C92A57;

  --ff-disp: 'Fraunces', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section { position: relative; }

/* ─── BOUTONS PILL — contour dégradé pastel animé + reflet ─── */
@property --wa { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

.wbtn {
  --wbtn-fill: var(--primary);
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-disp); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer; color: var(--ink);
  border: 2.5px solid transparent;
  background:
    linear-gradient(var(--wbtn-fill), var(--wbtn-fill)) padding-box,
    conic-gradient(from var(--wa), var(--rose-d), var(--lav-d), var(--mint-d), var(--peach-d), var(--rose-d)) border-box;
  animation: wspin 7s linear infinite;
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
}
@keyframes wspin { to { --wa: 360deg; } }
/* reflet qui balaie au survol */
.wbtn::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(105deg, transparent 32%, rgba(255,255,255,.7) 50%, transparent 68%);
  transform: translateX(-135%);
}
.wbtn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(220,130,152,.34); }
.wbtn:hover::after { animation: wsheen .85s ease; }
@keyframes wsheen { to { transform: translateX(135%); } }
.wbtn:active { transform: translateY(-1px) scale(.99); }

.wbtn--yellow { --wbtn-fill: var(--primary); }
.wbtn--ghost  { --wbtn-fill: var(--white); }
.wbtn--sm { padding: 11px 22px; font-size: 0.85rem; border-width: 2px; }
.wbtn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.wnav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 18px 34px; transition: var(--t); }
.wnav.scrolled { background: rgba(255,252,250,0.82); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); padding: 12px 34px; }
.wnav-logo { display: flex; align-items: center; }
.wnav-logo .brand-logo { height: 44px; width: auto; display: block; }
.wnav-links { display: flex; gap: 30px; list-style: none; }
.wnav-links a { font-family: var(--ff-disp); font-size: 0.92rem; font-weight: 500; color: var(--ink); transition: var(--t); }
.wnav-links a:hover { color: var(--rose-d); }
.wnav-right { display: flex; align-items: center; gap: 16px; }
.wburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.wburger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }

.wmenu { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.wmenu.open { display: flex; }
.wmenu a { font-family: var(--ff-disp); font-weight: 700; font-size: 2.4rem; color: var(--ink); padding: 8px; }
.wmenu a:hover { color: var(--rose-d); }

/* ─── HERO ─── */
.whero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 60px; position: relative; overflow: hidden; }
.whero::before { content: ''; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(248,203,214,0.55), transparent 68%); top: 2%; left: 30%; transform: translateX(-50%); pointer-events: none; filter: blur(8px); }
.whero::after { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(222,214,245,0.55), transparent 68%); top: 18%; right: 8%; pointer-events: none; filter: blur(8px); }
.wlive-badge { display: inline-flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--line); padding: 9px 18px; border-radius: 999px; font-family: var(--ff-disp); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 30px; position: relative; z-index: 1; box-shadow: 0 6px 20px rgba(43,36,48,0.06); }
.wlive-dot { width: 9px; height: 9px; background: var(--rose-d); border-radius: 50%; animation: wpulse 1.6s infinite; }
@keyframes wpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(220,130,152,0.55); } 50% { box-shadow: 0 0 0 7px rgba(220,130,152,0); } }
.whero h1 { font-family: var(--ff-disp); font-weight: 700; font-size: clamp(3rem, 8.5vw, 7rem); line-height: 0.98; letter-spacing: -0.03em; position: relative; z-index: 1; }
.whero h1 .hl { position: relative; display: inline-block; color: var(--ink); }
.whero h1 .hl::after { content: ''; position: absolute; left: -4px; right: -4px; bottom: 0.08em; height: 0.34em; background: var(--rose); border-radius: 6px; z-index: -1; }
.whero p { max-width: 540px; margin: 26px auto 0; font-size: 1.1rem; font-weight: 300; line-height: 1.7; color: var(--muted); position: relative; z-index: 1; }
.whero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

/* ─── MARQUEE ─── */
.wmarquee { background: var(--lav); color: var(--ink); overflow: hidden; white-space: nowrap; padding: 16px 0; transform: rotate(-1.2deg) scale(1.04); }
.wmarquee-track { display: inline-flex; gap: 0; animation: wscroll 28s linear infinite; }
.wmarquee-track span { font-family: var(--ff-disp); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; padding: 0 22px; text-transform: uppercase; }
.wmarquee-track span::after { content: '✦'; margin-left: 44px; color: var(--lav-d); }
@keyframes wscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION GENERIC ─── */
.wsection { max-width: var(--maxw); margin: 0 auto; padding: 100px 48px; }
.wkicker { display: inline-block; font-family: var(--ff-disp); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-d); margin-bottom: 14px; }
.wtitle { font-family: var(--ff-disp); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.wtitle .hl { position: relative; display: inline-block; }
.wtitle .hl::after { content: ''; position: absolute; left: -3px; right: -3px; bottom: 0.06em; height: 0.32em; background: var(--mint); border-radius: 5px; z-index: -1; }
.wlead { max-width: 56ch; margin-top: 16px; font-size: 1.02rem; font-weight: 300; line-height: 1.75; color: var(--muted); }
.wsection-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 44px; }

/* ─── À PROPOS / FONDATRICE ─── */
.wabout { max-width: var(--maxw); margin: 0 auto; padding: 80px 48px 90px; display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.wabout-photo { position: relative; }
.wabout-photo img { width: 100%; display: block; border-radius: 26px; position: relative; z-index: 1; box-shadow: 0 20px 50px rgba(43,36,48,0.14); }
.wabout-photo::before { content: ''; position: absolute; inset: 22px -22px -22px 26px; background: linear-gradient(135deg, var(--lav), var(--rose)); border-radius: 30px; z-index: 0; }
.wabout-role { font-family: var(--ff-disp); font-weight: 600; font-size: 0.95rem; color: var(--rose-d); margin: 6px 0 16px; }
.wabout-text .wlead { margin-top: 0; margin-bottom: 14px; }
.wabout-sign { font-family: var(--ff-disp); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin-top: 12px; }
.wabout-logo { width: 240px; max-width: 75%; margin-top: 22px; display: block; }
@media (max-width: 860px) {
  .wabout { grid-template-columns: 1fr; gap: 34px; padding: 60px 22px; }
  .wabout-photo::before { inset: 14px -14px -14px 16px; }
}

/* ─── STATS ─── */
.wstats {
  display: flex; align-items: stretch; justify-content: center; gap: 0;
  max-width: 720px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; box-shadow: 0 10px 30px rgba(43,36,48,0.05);
  padding: 28px 14px;
}
.wstats > div { flex: 1; text-align: center; padding: 4px 20px; position: relative; }
.wstats > div + div::before {
  content: ''; position: absolute; left: 0; top: 14%; bottom: 14%; width: 1px; background: var(--line);
}
.wstat-n { font-family: var(--ff-disp); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.05; }
.wstats > div:nth-child(1) .wstat-n { color: var(--rose-d); }
.wstats > div:nth-child(2) .wstat-n { color: var(--lav-d); }
.wstats > div:nth-child(3) .wstat-n { color: var(--mint-d); }
.wstat-l { font-size: 0.78rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 560px) {
  .wstats { flex-direction: column; padding: 10px 20px; max-width: 340px; }
  .wstats > div { padding: 18px 0; }
  .wstats > div + div::before { left: 10%; right: 10%; top: 0; bottom: auto; width: auto; height: 1px; }
}

/* ─── LIVE CARDS ─── */
.wlives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.wlive-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: var(--t); box-shadow: 0 8px 24px rgba(43,36,48,0.04); }
.wlive-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(43,36,48,0.1); }
.wlive-thumb { aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center; }
.wlives-grid > .wlive-card:nth-child(4n+1) .wlive-thumb { background: linear-gradient(135deg, var(--rose), var(--peach)); }
.wlives-grid > .wlive-card:nth-child(4n+2) .wlive-thumb { background: linear-gradient(135deg, var(--lav), var(--rose)); }
.wlives-grid > .wlive-card:nth-child(4n+3) .wlive-thumb { background: linear-gradient(135deg, var(--mint), var(--butter)); }
.wlives-grid > .wlive-card:nth-child(4n)   .wlive-thumb { background: linear-gradient(135deg, var(--peach), var(--lav)); }
.wlive-thumb .wmono { font-family: var(--ff-disp); font-weight: 700; font-size: 3rem; color: rgba(255,255,255,0.7); }
.wbadge { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-disp); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--white); color: var(--ink); box-shadow: 0 4px 12px rgba(43,36,48,0.1); }
.wbadge--soon { background: var(--white); color: var(--rose-d); }
.wbadge--live { background: var(--rose-d); color: #fff; }
.wlive-when { position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); padding: 6px 13px; border-radius: 999px; font-family: var(--ff-disp); font-weight: 600; font-size: 0.8rem; color: var(--ink); }
.wlive-body { padding: 20px 22px 22px; }
.wlive-card h3 { font-family: var(--ff-disp); font-weight: 600; font-size: 1.2rem; }
.wlive-card p { font-size: 0.9rem; font-weight: 300; color: var(--muted); margin: 7px 0 16px; line-height: 1.55; }

/* ─── STEPS ─── */
.wsteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 14px; }
.wstep { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 34px 28px; transition: var(--t); box-shadow: 0 8px 24px rgba(43,36,48,0.04); }
.wstep:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(43,36,48,0.09); }
.wstep-n { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 20px; color: var(--ink); font-family: var(--ff-disp); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px; transition: var(--t); }
.wstep-n svg { width: 28px; height: 28px; }
.wstep:hover .wstep-n { transform: rotate(-6deg) scale(1.06); }
.wstep-tag { display: block; font-family: var(--ff-disp); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.wsteps > .wstep:nth-child(1) .wstep-n { background: var(--rose); }
.wsteps > .wstep:nth-child(2) .wstep-n { background: var(--lav); }
.wsteps > .wstep:nth-child(3) .wstep-n { background: var(--mint); }
.wstep h3 { font-family: var(--ff-disp); font-weight: 600; font-size: 1.4rem; margin-bottom: 8px; }
.wstep p { font-size: 0.95rem; font-weight: 300; color: var(--muted); line-height: 1.65; }
.wcenter { text-align: center; margin-top: 44px; }

/* ─── BRANDS ─── */
.wbrands { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.wchip { font-family: var(--ff-disp); font-weight: 500; font-size: 1rem; padding: 11px 22px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--white); transition: var(--t); }
.wchip:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-2px); }

/* ─── COACHING (teaser accueil) ─── */
.wcoach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; }
.wcoach-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px; transition: var(--t); box-shadow: 0 8px 24px rgba(43,36,48,0.04); }
.wcoach-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(43,36,48,0.09); }
.wcoach-ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 18px; margin-bottom: 16px; }
.wcoach-grid > .wcoach-card:nth-child(1) .wcoach-ic { background: var(--rose); color: var(--rose-d); }
.wcoach-grid > .wcoach-card:nth-child(2) .wcoach-ic { background: var(--lav); color: var(--lav-d); }
.wcoach-ic svg { width: 28px; height: 28px; }
.wcoach-card h3 { font-family: var(--ff-disp); font-weight: 600; font-size: 1.4rem; margin-bottom: 8px; }
.wcoach-card p { font-size: 0.95rem; font-weight: 300; color: var(--muted); line-height: 1.65; }
@media (max-width: 860px) { .wcoach-grid { grid-template-columns: 1fr; } }

/* ─── NEWSLETTER (bloc pastel) ─── */
.wnews { background: linear-gradient(135deg, var(--lav), var(--rose)); color: var(--ink); border-radius: 32px; max-width: var(--maxw); margin: 40px auto 100px; padding: 70px 40px; text-align: center; }
.wnews h2 { font-family: var(--ff-disp); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.02; letter-spacing: -0.02em; }
.wnews p { max-width: 50ch; margin: 14px auto 30px; font-weight: 400; color: #5A4F5F; }
.wnews-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.wnews-form input { flex: 1; min-width: 200px; padding: 16px 22px; border: 2px solid var(--white); border-radius: 999px; background: rgba(255,255,255,0.85); font-family: inherit; font-size: 1rem; color: var(--ink); }
.wnews-form input::placeholder { color: #9C8E9E; }
.wnews-form input:focus { outline: none; border-color: var(--ink); background: #fff; }
.wnews-form .wbtn { --wbtn-fill: var(--ink); color: #fff; }
.wnews-form .wbtn:hover { box-shadow: 0 14px 32px rgba(43,36,48,0.3); }
.wnews-ok { font-family: var(--ff-disp); font-weight: 700; font-size: 1.5rem; }
.whp { position: absolute; left: -9999px; opacity: 0; }

/* ─── FOOTER ─── */
.wfooter { border-top: 1px solid var(--line); padding: 56px 34px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; max-width: var(--maxw); margin: 0 auto; }
.wfooter-logo { font-family: var(--ff-disp); font-weight: 700; font-size: 1.5rem; }
.wfooter-logo b { color: var(--rose-d); }
.wfooter-tag { color: var(--muted); font-size: 0.9rem; font-weight: 300; margin-top: 8px; }
.wfooter h4 { font-family: var(--ff-disp); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.wfooter ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.wfooter a { font-size: 0.92rem; font-weight: 300; color: var(--ink); transition: var(--t); }
.wfooter a:hover { color: var(--rose-d); }
.wfooter-copy { grid-column: 1/-1; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 14px; color: var(--muted); font-size: 0.8rem; }

/* ─── BANNIÈRE COMPARO (dev) ─── */
.wcompare { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 200; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px 8px 18px; display: flex; align-items: center; gap: 12px; font-size: 0.82rem; box-shadow: 0 12px 32px rgba(43,36,48,0.16); }
.wcompare a { font-family: var(--ff-disp); font-weight: 600; background: var(--primary); color: var(--ink); padding: 7px 15px; border-radius: 999px; }

/* ─── PICTO SIGNATURE — sparkle scintillant ─── */
.wspark { position: absolute; pointer-events: none; z-index: 0; display: inline-block; animation: wtwinkle 3.6s ease-in-out infinite; }
.wspark svg { display: block; width: 100%; height: 100%; }
@keyframes wtwinkle {
  0%, 100% { transform: scale(.45) rotate(0deg); opacity: .2; }
  50%      { transform: scale(1) rotate(22deg); opacity: .95; }
}
/* sparkle décoratif dans les sur-titres */
.wkicker .wspark-ic { display: inline-block; width: 13px; height: 13px; vertical-align: -1px; margin-right: 7px; color: var(--rose-d); animation: wtwinkle 3.6s ease-in-out infinite; }
.wkicker .wspark-ic svg { display: block; width: 100%; height: 100%; }

/* ════════ PALETTE AFFIRMÉE — rose vif + émeraude ════════ */
/* CTA rose vif → texte blanc */
.wbtn--yellow { color: #fff; }
/* Surligneurs de titres en émeraude (le hero reste rose vif) */
.wtitle .hl::after { background: var(--emerald); }
/* Pastilles d'icônes : fond vif + picto blanc */
.wstep-n, .wcoach-ic { color: #fff; }
.wsteps > .wstep:nth-child(1) .wstep-n { background: var(--rose); }
.wsteps > .wstep:nth-child(2) .wstep-n { background: var(--emerald); }
.wsteps > .wstep:nth-child(3) .wstep-n { background: var(--rose-d); }
.wcoach-grid > .wcoach-card:nth-child(1) .wcoach-ic { background: var(--rose); color: #fff; }
.wcoach-grid > .wcoach-card:nth-child(2) .wcoach-ic { background: var(--emerald); color: #fff; }
/* Marquee : bandeau rose vif, texte blanc */
.wmarquee { background: var(--rose); color: #fff; }
.wmarquee-track span::after { color: rgba(255,255,255,0.55); }
/* Newsletter : bloc dégradé rose → émeraude, texte blanc */
.wnews { background: linear-gradient(120deg, var(--rose), var(--emerald)); color: #fff; }
.wnews h2 { color: #fff; }
.wnews p { color: rgba(255,255,255,0.9); }
.wnews-form .wbtn { --wbtn-fill: #fff; color: var(--ink); }
/* Coaching — CTA dégradé rose→émeraude, texte blanc, boutons blancs lisibles */
.wcta { background: linear-gradient(135deg, var(--rose), var(--emerald)); }
.wcta h2 { color: #fff; }
.wcta p { color: rgba(255,255,255,0.92); }
.wcta .wbtn { --wbtn-fill: #fff; color: var(--ink); }
/* Sparkle coaching visible (était en vert clair sur fond clair) */
.wcoach-spark--1 { color: var(--emerald); }

/* ─── TYPO : Fraunces (titres) · Inter (UI/labels/boutons) ─── */
.wbtn, .wnav-links a, .wlive-badge, .wkicker, .wbadge, .wlive-when,
.wstep-tag, .wfooter h4, .wabout-role, .wmarquee-track span {
  font-family: var(--ff-body);
}

/* ─── ACCESSIBILITÉ — réduction des animations ─── */
@media (prefers-reduced-motion: reduce) {
  .wbtn, .wmarquee-track, .wspark, .wkicker .wspark-ic, .wlive-dot { animation: none !important; }
  .wbtn::after { display: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .wnav-links { display: none; }
  .wnav-right .wbtn { display: none; }
  .wburger { display: flex; }
  .wsteps { grid-template-columns: 1fr; }
  .wfooter { grid-template-columns: 1fr; gap: 26px; }
  .wsection { padding: 70px 22px; }
}

/* ════════ COACHING (page dédiée — thème pastel) ════════ */
.wlead--center { margin-left: auto; margin-right: auto; }
.wtitle--center { text-align: center; }

.wcoach-hero { position: relative; text-align: center; max-width: 820px; margin: 0 auto; padding: 150px 24px 56px; overflow: hidden; }
.wcoach-hero .wkicker { margin-bottom: 16px; }
.wcoach-spark { position: absolute; pointer-events: none; }
.wcoach-spark svg { width: 100%; height: 100%; display: block; }
.wcoach-spark--1 { width: 30px; top: 46%; left: 8%; color: var(--lav); transform: rotate(-10deg); }
.wcoach-spark--2 { width: 22px; top: 32%; right: 9%; color: var(--rose); }

.wcoach-formats-sec { padding-top: 26px; padding-bottom: 0; }
.wcoach-grid--stagger { align-items: start; max-width: 880px; margin: 0 auto; }
.wcoach-grid--stagger > .wcoach-card:nth-child(2) { margin-top: 56px; }

/* Bandeau confiance — carte blanche en superposition sur les cartes */
.wtrust { position: relative; z-index: 3; margin: -34px auto 0; max-width: 760px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: 0 24px 54px rgba(43,36,48,0.14); padding: 26px 16px; }
.wtrust-item { text-align: center; position: relative; padding: 4px 8px; }
.wtrust-item + .wtrust-item::before { content:''; position:absolute; left:0; top:16%; bottom:16%; width:1px; background: var(--line); }
.wtrust-item strong { display:inline-flex; align-items:center; gap:3px; font-family: var(--ff-disp); font-weight:700; font-size:1.7rem; line-height:1; }
.wtrust-item:nth-child(1) strong { color: var(--rose-d); }
.wtrust-item:nth-child(2) strong { color: var(--lav-d); }
.wtrust-item:nth-child(3) strong { color: var(--mint-d); }
.wtrust-item:nth-child(4) strong { color: var(--peach-d); }
.wtrust-item strong i { display:inline-flex; width:15px; color:#F4C04E; }
.wtrust-item strong i svg { width:100%; }
.wtrust-item span { display:block; margin-top:7px; font-size:0.72rem; letter-spacing:.03em; color: var(--muted); }

/* Étapes — réutilise le composant .wstep de la home, juste décalées (scopé coaching) */
.wcoach-steps-sec { padding-top: 96px; }
.wcoach-steps-sec .wsteps { margin-top: 46px; }
.wcoach-steps-sec .wstep:nth-child(2) { margin-top: 40px; }
.wcoach-steps-sec .wstep:nth-child(3) { margin-top: 14px; }
.wcoach-note { text-align:center; max-width:52ch; margin:50px auto 0; font-weight:300; font-style:italic; line-height:1.8; color: var(--muted); }

/* Témoignages — masonry décalé */
.wcoach-proof { padding-top: 90px; }
.wcoach-proof-head { text-align:center; max-width: 60ch; margin: 0 auto; }
.wreviews { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; margin-top: 44px; }
.wreviews > .wreview:nth-child(even) { margin-top: 40px; }
.wreview { background: var(--white); border:1px solid var(--line); border-radius:22px; padding:30px; box-shadow:0 8px 24px rgba(43,36,48,0.04); }
.wreview-stars { display:flex; gap:3px; color:#F4C04E; margin-bottom:14px; }
.wreview-stars svg { width:16px; height:16px; }
.wreview blockquote { font-family: var(--ff-disp); font-size:1.12rem; line-height:1.6; color: var(--ink); font-style:italic; }
.wreview figcaption { margin-top:16px; font-size:0.85rem; font-weight:600; color: var(--ink); }
.wreview figcaption span { color: var(--muted); font-weight:400; }

/* CTA final */
.wcoach-cta-sec { padding-top: 90px; padding-bottom: 100px; }
.wcta { background: linear-gradient(135deg, var(--rose), var(--lav)); border-radius: 32px; padding: 64px 40px; text-align:center; max-width: var(--maxw); margin: 0 auto; }
.wcta h2 { font-family: var(--ff-disp); font-weight:700; font-size: clamp(1.6rem,3.4vw,2.3rem); color: var(--ink); }
.wcta p { margin-top:12px; font-weight:300; color:#5A4F5F; line-height:1.7; max-width:48ch; margin-left:auto; margin-right:auto; }
.wcta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:28px; }

@media (max-width: 860px) {
  .wcoach-hero { padding-top: 120px; }
  .wcoach-grid--stagger > .wcoach-card:nth-child(2) { margin-top: 0; }
  .wtrust { grid-template-columns: 1fr 1fr; gap: 20px 0; max-width: 420px; margin-top: 24px; }
  .wtrust-item:nth-child(2n+1)::before { display: none; }
  .wcoach-steps-sec .wstep:nth-child(2), .wcoach-steps-sec .wstep:nth-child(3) { margin-top: 0; }
  .wreviews { grid-template-columns: 1fr; gap: 18px; }
  .wreviews > .wreview:nth-child(even) { margin-top: 0; }
}
