/* ──────────────────────────────────────────────────────────────
   Mon Petit Capital — Design system partagé
   Palette : bleu marine #1E3A8A + jaune #FDE68A
   ────────────────────────────────────────────────────────────── */

:root {
  --blue-900: #0F172A;
  --blue-800: #1E3A8A;
  --blue-700: #1E40AF;
  --blue-100: #EEF2FF;
  --yellow: #FDE68A;
  --yellow-dark: #F59E0B;
  --green-700: #166534;
  --green-100: #DCFCE7;
  --purple-800: #5B21B6;
  --purple-100: #F5F3FF;
  --gray-50: #F5F7FB;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-500: #64748B;
  --gray-700: #475569;
  --white: #fff;
  --max-w: 1080px;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow: 0 4px 14px rgba(15,23,42,0.06);
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--blue-900);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-800); text-decoration: none; transition: opacity .15s; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--blue-900);
  font-size: 16px;
  letter-spacing: -0.3px;
}
.site-header .brand:hover { text-decoration: none; }
.site-header .brand-logo {
  width: 34px; height: 34px;
  background: var(--blue-800);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.site-header .brand-logo svg { width: 22px; height: 22px; }
.site-header nav {
  display: flex; align-items: center; gap: 26px;
}
.site-header nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.site-header nav a:hover { color: var(--blue-800); text-decoration: none; }
.site-header nav a.active { color: var(--blue-800); }
.site-header .cta-nav {
  background: var(--blue-800);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}
.site-header .cta-nav:hover { background: var(--blue-700); text-decoration: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--blue-900); }

@media (max-width: 780px) {
  .site-header nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow); align-items: stretch; }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 8px 0; }
  .site-header nav .cta-nav { text-align: center; }
  .menu-toggle { display: block; }
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .12s, box-shadow .12s;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--yellow);
  color: var(--blue-800);
}
.btn-primary:hover { box-shadow: 0 6px 16px rgba(245,158,11,0.25); }
.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border: 1.5px solid var(--blue-800);
}
.btn-dark {
  background: var(--blue-800);
  color: var(--white);
}
.btn-dark:hover { background: var(--blue-700); }

/* ── LAYOUT ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 72px 0;
}
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

h1, h2, h3, h4 {
  color: var(--blue-900);
  letter-spacing: -0.4px;
  line-height: 1.2;
}
h1 { font-size: 44px; font-weight: 800; }
h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
p { margin-bottom: 12px; }

.lead { font-size: 18px; color: var(--gray-700); line-height: 1.6; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-800);
  background: var(--blue-100);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--blue-800) 0%, #22479A 100%);
  color: var(--white);
  padding: 96px 24px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .logo-big {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px; height: 92px;
  background: var(--white);
  border-radius: 22px;
  margin: 0 auto 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero .logo-big svg { width: 58px; height: 58px; }
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}
.hero .subtitle {
  font-size: 16px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero .promise {
  font-size: 19px;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero .small-note {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

/* ── FEATURES GRID ─────────────────────────────────── */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card .card-icon {
  width: 48px; height: 48px;
  background: var(--blue-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--gray-700); line-height: 1.6; margin: 0; }

/* ── STATS / KPI ───────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat .value {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: -1px;
  display: block;
}
.stat .label {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 600;
  margin-top: 4px;
}

/* ── PRICING ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.plan {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  position: relative;
}
.plan.featured {
  border: 2px solid var(--blue-800);
  box-shadow: 0 10px 30px rgba(30,58,138,0.08);
}
.plan .badge-top {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue-800);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
}
.plan .plan-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan .plan-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.plan .plan-price .suffix { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.plan .plan-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin-bottom: 20px; }
.plan li {
  font-size: 14.5px;
  color: var(--blue-900);
  padding: 7px 0 7px 26px;
  position: relative;
  line-height: 1.5;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 7px;
  color: var(--green-700);
  font-weight: 800;
}
.plan li.muted { color: var(--gray-500); }
.plan li.muted::before { content: "—"; color: var(--gray-500); }
.plan .btn { width: 100%; display: block; }

/* ── COMPARATIVE TABLE ─────────────────────────────── */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.cmp-table th, .cmp-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14.5px;
}
.cmp-table th { background: var(--gray-50); color: var(--blue-900); font-weight: 800; font-size: 14px; }
.cmp-table th.highlight { background: var(--blue-800); color: var(--white); }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table td.c { text-align: center; font-weight: 700; }
.cmp-table .yes { color: var(--green-700); }
.cmp-table .no { color: var(--gray-500); }

