    :root {
      /* Backgrounds */
      --mp-bg: #F6F7F4;
      --mp-bg-soft: #EEF2EC;
      --mp-bg-warm: #FAF8F3;

      /* Surfaces */
      --mp-surface: #FFFFFF;
      --mp-surface-muted: #F9FAF7;
      --mp-surface-green: #EEF9F2;

      /* Text */
      --mp-text: #132033;
      --mp-text-soft: #425067;
      --mp-text-muted: #6B7280;
      --mp-text-inverse: #FFFFFF;

      /* Primary MargePro */
      --mp-primary: #19B96F;
      --mp-primary-hover: #12965A;
      --mp-primary-active: #0F7F4D;
      --mp-primary-soft: #DDF7EA;
      --mp-primary-ultra-soft: #F0FBF5;

      /* Secondary */
      --mp-secondary: #315C72;
      --mp-secondary-hover: #24485A;
      --mp-secondary-soft: #E3EEF3;

      /* Community / warm accent */
      --mp-warm: #F2B84B;
      --mp-warm-soft: #FFF2D3;

      /* Borders */
      --mp-border: #DDE4DC;
      --mp-border-soft: #E8EEE6;

      /* Shadows */
      --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-shadow-lg: 0 24px 64px rgba(19, 32, 51, 0.10);

      /* Radius */
      --mp-radius-sm: 10px;
      --mp-radius-md: 16px;
      --mp-radius-lg: 24px;
      --mp-radius-xl: 32px;
      --mp-radius-pill: 999px;

      /* Rétrocompat — garder pour éviter casse d'éléments non migrés */
      --vert: #19B96F;
      --vert-dark: #12965A;
      --blanc: #FFFFFF;
      --noir: #132033;
      --card: var(--mp-surface);
      --card2: var(--mp-surface-muted);
      --bord: var(--mp-border-soft);
      --gris: var(--mp-text-muted);
      --gris2: var(--mp-text-soft);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 110px;
    }

    body {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(25, 185, 111, 0.08), transparent 34rem),
        radial-gradient(circle at top right, rgba(49, 92, 114, 0.06), transparent 32rem),
        var(--mp-bg);
      color: var(--mp-text);
      line-height: 1.55;
      min-width: 320px;
      margin: 0;
    }

    /* ── UTILS ── */
    .label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mp-primary);
      margin-bottom: 0.7rem;
    }

    .titre {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 0.93;
      letter-spacing: -0.01em;
      color: var(--mp-text);
    }

    /* Variantes de taille titre (remplacent les anciens style="" inline) */
    .titre--3xl { font-size: clamp(2rem, 5.2vw, 3.1rem); }
    .titre--xl  { font-size: clamp(1.8rem, 4.4vw, 3rem); }
    .titre--2xl { font-size: clamp(2rem, 5vw, 3rem); }

    /* Section sans padding-top (remplace style="padding-top:0") */
    .section--nopt { padding-top: 0; }

    .sep { border: none; border-top: 1px solid var(--mp-border); margin: 0; }

    .btn-vert {
      display: inline-block;
      background: var(--mp-primary);
      color: #FFFFFF;
      padding: 0.85rem 1.8rem;
      border-radius: var(--mp-radius-md);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid var(--mp-primary);
      box-shadow: 0 10px 24px rgba(25, 185, 111, 0.22);
      transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }
    .btn-vert:hover {
      background: var(--mp-primary-hover);
      border-color: var(--mp-primary-hover);
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(25, 185, 111, 0.28);
    }

    .btn-outline {
      display: inline-block;
      border: 1px solid var(--mp-border);
      color: var(--mp-text-soft);
      padding: 0.85rem 1.8rem;
      border-radius: var(--mp-radius-md);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: border-color 160ms ease, color 160ms ease;
    }
    .btn-outline:hover { border-color: var(--mp-primary); color: var(--mp-primary); }

    /* ── BANDEAU ── */
    .bandeau {
      background: rgba(255, 255, 255, 0.72);
      border-bottom: 1px solid var(--mp-border-soft);
      color: var(--mp-text-soft);
      text-align: center;
      padding: 0.5rem 1rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    /* ── NAV (structure unifiée .nav .nav__inner) ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--mp-border-soft);
    }

    .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: 0.5rem;
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--mp-text);
      text-decoration: none;
      letter-spacing: 0.03em;
      flex-shrink: 0;
    }

    .nav__dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--mp-primary);
      display: inline-block;
      flex-shrink: 0;
    }

    .nav__links {
      display: flex;
      gap: 1.5rem;
      margin-right: auto;
      list-style: none;
      padding: 0;
      margin-left: 0;
    }

    .nav__links a {
      color: var(--mp-text-soft);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 600;
      transition: color 160ms ease;
      white-space: nowrap;
    }

    .nav__links a:hover { color: var(--mp-text); }

    .nav__cta {
      background: var(--mp-primary) !important;
      color: #FFFFFF !important;
      border: 1px solid var(--mp-primary) !important;
      padding: 0.45rem 1rem !important;
      border-radius: var(--mp-radius-sm) !important;
      font-weight: 700 !important;
      font-size: 0.875rem;
      text-decoration: none;
      flex-shrink: 0;
      transition: background-color 160ms ease, box-shadow 160ms ease !important;
    }

    .nav__cta:hover {
      background: var(--mp-primary-hover) !important;
      border-color: var(--mp-primary-hover) !important;
      text-decoration: none;
    }

    /* ── NAV BURGER (mobile) ── */
    .nav__burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-shrink: 0;
    }
    .nav__burger span {
      display: block;
      height: 2px;
      background: var(--mp-text);
      border-radius: 2px;
      transition: all 180ms ease;
    }

    /* Garder .logo + .nav-links pour rétrocompat homepage */
    .logo {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--mp-text);
      text-decoration: none;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .logo em { font-style: normal; color: var(--mp-primary); }

    .nav-links { display: flex; gap: 1.5rem; list-style: none; }
    .nav-links a {
      color: var(--mp-text-soft);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: color 160ms ease;
    }
    .nav-links a:hover { color: var(--mp-text); }
    .nav-cta {
      background: var(--mp-primary) !important;
      color: #FFFFFF !important;
      padding: 0.35rem 0.9rem;
      border-radius: var(--mp-radius-sm);
      font-weight: 700 !important;
    }

    .breadcrumb {
      max-width: 1040px;
      margin: 0 auto;
      padding: 0.95rem 1.5rem 0;
      color: var(--mp-text-muted);
      font-size: 0.78rem;
    }

    .breadcrumb a {
      color: var(--mp-text-soft);
      text-decoration: none;
    }
    .breadcrumb a:hover { color: var(--mp-primary); }

    .breadcrumb span {
      color: var(--mp-text-muted);
      padding: 0 0.35rem;
    }

    /* ── HERO ── */
    .hero {
      padding: 4.5rem 1.5rem 3.5rem;
      max-width: 960px;
      margin: 0 auto;
      background:
        radial-gradient(circle at top left, rgba(25, 185, 111, 0.08), transparent 34rem),
        radial-gradient(circle at top right, rgba(49, 92, 114, 0.06), transparent 32rem),
        var(--mp-bg);
      color: var(--mp-text);
    }

    .hero-tag {
      display: inline-block;
      border: 1px solid var(--mp-border);
      color: var(--mp-text-muted);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: var(--mp-radius-sm);
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 9vw, 5.5rem);
      line-height: 0.92;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
      color: var(--mp-text);
    }

    .hero h1 em { font-style: normal; color: var(--mp-primary); }

    .hero-sub {
      color: var(--mp-text-muted);
      font-size: 1rem;
      font-weight: 400;
      max-width: 620px;
      margin-bottom: 1rem;
      line-height: 1.65;
    }

    .hero-pro-note {
      color: var(--mp-text);
      font-size: 0.86rem;
      font-weight: 600;
      max-width: 620px;
      margin-bottom: 1.4rem;
      line-height: 1.6;
    }

    .hero-selector {
      max-width: 680px;
      padding: 1.2rem;
      border: 1px solid var(--mp-border-soft);
      border-radius: var(--mp-radius-md);
      background: var(--mp-surface);
      box-shadow: var(--mp-shadow-sm);
      margin-bottom: 1.2rem;
    }

    .hero-selector__label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mp-text);
      margin-bottom: 0.75rem;
    }

    .hero-selector__fallback {
      display: inline-block;
      margin-top: 0.75rem;
      font-size: 0.8rem;
      color: var(--mp-primary);
      text-decoration: none;
      font-weight: 600;
    }
    .hero-selector__fallback:hover { text-decoration: underline; }

    .hero-reassurance {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 1.2rem;
      margin: 0.6rem 0 0;
      padding: 0;
      font-size: 0.78rem;
      color: var(--mp-text-muted);
    }
    .hero-reassurance span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .hero-reassurance span::before {
      content: '✓';
      color: var(--mp-primary);
      font-weight: 700;
      font-size: 0.7rem;
      flex-shrink: 0;
    }

    .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.8rem; }

    .hero-garanties { display: flex; flex-wrap: wrap; gap: 1.2rem; }
    .garantie {
      font-size: 0.78rem;
      color: var(--mp-text-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .garantie::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--mp-primary);
      flex-shrink: 0;
    }

    .section-intro {
      color: var(--mp-text-muted);
      font-size: 0.9rem;
      max-width: 700px;
      margin-top: 1rem;
      line-height: 1.7;
    }

    /* ── FRONTIÈRE GRATUIT / PRO ── */
    .frontiere {
      border-top: 1px solid var(--mp-border);
      scroll-margin-top: 110px;
    }

    .frontiere-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      margin-top: 2rem;
    }

    .frontiere-card {
      background: var(--mp-surface);
      padding: 1.8rem;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .frontiere-card--pro { background: var(--mp-primary-ultra-soft); border-left: 2px solid var(--mp-primary-soft); }

    .frontiere-card__kicker {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mp-primary);
      margin-bottom: 1rem;
    }

    .frontiere-card__list {
      list-style: none;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .frontiere-card__list li {
      color: var(--mp-text-muted);
      font-size: 0.84rem;
      padding: 0.35rem 0 0.35rem 1rem;
      position: relative;
      line-height: 1.5;
    }

    .frontiere-card__list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.92rem;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--mp-primary);
    }

    .frontiere-note {
      margin-top: 0.9rem;
      font-size: 0.8rem;
      color: var(--mp-text-muted);
    }

    /* ── EXEMPLE MULTI-STATUT ── */
    .multi-statut {
      border-top: 1px solid var(--mp-border);
      scroll-margin-top: 110px;
    }

    .multi-statut__table-wrap {
      margin-top: 1.8rem;
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      background: var(--mp-surface);
      overflow-x: auto;
    }

    .multi-statut__table {
      width: 100%;
      border-collapse: collapse;
    }

    .multi-statut__table th,
    .multi-statut__table td {
      padding: 1rem 1.1rem;
      border-bottom: 1px solid var(--mp-border);
      text-align: left;
      vertical-align: top;
      font-size: 0.83rem;
      line-height: 1.6;
    }

    .multi-statut__table th {
      background: var(--mp-surface-muted);
      color: var(--mp-text-muted);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .multi-statut__table td { color: var(--mp-text); }
    .multi-statut__table tr:last-child td { border-bottom: none; }

    .multi-statut__note {
      margin-top: 0.9rem;
      font-size: 0.78rem;
      color: var(--mp-text-muted);
      line-height: 1.6;
      max-width: 780px;
    }

    /* ── VERDICT STRIP ── */
    .verdict {
      border-top: 1px solid var(--mp-border);
      border-bottom: 1px solid var(--mp-border);
      background: var(--mp-surface);
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 1.5rem;
      flex-wrap: wrap;
    }

    .verdict-chiffre {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 3.5rem;
      color: var(--mp-primary);
      line-height: 1;
      white-space: nowrap;
    }
    .verdict-chiffre small {
      display: block;
      font-family: Inter, system-ui, sans-serif;
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--mp-text-muted);
      margin-top: 0.2rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .verdict-sep { width: 1px; height: 60px; background: var(--mp-border); flex-shrink: 0; }

    .verdict-points { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
    .verdict-points li {
      font-size: 0.82rem;
      color: var(--mp-text-muted);
      padding-left: 0.8rem;
      position: relative;
    }
    .verdict-points li::before {
      content: '';
      position: absolute; left: 0; top: 50%;
      transform: translateY(-50%);
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--mp-primary);
    }

    /* ── SECTION GÉNÉRIQUE ── */
    .section {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
      padding: 3.75rem 1.5rem;
      scroll-margin-top: 110px;
    }
    .section-sm { padding: 2.5rem 1.5rem; }

    /* ── CONTENEUR PAGE INTERNE ── */
    .content {
      max-width: 860px;
      margin: 0 auto;
    }
    .content .section {
      padding-left: 0;
      padding-right: 0;
    }

    /* ── METIERS ── */
    .metiers-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      margin-top: 2rem;
    }

    .famille-card {
      background: var(--mp-surface);
      padding: 1.8rem;
      text-decoration: none;
      color: inherit;
      display: block;
      transition: background 0.18s;
    }
    .famille-card:hover { background: var(--mp-surface-muted); }

    .famille-nom {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      text-transform: uppercase;
      color: var(--mp-text);
      margin-bottom: 0.4rem;
    }

    .famille-desc {
      font-size: 0.8rem;
      color: var(--mp-text-muted);
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .famille-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.9rem; }
    .tag {
      background: var(--mp-bg);
      border: 1px solid var(--mp-border);
      color: var(--mp-text-muted);
      font-size: 0.7rem;
      padding: 0.18rem 0.5rem;
      border-radius: var(--mp-radius-sm);
    }

    .famille-card__inner {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .famille-card__inner:hover .famille-nom { color: var(--vert); }

    .famille-lien {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--vert);
      letter-spacing: 0.02em;
      text-decoration: none;
      margin-top: 0.2rem;
    }
    .famille-lien:hover { text-decoration: underline; }

    /* ── RECHERCHE ── */
    .recherche {
      padding: 3rem 1.5rem;
      border-top: 1px solid var(--mp-border);
      border-bottom: 1px solid var(--mp-border);
      background: var(--mp-surface-muted);
    }

    .recherche h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 0.6rem;
      color: var(--mp-text);
    }

    .recherche p { color: var(--mp-text-muted); font-size: 0.875rem; margin-bottom: 1.5rem; }

    .recherche-form { display: flex; gap: 0.6rem; max-width: 560px; }
    .recherche-form--hero { max-width: 100%; }

    .recherche-input {
      flex: 1;
      background: var(--mp-surface);
      border: 1px solid var(--mp-border);
      color: var(--mp-text);
      padding: 0.8rem 1rem;
      border-radius: var(--mp-radius-sm);
      font-family: Inter, system-ui, sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .recherche-input:focus { border-color: var(--mp-primary); }
    .recherche-input::placeholder { color: var(--mp-text-muted); }

    .recherche-btn {
      background: var(--mp-primary);
      color: #FFFFFF;
      border: none;
      padding: 0.8rem 1.3rem;
      border-radius: var(--mp-radius-sm);
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .recherche-btn:hover { background: var(--mp-primary-hover); }
    .recherche-note { margin-top: 0.7rem; font-size: 0.72rem; color: var(--mp-text-muted); }

    /* ── CYCLE ── */
    .cycle-steps {
      display: flex;
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      overflow-x: auto;
      margin-top: 2rem;
    }

    .cycle-step {
      flex: 1;
      min-width: 120px;
      padding: 1.5rem 1rem;
      border-right: 1px solid var(--mp-border);
      background: var(--mp-surface);
    }
    .cycle-step:last-child { border-right: none; }
    .cycle-step.dim { opacity: 0.35; }

    .cycle-num {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 2rem;
      color: var(--mp-primary);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .cycle-step.dim .cycle-num { color: var(--mp-text-muted); }

    .cycle-step h3 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.25rem;
      color: var(--mp-text);
    }

    .cycle-step p { font-size: 0.72rem; color: var(--mp-text-muted); line-height: 1.4; }

    /* ── FEATURES GRID ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      overflow: hidden;
      margin-top: 2rem;
    }

    .feature-item {
      background: var(--mp-surface);
      padding: 1.8rem;
    }

    .feature-picto {
      margin-bottom: 1rem;
    }

    /* SVG picto */
    .picto {
      width: 32px;
      height: 32px;
      color: var(--mp-primary);
    }

    .feature-item h3 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 0.5rem;
      color: var(--mp-text);
    }

    .feature-item p { font-size: 0.82rem; color: var(--mp-text-muted); line-height: 1.6; }

    /* ── COLLAB ── */
    .collab {
      padding: 3.5rem 1.5rem;
      border-top: 1px solid var(--mp-border);
    }

    .collab-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .collab h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 6vw, 3.5rem);
      text-transform: uppercase;
      line-height: 0.92;
      margin-bottom: 1rem;
      color: var(--mp-text);
    }
    .collab h2 em { font-style: normal; color: var(--mp-primary); }

    .collab-intro { color: var(--mp-text-muted); font-size: 0.9rem; line-height: 1.65; }

    .collab-points { list-style: none; margin-top: 2rem; border-top: 1px solid var(--mp-border); }
    .collab-points li {
      padding: 1rem 0;
      border-bottom: 1px solid var(--mp-border);
      display: grid;
      grid-template-columns: 2rem 1fr;
      gap: 0.8rem;
      align-items: start;
    }

    .collab-num {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--mp-primary);
      line-height: 1;
    }

    .collab-points h4 {
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
      color: var(--mp-text);
    }

    .collab-points p { font-size: 0.78rem; color: var(--mp-text-muted); line-height: 1.5; }

    .collab-alert {
      margin-top: 2rem;
      border: 1px solid var(--mp-border);
      border-left: 3px solid var(--mp-primary);
      padding: 1rem 1.2rem;
      border-radius: var(--mp-radius-sm);
      background: var(--mp-surface);
    }

    .collab-alert p {
      font-size: 0.82rem;
      color: var(--mp-text-muted);
      line-height: 1.6;
    }

    .collab-alert strong { color: var(--mp-text); }

    /* ── PARADIGME ── */
    .paradigme {
      padding: 3.75rem 0;
      border-top: 1px solid var(--mp-border);
      scroll-margin-top: 110px;
    }

    .paradigme h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 4.8vw, 3.3rem);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 2rem;
      max-width: 14ch;
      color: var(--mp-text);
    }
    .paradigme h2 em { font-style: normal; color: var(--mp-primary); }

    .table-shell {
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      background: var(--mp-surface);
    }

    .diff-table { width: 100%; border-collapse: collapse; }

    .diff-table th {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mp-text-muted);
      padding: 0.6rem 1rem;
      text-align: left;
      border-bottom: 1px solid var(--mp-border);
    }

    .diff-table td {
      padding: 0.9rem 1rem;
      font-size: 0.82rem;
      border-bottom: 1px solid var(--mp-border);
      color: var(--mp-text);
      vertical-align: middle;
    }

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

    .diff-table .col-eux { color: var(--mp-text-muted); }
    .diff-table .col-nous { color: var(--mp-text); font-weight: 600; }
    .diff-table .col-nous span { color: var(--mp-primary); }
    .diff-table .col-nous a { color: inherit; text-decoration: none; }
    .diff-table .col-nous a:hover span { text-decoration: underline; }

    /* ── TARIFS ── */
    .tarifs { padding: 3.5rem 1.5rem; border-top: 1px solid var(--mp-border); }

    .tarifs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      overflow: hidden;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .tarif-card {
      background: var(--mp-surface);
      padding: 1.8rem;
      position: relative;
    }
    .tarif-card.pro { background: var(--mp-primary-ultra-soft); border-left: 2px solid var(--mp-primary-soft); }

    .tarif-badge {
      display: inline-block;
      background: var(--mp-primary-soft);
      color: var(--mp-primary-hover);
      border: 1px solid rgba(25, 185, 111, 0.22);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.18rem 0.6rem;
      border-radius: var(--mp-radius-pill);
      margin-bottom: 0.8rem;
    }

    .tarif-nom {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mp-text-muted);
      margin-bottom: 0.5rem;
    }

    .tarif-prix {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      color: var(--mp-text);
      line-height: 1;
      margin-bottom: 0.2rem;
    }
    .tarif-prix sup {
      font-size: 1rem;
      font-family: Inter, system-ui, sans-serif;
      font-weight: 400;
      vertical-align: top;
      margin-top: 0.35rem;
      display: inline-block;
    }

    .tarif-periode { font-size: 0.72rem; color: var(--mp-text-muted); margin-bottom: 1.2rem; }

    .tarif-features { list-style: none; border-top: 1px solid var(--mp-border); margin-bottom: 1.5rem; }
    .tarif-features li {
      font-size: 0.75rem;
      color: var(--mp-text-muted);
      padding: 0.42rem 0 0.42rem 1rem;
      border-bottom: 1px solid var(--mp-border);
      position: relative;
    }
    .tarif-features li:last-child { border-bottom: none; }
    .tarif-features li::before {
      content: '✓';
      position: absolute; left: 0;
      color: var(--mp-primary);
      font-weight: 700;
      font-size: 0.68rem;
    }

    .tarif-cta {
      display: block;
      text-align: center;
      padding: 0.65rem;
      border-radius: var(--mp-radius-sm);
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }
    .tarif-cta.vert { background: var(--mp-primary); color: #FFFFFF; border: 1px solid var(--mp-primary); }
    .tarif-cta.vert:hover { background: var(--mp-primary-hover); border-color: var(--mp-primary-hover); }
    .tarif-cta.outline { border: 1px solid var(--mp-border); color: var(--mp-text-muted); }
    .tarif-cta.outline:hover { border-color: var(--mp-primary); color: var(--mp-primary); }

    .tarifs-note { font-size: 0.78rem; color: var(--mp-text-muted); }
    .tarifs-note strong { color: var(--mp-text); }

    .tarifs-coming {
      margin-top: 1.5rem;
      border: 1px solid var(--mp-border);
      border-left: 3px solid var(--mp-text-muted);
      padding: 1rem 1.2rem;
      border-radius: var(--mp-radius-sm);
    }
    .tarifs-coming p { font-size: 0.78rem; color: var(--mp-text-muted); }
    .tarifs-coming a { color: var(--mp-primary); text-decoration: none; }

    /* ── TÉMOIGNAGES ── */
    .temoignages {
      padding: 3rem 1.5rem;
      border-top: 1px solid var(--mp-border);
    }

    .temoignages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .temoignage {
      background: var(--mp-surface);
      border: 1px solid var(--mp-border-soft);
      border-left: 3px solid var(--mp-primary);
      border-radius: var(--mp-radius-sm);
      padding: 1.4rem 1.6rem;
      margin: 0;
      box-shadow: var(--mp-shadow-sm);
    }

    .temoignage p {
      font-size: 0.88rem;
      color: var(--mp-text);
      line-height: 1.65;
      margin: 0 0 0.9rem;
      font-style: italic;
    }

    .temoignage footer {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mp-text-muted);
    }

    /* ── CONFIANCE ── */
    .confiance {
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      background: var(--mp-surface);
    }

    .confiance-section {
      border-top: 1px solid var(--mp-border);
      padding: 3rem 0 0;
      scroll-margin-top: 110px;
    }

    .confiance-item {
      flex: 1;
      min-width: 100px;
      text-align: center;
      padding: 1.8rem 1rem;
      border-right: 1px solid var(--mp-border);
    }
    .confiance-item:last-child { border-right: none; }

    .confiance-item--link {
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }
    .confiance-item--link:hover { background: var(--mp-surface-muted); }
    .confiance-item--link:hover .confiance-label { color: var(--mp-primary); }

    .confiance-chiffre {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 2.2rem;
      color: var(--mp-primary);
      display: block;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .confiance-label {
      font-size: 0.68rem;
      color: var(--mp-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--mp-border);
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      background: #132033;
      color: rgba(255, 255, 255, 0.88);
    }

    .footer-copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.6); }

    .footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
    .footer-links a {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: #FFFFFF; }

    /* ── CONTAINER ── */
    .container { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
    .container--page { max-width: 1040px; }
    .container--narrow { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }

    /* ── BTN ALIAS (compatibilité) ── */
    .btn { display: inline-block; padding: 0.85rem 1.8rem; border-radius: var(--mp-radius-sm); text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; }
    .btn--primary { background: var(--mp-primary); color: #FFFFFF; border: 1px solid var(--mp-primary); }
    .btn--primary:hover { background: var(--mp-primary-hover); border-color: var(--mp-primary-hover); }

    /* ── EXEMPLE CHIFFRÉ ── */
    .exemple-chiffre {
      padding: 3.5rem 1.5rem;
      border-top: 1px solid var(--mp-border);
      max-width: 600px;
    }

    .exemple-chiffre__tableau {
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      overflow: hidden;
      margin: 1.5rem 0;
    }

    .exemple-ligne {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 1.2rem;
      border-bottom: 1px solid var(--mp-border);
      font-size: 0.82rem;
    }
    .exemple-ligne:last-child { border-bottom: none; }

    .exemple-ligne--header {
      background: var(--mp-surface-muted);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--mp-text-muted);
    }

    .exemple-ligne--separator {
      padding: 0;
      height: 1px;
      background: var(--mp-border);
      display: block;
    }

    .exemple-ligne--total {
      background: var(--mp-surface-muted);
      font-weight: 600;
    }

    .exemple-ligne--marge {
      background: var(--mp-primary-ultra-soft);
      font-weight: 700;
    }

    .exemple-label { color: var(--mp-text-muted); }

    .exemple-valeur {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--mp-text);
      white-space: nowrap;
    }

    .exemple-valeur--marge { color: var(--mp-primary); }

    .exemple-chiffre__mention {
      font-size: 0.72rem;
      color: var(--mp-text-muted);
      line-height: 1.55;
      margin-bottom: 1.2rem;
    }
    .exemple-chiffre__mention a { color: var(--mp-text-soft); }

    .exemple-chiffre__cta { margin-top: 1rem; }

    /* ── FOOTER FOUNDER ── */
    .footer-founder {
      border-top: 1px solid var(--mp-border);
      padding: 2rem 1.5rem;
      max-width: 680px;
      background: #132033;
    }

    .footer-founder__title {
      font-size: 0.88rem;
      font-weight: 600;
      color: #FFFFFF;
      margin-bottom: 0.5rem;
    }

    .footer-founder__text {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.65;
      margin-bottom: 0.8rem;
    }

    .footer-founder__link {
      font-size: 0.78rem;
      color: var(--mp-primary);
      text-decoration: none;
      font-weight: 600;
    }
    .footer-founder__link:hover { text-decoration: underline; }

    /* ── RECHERCHE RÉSULTATS ── */
    .recherche-result {
      margin-top: 0.85rem;
      padding: 0.9rem 1rem;
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      background: var(--mp-surface);
      color: var(--mp-text-muted);
      font-size: 0.82rem;
      line-height: 1.6;
    }

    .recherche-result__msg--ok { color: var(--mp-primary); }
    .recherche-result__msg--error { color: #e07b2a; }

    .notify-form {
      display: flex;
      gap: 0.6rem;
      margin-top: 0.8rem;
    }

    .notify-form input {
      flex: 1;
      background: var(--mp-surface);
      border: 1px solid var(--mp-border);
      color: var(--mp-text);
      padding: 0.75rem 0.9rem;
      border-radius: var(--mp-radius-sm);
      font-family: Inter, system-ui, sans-serif;
      font-size: 0.88rem;
    }

    .notify-form button {
      background: var(--mp-primary);
      border: none;
      color: #FFFFFF;
      padding: 0.75rem 1rem;
      border-radius: var(--mp-radius-sm);
      font-family: Sora, Inter, system-ui, sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
    }

    /* ── ÉTATS ERREUR ── */
    .section--erreur {
      padding: 3.75rem 0;
      text-align: center;
      scroll-margin-top: 110px;
    }
    .erreur-headline {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 6vw, 3.6rem);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 1rem;
      color: var(--mp-text);
    }
    .erreur-sub { color: var(--mp-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
    .tarifs-note--erreur { font-size: 0.78rem; color: var(--mp-text-soft); margin-top: 0.5rem; }

    /* ── NAVIGATION MÉTIERS (FICHES SECTEUR) ── */
    .metier-nav {
      max-width: 1120px;
      margin: 0 auto;
      padding: 1.5rem 1.5rem 2rem;
      border-top: 1px solid var(--mp-border);
    }
    .metier-nav__title {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--mp-text-muted);
      margin-bottom: 0.75rem;
    }
    .metier-nav__list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .metier-nav__list a {
      display: inline-block;
      background: var(--mp-bg);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-sm);
      padding: 0.28rem 0.65rem;
      font-size: 0.78rem;
      color: var(--mp-text);
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s;
    }
    .metier-nav__list a:hover {
      border-color: var(--mp-primary);
      color: var(--mp-primary);
    }

    /* ── FOOTER PARTAGÉ ── */
    .footer {
      display: block; /* empêche footer { display:flex } de s'appliquer */
      background: #132033;
      color: rgba(255, 255, 255, 0.80);
      padding: 2rem 0;
      margin-top: 3rem;
      font-size: 0.85rem;
    }

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

    .footer__copy {
      color: rgba(255, 255, 255, 0.60);
    }

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

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

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

    /* ── FOOTER colonne (homepage : founder + barre) ── */
    .footer__inner--col {
      flex-direction: column;
      align-items: stretch;
    }
    .footer__inner--col .footer-founder {
      width: 100%;
      max-width: none;
      background: none;
      border-top: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding: 0 0 1.5rem;
      margin: 0 0 1.5rem;
    }
    .footer__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      width: 100%;
      gap: 1rem;
    }

    @media (max-width: 768px) {
      /* footer */
      .footer__inner { flex-direction: column; }
      .footer__links { justify-content: center; }
      .footer__row { flex-direction: column; align-items: flex-start; }
      /* nav burger */
      .nav__burger { display: flex; }
      .nav__cta { margin-left: auto; }
      .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--mp-border-soft);
        z-index: 99;
        margin-right: 0;
        margin-left: 0;
      }
      .nav__links.is-open { display: flex; }
      .nav__links a {
        padding: 0.85rem 1.5rem;
        border-bottom: 1px solid var(--mp-border-soft);
        white-space: normal;
      }
      .nav__links a:last-child { border-bottom: none; }
    }

    /* ── PAGE TARIFS ── */
    .tarifs-page {
      background: var(--mp-bg);
      min-height: 100vh;
    }

    .tarifs-kicker {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mp-primary);
      background: var(--mp-primary-ultra-soft);
      border: 1px solid var(--mp-primary-soft);
      border-radius: var(--mp-radius-pill);
      padding: 0.3rem 0.85rem;
      margin-bottom: 1rem;
    }

    .tarifs-hero {
      max-width: 1120px;
      margin: 0 auto;
      padding: 4rem 1.5rem 3rem;
      display: grid;
      grid-template-columns: 55% 45%;
      gap: 3rem;
      align-items: start;
    }

    .tarifs-hero__copy h1 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--mp-text);
      line-height: 1.2;
      margin-bottom: 1.25rem;
    }

    .tarifs-hero__intro {
      font-size: 1.05rem;
      color: var(--mp-text-soft);
      line-height: 1.7;
      margin-bottom: 1.75rem;
    }

    .tarifs-hero__actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .tarifs-hero__points {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .tarifs-hero__points li {
      font-size: 0.9rem;
      color: var(--mp-text);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .tarifs-hero__points li::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mp-primary);
      flex-shrink: 0;
    }

    .tarifs-hero__panel {
      background: #132033;
      color: #FFFFFF;
      border-radius: var(--mp-radius-lg);
      padding: 2rem;
    }

    .tarifs-hero__panel-kicker {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mp-primary);
      margin-bottom: 0.75rem;
    }

    .tarifs-hero__panel-copy {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .tarifs-hero__mini-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .tarifs-hero__mini-grid > div {
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--mp-radius-sm);
      padding: 1rem;
      text-align: center;
    }

    .tarifs-hero__mini-grid strong {
      display: block;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--mp-primary);
    }

    .tarifs-hero__mini-grid span {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.60);
    }

    .tarifs-band {
      background: var(--mp-surface);
      border-top: 1px solid var(--mp-border);
      border-bottom: 1px solid var(--mp-border);
    }

    .tarifs-band > .tarifs-band__inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .tarifs-band__item {
      text-align: center;
    }

    .tarifs-band__item strong {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      color: var(--mp-text);
      margin-bottom: 0.35rem;
    }

    .tarifs-band__item p {
      font-size: 0.85rem;
      color: var(--mp-text-muted);
      line-height: 1.55;
    }

    .tarifs-section {
      max-width: 1120px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .tarifs-section--compact {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .tarifs-section-head {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .tarifs-section-head h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--mp-text);
      margin-bottom: 0.75rem;
    }

    .tarifs-section-head p {
      font-size: 1rem;
      color: var(--mp-text-muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .tarifs-plans__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: stretch;
    }

    .tarifs-plan {
      background: var(--mp-surface);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-lg);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .tarifs-plan:hover {
      box-shadow: var(--mp-shadow-md);
    }

    .tarifs-plan--featured {
      background: var(--mp-primary);
      border-color: var(--mp-primary);
      transform: translateY(-8px);
      box-shadow: var(--mp-shadow-lg);
    }

    .tarifs-plan--featured:hover {
      transform: translateY(-10px);
    }

    .tarifs-plan__badge {
      display: inline-block;
      background: #FFFFFF;
      color: var(--mp-primary);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: var(--mp-radius-pill);
      padding: 0.25rem 0.7rem;
      align-self: flex-start;
    }

    .tarifs-plan__eyebrow {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mp-text-muted);
    }

    .tarifs-plan--featured .tarifs-plan__eyebrow {
      color: rgba(255, 255, 255, 0.75);
    }

    .tarifs-plan h3 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--mp-text);
      margin: 0;
    }

    .tarifs-plan--featured h3 {
      color: #FFFFFF;
    }

    .tarifs-plan__micro {
      font-size: 0.8rem;
      color: var(--mp-text-muted);
    }

    .tarifs-plan--featured .tarifs-plan__micro {
      color: rgba(255, 255, 255, 0.70);
    }

    .tarifs-plan__price {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--mp-text);
      line-height: 1;
    }

    .tarifs-plan--featured .tarifs-plan__price {
      color: #FFFFFF;
    }

    .tarifs-plan__price sup {
      font-size: 1.1rem;
      vertical-align: super;
    }

    .tarifs-plan__price-note {
      font-size: 0.8rem;
      color: var(--mp-text-muted);
      margin-top: 0.25rem;
    }

    .tarifs-plan--featured .tarifs-plan__price-note {
      color: rgba(255, 255, 255, 0.70);
    }

    .tarifs-plan__meta {
      font-size: 0.88rem;
      color: var(--mp-text-soft);
      line-height: 1.55;
    }

    .tarifs-plan--featured .tarifs-plan__meta {
      color: rgba(255, 255, 255, 0.80);
    }

    .tarifs-plan__highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .tarifs-plan__highlights span {
      font-size: 0.72rem;
      font-weight: 600;
      background: var(--mp-primary-ultra-soft);
      color: var(--mp-primary);
      border-radius: var(--mp-radius-pill);
      padding: 0.2rem 0.6rem;
    }

    .tarifs-plan--featured .tarifs-plan__highlights span {
      background: rgba(255, 255, 255, 0.15);
      color: #FFFFFF;
    }

    .tarifs-plan__features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      flex: 1;
    }

    .tarifs-plan__features li {
      font-size: 0.88rem;
      color: var(--mp-text);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      line-height: 1.45;
    }

    .tarifs-plan--featured .tarifs-plan__features li {
      color: #FFFFFF;
    }

    .tarifs-plan__features li::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--mp-primary);
      flex-shrink: 0;
      margin-top: 0.4em;
    }

    .tarifs-plan--featured .tarifs-plan__features li::before {
      background: rgba(255, 255, 255, 0.70);
    }

    .tarifs-plan__note {
      font-size: 0.75rem;
      color: var(--mp-text-muted);
      margin-top: auto;
    }

    .tarifs-plan--featured .tarifs-plan__note {
      color: rgba(255, 255, 255, 0.60);
    }

    /* Boutons tarifs-plan (overrides tarif-cta) */
    .tarifs-plan .tarif-cta {
      width: 100%;
      justify-content: center;
    }

    .btn-vert {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--mp-primary);
      color: #FFFFFF;
      border: 1.5px solid var(--mp-primary);
      border-radius: var(--mp-radius-md);
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
    }

    .btn-vert:hover {
      background: var(--mp-primary-hover);
      border-color: var(--mp-primary-hover);
      color: #FFFFFF;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--mp-text);
      border: 1.5px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
    }

    .btn-outline:hover {
      background: var(--mp-surface-muted);
      border-color: var(--mp-primary);
      color: var(--mp-primary);
    }

    .tarifs-compare {
      background: var(--mp-surface);
      border-radius: var(--mp-radius-lg);
      padding: 2.5rem;
      border: 1px solid var(--mp-border);
    }

    .table-shell {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

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

    .diff-table th,
    .diff-table td {
      padding: 0.75rem 1rem;
      text-align: left;
      border-bottom: 1px solid var(--mp-border-soft);
    }

    .diff-table th {
      font-weight: 700;
      color: var(--mp-text);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .diff-table td:first-child {
      color: var(--mp-text-soft);
    }

    .col-eux {
      color: var(--mp-text-muted);
      text-align: center;
    }

    .col-nous {
      color: var(--mp-primary);
      font-weight: 600;
      text-align: center;
    }

    .tarifs-faq {
      background: var(--mp-bg-soft);
      border-radius: var(--mp-radius-lg);
      padding: 2.5rem;
    }

    .tarifs-faq__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .tarifs-faq__item {
      position: relative;
      padding-left: 2.5rem;
    }

    .tarifs-faq__num {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--mp-primary);
      font-family: Sora, Inter, system-ui, sans-serif;
    }

    .tarifs-faq__item h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--mp-text);
      margin-bottom: 0.45rem;
    }

    .tarifs-faq__item p {
      font-size: 0.88rem;
      color: var(--mp-text-muted);
      line-height: 1.6;
    }

    .tarifs-cta {
      background: #132033;
      border-radius: var(--mp-radius-lg);
    }

    .tarifs-cta__panel {
      max-width: 1120px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
      text-align: center;
    }

    .tarifs-cta__panel h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 1rem;
    }

    .tarifs-cta__panel p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 2rem;
      line-height: 1.65;
    }

    .tarifs-cta__actions {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .tarifs-trust {
      max-width: 1120px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem;
      text-align: center;
    }

    .tarifs-confiance {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .tarifs-confiance > div {
      font-size: 0.85rem;
      color: var(--mp-text-muted);
    }

    /* Responsive tarifs */
    @media (max-width: 960px) {
      .tarifs-hero {
        grid-template-columns: 1fr;
      }
      .tarifs-band > .tarifs-band__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .tarifs-plans__grid {
        grid-template-columns: 1fr;
      }
      .tarifs-plan--featured {
        transform: none;
      }
      .tarifs-faq__grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── PAGE INTERNE — HERO ── */
    .page-hero {
      max-width: 860px;
      margin: 0 auto;
      padding: 3rem 1.5rem 2rem;
      border-bottom: 1px solid var(--mp-border);
    }

    .page-label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mp-primary);
      margin-bottom: 0.75rem;
    }

    .page-hero h1 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 7vw, 3.8rem);
      text-transform: uppercase;
      line-height: 0.93;
      letter-spacing: -0.01em;
      margin-bottom: 1.2rem;
      color: var(--mp-text);
    }

    .page-hero h1 em { font-style: normal; color: var(--mp-primary); }

    .page-intro {
      color: var(--mp-text-muted);
      font-size: 1rem;
      max-width: 580px;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    /* ── H2 DANS SECTIONS CONTENU ── */
    .content .section h2,
    .section > h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(1.4rem, 3.5vw, 2rem);
      text-transform: uppercase;
      line-height: 0.96;
      letter-spacing: -0.01em;
      margin-bottom: 1.2rem;
      color: var(--mp-text);
    }
    .content .section h2 em,
    .section > h2 em { font-style: normal; color: var(--mp-primary); }

    .content .section p,
    .section > p { font-size: 0.88rem; color: var(--mp-text-muted); line-height: 1.7; margin-bottom: 0.8rem; }

    /* ── TABLEAU COMPARATIF ── */
    .comparatif-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      overflow: hidden;
      margin: 1.5rem 0;
      font-size: 0.85rem;
    }
    .comparatif-table thead { background: var(--mp-surface-muted); }
    .comparatif-table th {
      text-align: left;
      padding: 0.8rem 1rem;
      font-weight: 700;
      color: var(--mp-text);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 1px solid var(--mp-border);
    }
    .comparatif-table td {
      padding: 0.75rem 1rem;
      color: var(--mp-text-muted);
      border-bottom: 1px solid var(--mp-border);
    }
    .comparatif-table tbody tr:last-child td { border-bottom: none; }
    .comparatif-table tbody tr:nth-child(even) td { background: var(--mp-surface-muted); }

    /* ── LISTE FEATURES ── */
    .feature-list {
      list-style: none;
      padding: 0;
      border-top: 1px solid var(--mp-border);
      margin: 1.5rem 0;
    }
    .feature-list li {
      padding: 0.7rem 0 0.7rem 1.2rem;
      border-bottom: 1px solid var(--mp-border);
      font-size: 0.88rem;
      color: var(--mp-text-muted);
      position: relative;
      line-height: 1.5;
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--mp-primary); font-weight: 700; }
    .feature-list li strong { color: var(--mp-text); }

    /* ── PRO BLOCS ── */
    .pro-blocs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      overflow: hidden;
      margin: 1.5rem 0;
    }
    .pro-bloc {
      background: var(--mp-surface);
      padding: 1.5rem;
    }
    .pro-bloc h3 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--mp-text);
      margin-bottom: 0.5rem;
    }
    .pro-bloc p { font-size: 0.8rem; color: var(--mp-text-muted); line-height: 1.6; margin: 0; }

    /* ── NIVEAUX GRATUIT ── */
    .niveaux {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      overflow: hidden;
      margin: 1.5rem 0;
    }
    .niveau {
      background: var(--mp-surface);
      padding: 1.5rem;
    }
    .niveau.pro { background: #F0FBF6; }
    .niveau-header { margin-bottom: 1rem; border-bottom: 1px solid var(--mp-border); padding-bottom: 0.8rem; }
    .niveau-nom {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      color: var(--mp-text);
      margin-bottom: 0.2rem;
    }
    .niveau-prix {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--mp-text);
      line-height: 1;
      margin-bottom: 0.15rem;
    }
    .niveau-prix.pro { color: var(--mp-primary); }
    .niveau-periode { font-size: 0.72rem; color: var(--mp-text-muted); }
    .niveau-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .niveau-features li {
      padding: 0.45rem 0 0.45rem 1rem;
      font-size: 0.8rem;
      color: var(--mp-text-muted);
      position: relative;
      line-height: 1.45;
      border-bottom: 1px solid var(--mp-border);
    }
    .niveau-features li:last-child { border-bottom: none; }
    .niveau-features li::before { content: '✓'; position: absolute; left: 0; color: var(--mp-primary); font-weight: 700; font-size: 0.75rem; }
    .niveau-features li strong { color: var(--mp-text); font-weight: 700; }

    /* ── FAQ LISTE ── */
    .faq-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
      border-top: 1px solid var(--mp-border);
    }
    .faq-item {
      border-bottom: 1px solid var(--mp-border);
      padding: 1.2rem 0;
    }
    .faq-q {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--mp-text);
      margin-bottom: 0.5rem;
      cursor: default;
    }
    .faq-a {
      font-size: 0.83rem;
      color: var(--mp-text-muted);
      line-height: 1.65;
    }
    .faq-a strong { color: var(--mp-text); }

    /* ── CTA FINAL (pages internes) ── */
    .cta-final {
      padding: 3rem 1.5rem;
      text-align: center;
      border-top: 1px solid var(--mp-border);
    }
    .cta-final h2 {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      text-transform: uppercase;
      line-height: 0.95;
      margin-bottom: 0.8rem;
      color: var(--mp-text);
    }
    .cta-final h2 em { font-style: normal; color: var(--mp-primary); }
    .cta-final p { color: var(--mp-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── À PROPOS — CLASSES SPÉCIFIQUES ── */
    .faits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1px;
      background: var(--mp-border);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      overflow: hidden;
      margin: 1.5rem 0;
    }
    .fait-item { background: var(--mp-surface); padding: 1.4rem; }
    .fait-chiffre {
      font-family: Sora, Inter, system-ui, sans-serif;
      font-weight: 800;
      font-size: 2rem;
      color: var(--mp-primary);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .fait-label { font-size: 0.75rem; color: var(--mp-text-muted); line-height: 1.4; }

    .validation-list {
      list-style: none;
      padding: 0;
      border-top: 1px solid var(--mp-border);
      margin: 1.5rem 0;
    }
    .validation-list li {
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--mp-border);
      display: grid;
      grid-template-columns: 2rem 1fr;
      gap: 0.8rem;
      align-items: start;
    }
    .validation-list li:last-child { border-bottom: none; }
    .val-check {
      width: 22px; height: 22px;
      border: 1.5px solid var(--mp-primary);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 0.1rem;
    }
    .val-check svg { width: 12px; height: 12px; color: var(--mp-primary); }
    .val-content h4 { font-size: 0.88rem; font-weight: 700; color: var(--mp-text); margin-bottom: 0.2rem; }
    .val-content p { font-size: 0.8rem; color: var(--mp-text-muted); margin: 0; line-height: 1.55; }

    .secu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .secu-item {
      background: var(--mp-surface);
      border: 1px solid var(--mp-border);
      border-radius: var(--mp-radius-md);
      padding: 1.2rem 1.4rem;
    }
    .secu-item h4 { font-size: 0.83rem; font-weight: 700; color: var(--mp-text); margin-bottom: 0.3rem; }
    .secu-item p { font-size: 0.75rem; color: var(--mp-text-muted); margin: 0; line-height: 1.55; }

    .transparence-list {
      list-style: none;
      padding: 0;
      border-top: 1px solid var(--mp-border);
      margin: 1.5rem 0;
    }
    .transparence-list li {
      padding: 0.75rem 0 0.75rem 1.2rem;
      border-bottom: 1px solid var(--mp-border);
      font-size: 0.86rem;
      color: var(--mp-text-muted);
      position: relative;
      line-height: 1.55;
    }
    .transparence-list li:last-child { border-bottom: none; }
    .transparence-list li::before { content: '→'; position: absolute; left: 0; color: var(--mp-primary); font-weight: 700; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      html { scroll-padding-top: 88px; }
      .bandeau {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
      }
      nav {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
      }
      .logo { font-size: 1.05rem; }
      .nav-cta {
        padding: 0.45rem 0.7rem;
        font-size: 0.78rem;
      }
      .breadcrumb {
        padding: 0.75rem 1rem 0;
        font-size: 0.74rem;
      }
      .hero {
        padding-top: 3rem;
        padding-bottom: 2.5rem;
      }
      .hero-ctas > * {
        width: 100%;
        text-align: center;
      }
      .hero-garanties {
        gap: 0.75rem 1rem;
      }
      .section-intro { font-size: 0.85rem; }
      .frontiere-grid { grid-template-columns: 1fr; }
      .multi-statut__table-wrap {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
      }
      .multi-statut__table,
      .multi-statut__table thead,
      .multi-statut__table tbody,
      .multi-statut__table tr,
      .multi-statut__table th,
      .multi-statut__table td { display: block; }
      .multi-statut__table thead { display: none; }
      .multi-statut__table td {
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
      }
      .metiers-grid { grid-template-columns: 1fr; }
      .collab-inner { grid-template-columns: 1fr; gap: 1.5rem; }
      .nav-links { display: none; }
      .recherche-form { flex-direction: column; }
      .notify-form { flex-direction: column; }
      .hero-selector { padding: 1rem; }
      .titre--xl,
      .paradigme h2,
      .erreur-headline { max-width: none; }
      .confiance-item { border-right: none; border-bottom: 1px solid var(--mp-border); }
      footer { flex-direction: column; text-align: center; }
      .exemple-chiffre { max-width: 100%; }
    }

    /* ── FOCUS & TRANSITIONS ── */
    a, button, .btn, .btn-vert, .btn-outline, .famille-card, .tarif-cta { transition: color 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.18s, opacity 0.18s; }

    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible,
    .btn-vert:focus-visible,
    .btn-outline:focus-visible,
    .nav-cta:focus-visible {
      outline: 2px solid var(--mp-primary);
      outline-offset: 3px;
      border-radius: 2px;
    }
