/* landing.css — Refonte TonAuditLinkedIn, design system scopé sous .lp (généré). */
:root {
  
  --lp-brand: #0A66C2;          
  --lp-brand-700: #004182;       
  --lp-royal: #2D6FF0;           
  --lp-royal-bright: #3B82F6;
  --lp-sky: #E8F1FD;             
  --lp-sky-2: #F3F8FF;

  --lp-ink: #0B1B30;             
  --lp-ink-2: #3E5168;           
  --lp-ink-3: #6B7C92;           
  --lp-line: #E2E9F2;            
  --lp-line-soft: #EEF3F9;

  --lp-bg: #FFFFFF;
  --lp-bg-tint: #F4F8FD;         
  --lp-navy: #0A1A33;            
  --lp-navy-2: #0E2348;

  --lp-good: #1F9D6B;
  --lp-warn: #E8A13A;
  --lp-bad: #E5544B;

  --lp-grad-brand: linear-gradient(135deg, var(--lp-royal) 0%, var(--lp-brand) 55%, var(--lp-brand-700) 100%);
  --lp-grad-soft: linear-gradient(150deg, #FFFFFF 0%, #F3F8FF 100%);

  --lp-shadow-sm: 0 1px 2px rgba(10,27,48,.06), 0 2px 6px rgba(10,27,48,.05);
  --lp-shadow-md: 0 8px 24px -8px rgba(10,40,90,.18), 0 2px 8px rgba(10,27,48,.06);
  --lp-shadow-lg: 0 30px 60px -20px rgba(9,45,110,.28), 0 8px 24px -10px rgba(10,27,48,.12);
  --lp-shadow-blue: 0 16px 40px -12px rgba(10,102,194,.45);

  --lp-r-sm: 10px;
  --lp-r-md: 16px;
  --lp-r-lg: 22px;
  --lp-r-xl: 30px;

  --lp-maxw: 1180px;

  --lp-font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --lp-font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}
.lp, .lp * { box-sizing: border-box; }
.lp { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
.lp {
  margin: 0;
  font-family: var(--lp-font-body);
  color: var(--lp-ink);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
.lp img { max-width: 100%; display: block; }
.lp a { color: inherit; text-decoration: none; }
.lp button { font-family: inherit; cursor: pointer; border: none; background: none; }
.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: var(--lp-font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--lp-ink);
  text-wrap: balance;
}
.lp p { margin: 0; }
.lp .container { width: 100%; max-width: var(--lp-maxw); margin: 0 auto; padding: 0 28px; }
.lp .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lp-brand);
}
.lp .eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--lp-brand);
}
.lp .eyebrow.center::before { display: none; }
.lp .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 14px 22px; border-radius: 13px;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.lp .btn:active { transform: translateY(1px); }
.lp .btn-primary {
  color: #fff; background: var(--lp-grad-brand);
  box-shadow: var(--lp-shadow-blue);
}
.lp .btn-primary:hover { box-shadow: 0 20px 46px -10px rgba(10,102,194,.55); transform: translateY(-1px); }
.lp .btn-ghost {
  color: var(--lp-brand); background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--lp-line); 
}
.lp .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--lp-brand); background: var(--lp-sky-2); }
.lp .btn-lg { padding: 17px 28px; font-size: 16.5px; border-radius: 15px; }
.lp .btn-light {
  color: var(--lp-ink); background: rgba(255,255,255,.92);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.18);
}
.lp .btn svg { flex: none; }
.lp .pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 7px 13px 7px 9px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--lp-ink-2);
  background: #fff; box-shadow: inset 0 0 0 1px var(--lp-line);
}
.lp .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lp-good); }
.lp .pastille {
  display: grid; place-items: center; flex: none;
  width: 54px; height: 54px; border-radius: 16px;
  color: var(--lp-brand);
  background: linear-gradient(155deg, var(--lp-sky-2), var(--lp-sky));
  box-shadow: inset 0 0 0 1px rgba(10,102,194,.12), 0 6px 16px -8px rgba(10,102,194,.4);
  position: relative;
}
.lp .pastille.lg { width: 64px; height: 64px; border-radius: 19px; }
.lp .pastille.sm { width: 42px; height: 42px; border-radius: 12px; }
.lp .pastille.solid {
  color: #fff; background: var(--lp-grad-brand);
  box-shadow: 0 10px 22px -8px rgba(10,102,194,.6);
}
.lp .pastille.line {
  color: var(--lp-brand); background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--lp-line);
}
.lp .pastille.danger { color: var(--lp-bad); background: linear-gradient(155deg,#FFF1F0,#FFE3E1); box-shadow: inset 0 0 0 1px rgba(229,84,75,.14); }
.lp .card {
  background: #fff; border-radius: var(--lp-r-lg);
  box-shadow: inset 0 0 0 1px var(--lp-line), var(--lp-shadow-sm);
  padding: 28px;
}
.lp .card.hover { transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s; }
.lp .card.hover:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--lp-line), var(--lp-shadow-md); }
.lp section { position: relative; }
.lp .section-pad { padding: 92px 0; }
.lp .section-tint { background: var(--lp-bg-tint); }
.lp .section-head { max-width: 720px; }
.lp .section-head.center { margin: 0 auto; text-align: center; }
.lp .section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 16px; }
.lp .section-head p { margin-top: 16px; font-size: 18px; color: var(--lp-ink-2); line-height: 1.6; }
.lp .lead { font-size: 19px; color: var(--lp-ink-2); line-height: 1.62; }
.lp .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.lp .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
.lp .reveal { opacity: 1; transform: none; transition: none; }
.lp { scroll-behavior: auto; }
}
.lp .grid { display: grid; gap: 22px; }
.lp .cols-3 { grid-template-columns: repeat(3, 1fr); }
.lp .cols-2 { grid-template-columns: repeat(2, 1fr); }
.lp .cols-4 { grid-template-columns: repeat(4, 1fr); }
.lp .stack { display: flex; flex-direction: column; }
.lp .row { display: flex; align-items: center; }
.lp .muted { color: var(--lp-ink-3); }
@media (max-width: 920px) {
.lp .cols-3, .lp .cols-4 { grid-template-columns: 1fr 1fr; }
.lp .section-pad { padding: 64px 0; }
}
@media (max-width: 620px) {
.lp .cols-2, .lp .cols-3, .lp .cols-4 { grid-template-columns: 1fr; }
.lp .container { padding: 0 20px; }
}
.lp .nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--lp-line-soft);
}
.lp .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp .nav-links { display: flex; gap: 30px; }
.lp .nav-link { font-size: 15px; font-weight: 600; color: var(--lp-ink-2); transition: color .15s; }
.lp .nav-link:hover { color: var(--lp-brand); }
.lp .nav-cta { padding: 11px 18px; font-size: 14.5px; border-radius: 11px; }
@media (max-width: 860px) {
.lp .nav-links { display: none; }
}
.lp .nav-burger { display: none; width: 42px; height: 42px; border-radius: 11px; box-shadow: inset 0 0 0 1.5px var(--lp-line); background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.lp .nav-burger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--lp-ink); transition: transform .25s ease, opacity .2s ease; }
.lp .nav-drawer { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 20px; border-top: 1px solid var(--lp-line-soft); background: rgba(255,255,255,.97); backdrop-filter: saturate(1.4) blur(14px); }
.lp .nav-drawer .nav-link { padding: 11px 2px; font-size: 16px; border-bottom: 1px solid var(--lp-line-soft); }
@media (max-width: 860px) {
.lp .nav-burger { display: flex; }
.lp .nav-drawer.open { display: flex; }
}
@media (max-width: 520px) {
.lp .nav-cta { display: none; }
}
@media (max-width: 620px) {
.lp .heroA { padding: 36px 0 60px; }
.lp .heroA-visual { max-width: 358px; margin: 22px auto 0; }
.lp .chip-1 { top: -28px; left: -4px; }
.lp .chip-2 { bottom: -14px; right: -4px; }
.lp .report-left, .lp .report-right { padding: 22px; }
.lp .final-cta { padding: 48px 22px; }
.lp .price-card { padding: 26px; }
.lp .pricing-grid { gap: 16px; }
.lp .footer-bottom { flex-direction: column; gap: 6px; }
.lp .ba-body { padding: 0 18px 22px; }
.lp .ba-banner { height: 94px; padding: 14px 18px; }
.lp .ba-banner .tag { font-size: 15px; max-width: 82%; }
.lp .ba-avatar { width: 60px; height: 60px; font-size: 19px; }
.lp .ba-profilerow { margin-top: 14px; }
.lp .ba-score-num { font-size: 32px; }
}
.lp .heroA { position: relative; overflow: hidden; padding: 64px 0 96px; background: var(--lp-grad-soft); }
.lp .heroA-glow {
  position: absolute; top: -180px; right: -160px; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(45,111,240,.18), transparent 62%);
  pointer-events: none;
}
.lp .heroA-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.lp .heroA h1 .hl { color: var(--lp-brand); position: relative; white-space: nowrap; }
.lp .heroA h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; z-index: -1;
  background: linear-gradient(90deg, rgba(45,111,240,.22), rgba(10,102,194,.18)); border-radius: 6px;
}
.lp .heroA-visual { position: relative; }
@media (max-width: 920px) {
.lp .heroA-grid { grid-template-columns: 1fr; gap: 44px; }
.lp .heroA h1 .hl { white-space: normal; }
}
.lp .scorecard {
  background: #fff; border-radius: var(--lp-r-lg); padding: 22px;
  box-shadow: var(--lp-shadow-lg), inset 0 0 0 1px var(--lp-line);
  position: relative; z-index: 2;
}
.lp .scorecard.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
.lp .scorecard.floaty { animation: none; }
}
.lp .chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--lp-shadow-md), inset 0 0 0 1px var(--lp-line); z-index: 3;
}
.lp .chip div { display: flex; flex-direction: column; line-height: 1.1; }
.lp .chip b { font-size: 16px; font-family: var(--lp-font-display); }
.lp .chip span { font-size: 11.5px; color: var(--lp-ink-3); }
.lp .chip-1 { top: -46px; left: -16px; animation: floaty 7s ease-in-out infinite; }
.lp .chip-2 { bottom: -20px; right: -18px; animation: floaty 6.5s ease-in-out infinite .6s; }
@media (max-width: 520px) {
.lp .chip-1 { left: -8px; }
.lp .chip-2 { right: -2px; }
}
@media (prefers-reduced-motion: reduce) {
.lp .chip { animation: none !important; }
}
.lp .heroB { position: relative; overflow: hidden; background: var(--lp-navy); color: #fff; padding: 70px 0 110px; }
.lp .heroB-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(closest-side at 22% 18%, rgba(45,111,240,.42), transparent 70%),
    radial-gradient(closest-side at 80% 30%, rgba(91,91,214,.32), transparent 70%),
    radial-gradient(closest-side at 60% 90%, rgba(10,102,194,.34), transparent 70%);
}
.lp .heroB-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}
.lp .heroB-top { text-align: center; max-width: 760px; margin: 0 auto; position: relative; }
.lp .heroB-title { color: #fff; font-size: clamp(40px, 6vw, 76px); letter-spacing: -0.03em; }
.lp .heroB-lead { color: rgba(255,255,255,.74); font-size: 19px; line-height: 1.6; max-width: 540px; margin: 22px auto 0; }
.lp .pill-dark { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.lp .heroB-stage { position: relative; margin: 64px auto 0; width: 520px; max-width: 100%; }
.lp .heroB-ringwrap {
  width: 280px; height: 280px; margin: 0 auto; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at center, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 30px 80px -20px rgba(45,111,240,.6);
}
.lp .heroB-ringwrap .reveal, .lp .heroB-ringwrap > div { color: #fff; }
.lp .heroB-ringwrap [style*="--lp-ink"] { }
.lp .heroB-stage .glasscard {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.07); backdrop-filter: blur(16px);
  border-radius: 14px; padding: 11px 15px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  color: #fff;
}
.lp .glasscard div { display: flex; flex-direction: column; line-height: 1.15; }
.lp .glasscard b { font-size: 14.5px; }
.lp .glasscard span { font-size: 12px; color: rgba(255,255,255,.6); }
.lp .gc-1 { top: 0; left: -10px; animation: floaty 7s ease-in-out infinite; }
.lp .gc-2 { top: 188px; right: -42px; animation: floaty 6.4s ease-in-out infinite .5s; }
.lp .gc-3 { bottom: -6px; left: 38px; animation: floaty 6.8s ease-in-out infinite .9s; }
@media (max-width: 760px) {
.lp .gc-1 {left:-8px; top:-14px}
.lp .gc-2 {right:-8px}
.lp .gc-3 {left:-4px; bottom:-10px}
}
@media (prefers-reduced-motion: reduce) {
.lp .glasscard { animation: none !important; }
}
.lp .heroB .heroB-ringwrap { --lp-ink: #fff; --lp-ink-3: rgba(255,255,255,.6); --lp-line: rgba(255,255,255,.14); }
.lp .how-grid { position: relative; }
.lp .how-step { position: relative; }
.lp .how-num { font-family: var(--lp-font-display); font-weight: 700; font-size: 30px; color: var(--lp-line); letter-spacing: -0.02em; }
.lp .how-connector {
  position: absolute; top: 32px; left: 64px; right: -22px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--lp-line) 0 6px, transparent 6px 12px);
}
.lp .how-step:last-child .how-connector { display: none; }
@media (max-width: 920px) {
.lp .how-connector { display: none; }
}
.lp .report-shell {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  background: #fff; border-radius: var(--lp-r-xl); overflow: hidden;
  box-shadow: var(--lp-shadow-lg), inset 0 0 0 1px var(--lp-line);
}
.lp .report-left { padding: 34px; }
.lp .report-right { padding: 34px; background: var(--lp-bg-tint); border-left: 1px solid var(--lp-line); }
.lp .action-row {
  display: flex; align-items: flex-start; gap: 13px; background: #fff;
  border-radius: 14px; padding: 13px 15px; box-shadow: inset 0 0 0 1px var(--lp-line);
  transition: transform .15s, box-shadow .15s;
}
.lp .action-row:hover { transform: translateX(3px); box-shadow: inset 0 0 0 1px var(--lp-brand); }
.lp .sev { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; flex: none; font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 99px; }
.lp .sev-bad { color: #C0392B; background: #FDECEA; }
.lp .sev-warn { color: #B9791F; background: #FCF3E2; }
.lp .sev-good { color: #157F55; background: #E6F7EF; }
@media (max-width: 860px) {
.lp .report-shell { grid-template-columns: 1fr; }
.lp .report-right { border-left: none; border-top: 1px solid var(--lp-line); }
}
.lp .ba-wrap { max-width: 720px; margin: 0 auto; }
.lp .ba-toggle { position: relative; display: inline-flex; background: #fff; border-radius: 99px; padding: 5px; box-shadow: inset 0 0 0 1px var(--lp-line); margin: 0 auto 24px; display: flex; width: 240px; }
.lp .ba-toggle button { flex: 1; position: relative; z-index: 2; padding: 10px 0; font-weight: 700; font-size: 15px; color: var(--lp-ink-3); border-radius: 99px; }
.lp .ba-toggle button.on { color: #fff; }
.lp .ba-thumb { position: absolute; top: 5px; left: 5px; width: calc(50% - 5px); height: calc(100% - 10px); border-radius: 99px; background: var(--lp-grad-brand); z-index: 1; }
.lp .ba-card { background: #fff; border-radius: var(--lp-r-lg); padding: 0; overflow: hidden; box-shadow: var(--lp-shadow-md), inset 0 0 0 1px var(--lp-line); transition: box-shadow .3s; }
.lp .ba-card.is-after { box-shadow: var(--lp-shadow-lg), inset 0 0 0 1.5px var(--lp-good); }
.lp .ba-card.is-before { box-shadow: var(--lp-shadow-md), inset 0 0 0 1.5px #F0C0BB; }
.lp .ba-banner { height: 116px; display: flex; align-items: flex-start; justify-content: flex-end; padding: 16px 22px; transition: background .3s; }
.lp .ba-banner.before { background: repeating-linear-gradient(135deg, #EDF1F6 0 13px, #E6EBF2 13px 26px); }
.lp .ba-banner.after { background: linear-gradient(118deg, var(--lp-brand-700), var(--lp-brand) 58%, var(--lp-royal)); }
.lp .ba-banner .tag { color: #fff; font-family: var(--lp-font-display); font-weight: 700; font-size: 17px; line-height: 1.2; max-width: 72%; text-align: right; letter-spacing: -0.01em; text-shadow: 0 1px 10px rgba(4,20,50,.25); }
.lp .ba-banner .empty { display: inline-flex; align-items: center; gap: 7px; color: var(--lp-ink-3); font-size: 13px; font-weight: 600; background: rgba(255,255,255,.7); padding: 5px 11px; border-radius: 8px; }
.lp .ba-body { padding: 0 24px 26px; animation: fadein .4s ease; }
.lp .ba-profilerow { display: flex; align-items: center; gap: 15px; margin-top: 16px; }
.lp .ba-avatar { width: 72px; height: 72px; border-radius: 50%; flex: none; background: linear-gradient(150deg,#0A66C2,#5B5BD6); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 23px; box-shadow: var(--lp-shadow-sm); }
.lp .ba-namebox { flex: 1; min-width: 0; padding-bottom: 2px; }
.lp .ba-name { font-family: var(--lp-font-display); font-weight: 700; font-size: 20px; }
.lp .ba-title { font-size: 14.5px; color: var(--lp-ink-2); margin-top: 3px; line-height: 1.4; }
.lp .ba-score { text-align: center; flex: none; padding-bottom: 2px; }
.lp .ba-score-num { font-family: var(--lp-font-display); font-weight: 700; font-size: 38px; line-height: 1; transition: color .3s; }
.lp .ba-score-num.good { color: var(--lp-good); }
.lp .ba-score-num.bad { color: var(--lp-bad); }
.lp .ba-score-lbl { font-size: 12px; color: var(--lp-ink-3); }
.lp .ba-section { padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--lp-line); }
.lp .ba-sec-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.lp .ba-sec-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--lp-ink-3); white-space: nowrap; }
.lp .ba-text { font-size: 15px; line-height: 1.6; color: var(--lp-ink-2); }
.lp .ba-exp { display: flex; gap: 13px; }
.lp .ba-exp-logo { width: 44px; height: 44px; border-radius: 11px; flex: none; background: var(--lp-sky); color: var(--lp-brand); display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(10,102,194,.12); }
.lp .ba-exp-role { font-weight: 700; font-size: 15.5px; color: var(--lp-ink); }
.lp .ba-exp-org { font-size: 13px; color: var(--lp-ink-3); margin-top: 1px; }
.lp .ba-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.lp .ba-skill { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; padding: 7px 12px; border-radius: 9px; background: var(--lp-sky-2); box-shadow: inset 0 0 0 1px var(--lp-line); font-size: 13.5px; font-weight: 600; color: var(--lp-ink-2); }
.lp .ba-skill b { color: var(--lp-brand); font-weight: 700; font-size: 12px; }
.lp .ba-mini { display: flex; align-items: center; gap: 12px; }
.lp .ba-mini > div { display: flex; flex-direction: column; line-height: 1.3; }
.lp .ba-mini b { font-size: 14.5px; color: var(--lp-ink); }
.lp .ba-mini span { font-size: 13px; color: var(--lp-ink-3); }
.lp .ba-reco-count { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--lp-good); }
@keyframes fadein { from { opacity: 0; transform: translateY(5px);} to { opacity:1; transform:none; } }
.lp .stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: #fff; border-radius: var(--lp-r-lg); padding: 26px 30px;
  box-shadow: var(--lp-shadow-md), inset 0 0 0 1px var(--lp-line);
  margin-top: -40px; position: relative; z-index: 5;
}
.lp .stat-item { display: flex; align-items: center; gap: 14px; }
.lp .stat-item:not(:last-child) { border-right: 1px solid var(--lp-line-soft); }
@media (max-width: 760px) {
.lp .stats-band { grid-template-columns: 1fr 1fr; }
.lp .stat-item:nth-child(2n) { border-right: none; }
}
.lp .pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; max-width: 880px; margin-left: auto; margin-right: auto; align-items: stretch; }
.lp .price-card { background: #fff; border-radius: var(--lp-r-xl); padding: 32px; box-shadow: var(--lp-shadow-md), inset 0 0 0 1px var(--lp-line); position: relative; }
.lp .price-card.featured { background: var(--lp-navy); color: #fff; box-shadow: var(--lp-shadow-lg); overflow: hidden; }
.lp .price-card.featured::before { content:""; position:absolute; top:-120px; right:-120px; width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(45,111,240,.4), transparent 65%); }
.lp .price-kicker { font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--lp-brand); position: relative; }
.lp .price-amount { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 8px; position: relative; }
.lp .price-num { font-family: var(--lp-font-display); font-weight: 700; font-size: 52px; letter-spacing: -0.03em; }
.lp .price-per { font-size: 14px; color: var(--lp-ink-3); }
.lp .featured .price-per { color: rgba(255,255,255,.6); }
.lp .price-badge { position: absolute; top: 22px; right: 22px; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--lp-navy); background: #fff; padding: 5px 11px; border-radius: 99px; z-index: 2; }
.lp .feat { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.lp .feat li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--lp-ink-2); }
.lp .feat-dark li { color: rgba(255,255,255,.82); position: relative; }
.lp .feat-check { flex: none; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: var(--lp-sky); color: var(--lp-brand); margin-top: 1px; }
.lp .feat-check.solid { background: rgba(255,255,255,.16); color: #fff; }
.lp .guarantee { display: flex; align-items: center; gap: 9px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.82); font-size: 14px; font-weight: 600; position: relative; }
@media (max-width: 720px) {
.lp .pricing-grid { grid-template-columns: 1fr; }
}
.lp .faq-item { background: #fff; border-radius: var(--lp-r-md); box-shadow: inset 0 0 0 1px var(--lp-line); overflow: hidden; transition: box-shadow .2s; }
.lp .faq-item.open { box-shadow: inset 0 0 0 1.5px var(--lp-brand), var(--lp-shadow-sm); }
.lp .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--lp-font-display); font-weight: 600; font-size: 17.5px; color: var(--lp-ink); }
.lp .faq-ico { color: var(--lp-brand); transition: transform .25s; flex: none; }
.lp .faq-item.open .faq-ico { transform: rotate(180deg); }
.lp .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.lp .faq-item.open .faq-a { grid-template-rows: 1fr; }
.lp .faq-a-inner { overflow: hidden; padding: 0 24px; color: var(--lp-ink-2); font-size: 15.5px; line-height: 1.65; }
.lp .faq-item.open .faq-a-inner { padding-bottom: 22px; }
.lp .final-cta { position: relative; overflow: hidden; background: var(--lp-navy); border-radius: var(--lp-r-xl); padding: 72px 40px; text-align: center; }
.lp .final-mesh { position: absolute; inset: 0; background:
  radial-gradient(closest-side at 20% 20%, rgba(45,111,240,.4), transparent 70%),
  radial-gradient(closest-side at 85% 80%, rgba(91,91,214,.35), transparent 70%); }
.lp .footer { background: var(--lp-navy); color: #fff; padding: 64px 0 32px; }
.lp .footer-top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.lp .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp .footer-h { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.lp .footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.lp .footer-cols a { font-size: 14.5px; color: rgba(255,255,255,.8); transition: color .15s; }
.lp .footer-cols a:hover { color: #fff; }
.lp .footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; font-size: 13px; color: rgba(255,255,255,.6); }
@media (max-width: 760px) {
.lp .footer-top { grid-template-columns: 1fr; }
.lp .footer-cols { grid-template-columns: 1fr 1fr; }
}
.lp .icons-line .pastille:not(.solid):not(.danger) { background: #fff; color: var(--lp-brand); box-shadow: inset 0 0 0 1.5px var(--lp-line); }
.lp .icons-solid .pastille:not(.danger) { background: var(--lp-grad-brand); color: #fff; box-shadow: 0 10px 22px -8px rgba(10,102,194,.6); }

/* Masquer le chrome global (header/footer statiques) sur la landing refonte */
body.on-landing > header.nav, body.on-landing > footer { display: none !important; }
body.on-landing { background: #fff; }