/* ── FAQ ───────────────────────────────────────────── */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 4px 20px;
  margin-bottom: 12px;
  transition: box-shadow .15s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--blue-900);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--blue-800);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details p, .faq details ul, .faq details ol {
  padding-bottom: 18px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
}
.faq details ul, .faq details ol { padding-left: 22px; }
.faq details li { margin-bottom: 6px; }

/* ── CALLOUT / BANNERS ─────────────────────────────── */
.callout {
  background: var(--blue-100);
  border-left: 4px solid var(--blue-800);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 20px 0;
}
.callout p { margin: 0; font-size: 14.5px; color: var(--blue-900); }
.callout strong { color: var(--blue-800); }

.warning {
  background: #FEF3C7;
  border-left: 4px solid var(--yellow-dark);
  padding: 16px 22px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 14px;
  color: #713F12;
  line-height: 1.6;
}

/* ── ARTICLE / PROSE ───────────────────────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--blue-900);
}
.prose h2 { font-size: 28px; margin: 48px 0 16px; }
.prose h3 { font-size: 21px; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--gray-700); }
.prose ul, .prose ol { margin: 16px 0 20px 24px; color: var(--gray-700); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--blue-900); }
.prose blockquote {
  border-left: 3px solid var(--yellow-dark);
  padding: 10px 20px;
  margin: 24px 0;
  color: var(--gray-700);
  font-style: italic;
  background: #FEF9E7;
  border-radius: 0 8px 8px 0;
}
.prose code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--blue-800);
}

/* ── SIMULATEURS ─────────────────────────────────── */
.simulator {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.simulator h3 { margin-bottom: 4px; }
.simulator .sim-sub { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }
.sim-field {
  margin-bottom: 18px;
}
.sim-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.sim-field label .val {
  color: var(--blue-800);
  font-weight: 800;
  font-size: 15px;
}
.sim-field input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
}
.sim-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-800);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.sim-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-800);
  cursor: pointer;
  border: 3px solid var(--white);
}
.sim-field input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--blue-900);
}
.sim-result {
  background: var(--blue-100);
  border-radius: 12px;
  padding: 22px;
  margin-top: 20px;
  text-align: center;
}
.sim-result .big {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: -0.8px;
  display: block;
  margin: 4px 0;
}
.sim-result .lbl {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sim-result .detail {
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 10px;
  line-height: 1.55;
}

/* ── TRUST SECTION ─────────────────────────────────── */
.trust-strip {
  background: var(--white);
  padding: 56px 24px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}
.trust-grid .trust-item strong {
  display: block;
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.trust-grid .trust-item p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.72);
  padding: 56px 24px 32px;
  font-size: 14px;
  line-height: 1.65;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid a {
  color: rgba(255,255,255,0.72);
  display: block;
  padding: 4px 0;
}
.footer-grid a:hover { color: var(--yellow); text-decoration: none; }
.footer-brand .tag {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.55;
}
.footer-legal {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-legal .disclaimer { margin-top: 12px; }

@media (max-width: 720px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero { padding: 64px 20px 80px; }
  .hero h1 { font-size: 36px; }
  .hero .promise { font-size: 16px; }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .stat .value { font-size: 32px; }
}

/* ── ARTICLE (parcours) ──────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-800); }
.breadcrumb .sep { margin: 0 6px; color: var(--gray-200); }

.art { font-size: 17px; line-height: 1.75; color: var(--blue-900); }
.art-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 18px; font-size: 12px;
}
.art-meta .pill {
  display: inline-block; padding: 5px 11px;
  border-radius: 999px; font-weight: 700;
  letter-spacing: 0.3px;
}
.pill-module { font-size: 11px; }
.pill-free { background: var(--green-100); color: var(--green-700); }
.pill-premium { background: var(--purple-100); color: var(--purple-800); }
.pill-difficulty { background: var(--gray-100); color: var(--gray-700); }
.pill-duration { background: var(--yellow); color: #78350F; }

.art-title {
  font-size: 40px; line-height: 1.15; letter-spacing: -1px;
  margin: 18px 0 18px;
}
.art-hook {
  font-size: 20px; line-height: 1.55; font-weight: 500;
  color: var(--gray-700); margin-bottom: 36px;
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--gray-200);
}

.art-body p { margin-bottom: 18px; color: var(--blue-900); }
.art-body strong { color: var(--blue-900); }
.art-body ul, .art-body ol { margin: 0 0 22px 26px; color: var(--blue-900); }
.art-body li { margin-bottom: 8px; }
.art-section { margin: 32px 0; }
.art-section h2 {
  font-size: 26px; margin: 40px 0 14px;
  letter-spacing: -0.4px;
}
.art-section .art-section h2 { font-size: 20px; }

.art-keypoint {
  background: var(--blue-100); border-left: 4px solid var(--blue-800);
  padding: 18px 22px; border-radius: 10px; margin: 24px 0;
}
.art-keypoint .label {
  display: inline-block; font-size: 11px; font-weight: 800;
  color: var(--blue-800); letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 6px;
}
.art-keypoint p { margin: 0; color: var(--blue-900); font-weight: 600; font-size: 16px; }

.art-quote {
  border-left: 3px solid var(--yellow-dark);
  padding: 14px 22px; margin: 28px 0;
  font-style: italic; color: var(--gray-700);
  background: #FEF9E7; border-radius: 0 8px 8px 0;
}
.art-quote cite {
  display: block; margin-top: 10px;
  font-style: normal; font-size: 14px; color: var(--gray-500);
}

.art-example {
  background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 20px 22px; margin: 24px 0;
}
.art-example .label {
  display: inline-block; font-size: 10px; font-weight: 800;
  color: var(--green-700); background: var(--green-100);
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 10px;
}
.art-example h4 { font-size: 16px; margin-bottom: 8px; }
.art-example .scenario { margin-bottom: 10px; font-size: 15.5px; }
.art-example ul { margin: 8px 0 0 22px; }
.art-example li { color: var(--gray-700); font-size: 14.5px; }

.art-miscon {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.art-miscon > div { padding: 18px; border-radius: 12px; }
.art-miscon .false { background: #FEF2F2; border-left: 4px solid #DC2626; }
.art-miscon .true  { background: #ECFDF5; border-left: 4px solid #059669; }
.art-miscon .label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 6px;
}
.art-miscon .false .label { color: #DC2626; }
.art-miscon .true  .label { color: #059669; }
.art-miscon p { margin: 0; font-size: 15px; color: var(--gray-700); }

.art-action {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff; padding: 24px; border-radius: 14px;
  margin: 28px 0;
}
.art-action .label {
  display: inline-block; font-size: 10px; font-weight: 800;
  color: var(--yellow); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.art-action p { margin-bottom: 10px; color: rgba(255,255,255,0.95); }
.art-action .donow {
  background: rgba(255,255,255,0.12); padding: 12px 16px;
  border-radius: 10px; margin-top: 12px;
}
.art-action .donow strong { color: var(--yellow); }

.art-warning {
  background: #FEF3C7; border-left: 4px solid var(--yellow-dark);
  padding: 16px 22px; border-radius: 0 10px 10px 0; margin: 22px 0;
  font-size: 14.5px; color: #713F12;
}
.art-warning p { margin: 0; }

.art-comparison { margin: 28px 0; overflow-x: auto; }
.art-comparison h4 { font-size: 16px; margin-bottom: 10px; }
.art-comparison table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.art-comparison th, .art-comparison td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--gray-200); font-size: 14.5px; }
.art-comparison th { background: var(--gray-50); font-weight: 800; }
.art-comparison tr:last-child td { border-bottom: none; }

.art-chart { margin: 28px 0; background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 20px; }
.art-chart .caption { font-size: 13px; color: var(--gray-500); margin-top: 12px; text-align: center; }
.cmp-row { display: grid; grid-template-columns: 1fr 2fr auto; gap: 12px; align-items: center; padding: 6px 0; font-size: 14px; }
.cmp-lbl { color: var(--gray-700); font-weight: 600; }
.cmp-bar { background: var(--gray-100); height: 14px; border-radius: 7px; overflow: hidden; }
.cmp-bar > span { display: block; height: 100%; background: var(--blue-800); border-radius: 7px; transition: width .4s; }
.cmp-val { font-weight: 700; color: var(--blue-900); font-size: 13px; min-width: 60px; text-align: right; }

.compound-summary { font-size: 13px; color: var(--gray-700); background: var(--gray-50); padding: 10px 14px; border-radius: 8px; margin-bottom: 14px; line-height: 1.6; }
.compound-summary strong { color: var(--blue-900); }
.compound-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); gap: 8px; padding: 10px 0; }
.compound-point { text-align: center; }
.compound-point .year { font-size: 11px; color: var(--gray-500); font-weight: 700; }
.compound-point .bar { height: 100px; background: var(--gray-100); border-radius: 6px; position: relative; margin: 6px 0; overflow: hidden; }
.compound-point .bar > span { position: absolute; bottom: 0; left: 0; right: 0; background: var(--blue-800); border-radius: 6px; }
.compound-point .value { font-size: 11px; color: var(--blue-900); font-weight: 700; }

.art-takeaways {
  background: var(--yellow); background: #FEF3C7;
  border-radius: 14px; padding: 28px; margin: 40px 0 24px;
}
.art-takeaways h2 { font-size: 20px; margin-bottom: 12px; color: #78350F; }
.art-takeaways ul { list-style: none; padding: 0; margin: 0; }
.art-takeaways li {
  padding: 8px 0 8px 28px; position: relative;
  color: #713F12; font-size: 15.5px;
}
.art-takeaways li::before {
  content: "✓"; position: absolute; left: 0;
  color: #78350F; font-weight: 900;
}

.art-quiz {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 28px; margin: 32px 0;
}
.art-quiz h2 { font-size: 20px; margin-bottom: 14px; }
.quiz-q { font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  background: var(--gray-50); border: 2px solid var(--gray-200);
  padding: 14px 18px; border-radius: 10px;
  text-align: left; font-size: 15px; cursor: pointer;
  transition: all .15s; color: var(--blue-900);
}
.quiz-opt:hover:not(:disabled) { border-color: var(--blue-800); background: var(--blue-100); }
.quiz-opt.correct { background: #ECFDF5; border-color: #059669; color: #065F46; font-weight: 700; }
.quiz-opt.wrong { background: #FEF2F2; border-color: #DC2626; color: #991B1B; }
.quiz-opt:disabled { cursor: default; }
.quiz-feedback {
  margin-top: 16px; padding: 14px 16px;
  border-radius: 10px; font-size: 14.5px; line-height: 1.55;
}
.quiz-feedback.ok { background: #ECFDF5; color: #065F46; }
.quiz-feedback.ko { background: #FEF2F2; color: #991B1B; }

.art-premium-cta {
  background: linear-gradient(135deg, var(--purple-100), var(--blue-100));
  border: 2px solid var(--purple-800); border-radius: 16px;
  padding: 28px; margin: 32px 0; text-align: center;
}
.art-premium-cta h3 { color: var(--purple-800); font-size: 20px; margin-bottom: 8px; }
.art-premium-cta p { color: var(--gray-700); margin-bottom: 18px; }

.art-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 40px 0 0;
}
.art-nav-prev, .art-nav-next {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 18px 22px;
  text-decoration: none; display: block;
  transition: all .15s;
}
.art-nav-prev:hover, .art-nav-next:hover {
  border-color: var(--blue-800); transform: translateY(-2px);
  text-decoration: none;
}
.art-nav-next { text-align: right; }
.art-nav-prev .lbl, .art-nav-next .lbl {
  display: block; font-size: 11px; font-weight: 800;
  color: var(--gray-500); letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 6px;
}
.art-nav-prev .ttl, .art-nav-next .ttl {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--blue-800); line-height: 1.35;
}
.art-nav-prev .lbl::before { content: "← "; }
.art-nav-next .lbl::after { content: " →"; }

.art-cta-app {
  background: var(--blue-100); border-radius: 16px;
  padding: 32px; margin: 40px 0 0; text-align: center;
}
.art-cta-app h3 { font-size: 20px; margin-bottom: 8px; }
.art-cta-app p { color: var(--gray-700); margin-bottom: 20px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Pages module */
.module-header h1 { font-size: 32px; margin: 0; }
.module-chapters { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: none; }
.module-chapters li { list-style: none; }
.module-chapters a {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 18px 22px;
  text-decoration: none; transition: all .15s;
  color: var(--blue-900);
}
.module-chapters a:hover {
  border-color: var(--blue-800); transform: translateX(4px);
  text-decoration: none;
}
.module-chapters .num {
  font-size: 22px; font-weight: 800; color: var(--blue-800);
  letter-spacing: -0.5px; font-variant-numeric: tabular-nums;
  min-width: 36px;
}
.module-chapters .title { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.module-chapters .hook { display: block; font-size: 14px; color: var(--gray-700); line-height: 1.55; margin-bottom: 6px; }
.module-chapters .meta { display: block; font-size: 12px; color: var(--gray-500); font-weight: 600; }
.module-chapters .arrow { color: var(--gray-500); font-size: 22px; }

.module-card {
  text-decoration: none; padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all .15s;
}
.module-card:hover { transform: translateY(-3px); text-decoration: none; box-shadow: var(--shadow); }
.module-card .mod-id { font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.module-card h4 { font-size: 17px; margin: 4px 0 2px; color: var(--blue-900); }
.module-card .mod-meta { font-size: 12px; color: var(--gray-500); font-weight: 600; margin-top: 8px; }

@media (max-width: 720px) {
  .art-title { font-size: 30px; }
  .art-hook { font-size: 17px; }
  .art-miscon { grid-template-columns: 1fr; }
  .art-nav { grid-template-columns: 1fr; }
  .module-chapters a { grid-template-columns: auto 1fr; }
  .module-chapters .arrow { display: none; }
}

/* ── EMAIL CAPTURE ─────────────────────────── */
.email-capture {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 40px 0;
}
.email-capture h3 {
  color: #fff; margin: 0 0 6px;
  font-size: 20px; letter-spacing: -0.3px;
}
.email-capture p {
  color: rgba(255,255,255,0.88); margin: 0 0 18px;
  font-size: 14.5px; line-height: 1.55;
}
.email-capture form {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.email-capture input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 13px 16px; border-radius: 10px; border: none;
  font-size: 15px; font-family: inherit;
}
.email-capture button {
  padding: 13px 22px; border-radius: 10px; border: none;
  background: var(--yellow); color: var(--blue-800);
  font-weight: 800; font-size: 14px; cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  font-family: inherit;
}
.email-capture button:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.email-capture .fine {
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-top: 10px; margin-bottom: 0;
}
.email-capture .fine a { color: var(--yellow); }
.email-capture .success {
  background: rgba(255,255,255,0.12);
  padding: 16px; border-radius: 10px;
  text-align: center; color: #fff;
}
.email-capture .success strong { color: var(--yellow); }

.email-capture-inline {
  background: var(--blue-100); color: var(--blue-900);
  border: 1px dashed var(--blue-800); border-radius: 12px;
  padding: 20px; margin: 28px 0;
}
.email-capture-inline h4 { color: var(--blue-800); margin: 0 0 6px; font-size: 16px; }
.email-capture-inline p { font-size: 14px; color: var(--gray-700); margin-bottom: 12px; }
.email-capture-inline form { display: flex; gap: 6px; flex-wrap: wrap; }
.email-capture-inline input[type="email"] {
  flex: 1; min-width: 180px;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--gray-200); font-size: 14px; font-family: inherit;
}
.email-capture-inline button {
  padding: 10px 16px; border-radius: 8px; border: none;
  background: var(--blue-800); color: #fff;
  font-weight: 700; font-size: 13px; cursor: pointer;
  font-family: inherit;
}
.email-capture-inline .success { color: var(--green-700); font-weight: 700; font-size: 14px; }

/* ── STORE BUTTONS ──────────────────────────── */
.download-stores {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin: 20px 0;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue-900); color: #fff;
  padding: 14px 22px; border-radius: 12px;
  text-decoration: none; min-width: 200px;
  transition: transform .12s, box-shadow .12s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); text-decoration: none; }
.store-btn.primary { background: var(--blue-800); box-shadow: 0 0 0 3px var(--yellow); }
.store-btn svg { flex-shrink: 0; }
.store-btn .store-txt { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-btn .small { font-size: 11px; opacity: 0.8; }
.store-btn strong { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }

/* ── STICKY BOTTOM CTA ──────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--blue-800); color: #fff;
  padding: 14px 20px; z-index: 40;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  transform: translateY(100%); transition: transform .25s;
  font-size: 14px;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { margin: 0; }
.sticky-cta strong { color: var(--yellow); }
.sticky-cta a.btn-sticky {
  background: var(--yellow); color: var(--blue-800);
  padding: 8px 16px; border-radius: 8px;
  font-weight: 800; font-size: 13px;
  text-decoration: none;
  transition: transform .1s;
}
.sticky-cta a.btn-sticky:hover { text-decoration: none; transform: translateY(-1px); }
.sticky-cta .close {
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 26px; height: 26px; border-radius: 6px;
  cursor: pointer; font-size: 13px;
}
.sticky-cta .close:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 600px) {
  .sticky-cta { font-size: 13px; padding: 10px 14px; gap: 10px; }
  .sticky-cta p { flex-basis: 100%; text-align: center; }
}

/* ── NAV DROPDOWN ───────────────────────────── */
.site-header nav .dropdown {
  position: relative; display: inline-block;
}
.site-header nav .dropdown > a::after {
  content: " ▾"; font-size: 11px; opacity: 0.7;
}
.site-header nav .dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: -14px; margin-top: 8px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 8px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.12);
  min-width: 220px; z-index: 60;
}
.site-header nav .dropdown:hover .dropdown-menu,
.site-header nav .dropdown:focus-within .dropdown-menu { display: block; }
.site-header nav .dropdown-menu a {
  display: block; padding: 9px 14px;
  border-radius: 8px; font-size: 13.5px;
  color: var(--gray-700);
}
.site-header nav .dropdown-menu a:hover { background: var(--blue-100); color: var(--blue-800); text-decoration: none; }
@media (max-width: 780px) {
  .site-header nav .dropdown-menu {
    display: block; position: static;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 16px; margin: 0;
  }
  .site-header nav .dropdown > a::after { display: none; }
}

