/* MargePro — static.css — pages guides SEO & FAQ (famille A) */
/* Thème : Clair Terrain — harmonisé avec landing.css v12.152.0 */

:root {
  /* === Variables MargePro "Clair Terrain" === */
  --mp-bg: #F6F7F4;
  --mp-bg-soft: #EEF2EC;
  --mp-surface: #FFFFFF;
  --mp-surface-muted: #F9FAF7;
  --mp-text: #132033;
  --mp-text-soft: #425067;
  --mp-text-muted: #6B7280;
  --mp-primary: #19B96F;
  --mp-primary-hover: #12965A;
  --mp-primary-soft: #DDF7EA;
  --mp-secondary: #315C72;
  --mp-warm: #F2B84B;
  --mp-border: #DDE4DC;
  --mp-border-soft: #E8EEE6;
  --mp-shadow-sm: 0 4px 14px rgba(19, 32, 51, 0.06);
  --mp-shadow-md: 0 14px 36px rgba(19, 32, 51, 0.08);
  --mp-radius-sm: 10px;
  --mp-radius-md: 16px;
  --mp-radius-lg: 24px;
  --mp-radius-xl: 32px;
  --mp-radius-pill: 999px;

  /* Aliases locaux pour compatibilité interne */
  --c-bg: var(--mp-bg);
  --c-surface: var(--mp-surface);
  --c-text: var(--mp-text);
  --c-muted: var(--mp-text-muted);
  --c-border: var(--mp-border);
  --c-accent: var(--mp-primary);
  --c-accent2: var(--mp-primary-hover);
  --c-green: var(--mp-primary);
  --c-warn: #d97706;
  --c-danger: #dc2626;
  --radius: var(--mp-radius-md);
  --shadow: var(--mp-shadow-sm);
  --max: 1100px;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 3.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(25, 185, 111, 0.06), transparent 30rem),
    radial-gradient(circle at top right, rgba(49, 92, 114, 0.04), transparent 28rem),
    var(--mp-bg);
  color: var(--mp-text);
}

h1, h2, h3, .hero__title, .section-title {
  font-family: Sora, Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
}

a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; margin: 0; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: auto;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-text);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  display: inline-block;
}

/* Alias pour nav-shared.php (utilise .nav__dot) */
.nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  display: inline-block;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 1.25rem;
  margin-right: auto;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-muted);
  text-decoration: none;
  white-space: nowrap;
}

.nav__links a:hover { color: var(--c-accent); }

.nav__cta { flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: .15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--mp-primary);
  color: #fff;
  border: 1px solid var(--mp-primary);
  box-shadow: 0 8px 20px rgba(25, 185, 111, 0.20);
}

.btn--primary:hover {
  background: var(--mp-primary-hover);
  border-color: var(--mp-primary-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(25, 185, 111, 0.26);
}

.btn--ghost {
  border: 1px solid var(--mp-border);
  background: var(--mp-surface);
  color: var(--mp-text);
}

.btn--ghost:hover {
  border-color: var(--mp-primary);
  color: var(--mp-primary-hover);
  background: var(--mp-surface);
  text-decoration: none;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--c-muted);
  flex-wrap: wrap;
  padding: .75rem 0;
}

.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { color: #ccc; }
.breadcrumb .current { color: var(--c-text); font-weight: 600; }

/* ── Section base ── */
section { padding: var(--gap-lg) 0; }
section.section--alt { background: var(--c-surface); }

/* ── Hero ── */
.hero {
  color: var(--mp-text);
  padding: 3.5rem 0 3rem;
}

.hero__tag {
  display: inline-block;
  background: var(--mp-primary-soft);
  border: 1px solid rgba(25,185,111,0.20);
  color: var(--mp-primary-hover);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero__title .accent {
  color: var(--mp-primary);
}

.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--mp-text-soft);
  max-width: 640px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero .btn--primary {
  background: var(--mp-primary);
  color: #fff;
}

.hero .btn--primary:hover { background: var(--mp-primary-hover); }

.hero .btn--ghost {
  border-color: var(--mp-border);
  background: var(--mp-surface);
  color: var(--mp-text);
}

/* ── Stats strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
}

.stat__val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}

.stat__label {
  font-size: .8rem;
  color: var(--c-muted);
  font-weight: 600;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: .6rem;
  display: block;
  line-height: 1;
}

.card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
  display: block;
}

.hero__tag svg {
  width: 16px;
  height: 16px;
  vertical-align: -.15em;
  display: inline;
  color: currentColor;
}

.related__item svg {
  width: 14px;
  height: 14px;
  vertical-align: -.1em;
  display: inline;
  color: var(--c-muted);
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.card__text {
  font-size: .9rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Tables ── */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

th {
  background: var(--c-bg);
  padding: .7rem .9rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--c-border);
  white-space: nowrap;
}

