/* Manu Landing — premium */
:root{
  --brand:#2fb3a8;       /* teal */
  --sun:#ff9f5f;         /* orange */
  --berry:#7c5cff;       /* playful accent */
  --lemon:#ffd36b;       /* warm accent */
  --bg:#f7fafb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:rgba(15, 23, 42, .08);
  --shadow: 0 12px 34px rgba(2, 8, 23, .08);
  --shadow-sm: 0 3px 12px rgba(2, 8, 23, .08);
  --radius: 22px;
  --max: 1250px;
  --grad: linear-gradient(135deg, rgba(47,179,168,1), rgba(255,159,95,1));
  --grad-soft: linear-gradient(90deg, rgba(47,179,168,.28), rgba(255,159,95,.14));
  --focus: 0 0 0 4px rgba(255,159,95,.18);
  --shadow-0: 0 0 0 rgba(0,0,0,0);
  --shadow-1: 0 10px 26px rgba(15, 23, 42, .06);
  --shadow-2: 0 18px 48px rgba(15, 23, 42, .10);
  --border-weak: rgba(148, 163, 184, .38);
  --border-strong: rgba(148, 163, 184, .55);
  --surface-0: rgba(255,255,255,.55);
  --surface-1: rgba(255,255,255,.72);
  --surface-2: rgba(255,255,255,.90);
  --tint-teal: rgba(47, 179, 168, .16);
  --tint-orange: rgba(255, 159, 95, .18);
}
*{box-sizing:border-box}
/* force le comportement de l'attribut HTML hidden */
[hidden] { display: none !important; }
#mobileNav[hidden] { display: none !important; }
html,body{height:100%}
body{
  position:relative;
  isolation:isolate;
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  /* Background volontairement SOLIDE + micro-noise : évite les "lignes" (banding) */
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 240px;
  overflow-x:hidden;
}
body::before, body::after{
  content:"";
  position:fixed;
  z-index:-2;
  width:560px; height:560px;
  border-radius:999px;
  opacity:.85;
  pointer-events:none;
}

/* Anti-banding (évite les "traits" dans les dégradés selon certains écrans) */
.grain{
  /* remplacé par un noise directement sur le body */
  display:none;
}
body::before{
  left:-300px; bottom:-320px;
  background: radial-gradient(closest-side, rgba(47,179,168,.30), rgba(47,179,168,0));
}
body::after{
  right:-320px; top:-340px;
  background: radial-gradient(closest-side, rgba(255,159,95,.28), rgba(255,159,95,0));
}

/* 3e "blob" très doux pour garder un fond joyeux sans banding */
main::before{
  content:"";
  position:fixed;
  z-index:-2;
  width:720px; height:720px;
  left: 28%;
  bottom: -420px;
  border-radius:999px;
  pointer-events:none;
  opacity:.65;
  background: radial-gradient(closest-side, rgba(124,92,255,.18), rgba(124,92,255,0));
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
.container{width:min(var(--max), calc(100% - 44px)); margin:0 auto}
.muted{color:var(--muted)}
.small{font-size:12px}

.skip{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:16px;top:12px;width:auto;height:auto;padding:10px 12px;background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:var(--shadow);z-index:999}

.topbar{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(90deg, rgba(47,179,168,.06), rgba(255,159,95,.06)), rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.topbar-inner{height:72px;display:flex;align-items:center;gap:16px}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: var(--grad);
  color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:900;
  box-shadow: 0 14px 28px rgba(47,179,168,.16), 0 14px 28px rgba(255,159,95,.12);
}
.brand-txt{display:flex;flex-direction:column;line-height:1.05}
.brand-name{font-size:18px;font-weight:900}
.brand-sub{font-size:12px;color:var(--muted);margin-top:2px}

.nav{display:flex;gap:16px;align-items:center;flex:1}
.nav a{
  font-size:13px;font-weight:800;
  color: rgba(15,23,42,.78);
  padding: 8px 10px;border-radius:12px;
}
.nav a:hover{background: rgba(2, 132, 199, .05)}
.actions{display:flex;gap:10px;align-items:center}

.btn{
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight:900;
  cursor:pointer;
  box-shadow: var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); transition: transform .12s ease}
.btn:active{transform: translateY(0px)}
.btn:focus-visible{outline:none; box-shadow: var(--shadow-sm), var(--focus)}
.btn.full{width:100%}
.btn.primary{
  border-color: rgba(255,159,95,.35);
  background: var(--grad);
  color:#fff;
  box-shadow: 0 14px 34px rgba(47,179,168,.16), 0 14px 34px rgba(255,159,95,.14);
}
.btn.ghost{box-shadow:none;background:transparent}
.btn.icon{width:42px;height:42px;padding:0}

.burger{
  margin-left:auto;
  width:44px;height:44px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  border-radius:14px;
  box-shadow: var(--shadow-sm);
  display:none;
}
.burger span{display:block;width:18px;height:2px;background:rgba(15,23,42,.72);margin:4px auto;border-radius:999px}
.mobile-nav{
  border-top:1px solid rgba(15,23,42,.06);
  padding: 12px 22px 18px 22px;
  display:flex;flex-direction:column;gap:10px;
}
.mobile-nav a{
  padding: 10px 12px;border-radius:12px;
  font-weight:800;
  color: rgba(15,23,42,.78);
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(15,23,42,.06);
}