/* ── TOC (sommaire auto) ────────────────────── */
.art-toc {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 18px 22px;
  margin: 20px 0 32px;
}
.art-toc .toc-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gray-500);
  margin-bottom: 10px;
}
.art-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.art-toc li { counter-increment: toc; padding: 4px 0; font-size: 14px; }
.art-toc li::before { content: counter(toc, decimal-leading-zero) ". "; color: var(--gray-500); font-variant-numeric: tabular-nums; }
.art-toc a { color: var(--blue-800); text-decoration: none; }
.art-toc a:hover { text-decoration: underline; }
.art-toc li.sub { padding-left: 20px; font-size: 13.5px; }
.art-toc li.sub::before { content: "› "; color: var(--gray-500); }

/* ── CROSS-SELL APRÈS SIMULATEUR ────────────── */
.sim-crosssell {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 22px; margin-top: 16px;
}
.sim-crosssell .lbl {
  font-size: 11px; font-weight: 800; color: var(--blue-800);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.sim-crosssell .links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.sim-crosssell .links a {
  padding: 12px 14px; background: var(--blue-100);
  border-radius: 10px; text-decoration: none;
  font-size: 13.5px; color: var(--blue-900); font-weight: 600;
  transition: transform .12s;
}
.sim-crosssell .links a:hover { transform: translateX(3px); text-decoration: none; }

/* ── GLOSSAIRE ──────────────────────────────── */
.gloss-search { margin-bottom: 24px; }
.gloss-search input {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--gray-200); border-radius: 12px;
  font-size: 16px; font-family: inherit;
  transition: border-color .15s;
}
.gloss-search input:focus { outline: none; border-color: var(--blue-800); }