td {
  padding: .65rem .9rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: #f9fafb; }

td.ok { color: var(--c-green); font-weight: 700; }
td.warn { color: var(--c-warn); font-weight: 700; }
td.danger { color: var(--c-danger); font-weight: 700; }
td.muted { color: var(--c-muted); }

/* ── Infobox ── */
.infobox {
  background: #eff6ff;
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  font-size: .92rem;
  line-height: 1.55;
}

.infobox.warn {
  background: #fffbeb;
  border-left-color: var(--c-warn);
}

.infobox.danger {
  background: #fff1f2;
  border-left-color: var(--c-danger);
}

/* ── Formula ── */
.formula {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.formula__title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-muted);
  margin-bottom: .75rem;
}

.formula__eq {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
}

.formula__eq .neg { color: var(--c-danger); }
.formula__eq .pos { color: var(--c-green); }

/* ── CTA block ── */
.cta-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, var(--mp-primary), var(--mp-primary-hover));
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 2.5rem;
  color: #fff;
}

.cta-block__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .5rem;
  line-height: 1.25;
}

.cta-block__sub {
  font-size: .9rem;
  opacity: .85;
  margin: 0;
  line-height: 1.55;
}

.cta-block .btn--primary {
  background: #fff;
  color: var(--mp-primary);
  flex-shrink: 0;
}

/* ── Tags ── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tag {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  padding: .2rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

/* ── Related ── */
.related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}

.related__item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  text-decoration: none;
  transition: .15s ease;
}

.related__item:hover {
  border-color: var(--c-accent);
  background: #f0f4ff;
  text-decoration: none;
}

.related__item .label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--c-muted);
}

.related__item .title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--c-text);
}

/* ── Footer ── */
.footer {
  background: #132033;
  color: rgba(255, 255, 255, 0.80);
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: .85rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
}

.footer__links a:hover { color: #fff; }

/* ── Utility classes (remplace les inline styles — CSP safe) ── */
.section--stats   { padding: var(--gap-md) 0; }
.section--no-top  { padding-top: 0; }
.container--bc    { padding-top: 1rem; }
.mt-sm            { margin-top: 1rem; }
.mt-md            { margin-top: 1.25rem; }
.mt-lg            { margin-top: 1.5rem; }
.mt-xl            { margin-top: 2rem; }
.section__intro   { margin-top: .75rem; margin-bottom: 1.5rem; }
.section__intro--sm { margin-top: .75rem; margin-bottom: 1.25rem; }
.section__intro--lg { margin-top: .75rem; margin-bottom: 1.75rem; }
.section__sub     { margin-top: 2rem; margin-bottom: 1rem; }
.related__title   { margin-bottom: 1rem; font-size: 1rem; color: var(--c-muted); }
.mt-xs            { margin-top: .75rem; }
.text--meta       { margin-top: 1rem; font-size: .9rem; color: var(--c-muted); }
.text--muted-sm   { font-size: .85rem; color: var(--c-muted); }
.text--muted-note { font-size: .85rem; font-weight: 400; color: var(--c-muted); }
.text--warn       { color: var(--c-warn); }
.text--danger     { color: var(--c-danger); }
.flex-no-shrink   { flex-shrink: 0; }

/* ── Classes ajoutées pour fix CSP v1.1 ── */
.mb-sm             { margin-bottom: .75rem; }
.mb-md             { margin-bottom: 1rem; }
.mb-lg             { margin-bottom: 1.5rem; }
.mb-xl             { margin-bottom: 2rem; }
.mb-md-plus        { margin-bottom: 1.25rem; }
.mt-sm--mb-xl      { margin-top: 1rem; margin-bottom: 2rem; }
.mt-xs--mb-xl      { margin-top: .75rem; margin-bottom: 2rem; }
.table-wrap--my    { margin: 1rem 0; }
.breadcrumb--pb    { padding-bottom: 1.5rem; }
.text--intro       { font-size: .97rem; color: #b0ab9f; margin-bottom: 1.5rem; line-height: 1.75; }
.text--intro--short { font-size: .97rem; color: #b0ab9f; margin-bottom: 1rem; }
.text--ok          { color: var(--c-ok); }
.infobox--mt-sm    { margin-top: 1rem; }
.formula--mt-xl    { margin-top: 2rem; }
.section__sub--sm  { margin-top: 2rem; margin-bottom: .75rem; }
.section__h2       { margin: var(--gap-lg) 0 1.25rem; }
.links-row         { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; }

/* ── Pages légales — styles CSP-safe ── */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.legal-body h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: .5rem;
}

.legal-body .last-update {
  display: block;
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: 2.5rem;
}

.legal-body .section-title {
  margin-bottom: .75rem;
}

.legal-body .section__intro {
  max-width: 100%;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--c-border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 1.25rem 0 .5rem;
}

.legal-section p {
  font-size: .97rem;
  color: var(--c-text-soft);
  margin-bottom: .75rem;
  max-width: 100%;
  line-height: 1.75;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .75rem;
}

.legal-section ul li {
  font-size: .97rem;
  color: var(--c-text-soft);
  margin-bottom: .35rem;
  line-height: 1.7;
}

.legal-section strong {
  color: var(--c-text);
}

.legal-section a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-toc {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-toc h2 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
  margin-bottom: .75rem;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.legal-toc li {
  font-size: .92rem;
  margin-bottom: .3rem;
}

.legal-toc a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color .15s;
}

.legal-toc a:hover {
  color: var(--c-text);
}

.legal-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}

.legal-platforms span {
  font-size: .82rem;
  background: var(--mp-surface-muted);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  padding: .25rem .65rem;
  border-radius: 999px;
}

.pricing-box {
  background: rgba(242, 184, 75, .08);
  border: 1px solid rgba(242, 184, 75, .28);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
}

.pricing-option {
  flex: 1 1 180px;
}

.pricing-option .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-accent);
}

