/* ============================================================
 * Smooky landing v5 - Mode clair par defaut, sombre via [data-theme="dark"]
 * ============================================================ */

:root {
  --lp-bg: #ffffff;
  --lp-bg-2: #f5f6fa;
  --lp-bg-3: #eef0f7;
  --lp-surface: #ffffff;
  --lp-surface-2: #f5f6fa;
  --lp-border: #e3e6f0;
  --lp-border-strong: #d2d6e6;
  --lp-text: #14172a;
  --lp-text-muted: #565b73;
  --lp-text-dim: #888da6;
  --lp-primary: #5b6cff;
  --lp-primary-hover: #4a5dff;
  --lp-primary-soft: rgba(91, 108, 255, 0.08);
  --lp-success: #10b981;
  --lp-danger: #ef4444;
  --lp-radius: 14px;
  --lp-radius-sm: 8px;
  --lp-radius-lg: 22px;
  --lp-grad: linear-gradient(135deg, #5b6cff 0%, #a78bfa 50%, #ec4899 100%);
  --lp-shadow-sm: 0 1px 3px rgba(20, 23, 42, 0.06);
  --lp-shadow: 0 8px 30px rgba(20, 23, 42, 0.08);
  --lp-shadow-lg: 0 24px 70px rgba(20, 23, 42, 0.12);
  --lp-hero-bg: linear-gradient(180deg, #f5f6fa 0%, #ffffff 100%);
}

html[data-theme="dark"] {
  --lp-bg: #0a0b14;
  --lp-bg-2: #11131f;
  --lp-bg-3: #181a28;
  --lp-surface: #1a1d2e;
  --lp-surface-2: #21253a;
  --lp-border: #252840;
  --lp-border-strong: #2f3350;
  --lp-text: #e8e9f3;
  --lp-text-muted: #9ca0b8;
  --lp-text-dim: #6a6f88;
  --lp-primary: #6b7eff;
  --lp-primary-hover: #5b6cff;
  --lp-primary-soft: rgba(107, 126, 255, 0.12);
  --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --lp-shadow: 0 8px 30px rgba(0,0,0,0.3);
  --lp-shadow-lg: 0 24px 70px rgba(0,0,0,0.5);
  --lp-hero-bg: linear-gradient(180deg, #0a0b14 0%, #11131f 100%);
}

* { box-sizing: border-box; }

.lp-body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.lp-container-narrow { max-width: 1140px; }
.lp-container-faq { max-width: 820px; }

.lp-orb { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(90px); z-index: 0; opacity: 0.25; }
html[data-theme="dark"] .lp-orb { opacity: 0.4; }
.lp-orb-1 { width: 480px; height: 480px; background: #6b7eff; top: -160px; right: -120px; }
.lp-orb-2 { width: 420px; height: 420px; background: #ec4899; top: 380px; left: -160px; }

.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--lp-bg) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-header .lp-container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--lp-text); }
.lp-brand-mark { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, #6b7eff, #a78bfa); display: grid; place-items: center; color: #fff; }
.lp-brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.5px; }
.lp-nav { display: flex; gap: 28px; }
.lp-nav a { color: var(--lp-text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.15s; }
.lp-nav a:hover { color: var(--lp-text); }
.lp-header-actions { display: flex; align-items: center; gap: 12px; }
.lp-theme-toggle { width: 36px; height: 36px; border-radius: 50%; background: var(--lp-bg-2); border: 1px solid var(--lp-border); color: var(--lp-text-muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: color 0.15s, border-color 0.15s; }
.lp-theme-toggle:hover { color: var(--lp-text); border-color: var(--lp-border-strong); }
.lp-theme-toggle .lp-icon-sun { display: none; }
html[data-theme="dark"] .lp-theme-toggle .lp-icon-moon { display: none; }
html[data-theme="dark"] .lp-theme-toggle .lp-icon-sun { display: inline-flex; }

.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15px; border-radius: 100px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: transform 0.12s, box-shadow 0.15s, background 0.15s, border-color 0.15s; white-space: nowrap; }
.lp-btn-sm { padding: 8px 16px; font-size: 14px; }
.lp-btn-lg { padding: 14px 28px; font-size: 16px; }
.lp-btn-block { width: 100%; }
.lp-btn-primary { background: linear-gradient(135deg, #5b6cff, #ec4899); color: #fff; box-shadow: 0 6px 20px rgba(91, 108, 255, 0.3); }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(91, 108, 255, 0.4); }
.lp-btn-ghost { background: var(--lp-surface); color: var(--lp-text); border-color: var(--lp-border-strong); }
.lp-btn-ghost:hover { border-color: var(--lp-primary); color: var(--lp-primary); }

.lp-hero { position: relative; padding: 70px 0 80px; background: var(--lp-hero-bg); }
.lp-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.lp-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--lp-text-muted); margin-bottom: 22px; box-shadow: var(--lp-shadow-sm); }
.lp-flag { display: inline-flex; width: 18px; height: 12px; border-radius: 2px; overflow: hidden; }
.lp-flag span { flex: 1; }
.lp-flag span:nth-child(1) { background: #0055a4; }
.lp-flag span:nth-child(2) { background: #fff; }
.lp-flag span:nth-child(3) { background: #ef4135; }
.lp-hero h1 { font-size: 50px; font-weight: 800; line-height: 1.05; letter-spacing: -1.8px; margin: 0 0 20px; color: var(--lp-text); }
.lp-grad-anim { background: linear-gradient(135deg, #5b6cff 0%, #a78bfa 45%, #ec4899 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-triptyque { display: flex; gap: 20px; margin-bottom: 22px; padding: 12px 0; border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); }
.lp-triptyque span { font-size: 16px; font-weight: 700; color: var(--lp-text); letter-spacing: -0.3px; }
.lp-triptyque span::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, #6b7eff, #ec4899); margin-right: 8px; vertical-align: middle; }
.lp-hero-sub { font-size: 18px; color: var(--lp-text-muted); margin: 0 0 30px; max-width: 540px; }
.lp-hero-cta { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.lp-hero-perks { display: flex; gap: 24px; flex-wrap: wrap; }
.lp-hero-perks span { font-size: 13.5px; color: var(--lp-text-dim); }
.lp-hero-perks strong { color: var(--lp-text); font-weight: 700; }

.lp-hero-mock { position: relative; }
.lp-mock-card { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-lg); padding: 22px; box-shadow: var(--lp-shadow-lg); }
.lp-mock-header { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--lp-border); margin-bottom: 16px; }
.lp-mock-dots { display: flex; gap: 6px; }
.lp-mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.lp-mock-dots span:nth-child(1) { background: #ff5f56; }
.lp-mock-dots span:nth-child(2) { background: #ffbd2e; }
.lp-mock-dots span:nth-child(3) { background: #27c93f; }
.lp-mock-title { font-size: 14px; font-weight: 600; color: var(--lp-text); }
.lp-mock-player { display: flex; align-items: center; gap: 12px; background: var(--lp-bg-2); border-radius: var(--lp-radius-sm); padding: 12px 14px; margin-bottom: 16px; }
.lp-mock-play { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #6b7eff, #a78bfa); flex-shrink: 0; position: relative; }
.lp-mock-play::after { content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #fff; }
.lp-mock-wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 28px; }
.lp-mock-wave span { flex: 1; background: var(--lp-primary); border-radius: 2px; opacity: 0.5; animation: lp-wave 1.4s ease-in-out infinite; }
.lp-mock-wave span:nth-child(odd) { animation-delay: 0.2s; }
.lp-mock-wave span:nth-child(3n) { animation-delay: 0.4s; }
@keyframes lp-wave { 0%,100% { height: 30%; } 50% { height: 90%; } }
.lp-mock-time { font-size: 12px; color: var(--lp-text-dim); font-variant-numeric: tabular-nums; }
.lp-mock-section { margin-bottom: 16px; }
.lp-mock-section:last-child { margin-bottom: 0; }
.lp-mock-subhead { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lp-primary); margin-bottom: 10px; }
.lp-mock-line { height: 8px; border-radius: 4px; background: var(--lp-bg-3); margin-bottom: 7px; width: var(--w, 100%); }
.lp-mock-task { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lp-text-muted); padding: 5px 0; }
.lp-mock-check { width: 16px; height: 16px; border-radius: 4px; background: linear-gradient(135deg, #6b7eff, #a78bfa); flex-shrink: 0; position: relative; }
.lp-mock-check::after { content: ''; position: absolute; top: 3px; left: 5px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

.lp-section { padding: 72px 0; position: relative; }
.lp-section-alt { background: var(--lp-bg-2); }
.lp-section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.lp-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--lp-primary); margin-bottom: 14px; }
.lp-section-head h2 { font-size: 34px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin: 0 0 14px; color: var(--lp-text); }
.lp-grad { background: var(--lp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-section-sub { font-size: 17px; color: var(--lp-text-muted); margin: 0; }

.lp-personas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 860px; margin: 0 auto; }
.lp-persona { font-size: 14.5px; font-weight: 600; color: var(--lp-text); background: var(--lp-surface); border: 1px solid var(--lp-border); padding: 10px 18px; border-radius: 100px; box-shadow: var(--lp-shadow-sm); transition: transform 0.15s, border-color 0.15s; }
.lp-persona:hover { transform: translateY(-2px); border-color: var(--lp-primary); }

.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-step { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 30px 26px; position: relative; box-shadow: var(--lp-shadow-sm); }
.lp-step-num { position: absolute; top: 28px; right: 14px; font-size: 30px; font-weight: 900; color: var(--lp-bg-3); line-height: 1; }
.lp-step-icon { width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(135deg, #6b7eff, #a78bfa); display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.lp-step h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--lp-text);padding-right: 10px; }
.lp-step p { font-size: 14.5px; color: var(--lp-text-muted); margin: 0; }

.lp-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-feat { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 26px 24px; box-shadow: var(--lp-shadow-sm); transition: transform 0.15s, box-shadow 0.15s; }
.lp-feat:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow); }
.lp-feat-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--lp-primary-soft); color: var(--lp-primary); display: grid; place-items: center; margin-bottom: 16px; }
.lp-feat h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 7px; color: var(--lp-text); }
.lp-feat p { font-size: 14px; color: var(--lp-text-muted); margin: 0; }

.lp-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; max-width: 820px; margin: 0 auto; }
.lp-compare-card { border-radius: var(--lp-radius-lg); padding: 30px 28px; text-align: center; }
.lp-before { background: var(--lp-bg-2); border: 1px solid var(--lp-border); }
.lp-after { background: linear-gradient(135deg, rgba(91,108,255,0.08), rgba(236,72,153,0.06)); border: 1.5px solid rgba(91,108,255,0.3); }
.lp-compare-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.lp-before .lp-compare-tag { color: var(--lp-text-dim); }
.lp-after .lp-compare-tag { background: var(--lp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-compare-time { font-size: 46px; font-weight: 800; letter-spacing: -2px; margin-bottom: 12px; line-height: 1; }
.lp-before .lp-compare-time { color: var(--lp-text-muted); }
.lp-after .lp-compare-time { background: var(--lp-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-compare-card p { font-size: 14px; color: var(--lp-text-muted); margin: 0; }
.lp-compare-arrow { color: var(--lp-primary); }
.lp-compare-note { text-align: center; font-size: 16px; color: var(--lp-text-muted); margin: 30px auto 0; max-width: 620px; }
.lp-compare-note strong { color: var(--lp-text); }

.lp-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; max-width: 980px; margin: 0 auto; }
.lp-price-card { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-lg); padding: 30px 26px; position: relative; box-shadow: var(--lp-shadow-sm); }
.lp-price-card.lp-featured { border: 2px solid var(--lp-primary); box-shadow: var(--lp-shadow); }
.lp-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #5b6cff, #ec4899); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.lp-price-name { font-size: 20px; font-weight: 800; color: var(--lp-text); }
.lp-price-tagline { font-size: 12.5px; color: var(--lp-text-dim); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; margin-bottom: 18px; }
.lp-price-amount { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; color: var(--lp-text); display: flex; align-items: baseline; justify-content: center; gap: 6px; text-align: center; flex-wrap: wrap; }
.lp-price-amount span { font-size: 13px; font-weight: 500; color: var(--lp-text-dim); letter-spacing: 0; }
.lp-price-quota { background: var(--lp-bg-2); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); padding: 8px 14px; font-size: 14px; font-weight: 700; color: var(--lp-text); margin: 16px 0 20px; text-align: center; }
.lp-price-feat { list-style: none; padding: 0; margin: 0 0 24px; }
.lp-price-feat li { font-size: 14px; color: var(--lp-text-muted); padding: 7px 0 7px 26px; position: relative; }
.lp-price-feat li::before { content: ''; position: absolute; left: 0; top: 12px; width: 16px; height: 9px; border: solid var(--lp-success); border-width: 0 0 2px 2px; transform: rotate(-45deg); }

.lp-secu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.lp-secu-item { display: flex; gap: 16px; background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 22px 24px; box-shadow: var(--lp-shadow-sm); }
.lp-secu-item svg { color: var(--lp-primary); flex-shrink: 0; margin-top: 2px; }
.lp-secu-item h4 { font-size: 15.5px; font-weight: 700; margin: 0 0 5px; color: var(--lp-text); }
.lp-secu-item p { font-size: 13.5px; color: var(--lp-text-muted); margin: 0; }

.lp-faq { display: flex; flex-direction: column; gap: 12px; }
.lp-faq details { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 4px 22px; box-shadow: var(--lp-shadow-sm); }
.lp-faq summary { font-size: 16px; font-weight: 600; color: var(--lp-text); padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--lp-primary); transition: transform 0.2s; }
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details p { font-size: 14.5px; color: var(--lp-text-muted); margin: 0; padding: 0 0 18px; }

.lp-section-trial { padding-bottom: 90px; }
.lp-trial-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-lg); padding: 48px; box-shadow: var(--lp-shadow-lg); align-items: center; }
.lp-trial-content h2 { font-size: 30px; font-weight: 800; letter-spacing: -1px; margin: 12px 0 14px; color: var(--lp-text); }
.lp-trial-content > p { font-size: 16px; color: var(--lp-text-muted); margin: 0 0 22px; }
.lp-trial-list { list-style: none; padding: 0; margin: 0; }
.lp-trial-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--lp-text); padding: 7px 0; }
.lp-trial-list svg { color: var(--lp-success); flex-shrink: 0; }
.lp-field { margin-bottom: 16px; }
.lp-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--lp-text); margin-bottom: 6px; }
.lp-field label .req { color: var(--lp-danger); }
.lp-field input, .lp-field select, .lp-field textarea { width: 100%; background: var(--lp-bg); border: 1px solid var(--lp-border-strong); border-radius: var(--lp-radius-sm); padding: 11px 14px; font-size: 15px; color: var(--lp-text); font-family: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus { outline: none; border-color: var(--lp-primary); box-shadow: 0 0 0 3px var(--lp-primary-soft); }
.lp-field textarea { resize: vertical; }
.lp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lp-form-status { margin-top: 14px; font-size: 14px; text-align: center; }
.lp-form-status.success { color: var(--lp-success); }
.lp-form-status.error { color: var(--lp-danger); }

.lp-footer { border-top: 1px solid var(--lp-border); padding: 32px 0; background: var(--lp-bg-2); }
.lp-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.lp-footer-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lp-footer-meta a, .lp-footer-meta span { font-size: 13.5px; color: var(--lp-text-muted); text-decoration: none; }
.lp-footer-meta a:hover { color: var(--lp-primary); }

.lp-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.lp-revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-mock { order: -1; }
  .lp-hero h1 { font-size: 40px; }
  .lp-steps, .lp-feats { grid-template-columns: 1fr 1fr; }
  .lp-pricing { grid-template-columns: 1fr; max-width: 420px; }
  .lp-trial-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .lp-nav { display: none; }
}
@media (max-width: 600px) {
  .lp-hero { padding: 48px 0 56px; }
  .lp-hero h1 { font-size: 33px; letter-spacing: -1.2px; }
  .lp-triptyque { gap: 14px; flex-wrap: wrap; }
  .lp-triptyque span { font-size: 14.5px; }
  .lp-hero-sub { font-size: 16px; }
  .lp-section { padding: 52px 0; }
  .lp-section-head h2 { font-size: 27px; }
  .lp-steps, .lp-feats, .lp-secu { grid-template-columns: 1fr; }
  .lp-compare { grid-template-columns: 1fr; }
  .lp-compare-arrow { transform: rotate(90deg); margin: 0 auto; }
  .lp-hero-cta { flex-direction: column; }
  .lp-hero-cta .lp-btn { width: 100%; }
}

/* ========== Personas : pastilles cliquables + hint ========== */
a.lp-persona { text-decoration: none; cursor: pointer; }
.lp-personas-hint {
  text-align: center;
  font-size: 13.5px;
  color: var(--lp-text-dim);
  margin: 22px 0 0;
}

/* ========== Personas detailles (cartes) ========== */
.lp-persona-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.lp-pcard {
  display: flex;
  gap: 18px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 26px 24px;
  box-shadow: var(--lp-shadow-sm);
  scroll-margin-top: 90px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.lp-pcard:target {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px var(--lp-primary-soft), var(--lp-shadow);
}
.lp-pcard-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--lp-primary-soft);
  color: var(--lp-primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.lp-pcard-body { flex: 1; min-width: 0; }
.lp-pcard h3 {
  font-size: 17px; font-weight: 700;
  margin: 0 0 5px; color: var(--lp-text);
  letter-spacing: -0.3px;
}
.lp-pcard-tag {
  font-size: 12.5px; font-weight: 700;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.lp-pcard-quote {
  font-size: 13.5px; font-style: italic;
  color: var(--lp-text-muted);
  line-height: 1.55;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--lp-border-strong);
}
.lp-pcard-list { list-style: none; padding: 0; margin: 0; }
.lp-pcard-list li {
  font-size: 13.5px; color: var(--lp-text);
  padding: 5px 0 5px 24px;
  position: relative;
  line-height: 1.5;
}
.lp-pcard-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px;
  border: solid var(--lp-success);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .lp-persona-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lp-pcard { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .lp-pcard-icon { width: 46px; height: 46px; }
}

/* ============ Ajouts devis vocal (nav + teaser) ============ */
.lp-nav-devis { color: var(--lp-primary, #6b7eff) !important; font-weight: 600; }
.lp-devis-teaser { grid-template-columns: 1fr; text-align: left; }
.lp-devis-teaser .lp-hero-cta { margin-top: 18px; }

/* ============ Prix annuel + cartes hauteur egale + personas (tarifs x3) ============ */
.lp-pricing { align-items: stretch; }
.lp-price-card { display: flex; flex-direction: column; }
.lp-price-card .lp-btn-block { margin-top: auto; }
.lp-price-badge.is-soft { background: var(--lp-primary-soft); color: var(--lp-primary); }
.lp-price-annual { text-align: center; font-size: 15px; color: var(--lp-text-muted); margin: 8px 0 2px; }
.lp-price-annual b { font-weight: 800; color: var(--lp-text); font-size: 17px; letter-spacing: -.3px; }
.lp-price-free { display: block; margin-top: 3px; color: var(--lp-success); font-weight: 700; font-size: 13px; }
.lp-price-context { font-size: 13px; color: var(--lp-text-muted); line-height: 1.5; margin: 0 0 18px; }
.lp-price-amount .lp-amt-value { font-size: 44px; font-weight: 800; color: var(--lp-text); letter-spacing: -1.5px; }
.lp-price-amount .lp-amt-cur { font-size: 30px; font-weight: 700; color: var(--lp-text); letter-spacing: 0; }
.lp-price-amount .lp-amt-suffix { font-size: 13px; font-weight: 500; color: var(--lp-text-dim); letter-spacing: 0; }

/* Grille TVA & langues : 2 par ligne desktop, 1 par ligne mobile */
.dv-tva-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .dv-tva-grid { grid-template-columns: 1fr; } }

/* Grille gestion de projet (page devis) */
.dv-pm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 10px; }
.dv-pm-item { background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 20px; }
.dv-pm-item h3 { font-size: 15px; margin: 0 0 6px; display: flex; align-items: center; gap: 9px; }
.dv-pm-item h3 svg { color: var(--lp-primary); flex: none; }
.dv-pm-item p { font-size: 13.5px; margin: 0; opacity: .82; line-height: 1.5; }
.dv-exports { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
.dv-export-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--lp-bg-2); border: 1px solid var(--lp-border); border-radius: 100px; font-size: 13.5px; font-weight: 600; color: var(--lp-text); }
.dv-export-chip svg { color: var(--lp-primary); }