.gloss-letters {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 16px; background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px; margin-bottom: 20px;
}
.gloss-letters a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  font-size: 13px; font-weight: 800;
  background: var(--gray-50); color: var(--blue-800);
  text-decoration: none; transition: all .15s;
}
.gloss-letters a:hover { background: var(--blue-800); color: #fff; text-decoration: none; }

.gloss-categories {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.gloss-cat-btn {
  padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--gray-200);
  font-size: 12.5px; font-weight: 700; color: var(--gray-700);
  cursor: pointer; transition: all .12s;
}
.gloss-cat-btn:hover { border-color: var(--blue-800); color: var(--blue-800); }
.gloss-cat-btn.active { background: var(--blue-800); color: #fff; border-color: var(--blue-800); }

.gloss-letter { font-size: 28px; color: var(--blue-800); margin: 28px 0 14px; padding-left: 4px; }

.gloss-entries { list-style: none; padding: 0; display: grid; gap: 10px; }
.gloss-entries a {
  display: block; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 16px 20px; text-decoration: none;
  transition: all .12s;
}
.gloss-entries a:hover { border-color: var(--blue-800); transform: translateX(4px); text-decoration: none; }
.gloss-entries strong { display: block; color: var(--blue-900); font-size: 17px; margin-bottom: 4px; }
.gloss-entries .cat {
  display: inline-block; font-size: 10px; font-weight: 800;
  color: var(--gray-500); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 6px;
}
.gloss-entries .def { display: block; color: var(--gray-700); font-size: 14.5px; line-height: 1.55; }
.gloss-empty { text-align: center; color: var(--gray-500); padding: 32px; font-style: italic; }

/* ── REASSURE BAND (au-dessus des prix) ────────── */
.reassure-band {
  background: linear-gradient(135deg, var(--green-100) 0%, #E0F2FE 100%);
  border: 1px solid #BBF7D0;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 0 auto 20px;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px 22px;
}
.reassure-band .rb-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--blue-900); line-height: 1.45;
}
.reassure-band .rb-item .ic {
  flex-shrink: 0; width: 30px; height: 30px;
  background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.06);
}
.reassure-band .rb-item strong { color: var(--green-700); }
@media (max-width: 560px) {
  .reassure-band { grid-template-columns: 1fr 1fr; gap: 10px 14px; padding: 14px; }
  .reassure-band .rb-item { font-size: 12.5px; }
}