.hero{padding:54px 0 8px}
.hero-grid{display:grid;grid-template-columns: 1.05fr .95fr;gap:26px;align-items:center}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:900;
  padding: 8px 10px;border-radius:999px;
  border:1px solid rgba(255,159,95,.22);
  background: var(--grad-soft);
  color: rgba(15,23,42,.82);
  margin: 0 0 12px 0;
}
.hero h1{
  margin:0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height:1.05;
  letter-spacing:-0.02em;
}
.accent{
  background: linear-gradient(90deg, rgba(47,179,168,1), rgba(255,159,95,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.teal{ color: var(--brand); }
.lead{margin:12px 0 0 0;font-size:16px;line-height:1.6;color:rgba(15,23,42,.82)}

.offer-row{margin-top:14px;display:flex;flex-direction:column;gap:12px}
.offer{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.offer-price{font-size:26px;font-weight:900;letter-spacing:-0.02em}
.offer-price small{font-size:13px;font-weight:900;color:rgba(100,116,139,.9);margin-left:6px}
.offer-sub{margin-top:6px;color:rgba(15,23,42,.74);font-weight:700;line-height:1.4}
.offer-top{display:flex;flex-direction:column;gap:4px}
.offer-price{display:flex;align-items:baseline;gap:6px}
.offer-price span{font-size:14px;font-weight:900;color:rgba(100,116,139,.95)}
.offer-deal{display:flex;align-items:baseline;gap:8px}
.offer-deal strong{font-size:22px;font-weight:950;letter-spacing:-0.02em;color:rgba(15,23,42,.92)}
.offer-deal span{font-size:13px;font-weight:850;color:rgba(15,23,42,.72)}
.offer-note{font-size:12px;font-weight:850;color:rgba(100,116,139,.9)}

.offer-badges{display:flex;gap:10px;flex-wrap:wrap}

/* Espace demandé entre la timeline et les chips */
.offer-chips{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.kpi{
  font-size:12px;font-weight:900;color: rgba(15,23,42,.74);
  background: rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.08);
  padding:8px 10px;border-radius:999px;
}

.bullets{list-style:none;padding:0;margin:16px 0 0 0;display:flex;flex-direction:column;gap:10px}
.bullets li{display:flex;gap:10px;align-items:flex-start;color: rgba(15,23,42,.76);font-weight:600}
.dot{width:10px;height:10px;border-radius:999px;background: rgba(47,179,168,1);margin-top:7px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.hero-media .shot{
  background: rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.shot-top{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.shot-caption{
  padding: 12px 14px 0 14px;
  display:flex; gap:10px; align-items:center;
  color: rgba(15,23,42,.72);
  font-weight:850;
  font-size:12px;
}
.shot-tab{user-select:none}
.shot-tab.is-active{
  background: linear-gradient(90deg, rgba(47,179,168,.16), rgba(255,159,95,.16));
  border-color: rgba(255,159,95,.20);
  color: rgba(15,23,42,.82);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

.chip{
  font-size:12px;font-weight:900;
  padding: 8px 10px;border-radius:999px;
  background: rgba(2,132,199,.04);
  border: 1px solid rgba(15,23,42,.06);
  color: rgba(15,23,42,.78);
}
.shot-body{padding: 14px;display:grid;grid-template-columns: 1.2fr .8fr;gap: 14px}
.mock{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  background: rgba(247,250,251,.7);
  min-height: 260px;
  display:grid;
  grid-template-columns: 120px 1fr;
  overflow:hidden;
}
.mock-left{border-right:1px solid rgba(15,23,42,.06);padding:12px;display:flex;flex-direction:column;gap:10px}
.mock-item{height:14px;border-radius:999px;background: rgba(100,116,139,.22)}
.mock-item.on{background: rgba(47,179,168,.55)}
.mock-main{padding:14px}
.mock-title{height:14px;border-radius:999px;background: rgba(15,23,42,.20);width:55%}
.mock-title.sm{width:40%}
.mock-line{height:10px;border-radius:999px;background: rgba(100,116,139,.20);margin-top:10px}
.mock-line.w80{width:80%}
.mock-line.w92{width:92%}
.mock-line.w65{width:65%}
.mock-line.w88{width:88%}
.mock-line.w72{width:72%}
.mock-line.w90{width:90%}
.mock-spacer{height:14px}

.mini-card{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  padding: 12px;
}
.mini-head{display:flex;justify-content:space-between;gap:10px;margin-bottom:8px}
.badge{
  display:inline-flex;border-radius:999px;
  padding: 8px 10px;
  border: 1px solid rgba(255,159,95,.22);
  font-size: 12px;
  font-weight:900;
  background: var(--grad-soft);
  color: rgba(15,23,42,.78);
}
.badge.ghost{background: rgba(15,23,42,.06); border-color: rgba(15,23,42,.10); color: rgba(15,23,42,.72);}
.mini-card ul{margin:0;padding-left:18px;color: rgba(15,23,42,.74);font-weight:600;line-height:1.7}
.logos{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.logo-pill{
  font-size:12px;font-weight:900;
  padding: 8px 10px;border-radius:999px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.7);
  color: rgba(15,23,42,.74);
}

section[id]{scroll-margin-top:90px}

.section{padding:54px 0}
.section.alt{
  position: relative;
  isolation: isolate;
  background: transparent;
}
.section.alt::before{
  content:"";
  position:absolute;
  /* Étend le halo au-delà de la section pour éviter une "ligne" au raccord */
  inset:-140px 0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(1000px 420px at 18% 30%, rgba(47,179,168,.12), rgba(47,179,168,0) 65%),
    radial-gradient(1100px 480px at 90% 55%, rgba(255,159,95,.10), rgba(255,159,95,0) 70%);
}
.section-head{text-align:center;margin-bottom:22px;display:flex;flex-direction:column;gap:8px}
.section-head h2{margin:0;font-size: clamp(24px, 2.3vw, 34px);letter-spacing:-0.02em}

.cards{display:grid;gap:14px}
.cards.three{grid-template-columns: repeat(3,1fr)}
.cards.four{grid-template-columns: repeat(4,1fr)}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.stars{
  font-size:13px;
  letter-spacing:2px;
  color: rgba(255,159,95,1);
  margin-bottom: 8px;
  font-weight: 950;
}
.card.review{position:relative}
.card h3{margin:8px 0 0 0;font-size:16px}
.card p{margin:8px 0 0 0;color: rgba(15,23,42,.74);line-height:1.6}
.card .icon{font-size:20px}
.card.highlight{border-color: rgba(47,179,168,.22);box-shadow: 0 18px 46px rgba(47,179,168,.10)}

.split{margin-top:18px;display:grid;grid-template-columns: 1fr 1fr;gap:18px;align-items:start}
.check{list-style:none;padding:0;margin:12px 0 0 0;display:flex;flex-direction:column;gap:10px}
.check li{display:flex;gap:10px;align-items:flex-start;font-weight:700;color: rgba(15,23,42,.74)}
.check li::before{
  content:"✓";
  width:22px;height:22px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background: rgba(47,179,168,.12);
  border:1px solid rgba(47,179,168,.22);
  color: rgba(11,59,58,1);
  font-weight:900;
  flex:0 0 auto;
}

.pricing{display:grid;gap:14px;align-items:start}
.pricing.two{grid-template-columns: repeat(2, 1fr)}
.price{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  display:flex;
  flex-direction:column;
}
.price h3{margin:0;font-size:16px}
.amount{margin-top:12px}
.amount span{font-size:34px;font-weight:900;letter-spacing:-0.02em}
.amount small{color: rgba(100,116,139,.9);font-weight:800}
.price ul{margin:12px 0 12px 0;padding-left:18px;color: rgba(15,23,42,.74);font-weight:700;line-height:1.7}

.price-perks{display:flex;gap:10px;flex-wrap:wrap;margin:4px 0 12px 0}
.perk{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,159,95,.12);
  border:1px solid rgba(255,159,95,.20);
  color: rgba(15,23,42,.82);
  font-weight:900;
  font-size:12px;
}
.price.best{border-color: rgba(47,179,168,.30);box-shadow: 0 22px 54px rgba(47,179,168,.12)}
.ribbon{
  position:absolute; top:14px; right:14px;
  font-size:11px;font-weight:900;
  padding: 8px 10px;border-radius: 999px;
  background: rgba(255,159,95,.14);
  border:1px solid rgba(255,159,95,.22);
  color: rgba(15,23,42,.82);
}

.mini-form{margin-top:10px;display:flex;flex-direction:column;gap:10px}
.size{
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.6);
  border-radius: 14px;
  padding: 10px 12px;
}
.size legend{
  padding: 0 6px;
  font-size: 12px;
  font-weight: 950;
  color: rgba(15,23,42,.78);
}
.radios{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
.radio{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  cursor:pointer;
  user-select:none;
}
.radio input[type="text"],
input[type="email"]{margin:0}
.radio span{font-size:12px;font-weight:900;color: rgba(15,23,42,.78)}

label{display:flex;flex-direction:column;gap:6px}
label span{font-size:12px;font-weight:900;color: rgba(15,23,42,.72)}
input[type="radio"], input[type="checkbox"]{
  width:auto;
  height:auto;
  padding:0;
  border:none;
  background:none;
  box-shadow:none;
}

input{
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 12px;
  font-size: 14px;
  outline:none;
}
input:focus{box-shadow: var(--focus); border-color: rgba(47,179,168,.55)}
.form-msg{font-size:13px;font-weight:800}
.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

.fineprint{font-size:12px;color: rgba(100,116,139,.9);text-align:center;margin-top:16px}

.faq{display:grid;gap:12px;max-width: 860px;margin:0 auto}
details{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
}
summary{cursor:pointer;font-weight:900;color: rgba(15,23,42,.82)}
details p{margin:10px 0 0 0;color: rgba(15,23,42,.74);line-height:1.7;font-weight:600}

.cta{
  position: relative;
  isolation: isolate;
  padding:56px 0;
  background: transparent;
  border-top: none;
}
.cta::before{
  content:"";
  position:absolute;
  /* Déborde pour éviter des raccords visibles */
  inset:-160px 0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(47,179,168,.16), rgba(47,179,168,0) 62%),
    radial-gradient(900px 420px at 85% 30%, rgba(255,159,95,.14), rgba(255,159,95,0) 64%),
    radial-gradient(700px 340px at 55% 110%, rgba(124,92,255,.07), rgba(124,92,255,0) 62%);
}
.cta-grid{display:grid;grid-template-columns: 1fr 1fr;gap:18px;align-items:stretch}
.cta-copy h2{margin:0;font-size: clamp(24px, 2.3vw, 34px);letter-spacing:-0.02em}
.cta-copy p{margin:10px 0 0 0}
.cta-card{
  background: rgba(255,255,255,.9);
  border:1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.cta-actions{display:flex;flex-direction:column;gap:10px}

.footer{padding:44px 0 18px}
.footer-grid{display:grid;grid-template-columns: 1.4fr 1fr 1fr 1fr;gap:16px;align-items:start}
.footer h4{margin:0 0 10px 0;font-size:12px;font-weight:900;color: rgba(15,23,42,.72);text-transform:uppercase;letter-spacing:.08em}
.footer a{display:block;padding:6px 0;color: rgba(15,23,42,.78);font-weight:700}
.footer-brand{margin-bottom:10px}
.footnote{
  margin-top:16px;padding-top:14px;border-top:1px solid rgba(15,23,42,.06);
  display:flex;gap:10px;justify-content:space-between;flex-wrap:wrap
}

/* Modal */

/* Mobile sticky CTA */
.mobile-sticky{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  z-index: 60;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(15,23,42,.08);
}
.mobile-sticky-inner{
  width:min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.mobile-sticky-text{
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.74);
}

/* hide sticky on desktop */
@media (min-width: 981px){
  .mobile-sticky{display:none !important;}
}

.modal{position:fixed; inset:0; z-index:100}
.modal[hidden]{display:none}
.modal-backdrop{position:absolute; inset:0; background: rgba(2,8,23,.55)}
.modal-card{
  position:relative;
  width:min(860px, calc(100% - 44px));
  margin: 8vh auto 0 auto;
  background: rgba(255,255,255,.95);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(2,8,23,.35);
  overflow:hidden;
}
.modal-head{padding:14px 16px;border-bottom:1px solid rgba(15,23,42,.06);display:flex;align-items:center;justify-content:space-between;gap:10px}
.modal-head h3{margin:0;font-size:14px;font-weight:900}
.modal-body{padding:16px}
.video-placeholder{
  border:1px dashed rgba(15,23,42,.18);
  border-radius:18px;
  background: rgba(247,250,251,.9);
  min-height:340px;
  display:flex;align-items:center;justify-content:center;
  padding:18px;text-align:center;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .shot-body{grid-template-columns:1fr}
  .cards.three{grid-template-columns:1fr}
  .cards.four{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .pricing.two{grid-template-columns:1fr}
  .cta-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .nav, .actions{display:none}
  .burger{display:block}
}
@media (max-width: 520px){
  .cards.four{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media (prefers-reduced-motion: reduce){
  .btn:hover{transform:none}
}


/* V2.2 tweaks */
.offer-kicker{font-weight:900; color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:10px;}
.offer-timeline{display:flex; flex-direction:column; gap:8px; margin-top:4px;}
.offer-timeline .step{display:flex; align-items:center; gap:10px; font-weight:850;}
.offer-timeline .dot{width:8px; height:8px; border-radius:50%; background:rgba(47,179,168,.65); box-shadow:0 0 0 4px rgba(47,179,168,.12);}
.badge-inline{display:inline-flex; align-items:center; padding:3px 8px; border-radius:999px; background:rgba(47,179,168,.12); border:1px solid rgba(47,179,168,.25); color: rgba(15,23,42,.82); font-weight:900; font-size:12px;}
.microcopy{color:var(--muted); font-size:13px; font-weight:750;}

.shot-caption{display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;}
.cap-pill{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:rgba(47,179,168,.10); border:1px solid rgba(47,179,168,.22); font-weight:900; font-size:12px;}
.cap-action{margin-left:auto;border:none;background:transparent;color:var(--sun);font-weight:950;cursor:pointer;padding:8px 10px;border-radius:10px}
.cap-action:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(15,23,42,.10);}

.deliverables{display:flex; flex-direction:column; gap:12px; margin-top:14px;}
.deliverables .muted{max-width:560px;}

.proofline{margin-top:10px; color:var(--muted); font-weight:850;}
.rating-pill{margin-left:10px; display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px; background:rgba(15,23,42,.04); border:1px solid rgba(15,23,42,.10); font-weight:900; font-size:12px;}

.reviews-cta{margin-top:16px;}
.reviews-cta-inner{display:flex; align-items:center; justify-content:space-between; gap:16px;}
.reviews-cta-actions{display:flex; gap:10px; flex-wrap:wrap;}

.consent{display:flex; gap:10px; align-items:flex-start; margin-top:8px; padding:10px 12px; border-radius:12px; background:rgba(15,23,42,.03); border:1px solid rgba(15,23,42,.08);}
.consent input{margin-top:3px;}
.mini-form textarea{width:100%; resize:vertical; min-height:88px;}

@media (max-width: 860px){
  .reviews-cta-inner{flex-direction:column; align-items:flex-start;}
  .shot-caption{justify-content:flex-start;}
}


/* V2.2 patches */
.offer-timeline{display:flex;flex-direction:column;gap:8px;margin-top:8px}
.offer-timeline .step{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--text)}
.offer-timeline .dot{width:9px;height:9px;border-radius:999px;background:rgba(47,183,167,.9);box-shadow:0 0 0 4px rgba(47,183,167,.12)}
.badge-inline{display:inline-flex;align-items:center;gap:6px;padding:3px 8px;border-radius:999px;background:rgba(255,159,95,.14);border:1px solid rgba(255,159,95,.22);font-weight:900;font-size:12px;margin-left:6px}
.cap-pill{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;background:rgba(255,159,95,.14);border:1px solid rgba(255,159,95,.22);font-weight:900;font-size:12px}
.cap-action{margin-left:auto;border:none;background:transparent;color:var(--sun);font-weight:900;cursor:pointer;padding:8px 10px;border-radius:10px}
.cap-action:hover{background:rgba(255,159,95,.10)}
.deliverables{display:flex;flex-direction:column;gap:10px;margin-top:14px;max-width:560px}
.proofline{margin-top:8px;font-size:13px;color:var(--muted);font-weight:700}
.rating-pill{display:inline-flex;align-items:center;gap:6px;margin-left:10px;padding:6px 10px;border-radius:999px;background:#fff;border:1px solid var(--border);box-shadow:0 10px 24px rgba(17,24,39,.06);font-weight:900;font-size:12px}

/* Mini KPIs (remplit joliment les cartes sans "vide") */
.mini-kpis{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.mini-kpi{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;background:rgba(15,23,42,.03);border:1px solid rgba(15,23,42,.08);font-weight:900;font-size:12px;color:rgba(15,23,42,.82)}
.reviews-cta{margin-top:18px;padding:18px;border-radius:18px;background:linear-gradient(90deg, rgba(47,183,167,.12), rgba(245,233,218,.20));border:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;gap:12px}
.reviews-cta .h{font-size:16px;font-weight:1000;color:var(--text)}
.included{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(47,179,168,.10);
  border:1px solid rgba(47,179,168,.18);
  font-weight:900;
  font-size:12px;
  color: rgba(15,23,42,.84);
}
.consent{display:flex;gap:10px;align-items:flex-start;margin:8px 0 4px}
.consent input{margin-top:4px}
.form-msg{margin-top:10px;color:var(--muted);font-size:13px;font-weight:700}
.mini-form textarea{width:100%;padding:12px 14px;border-radius:14px;border:1px solid var(--border);background:#fff;font:inherit;resize:vertical;min-height:44px}
.mini-form textarea:focus{outline:none;border-color:rgba(47,183,167,.55);box-shadow:0 0 0 4px rgba(47,183,167,.12)}
@media (max-width: 720px){
  .reviews-cta{flex-direction:column;align-items:stretch}
  .cap-action{margin-left:0;align-self:flex-start}
}


/* --- COMPARATIF --- */
.compare{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:stretch; margin-top:18px}
.compare-col{border:1px solid var(--border); background:var(--card); border-radius:18px; padding:18px; box-shadow:var(--shadow)}
.compare-col.muted{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,159,95,.18);
}
.compare-title{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:10px}
.compare-title h3{margin:0; font-size:16px}
.compare-list{margin:0; padding-left:0; list-style:none; display:grid; gap:10px; color:var(--muted)}
.compare-list li{display:flex; gap:10px; align-items:flex-start}
.dot{width:18px; height:18px; border-radius:999px; border:1.5px solid var(--border); margin-top:1px; flex:0 0 18px; position:relative}
.dot.ok{border-color:rgba(45,212,191,.55); background:rgba(45,212,191,.12)}
.dot.ok::after{content:''; position:absolute; left:5px; top:3px; width:6px; height:10px; border-right:2px solid rgba(13,148,136,.95); border-bottom:2px solid rgba(13,148,136,.95); transform:rotate(40deg)}
.compare-cta{display:flex; gap:12px; justify-content:center; margin-top:16px}

@media (max-width: 900px){
  .compare{grid-template-columns:1fr}
}


/* Joyful nav states */
.nav a.active, .mobile-nav a.active{
  background: rgba(255,159,95,.12);
  border: 1px solid rgba(255,159,95,.18);
  color: rgba(15,23,42,.86);
}

/* Joyful icon chips */
.card .icon{
  width:42px;height:42px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(135deg, rgba(255,159,95,.22), rgba(47,179,168,.18));
  border:1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(2,8,23,.06);
}

.btn.primary:hover{filter:saturate(1.06); transform: translateY(-1px);}

/* Headings underline (premium + joyful) */
.section-head h2{
  position:relative;
  z-index:0;
  display:inline-block;
  padding-bottom: 6px;
}
.section-head h2::after{
  content:"";
  position:absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 10px;
  border-radius: 999px;
  background: var(--grad-soft);
  filter: blur(.2px);
  transform: translateY(6px);
  z-index: -1;
  opacity: .95;
}

/* Best pricing card top accent */
.price.best::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:6px;
  background: var(--grad);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  opacity:.95;
}

/* --- Patch v3b: Manu logo image + flat trial CTA (no gradient) --- */
.logo-img{
  width:40px;
  height:40px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(15,23,42,.06);
  box-shadow: 0 14px 28px rgba(2, 8, 23, .10);
}

/* Remove gradient ONLY on the free-trial CTA buttons */
.btn.primary.trial{
  background: var(--sun) !important;
  background-image: none !important;
  border-color: rgba(255,159,95,.45) !important;
  box-shadow: 0 14px 34px rgba(255,159,95,.18);
}
.btn.primary.trial:hover{
  filter: none !important;
}


/* --- V3 dropdown nav + subnav --- */
.nav{gap:12px;min-width:0;white-space:nowrap}
.nav-group{position:relative;display:flex;align-items:center}
.nav-trigger{
  font-size:13px;font-weight:900;
  color: rgba(15,23,42,.78);
  padding: 8px 10px;
  border-radius:12px;
  background: transparent;
  border: 1px solid transparent;
  cursor:pointer;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-trigger:hover{background: rgba(2,132,199,.05)}
.nav-panel{
  position:absolute; top: calc(100% + 8px); left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  display:none;
  z-index:50;
}

.nav-panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}
.nav-panel a{display:flex;flex-direction:column;gap:2px; padding:10px 10px; border-radius:14px; font-weight:900; font-size:13px; color: rgba(15,23,42,.86)}
.nav-panel a small{font-size:12px; font-weight:800; color: rgba(100,116,139,.92)}
.nav-panel a:hover{background: rgba(2,132,199,.05)}
.nav-group:hover .nav-panel, .nav-group:focus-within .nav-panel{display:block}
.nav-group.open .nav-panel{display:block}
.caret{font-size:12px; opacity:.7; transition: transform .18s ease}
.nav-group.open .caret{transform: rotate(180deg)}

/* Active states for dropdown triggers */
.nav a.active, .nav-trigger.active, .nav-group.open .nav-trigger, .mobile-nav a.active{
  background: rgba(255,159,95,.12);
  border: 1px solid rgba(255,159,95,.18);
  color: rgba(15,23,42,.86);
}

/* Mobile grouped nav */
.mgroup{border:1px solid rgba(15,23,42,.08); background: rgba(255,255,255,.84); border-radius:18px; padding:10px; display:flex; flex-direction:column; gap:8px}
.mlabel{font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:950; color: rgba(100,116,139,.95)}
.mgroup a{padding:10px 10px; border-radius:14px; font-weight:900}

/* Sticky subnav */
.subnav-wrap{position:sticky; top:72px; z-index:40; background: rgba(255,255,255,.68); backdrop-filter: blur(12px); border-bottom:1px solid rgba(15,23,42,.06)}
.subnav{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; padding:10px 0}
.subnav a{font-size:12px; font-weight:950; color: rgba(15,23,42,.74); padding:8px 10px; border-radius:999px; background: rgba(2,132,199,.04); border:1px solid rgba(15,23,42,.06)}
.subnav a:hover{background: rgba(2,132,199,.07)}

/* Code samples */
.sample-grid{display:grid; gap:14px; grid-template-columns: 1fr 1fr}
.code-sample{background: rgba(15,23,42,.92); color: rgba(255,255,255,.92); border-radius:18px; padding:14px; overflow:auto; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size:12px; line-height:1.6; box-shadow: var(--shadow)}
@media (max-width: 980px){
  .sample-grid{grid-template-columns:1fr}
  .subnav-wrap{top:62px}
}

/* Pricing 3 columns */
.pricing.three{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 980px){
  .pricing.three{grid-template-columns:1fr}
}


/* --- Sticky header polish --- */
.topbar{ transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.topbar.is-scrolled{ background: rgba(255,255,255,0.92); box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-bottom-color: rgba(0,0,0,0.06); backdrop-filter: blur(10px); }
.topbar.is-scrolled .topbar-inner{ min-height: 64px; }

/* --- Forms polish (textarea/select) --- */
select, textarea{ width:100%; border:1px solid rgba(0,0,0,0.10); border-radius:14px; padding:12px 14px; background:rgba(255,255,255,0.9); font-family:inherit; font-size:14px; color:var(--ink); outline:none; }
textarea{ min-height:120px; resize:vertical; }
select:focus, textarea:focus{ border-color:rgba(47,179,168,0.45); box-shadow:0 0 0 5px rgba(47,179,168,0.12); }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.form-grid .full{ grid-column: 1 / -1; }
@media (max-width: 720px){ .form-grid{ grid-template-columns: 1fr; } }

/* --- CTA band --- */
.cta-band{ padding: 34px 0; }
.cta-band .cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:18px 18px; border-radius:22px; border:1px solid rgba(0,0,0,0.06); background:linear-gradient(135deg, rgba(47,179,168,0.10), rgba(255,159,95,0.10)); box-shadow: 0 18px 45px rgba(15,23,42,0.06); }
.cta-band h3{ margin:0; font-size:20px; }
.cta-band p{ margin:2px 0 0; }
@media (max-width: 860px){ .cta-band .cta-inner{ flex-direction:column; align-items:flex-start; } }

.copy-email{ white-space:nowrap; }

/* =========================
   V6 polish (UX/UI + SEO)
   ========================= */

/* Better anchor offsets with sticky topbar/subnav */
:root{
  /* offset used by sticky subnav (sticky topbar height + small gap) */
  --anchor-offset: 84px;
  /* offset used when jumping to anchors (accounts for subnav when present) */
  --scroll-offset: var(--anchor-offset);
}
body.has-subnav{ --scroll-offset: calc(var(--anchor-offset) + 64px); }
section[id]{ scroll-margin-top: var(--scroll-offset); }

/* Trust strip under hero */
.trust-strip{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.75);
  border:1px solid rgba(15, 23, 42, .10);
  box-shadow:0 8px 20px rgba(2,6,23,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size:13px;
  color: var(--slate-700);
}
.trust-pill .dot{
  width:8px;height:8px;border-radius:999px;
  background: linear-gradient(90deg, var(--teal-500), var(--orange-400));
  box-shadow:0 0 0 4px rgba(47,179,168,.14);
}

/* Card polish */
.card, .feature, .plan, .faq-item, .compare-table{
  border-color: rgba(15,23,42,.10);
}
.card:hover, .feature:hover, .plan:hover, .faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(2,6,23,.10);
}
.card, .feature, .plan, .faq-item{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Section titles: slightly tighter and more premium */
.h2-title{ letter-spacing: -0.015em; }
.lead{ max-width: 64ch; }

/* Subnav polish: more premium and consistent */
.subnav-wrap{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(248, 250, 252, .65);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.subnav .tab.active{
  background: rgba(47,179,168,.14);
  border-color: rgba(47,179,168,.35);
  color: var(--slate-900);
}

/* Comparison table */
.compare-table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
}
.compare-table th,
.compare-table td{
  padding: 14px 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
  vertical-align: top;
}
.compare-table th{
  font-size:13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-600);
  background: rgba(248,250,252,.8);
}
.compare-table td{ color: var(--slate-800); }
.compare-table tr:last-child td{ border-bottom:none; }
.compare-table .yes{ color: var(--teal-700); font-weight: 700; }
.compare-table .no{ color: var(--slate-500); font-weight: 600; }
.compare-table .maybe{ color: #9a3412; font-weight: 700; }
.compare-table .col-manu{ background: rgba(47,179,168,.06); }
.compare-table .badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-size:12px;
  color: var(--slate-700);
}

/* Stepper (pricing/security lifecycle) */
.stepper{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.step{
  position:relative;
  padding:16px 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 34px rgba(2,6,23,.06);
}
.step .kicker{ font-size:12px; letter-spacing:.06em; text-transform:uppercase; color: var(--slate-600); }
.step .title{ margin-top:6px; font-size:16px; font-weight:800; color: var(--slate-900); }
.step .desc{ margin-top:6px; color: var(--slate-700); font-size:14px; line-height:1.55; }
.step:before{
  content:'';
  position:absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(600px 120px at 20% 0%, rgba(47,179,168,.20), transparent 55%),
              radial-gradient(520px 120px at 80% 0%, rgba(255,159,95,.18), transparent 55%);
  pointer-events:none;
  opacity:.55;
}
.step > *{ position:relative; }

@media (max-width: 900px){
  :root{ --anchor-offset: 84px; --scroll-offset: var(--anchor-offset); }
  .stepper{ grid-template-columns: 1fr; }
}

/* Small note block */
.note{
  margin-top:10px;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(248,250,252,.75);
  border:1px dashed rgba(15,23,42,.18);
  color: var(--slate-700);
  font-size: 13px;
}


.hero p{ max-width:62ch; }


.checklist{
  list-style:none;
  padding-left:0;
  margin:0;
}

.checklist li{
  position:relative;
  padding-left:28px;
  margin:10px 0;
}

.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:18px;
  height:18px;
  border-radius:6px;
  background:linear-gradient(135deg, rgba(47,179,168,.20), rgba(255,159,95,.18));
  border:1px solid rgba(148,163,184,.35);
}

.checklist li::after{
  content:"";
  position:absolute;
  left:6px;
  top:9px;
  width:7px;
  height:3px;
  border-left:2px solid rgba(15,23,42,.70);
  border-bottom:2px solid rgba(15,23,42,.70);
  transform:rotate(-45deg);
}

@media (min-width: 980px){
  .checklist.cols2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap:28px;
  }
  .checklist.cols2 li{ margin:8px 0; }
}


.subnav a{ position:relative; }
.subnav a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg, var(--teal), var(--orange));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
  opacity:.9;
}
.subnav a.active::after, .subnav a[aria-current='true']::after{
  transform:scaleX(1);
}


.sticky-cta{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  padding:10px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(148,163,184,.35);
  box-shadow:var(--shadow-2);
  backdrop-filter: blur(12px);
  z-index:50;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
}

.sticky-cta.show{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.sticky-cta .btn{
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
}

@media (max-width: 720px){
  .sticky-cta{ display:none; }
}


.hero-art .mini{
  padding:18px;
}

.mini-kpis{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
  margin-top:12px;
}

.mini-kpi{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
  border-radius:16px;
  padding:12px;
}

.mini-kpi .k{
  font-size:12px;
  color:var(--muted);
}

.mini-kpi .v{
  font-weight:900;
  font-size:18px;
  margin-top:2px;
}

.flow{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.node{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(148,163,184,.30);
}

.node .label{
  font-size:13px;
  font-weight:800;
}

.arrow{
  width:22px;
  height:22px;
  opacity:.55;
}

.mini-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin-top:12px;
  overflow:hidden;
  border:1px solid rgba(148,163,184,.30);
  border-radius:18px;
}

.mini-table th, .mini-table td{
  padding:10px 12px;
  font-size:13px;
  border-bottom:1px solid rgba(148,163,184,.24);
}

.mini-table th{
  text-align:left;
  color:var(--muted);
  background:rgba(255,255,255,.70);
  font-weight:800;
}

.mini-table tr:last-child td{ border-bottom:none; }

.mark{
  display:inline-grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:8px;
  border:1px solid rgba(148,163,184,.30);
  background:linear-gradient(135deg, rgba(47,179,168,.20), rgba(255,159,95,.18));
}

.mark svg{ width:14px; height:14px; }

.mark.neg{
  background:rgba(148,163,184,.14);
}


.timeline{
  display:grid;
  gap:12px;
  margin-top:12px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.step .dot{
  width:12px;
  height:12px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--teal), var(--orange));
  margin-top:6px;
}

.step .txt{
  font-size:13px;
  color:var(--muted);
}

.step .txt b{
  display:block;
  color:var(--ink);
  margin-bottom:2px;
}

/* ---- KINÉ page: mock + cas typiques + livrables ---- */
.kine-hero-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.doc-snippet{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12.5px;
  line-height:1.45;
  color:var(--ink);
  background:rgba(255,255,255,.75);
  border:1px solid rgba(148,163,184,.22);
  border-radius:14px;
  padding:12px;
}

.hl{
  display:inline-block;
  padding:0 .35em;
  border-radius:9px;
  background:linear-gradient(135deg, rgba(47,179,168,.22), rgba(47,179,168,.08));
  border:1px solid rgba(47,179,168,.18);
}

.mini-steps{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.mini-steps li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:var(--muted);
}

.step-dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background:linear-gradient(135deg, var(--teal), var(--orange));
  margin-top:4px;
  flex:0 0 auto;
}

.case-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 18px;
}

.deliverable{
  background:rgba(255,255,255,.8);
  border:1px solid rgba(148,163,184,.22);
  border-radius:18px;
  padding:14px;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
}

.deliverable-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.deliverable-body{
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}

.deliverable-body .muted{ color:var(--muted); }

.deliverable-note{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(47,179,168,.10);
  border:1px solid rgba(47,179,168,.14);
  color:var(--ink);
  font-weight:600;
}


/* V9 PAGE SIGNATURES */

/* Step pills + connectors */
.steps{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.step-pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  background: var(--surface-2);
  border:1px solid var(--border-weak);
  font-weight:900;color: rgba(15,23,42,.86);
}
.step-pill .n{
  width:26px;height:26px;border-radius:999px;
  display:grid;place-items:center;
  background: var(--tint-teal);
  color: rgba(15,23,42,.86);
  font-weight:1000;
}
.step-conn{width:22px;height:2px;border-radius:2px;background: var(--grad-soft);opacity:.9}

/* Smart list block */
.smart-ui{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 920px){.smart-ui{grid-template-columns:1fr}}
.smart-card{padding:16px}
.smart-title{display:flex;align-items:center;gap:10px;font-weight:1000;margin:0 0 8px 0}
.smart-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.smart-item{display:flex;align-items:flex-start;gap:10px}
.smart-badge{
  font-size:12px;font-weight:1000;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.78);
  white-space:nowrap;
}
.smart-item p{margin:0;color: rgba(15,23,42,.78);font-weight:650;line-height:1.55}

/* Organic benefit cards */
.card.soft{
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255,255,255,.86);
  border:1px solid var(--border-weak);
  box-shadow: var(--shadow-1);
}
.card.soft:hover{
  border-color: rgba(47,179,168,.28);
  box-shadow: var(--shadow-2);
}
.icon.soft{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(47,179,168,.16), rgba(255,159,95,.12));
  border:1px solid rgba(148,163,184,.38);
  font-size:22px;
}