.pricing-option .period {
  font-size: .85rem;
  color: var(--c-muted);
}

.pricing-option .detail {
  font-size: .85rem;
  color: var(--c-text-soft);
  margin-top: .4rem;
}

.feature-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.feature-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .4rem 0;
  border-bottom: 1px solid var(--c-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .check {
  color: var(--c-green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.feature-list .feat {
  font-size: .95rem;
  color: var(--c-text-soft);
}

.feature-list .badge {
  font-size: .72rem;
  font-weight: 600;
  background: rgba(242, 184, 75, .18);
  color: var(--c-accent);
  padding: .15rem .45rem;
  border-radius: 999px;
  margin-left: .5rem;
  vertical-align: middle;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 1rem 0;
}

.data-table thead th {
  background: var(--c-surface);
  color: var(--c-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--c-border);
}

.data-table tbody td {
  padding: .8rem 1rem;
  color: var(--c-text-soft);
  vertical-align: top;
}

.data-table tbody td:first-child {
  color: var(--c-text);
  font-weight: 500;
}

.rights-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-top: 1rem;
}

.right-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.right-card .right-icon {
  font-size: 1.3rem;
  margin-bottom: .4rem;
}

.right-card .right-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .3rem;
  color: var(--c-text);
}

.right-card .right-desc {
  font-size: .85rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.badge-ok {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(25, 185, 111, .10);
  border: 1px solid rgba(25, 185, 111, .25);
  color: var(--c-green);
  font-size: .8rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 999px;
}

.legal-missing {
  background: #fff8e7;
  border: 1px solid rgba(242, 184, 75, .35);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--c-text);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .legal-body {
    padding: 2rem 1rem 4rem;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .nav__inner { gap: 1rem; }
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }

  .cta-block {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem;
  }

  .cta-block .btn--primary { width: 100%; justify-content: center; }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .pricing-box {
    padding: 1.25rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .nav { padding: .65rem 0; }
  .nav__logo { font-size: 1rem; }
  .nav__cta.btn {
    padding: .58rem .95rem;
    font-size: .88rem;
  }

  .hero {
    padding: 2.6rem 0 2.4rem;
  }

  .hero__tag { font-size: .76rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr; }
  .table-wrap {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem .25rem;
    -webkit-overflow-scrolling: touch;
  }

  .formula__eq {
    font-size: .92rem;
    line-height: 1.8;
  }

  .cta-block {
    padding: 1.25rem;
    border-radius: calc(var(--radius) * 1.2);
  }

  .tags,
  .footer__links { justify-content: center; }

  .footer__inner { flex-direction: column; text-align: center; }
}

/* Recherche — récemment ajoutés */
.recherche-recent {
  font-size: .85rem;
  color: var(--text-muted, #666);
  margin-bottom: .5rem;
  text-align: center;
}

/* Footer founder */
.footer-founder {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border, #e5e7eb);
}
.footer-founder__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .75rem;
  color: var(--text-main, #1a1a1a);
}
.footer-founder__text {
  font-size: .9rem;
  color: var(--text-muted, #555);
  line-height: 1.6;
  margin-bottom: .75rem;
}
.footer-founder__link {
  font-size: .875rem;
  color: var(--primary, #2563eb);
  text-decoration: none;
}
.footer-founder__link:hover { text-decoration: underline; }

/* Exemple chiffré */
.exemple-chiffre {
  padding: 3rem 1rem;
  background: var(--surface-alt, #f8fafc);
  text-align: center;
}
.exemple-chiffre__tableau {
  max-width: 480px;
  margin: 1.5rem auto;
  text-align: left;
  background: #fff;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.exemple-ligne {
  display: flex;
  justify-content: space-between;
  padding: .6rem 1rem;
  font-size: .9rem;
}
.exemple-ligne--header {
  background: var(--primary-soft, #eff6ff);
  font-weight: 600;
  font-size: .875rem;
  color: var(--primary, #2563eb);
}
.exemple-ligne--separator {
  padding: 0;
  height: 1px;
  background: var(--border, #e5e7eb);
}
.exemple-ligne--total {
  font-weight: 600;
  border-top: 2px solid var(--border, #e5e7eb);
}
.exemple-ligne--marge {
  background: var(--success-soft, #f0fdf4);
  font-weight: 700;
  color: var(--success, #16a34a);
}
.exemple-valeur--marge { color: var(--success, #16a34a); }
.exemple-chiffre__mention {
  font-size: .8rem;
  color: var(--text-muted, #666);
  max-width: 480px;
  margin: .75rem auto 1.5rem;
  line-height: 1.5;
}
.exemple-chiffre__cta { margin-top: .5rem; }

/* Bannière Pro post-simulation */
.mp-pro-sim-banner {
  position: relative;
  margin-top: 1.25rem;
  padding: 1rem 1rem 1rem 1.25rem;
  background: var(--primary-soft, #eff6ff);
  border-left: 4px solid var(--primary, #2563eb);
  border-radius: .5rem;
  font-size: .9rem;
}
.mp-pro-sim-banner__close {
  position: absolute;
  top: .5rem;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted, #666);
  line-height: 1;
}
.mp-pro-sim-banner__text {
  margin: 0 0 .5rem;
  font-weight: 600;
  color: var(--text-main, #1a1a1a);
}
.mp-pro-sim-banner__sub {
  margin: 0 0 .75rem;
  color: var(--text-muted, #555);
}
.mp-pro-sim-banner__cta {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
}

/* Bloc erreur (Type A) */
.section--erreur {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem 1rem;
  text-align: center;
}
.section--erreur .erreur-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 .75rem;
  color: #fff;
}
.section--erreur .erreur-sub {
  font-size: .95rem;
  line-height: 1.6;
  color: #ccc;
  margin: 0 0 1.5rem;
}
.section--erreur .btn { background: var(--c-accent, #e65c00); border-color: var(--c-accent, #e65c00); }
.tarifs-note--erreur { display: block; margin-top: .4rem; font-style: italic; color: #555; font-size: .82rem; }

/* Blocs SEO */
.section-seo { padding: 2rem 1rem 3rem; }
.seo-bloc { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid #eee; }
.seo-bloc:last-child { border-bottom: none; }
.section-seo h2 { font-size: clamp(1.1rem, 2.2vw, 1.35rem); font-weight: 700; margin: 0 0 1rem; color: #1a1a1a; }
.section-seo h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 .4rem; color: #1a1a1a; }
.section-seo p, .section-seo li { font-size: .9rem; line-height: 1.65; color: #333; }
.section-seo ul { padding-left: 1.25rem; margin: .5rem 0; }
.section-seo strong { color: #1a1a1a; }

/* Composants pages métier */
.hero__notice {
  display: inline-block;
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--c-muted);
  font-style: italic;
}

.trust-block {
  font-size: .78rem;
  color: var(--c-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
  margin-top: 1.5rem;
  line-height: 1.65;
}

.steps { display: flex; flex-direction: column; gap: .5rem; margin: 1.25rem 0; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--c-radius-sm, 6px);
  padding: 1rem 1.25rem;
}
.step__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: .15rem;
}
.step__body h3 { font-size: .9rem; font-weight: 700; color: var(--c-text); margin-bottom: .3rem; }
.step__body p  { font-size: .82rem; color: var(--c-muted); line-height: 1.6; margin: 0; }
.section-seo strong { color: #1a1a1a; }
.container--text   { max-width: 760px; }
.container--narrow { max-width: 620px; }