/* ── PREMIUM HERO (page /premium.html) ─────────── */
.premium-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, #2E1B85 100%);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.premium-hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(253,230,138,0.2), transparent 70%);
  pointer-events: none;
}
.premium-hero::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  pointer-events: none;
}
.premium-hero .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.premium-hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(253,230,138,0.15); color: var(--yellow);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(253,230,138,0.3);
  margin-bottom: 18px;
}
.premium-hero h1 {
  font-size: 44px; line-height: 1.1; letter-spacing: -0.5px;
  color: #fff; margin-bottom: 18px;
}
.premium-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--yellow), #FBBF24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-hero .sub {
  font-size: 19px; color: rgba(255,255,255,0.82);
  margin: 0 auto 30px; max-width: 620px;
}
.premium-hero .price {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin-bottom: 18px;
}
.premium-hero .price .eu { font-size: 56px; font-weight: 900; color: var(--yellow); letter-spacing: -1px; }
.premium-hero .price .per { font-size: 17px; color: rgba(255,255,255,0.7); }
.premium-hero .pill {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13.5px; color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 28px;
}
.premium-hero .cta-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--blue-900);
  padding: 16px 32px; border-radius: 12px;
  font-weight: 800; font-size: 16px; letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(253,230,138,0.35);
  transition: transform .12s, box-shadow .12s;
}
.premium-hero .cta-main:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(253,230,138,0.45); text-decoration: none; }
.premium-hero .under {
  margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.65);
}
@media (max-width: 600px) {
  .premium-hero { padding: 56px 20px 48px; }
  .premium-hero h1 { font-size: 32px; }
  .premium-hero .sub { font-size: 16px; }
  .premium-hero .price .eu { font-size: 42px; }
}