/* Approach row */
.approach{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
@media (max-width: 920px){.approach{grid-template-columns:1fr}}
.approach .card{padding:14px}

/* Cabinet diagram */
.cab-diagram{display:flex;align-items:stretch;gap:12px;flex-wrap:wrap}
.cab-block{
  flex:1 1 220px;
  border-radius: calc(var(--radius) + 8px);
  border:1px solid var(--border-weak);
  background: rgba(255,255,255,.88);
  padding:14px;
  box-shadow: var(--shadow-1);
}
.cab-block .label{font-weight:1000;margin-top:6px}
.cab-chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.cab-chip{
  font-size:12px;font-weight:950;
  padding:6px 10px;border-radius:999px;
  background: rgba(47,179,168,.12);
  border:1px solid rgba(47,179,168,.24);
  color: rgba(15,23,42,.86);
}
.arrow-txt{
  display:flex;align-items:center;justify-content:center;
  padding:0 2px;
  font-size:22px;font-weight:1100;
  color: rgba(15,23,42,.55);
}

/* Before / After */
.ba-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 920px){.ba-grid{grid-template-columns:1fr}}
.ba-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:1000;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.78);
}

/* KPI cards */
.kpi-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
@media (max-width: 920px){.kpi-cards{grid-template-columns:1fr}}
.kpi-card{padding:16px}
.kpi-card .k{font-weight:1000;margin:0 0 6px 0}
.kpi-card .v{color: rgba(15,23,42,.78);font-weight:650;line-height:1.6}
/* Mini accordions inside cards (Sécurité > Principes) */
.more{ margin-top: 10px; }
.more summary{
  list-style:none;
  cursor:pointer;
  font-weight:900;
  color: rgba(15,23,42,.78);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}