/* ── ROI CALC (retour sur investissement visuel) ── */
.roi-calc {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.roi-calc h3 {
  font-size: 22px; margin-bottom: 8px;
  color: var(--blue-900);
}
.roi-calc .roi-sub { color: var(--gray-500); font-size: 14.5px; margin-bottom: 22px; }
.roi-calc .roi-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gray-200);
}
.roi-calc .roi-row:last-of-type { border-bottom: none; }
.roi-calc .roi-lbl { font-size: 14.5px; color: var(--gray-700); }
.roi-calc .roi-val { font-weight: 800; color: var(--blue-900); font-size: 17px; font-variant-numeric: tabular-nums; }
.roi-calc .roi-val.negative { color: #DC2626; }
.roi-calc .roi-val.positive { color: var(--green-700); }
.roi-calc .roi-total {
  background: var(--green-100);
  border-radius: 12px; padding: 16px 18px;
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.roi-calc .roi-total strong { font-size: 19px; color: var(--green-700); }

/* ── PREMIUM PREVIEW CARD (ce que tu débloques) ── */
.prev-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.prev-card:hover { border-color: var(--blue-800); transform: translateY(-3px); }
.prev-card .tag {
  display: inline-block;
  background: linear-gradient(120deg, var(--purple-800), #7C3AED);
  color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.prev-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--blue-900); }
.prev-card p { font-size: 14.5px; color: var(--gray-700); line-height: 1.55; }
.prev-card ul {
  margin-top: 14px; padding-left: 20px;
  font-size: 14px; color: var(--gray-700);
}
.prev-card ul li { margin-bottom: 6px; }

/* ── HOMEPAGE PREMIUM CTA BAND ──────────────── */
.home-premium-band {
  background: linear-gradient(135deg, #1E1B4B 0%, var(--blue-800) 55%, #4338CA 100%);
  color: #fff;
  padding: 72px 24px;
  position: relative; overflow: hidden;
}
.home-premium-band::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(253,230,138,0.12), transparent 70%);
}
.home-premium-band .inner {
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center;
  position: relative; z-index: 2;
}
.home-premium-band h2 {
  font-size: 34px; color: #fff; line-height: 1.2;
  margin-bottom: 14px;
}
.home-premium-band h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--yellow), #FBBF24);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-premium-band p { font-size: 16.5px; color: rgba(255,255,255,0.82); margin-bottom: 22px; }
.home-premium-band .ct-row { display: flex; gap: 14px; flex-wrap: wrap; }
.home-premium-band .btn-yellow {
  background: var(--yellow); color: var(--blue-900);
  padding: 14px 26px; border-radius: 11px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  transition: transform .12s;
}
.home-premium-band .btn-yellow:hover { transform: translateY(-2px); text-decoration: none; }
.home-premium-band .btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 22px; border-radius: 11px;
  font-weight: 700; font-size: 15px; text-decoration: none;
}
.home-premium-band .btn-ghost:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.home-premium-band .trust-mini {
  margin-top: 20px; font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex; gap: 14px; flex-wrap: wrap;
}
.home-premium-band .trust-mini span::before { content: "✓ "; color: var(--yellow); }
.home-premium-band .unlock-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 22px;
  backdrop-filter: blur(8px);
}
.home-premium-band .unlock-preview h4 {
  font-size: 12px; color: var(--yellow);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 800;
}
.home-premium-band .unlock-preview ul { list-style: none; padding: 0; margin: 0; }
.home-premium-band .unlock-preview li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px; color: rgba(255,255,255,0.92);
  display: flex; align-items: center; gap: 10px;
}
.home-premium-band .unlock-preview li:last-child { border-bottom: none; }
.home-premium-band .unlock-preview li::before {
  content: "⚡"; color: var(--yellow); font-size: 14px;
}
@media (max-width: 780px) {
  .home-premium-band { padding: 48px 20px; }
  .home-premium-band .inner { grid-template-columns: 1fr; gap: 30px; }
  .home-premium-band h2 { font-size: 26px; }
}

/* ── GARANTIE BADGE (petit badge pour boutons) ── */
.guarantee-mini {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--green-700); font-weight: 600;
  margin-top: 10px;
}
.guarantee-mini::before { content: "🔒"; }

/* ── STICKY CTA VARIANTES ───────────────────── */
.sticky-cta.urgent strong { color: var(--yellow); }
.sticky-cta .tiny {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px; display: block;
}

/* ── HELPERS ────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-640 { max-width: 640px; }
.max-780 { max-width: 780px; }