.more summary::-webkit-details-marker{ display:none; }
.more summary::after{
  content:"›";
  margin-left:auto;
  transform: rotate(90deg);
  opacity:.65;
  transition: transform .15s ease, opacity .15s ease;
}
.more[open] summary::after{ transform: rotate(-90deg); opacity:.9; }
.more .more-body{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid rgba(15,23,42,.08);
}
.mini-label{
  font-size:12px;
  font-weight:1000;
  color: rgba(100,116,139,.95);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 10px;
}


.cards.two{grid-template-columns: repeat(2,1fr)}
@media (max-width: 920px){.cards.two{grid-template-columns:1fr}}
.compare-table .cell{
  display:flex;
  align-items:flex-start;
  gap:10px;
  justify-content:flex-start;
}
.compare-table .cell .mark{ flex:0 0 auto; }
.avatars{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.avatar{
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  letter-spacing:.02em;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
}


/* Citation-ready sections */
.facts-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.fact-card{
  padding:18px 18px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}
.fact-card h3{margin:0 0 10px 0;font-size:18px;letter-spacing:-0.01em}
.fact-card ul{margin:0;padding-left:18px;color:rgba(15,23,42,.78);line-height:1.7;font-weight:650}
.practice-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.sample-block{
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(47,179,168,.14);
  background: linear-gradient(180deg, rgba(47,179,168,.08), rgba(255,255,255,.92));
  color: rgba(15,23,42,.82);
  font-weight:650;
  line-height:1.65;
}
.sample-block strong{color: rgba(15,23,42,.94)}
.sample-note{
  margin-top:12px;
  font-size:13px;
  color: rgba(100,116,139,.94);
  font-weight:800;
}
.method-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.method-step{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}
.method-step .step-num{
  display:inline-flex;
  width:30px;height:30px;
  align-items:center;justify-content:center;
  border-radius:999px;
  background: var(--grad-soft);
  border:1px solid rgba(47,179,168,.16);
  font-weight:950;
  margin-bottom:10px;
}
.method-step h3{margin:0 0 8px 0;font-size:18px}
@media (max-width: 920px){
  .practice-grid,
  .method-steps,
  .facts-grid{grid-template-columns:1fr}
}


/* V26 micro-polish prod */

:root{
  --muted:#54657c;
}

body{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-head .muted,
.microcopy,
.proofline,
.sample-note,
.fineprint,
.footer p.muted,
.footer a,
.mobile-sticky-text,
.nav-panel a small,
.brand-sub,
.muted.small,
.price .muted.small,
.card .muted.small{
  color: rgba(51,65,85,.82);
}

.card p,
.faq details p,
details p,
.mini-card ul,
.check li,
.checklist li,
.price ul,
.footer-brand + p,
.lead,
.deliverable-body,
.smart-item p,
.v,
.method-step p{
  color: rgba(30,41,59,.82);
}

.section-head{margin-bottom:24px;}
.section-head .muted{
  font-size:15px;
  line-height:1.6;
  max-width: 72ch;
  margin-inline:auto;
}

.hero{padding:48px 0 8px;}
.hero-grid{
  grid-template-columns: 1.12fr .88fr;
  gap:22px;
  align-items:start;
}
.hero h1{max-width:12ch;}
.lead{font-size:16.5px; line-height:1.68;}
.offer{padding:14px 16px;}
.hero-offer-copy{
  font-size:13.5px;
  line-height:1.55;
  color: rgba(51,65,85,.84);
  max-width: 62ch;
}
.offer-kicker,
.offer-price small,
.offer-note,
.offer-deal span,
.offer-sub,
.shot-label,
.shot-caption .muted{
  color: rgba(51,65,85,.78);
}

.shot{
  background: rgba(255,255,255,.9);
}
.shot-caption{
  padding:10px 14px 2px 14px;
  align-items:center;
}
.cap-action{
  margin-left:0;
  background: rgba(255,159,95,.12);
  border:1px solid rgba(255,159,95,.22);
  color: rgba(146,64,14,.95);
  box-shadow: none;
}
.shot-body{
  grid-template-columns: 1.35fr .65fr;
  gap:12px;
}
.mini-card{
  padding:14px;
  background: rgba(255,255,255,.96);
}
.chip,
.logo-pill,
.perk,
.badge,
.badge.ghost,
.included,
.kpi,
.trust-pill,
.cap-pill,
.smart-badge{
  color: rgba(15,23,42,.86);
  border-color: rgba(15,23,42,.10);
}
.chip,
.logo-pill,
.kpi,
.trust-pill,
.smart-badge{
  background: rgba(255,255,255,.86);
}
.badge,
.cap-pill,
.included{
  background: linear-gradient(90deg, rgba(47,179,168,.14), rgba(255,159,95,.12));
}

.practice-grid{
  grid-template-columns: 1.16fr .92fr .92fr;
  gap:14px;
}
.practice-grid .card{padding:16px 16px 18px;}
.practice-grid h3{margin-top:0; margin-bottom:10px;}
.sample-block{
  margin-top:10px;
  padding:13px 14px;
  line-height:1.6;
}
.practice-grid .checklist li{
  margin:8px 0;
  line-height:1.5;
}
.practice-grid .btn.ghost{
  border-color: rgba(15,23,42,.10);
  background: rgba(255,255,255,.96);
}

.compare-cta{margin-top:18px;}
.compare-cta .btn{
  min-width: 140px;
}

.card.review h3{margin-top:0;}
.card.review .muted.small{font-size:12.5px;}
.reviews-cta{
  grid-column: 1 / -1;
  margin-top:2px;
}
.reviews-cta .card{
  padding:0;
  box-shadow:none;
  border:none;
  background:transparent;
}
.reviews-cta-inner{
  padding:18px 20px;
  border-radius:20px;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(90deg, rgba(47,179,168,.12), rgba(255,159,95,.10));
  box-shadow: var(--shadow-sm);
}
.reviews-cta-inner h3{margin:0;}
.reviews-cta-actions{justify-content:flex-end;}

.price .amount span{font-size:36px;}
.price-summary{
  margin-top:10px;
  font-size:13px;
  line-height:1.55;
  color: rgba(51,65,85,.84);
}
.price-note{
  font-size:13px;
  line-height:1.5;
  color: rgba(51,65,85,.82);
}
.fineprint{
  font-size:13px;
  line-height:1.5;
}

#pages-piliers .section-head{margin-bottom:20px;}
.resources-grid{gap:14px;}
.resource-card{
  position:relative;
  padding:18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.resource-card h3{margin:0 0 8px 0;}
.resource-card p{
  margin:0;
  min-height:72px;
}
.resource-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:13px;
  font-weight:900;
  color: rgba(15,23,42,.88);
}
.resource-link::after{
  content:"→";
  opacity:.72;
}
.resource-card:hover .resource-link::after{
  transform: translateX(2px);
}

#pages-piliers{
  padding-top:44px;
}
#pages-piliers .cards.three{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.footer h4,
.mlabel,
.offer-kicker{
  color: rgba(51,65,85,.78);
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:18px;}
  .hero h1{max-width:none;}
  .shot-body{grid-template-columns:1fr;}
  #pages-piliers .cards.three{grid-template-columns:1fr;}
}


/* V27 hero + facts micro-polish */
.hero-copy{padding-right:4px;}
.hero-media{padding-top:12px; margin-left:-4px;}
.pill{font-size:13px;font-weight:950;padding:9px 12px;margin-bottom:14px;box-shadow:0 8px 22px rgba(2,6,23,.04);}
.hero-grid{grid-template-columns:1.16fr .84fr;gap:18px;align-items:start;}
.hero h1{max-width:11.6ch;}
.lead{font-size:16.75px;line-height:1.7;max-width:60ch;}
.offer-row{margin-top:12px;gap:10px;max-width:660px;}
.offer{padding:15px 16px 14px;border-radius:20px;}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px;align-items:center;}
.hero-offer-copy{margin-top:10px;max-width:54ch;font-size:13.75px;line-height:1.62;color:rgba(51,65,85,.88);}
.offer-kicker{font-size:12.5px;letter-spacing:.09em;color:rgba(51,65,85,.82);}
.shot-caption{padding:10px 14px 0 14px;}
.shot-label{font-size:13px;font-weight:850;color:rgba(51,65,85,.82);}
.cap-action{font-weight:850;padding:10px 12px;}
.shot-body{grid-template-columns:1.42fr .58fr;gap:10px;}
.mini-card ul li{line-height:1.55;}
.facts-grid-home{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.fact-card{padding:20px 20px 18px;}
.fact-card.is-key{background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(250,252,255,.94));border-color:rgba(47,179,168,.16);box-shadow:0 18px 38px rgba(2,6,23,.06);}
.fact-kicker{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;background:rgba(47,179,168,.10);border:1px solid rgba(47,179,168,.18);font-size:12px;font-weight:950;letter-spacing:.04em;color:rgba(15,23,42,.78);margin-bottom:12px;}
.fact-card h3{margin:0 0 12px 0;font-size:20px;line-height:1.18;letter-spacing:-.02em;}
.fact-card ul{padding-left:0;list-style:none;display:grid;gap:10px;line-height:1.72;color:rgba(30,41,59,.84);}
.fact-card ul li{position:relative;padding-left:24px;margin:0;}
.fact-card ul li::before{content:"";position:absolute;left:0;top:.72em;width:8px;height:8px;border-radius:999px;background:linear-gradient(135deg, rgba(47,179,168,.95), rgba(255,159,95,.9));transform:translateY(-50%);box-shadow:0 0 0 4px rgba(47,179,168,.10);}
.fact-card ul li strong{color:rgba(15,23,42,.92);font-weight:900;}
@media (max-width: 980px){
  .hero-media{padding-top:4px;margin-left:0;}
  .facts-grid-home{grid-template-columns:1fr;}
  .hero-offer-copy{max-width:none;}
}


/* V28 product + practice micro-polish */
.product-steps{
  gap:16px;
  align-items:stretch;
}
.product-step{
  min-height: 168px;
  padding:20px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.94));
  border-color: rgba(15,23,42,.08);
  box-shadow: 0 14px 34px rgba(15,23,42,.045);
}
.product-step .icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(47,179,168,.12), rgba(255,159,95,.10));
  border:1px solid rgba(47,179,168,.14);
  margin-bottom:6px;
}
.product-step h3{
  margin:4px 0 8px 0;
  font-size:17px;
}
.product-step p{
  color: rgba(30,41,59,.86);
  line-height:1.68;
  font-weight:650;
  max-width: 34ch;
}
.product-split{
  margin-top:20px;
  gap:16px;
}
.product-panel{
  padding:20px 20px 18px;
  min-height: 100%;
}
.panel-kicker{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(47,179,168,.10);
  border:1px solid rgba(47,179,168,.16);
  color: rgba(15,23,42,.72);
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
}
.panel-intro{
  margin-top:8px;
  font-size:14.5px;
  line-height:1.62;
  max-width: 52ch;
}
.product-checklist li{
  color: rgba(15,23,42,.84);
}
.deliverables-polished{
  gap:12px;
  margin-top:16px;
}
.deliverable-row{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.72);
}
.deliverable-head{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.deliverable-state{
  color: rgba(15,23,42,.72);
  font-weight:900;
  letter-spacing:-0.01em;
}
.deliverable-copy{
  margin-top:8px;
  color: rgba(30,41,59,.84);
  line-height:1.58;
  font-weight:650;
}
#pratique{
  padding-top: 74px;
  padding-bottom: 78px;
}
#pratique .section-head{
  margin-bottom: 26px;
}
#pratique .section-head .muted{
  max-width: 68ch;
}
.practice-grid{
  gap:16px;
  align-items:stretch;
}
.practice-card{
  min-height: 100%;
  padding:18px 18px 20px;
}
.practice-kicker{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.08);
  color: rgba(51,65,85,.78);
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
}
.practice-card h3{
  margin-top:0;
  margin-bottom:10px;
}
.practice-card-source{
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
}
.practice-card-validation{
  border-color: rgba(47,179,168,.18);
  box-shadow: 0 18px 38px rgba(47,179,168,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,253,250,.94));
}
.practice-card-validation .practice-kicker{
  background: rgba(47,179,168,.12);
  border-color: rgba(47,179,168,.18);
}
.practice-card .checklist{
  margin-top:12px;
}
.practice-card .checklist li{
  color: rgba(30,41,59,.82);
  line-height:1.58;
}
.sample-note{
  margin-top:14px;
  line-height:1.55;
}
.method-btn{
  padding:11px 14px;
  border-color: rgba(47,179,168,.22) !important;
  background: rgba(255,255,255,.98) !important;
  color: rgba(15,23,42,.88);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
.method-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,179,168,.34) !important;
}
@media (max-width: 920px){
  .product-step{
    min-height:auto;
  }
  .product-step p,
  .panel-intro{
    max-width:none;
  }
  .product-split{
    gap:14px;
  }
  #pratique{
    padding-top: 66px;
    padding-bottom: 68px;
  }
}


/* V29 polish — comparatif + confiance */
.compare{
  gap:20px;
}
.compare-col{
  padding:20px 20px 18px;
}
.compare-col-manu{
  border-color: rgba(47,179,168,.24);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,253,250,.92));
  box-shadow: 0 20px 42px rgba(47,179,168,.10);
}
.compare-col-generic{
  background: linear-gradient(180deg, rgba(248,250,252,.96), rgba(241,245,249,.92));
  border-color: rgba(148,163,184,.20);
  box-shadow: 0 14px 30px rgba(15,23,42,.04);
}
.compare-top{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
}
.compare-top h3{
  margin:0;
  font-size:24px;
  line-height:1.15;
  letter-spacing:-0.02em;
}
.compare-col-generic h3{
  color: rgba(51,65,85,.88);
}
.compare-list{
  gap:12px;
  color: rgba(51,65,85,.84);
}
.compare-list li{
  gap:12px;
  line-height:1.58;
}
.compare-list strong{
  color: rgba(15,23,42,.92);
}
.compare-list-generic li{
  color: rgba(71,85,105,.88);
}
.compare-col-generic .dot{
  border-color: rgba(148,163,184,.28);
  background: rgba(148,163,184,.10);
}
.compare-cta{
  margin-top:18px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.08);
  background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(248,250,252,.96));
  box-shadow: var(--shadow-sm);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.compare-cta-copy{
  max-width: 48ch;
  font-size:14px;
  line-height:1.55;
  color: rgba(51,65,85,.84);
  font-weight:700;
}
.compare-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.trust-home{
  position:relative;
}
.trust-home::before{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(47,179,168,.08), transparent 52%);
  pointer-events:none;
}
.trust-home .container{
  position:relative;
}
.trust-proofline{
  color: rgba(15,23,42,.86);
  font-weight:900;
}
.trust-cards{
  align-items:stretch;
}
.trust-card{
  border-color: rgba(15,23,42,.08);
}
.trust-card-strong{
  border-color: rgba(47,179,168,.22);
  box-shadow: 0 18px 36px rgba(47,179,168,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,253,250,.94));
}
.trust-card-strong strong{
  color: rgba(15,23,42,.92);
}
@media (max-width: 900px){
  .compare-cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .compare-cta-actions{
    width:100%;
  }
}


/* V30 polish — cas d’usage + témoignages */
.case-grid{
  align-items: stretch;
}
.case-card{
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.case-kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.08);
  color: rgba(51,65,85,.84);
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}
.case-card h3{
  margin:0 0 8px 0;
}
.case-lead{
  margin:0;
  color: rgba(15,23,42,.88);
  font-weight:700;
  line-height:1.58;
}
.case-stack{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}
.case-line{
  padding-top:10px;
  border-top:1px solid rgba(15,23,42,.07);
}
.case-label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
  color: rgba(15,23,42,.64);
  margin-bottom:6px;
}
.case-line p{
  margin:0;
  line-height:1.58;
}
#cas-usages .section-head .muted{
  max-width: 64ch;
}
.reviews-grid{
  align-items: stretch;
}
.reviews-grid .card.review{
  min-height: 100%;
}
.reviews-band{
  margin-top:18px;
}
.reviews-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  border-radius:22px;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(90deg, rgba(47,179,168,.11), rgba(255,159,95,.10));
  box-shadow: var(--shadow-sm);
}
.reviews-band-copy{
  max-width: 58ch;
}
.reviews-band-copy h3{
  margin:0;
  font-size:18px;
}
.reviews-band-copy .muted{
  margin-top:8px;
  line-height:1.68;
  font-weight:700;
}
.reviews-band-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
@media (max-width: 860px){
  .reviews-band-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .reviews-band-actions{
    justify-content:flex-start;
  }
}


/* V31 sécurité + tarifs polish */
.security-home-grid,
#principes .cards.three,
#trust-cabinet .cards.three{
  align-items:stretch;
}
.security-home-grid .card,
#principes .cards.three > .card,
#trust-cabinet .cards.three > .card,
#mesures .cards.three > .card{
  height:100%;
}
.security-home-grid .card,
#principes .card,
#trust-cabinet .card,
#badges .card{
  box-shadow: var(--shadow-sm);
}
.security-home-grid .icon,
#principes .icon,
#trust-cabinet .icon,
#mesures .icon,
#badges .icon{
  width:48px;
  height:48px;
  border-radius:18px;
  font-size:22px;
  box-shadow: 0 14px 28px rgba(15,23,42,.08);
}
.security-home-grid p,
#principes p.muted,
#trust-cabinet p.muted,
#badges p.muted,
#securite .section-head .muted,
#badges .muted.small,
#trust-cabinet .muted.small{
  color: rgba(30,41,59,.84);
}
#badges .offer-badges{
  gap:12px;
}
#badges .kpi,
#dataflow .kpi,
#trust-cabinet .kpi{
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.9);
  border-color: rgba(15,23,42,.12);
}
#principes .card h3,
#trust-cabinet .card h3,
.security-home-grid h3{
  margin-top:12px;
}

.pricing-polish .price{
  min-height:100%;
}
.pricing-polish .price h3{
  font-size:18px;
}
.pricing-polish .amount{
  margin-top:10px;
}
.pricing-polish .amount span{
  font-size:38px;
}
.price-clarity{
  margin-top:14px;
  display:grid;
  gap:8px;
  padding:12px 13px;
  border-radius:16px;
  background: rgba(248,250,252,.88);
  border:1px solid rgba(15,23,42,.08);
}
.price-clarity-compact{
  margin-bottom:4px;
}
.price-line{
  display:grid;
  grid-template-columns: 86px 1fr;
  gap:10px;
  align-items:start;
}
.price-line .label{
  font-size:11px;
  line-height:1.2;
  font-weight:950;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: rgba(100,116,139,.95);
}
.price-line .value{
  font-size:13.5px;
  line-height:1.55;
  font-weight:750;
  color: rgba(15,23,42,.86);
}
.pricing-subnote{
  font-size:13px;
  line-height:1.55;
  color: rgba(51,65,85,.86);
}
.pricing-polish .price-summary{
  font-size:14px;
  line-height:1.65;
  color: rgba(30,41,59,.88);
}
.pricing-polish .price-note{
  font-size:13.5px;
  line-height:1.55;
  color: rgba(51,65,85,.88);
}
.pricing-polish .included{
  display:none;
}
.pricing-polish .price-perks{
  margin:10px 0 12px 0;
}
.pricing-polish .perk{
  background: rgba(255,255,255,.88);
  border-color: rgba(15,23,42,.10);
  color: rgba(15,23,42,.86);
}
#prix .fineprint,
#tarifs + #comparatif .section-head .muted,
#tarifs .section-head .muted,
#prix .section-head .muted{
  color: rgba(30,41,59,.84);
}
@media (max-width: 760px){
  .price-line{
    grid-template-columns: 1fr;
    gap:4px;
  }
  .price-line .label{
    font-size:10.5px;
  }
  .pricing-polish .amount span{
    font-size:35px;
  }
}


/* V32 resources polish */
.resources-lite{padding-top:34px; padding-bottom:40px;}
.resources-head{max-width:760px; margin-inline:auto; text-align:center;}
.resources-grid-lite{grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:14px; max-width:920px; margin:0 auto;}
.resources-grid-lite .resource-card{padding:18px 18px 16px;}
.resources-grid-lite .resource-card h3{font-size:18px; margin-bottom:8px;}
.resources-grid-lite .resource-card p{min-height:auto; line-height:1.62;}
.resources-cta{display:flex; justify-content:center; margin-top:18px;}
.resources-cta .btn{min-width:220px;}
@media (max-width: 980px){
  .resources-grid-lite{grid-template-columns:1fr !important;}
  .resources-head{text-align:left;}
  .resources-cta{justify-content:flex-start;}
}


/* ===== Team section ===== */
.team-section-head{
  max-width: 980px;
}
.team-intro{
  max-width: 860px;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.7;
}
.team-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.team-grid-home{
  margin-top: 6px;
}
.team-card{
  grid-column: span 6;
  display:flex;
  gap: 18px;
  align-items:flex-start;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82)),
    radial-gradient(circle at top left, rgba(47,179,168,.08), transparent 42%);
  box-shadow: var(--shadow-sm);
}
.team-card-featured{
  grid-column: span 12;
  background:
    linear-gradient(135deg, rgba(47,179,168,.12), rgba(255,159,95,.12)),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
}
.team-photo{
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(246,249,250,.84));
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  overflow: hidden;
}
.team-card-featured .team-photo{
  width: 122px;
  height: 122px;
  flex-basis: 122px;
  border-radius: 34px;
}
.team-photo img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
}
.team-copy{
  min-width: 0;
}
.team-meta{
  margin: 2px 0 8px 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.team-card h3{
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 1.15;
}
.team-card p{
  margin: 0;
  color: rgba(15,23,42,.76);
  line-height: 1.68;
}
.team-card p + p{
  margin-top: 12px;
}
.team-cta-row{
  display:flex;
  justify-content:center;
  margin-top: 20px;
}
@media (max-width: 980px){
  .team-card,
  .team-card-featured{
    grid-column: span 12;
  }
}
@media (max-width: 720px){
  .team-card{
    padding: 18px;
    gap: 14px;
    border-radius: 20px;
  }
  .team-photo{
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    border-radius: 22px;
  }
  .team-card-featured .team-photo{
    width: 96px;
    height: 96px;
    flex-basis: 96px;
    border-radius: 26px;
  }
  .team-card h3{
    font-size: 21px;
  }
  .team-intro{
    font-size: 16px;
  }
}
@media (max-width: 560px){
  .team-card{
    flex-direction: column;
  }
  .team-photo,
  .team-card-featured .team-photo{
    width: 92px;
    height: 92px;
    flex-basis: 92px;
    border-radius: 28px;
  }
}
