    /* ════════════════════════════════════════════════════════════════════
       SOCLE LANDING PAGES — style partagé des pages dédiées (CNAPS, OQTF,
       effacement TAJ/B2…). Chargé via /css/landing.css sur chaque landing.
       Tout repose sur les variables globales de style.css (couleurs, dégradé).
       Classes génériques réutilisables : .lp-* (cartes), .page-hero,
       .section-*, .motifs-*, .recours-*, .accompagnement-*, .faq-*.
       ════════════════════════════════════════════════════════════════════ */

    /* ── CONTRASTE — fonds sombres ── */
    .section-dark .s-tag { color: var(--vert-sauge); }
    .section-dark .s-line { background: var(--vert-sauge); }

    /* ── HERO ── */
    .page-hero {
      background: var(--degrade);
      padding: 120px 64px 96px;
      text-align: center;
    }
    .page-hero-tag {
      font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(255,255,255,0.62); margin-bottom: 36px;
    }
    .page-hero h1 {
      font-weight: 300; font-size: 52px;
      letter-spacing: 0.03em; color: var(--blanc); line-height: 1.15;
      margin-bottom: 32px; max-width: 900px; margin-left: auto; margin-right: auto;
    }
    .page-hero h1 strong { font-weight: 400; color: var(--vert-sauge); }
    .page-hero-sub {
      font-weight: 300; font-size: 18px;
      color: var(--vert-sauge); letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 36px;
    }
    .page-hero-text {
      font-size: 15px; line-height: 1.9; font-weight: 300;
      color: rgba(255,255,255,0.76); max-width: 520px; margin: 0 auto 48px;
    }

    /* Mot-clé accentué — remplace le bloc .highlight-offset sur les heros landing */
    .page-hero h1 strong { font-weight: 400; color: var(--blanc); }
    .page-hero .highlight-offset {
      background: none; padding: 0; color: var(--vert-sauge);
      position: relative; white-space: nowrap;
    }
    .page-hero .highlight-offset::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -0.1em;
      height: 2px; background: var(--vert-sauge);
      transform: scaleX(0); transform-origin: left;
      animation: heroUnderline 0.9s cubic-bezier(0.22,0.61,0.36,1) 0.45s forwards;
    }
    @keyframes heroUnderline { to { transform: scaleX(1); } }

    /* CTA — pastille blanche contrastée + soulèvement */
    .page-hero .hero-cta {
      background: var(--blanc); color: var(--bleu-nuit); font-weight: 600;
      padding: 16px 40px;
      box-shadow: 0 14px 34px rgba(0,0,0,0.28);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .page-hero .hero-cta:hover {
      background: var(--blanc); color: var(--bleu-nuit);
      transform: translateY(-2px); box-shadow: 0 20px 46px rgba(0,0,0,0.36);
    }

    /* Actions hero : CTA principal */
    .page-hero-actions {
      display: flex; flex-direction: column; align-items: center; gap: 18px;
    }

    /* Ligne de réassurance */
    .page-hero-meta {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 14px 30px; margin-top: 50px;
    }
    .page-hero-meta span {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 400; color: rgba(255,255,255,0.72);
    }
    .page-hero-meta span::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--vert-sauge); flex-shrink: 0;
    }

    /* ── SECTION WRAPPERS ── */
    .section-white { background: #ffffff; padding: 80px 64px; }
    .section-light { background: #fafaf8; padding: 80px 64px; }
    .section-grey { background: #f0f2f4; padding: 80px 64px; }
    .section-dark { background: var(--bleu-nuit); padding: 80px 64px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-header { margin-bottom: 52px; }
    .section-header h2 {
      font-weight: 200; font-size: 36px;
      letter-spacing: 0.03em; color: var(--bleu-nuit); line-height: 1.3;
    }
    .section-dark .section-header h2 { color: var(--blanc); }

    /* ── INDEX DE SECTION (numéro pâle, rythme éditorial) ── */
    #main { counter-reset: lp-section; }
    .section-header { counter-increment: lp-section; }
    .section-header::before {
      content: counter(lp-section, decimal-leading-zero);
      display: block;
      font-family: 'Raleway', sans-serif;
      font-size: 56px; font-weight: 200; line-height: 1;
      letter-spacing: 0.02em;
      color: rgba(45,63,92,0.13);
      margin-bottom: 16px;
    }
    .section-dark .section-header::before { color: rgba(255,255,255,0.16); }

    /* ── CARDS GRILLE 2×2 ── */
    .lp-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }
    .lp-card {
      background: var(--blanc); padding: 40px 36px;
      transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
      cursor: default; position: relative; overflow: hidden;
      border-bottom: 2px solid transparent;
    }
    .section-light .lp-card { background: #ffffff; }
    .lp-card:hover {
      background: var(--bleu-ardoise);
      box-shadow: 0 8px 32px rgba(45,63,92,0.18);
      border-bottom-color: var(--vert-sauge);
    }
    .lp-card:hover .lp-num,
    .lp-card:hover .lp-card-title,
    .lp-card:hover .lp-card-text { color: var(--blanc); }
    .lp-card:hover .lp-num { color: var(--vert-sauge); }
    .lp-num {
      font-family: 'Raleway', sans-serif; font-size: 11px;
      letter-spacing: 0.15em; color: var(--bleu-ardoise);
      margin-bottom: 20px; font-weight: 500; position: relative; z-index: 1;
    }
    .lp-card-title {
      font-family: 'Raleway', sans-serif; font-size: 20px;
      font-weight: 500; color: var(--bleu-nuit); margin-bottom: 14px;
      transition: color 0.3s; position: relative; z-index: 1;
    }
    .lp-card-text {
      font-family: 'Raleway', sans-serif; font-size: 14px;
      color: var(--gris-ardoise); line-height: 1.75; font-weight: 400;
      transition: color 0.3s; position: relative; z-index: 1;
    }

    /* ── MOTIFS (val style) ── */
    .motifs-list { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
    .motif-item { border-left: 1px solid var(--vert-sauge); padding-left: 20px; }
    .motif-item h3,
    .motif-item h4 {
      font-family: 'Raleway', sans-serif; font-size: 13px;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--bleu-ardoise); margin-bottom: 7px; font-weight: 500;
    }
    .motif-item p {
      font-family: 'Raleway', sans-serif; font-size: 14px;
      color: var(--gris-ardoise); line-height: 1.75; font-weight: 400;
    }

    /* ── LISTE MÉTIERS (sobre) ── */
    .metiers-list {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 16px 40px; margin-top: 12px; padding: 0;
      list-style: none;
    }
    .metiers-list li {
      font-family: 'Raleway', sans-serif; font-size: 15px;
      color: var(--bleu-nuit); font-weight: 400; line-height: 1.6;
      padding-left: 22px; position: relative;
    }
    .metiers-list li::before {
      content: ''; position: absolute; left: 0; top: 0.72em;
      width: 10px; height: 1px; background: var(--vert-sauge);
    }
    .motifs-intro {
      font-size: 15px; line-height: 1.85; color: var(--gris-ardoise); font-weight: 300;
      margin-bottom: 36px;
    }
    .motifs-conclusion {
      margin-top: 48px;
      background: var(--bleu-nuit);
      color: var(--blanc);
      font-size: 16px; line-height: 1.85; font-weight: 300;
      padding: 36px 40px;
      border-radius: 20px;
      box-shadow: 0 8px 40px rgba(26,26,46,0.22), 0 2px 8px rgba(26,26,46,0.12);
    }
    .motifs-conclusion strong { font-weight: 500; color: var(--vert-sauge); }

    /* ── TIMELINE RECOURS ── */
    .recours-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
    .recours-item { display: flex; gap: 28px; }
    .recours-left { display: flex; flex-direction: column; align-items: center; }
    .recours-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--vert-sauge); flex-shrink: 0; margin-top: 4px;
    }
    .recours-connector {
      width: 1px; flex: 1; min-height: 32px;
      background: rgba(189,201,190,0.5); margin: 6px 0;
    }
    .recours-item:last-child .recours-connector { display: none; }
    .recours-right { padding-bottom: 40px; }
    .recours-step-num {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--bleu-ardoise); margin-bottom: 6px; font-weight: 500;
    }
    .recours-step-title {
      font-size: 17px; font-weight: 500; color: var(--bleu-nuit);
      margin-bottom: 10px; letter-spacing: 0.02em;
    }
    .recours-step-text {
      font-size: 14px; color: var(--gris-ardoise); line-height: 1.85; font-weight: 300;
    }

    /* ── ACCOMPAGNEMENT ── */
    .accompagnement-grid { display: flex; gap: 72px; align-items: stretch; }
    .accompagnement-photo {
      flex: 0 0 36%; min-height: 480px;
      position: relative; overflow: hidden;
      clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    }
    .accompagnement-photo img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      display: block;
      filter: grayscale(20%);
      transition: filter 0.6s ease, transform 0.6s ease;
    }
    .accompagnement-photo:hover img { filter: grayscale(0%); transform: scale(1.04); }

    /* ── RECOURS CARD ── */
    .recours-card {
      border-radius: 20px; overflow: hidden;
      margin-top: 36px; background: var(--blanc);
      box-shadow: 0 2px 32px rgba(0,0,0,0.07);
      padding: 44px 48px;
    }
    .accompagnement-content { flex: 1; }
    .accompagnement-intro {
      font-size: 15px; line-height: 1.85; color: var(--gris-ardoise); font-weight: 300;
      margin-bottom: 32px;
    }
    .accompagnement-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
    .acc-step {
      display: flex; gap: 28px; align-items: flex-start;
      padding: 22px 0; border-bottom: 1px solid rgba(45,63,92,0.07);
    }
    .acc-step:last-child { border-bottom: none; }
    .acc-step:first-child { padding-top: 0; }
    .acc-step-num {
      font-size: 30px; letter-spacing: 0.04em; font-weight: 400;
      color: rgba(45,63,92,0.22); flex-shrink: 0; min-width: 48px; line-height: 1;
      padding-top: 2px;
    }
    .acc-step:first-child .acc-step-num { color: var(--vert-sauge); }
    .acc-step-body {}
    .acc-step-title {
      font-size: 11px; font-weight: 500; color: var(--bleu-nuit);
      margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase;
    }
    .acc-step-text { font-size: 14px; color: var(--gris-ardoise); line-height: 1.75; font-weight: 300; }
    .accompagnement-note {
      font-size: 13px; color: var(--gris-ardoise); line-height: 1.7; font-weight: 300;
      border-top: 1px solid rgba(45,63,92,0.08); padding-top: 20px; font-style: italic;
    }

    /* ── FAQ ACCORDÉON ── */
    .faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
    .faq-item {
      border-top: 1px solid rgba(45,63,92,0.1);
    }
    .faq-item:last-child { border-bottom: 1px solid rgba(45,63,92,0.1); }
    .faq-question {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 4px; gap: 16px;
      font-family: 'Raleway', sans-serif; font-size: 15px;
      font-weight: 400; color: var(--bleu-nuit); text-align: left;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--bleu-ardoise); }
    .faq-question[aria-expanded="true"] { color: var(--bleu-ardoise); }
    .faq-icon {
      flex-shrink: 0; width: 20px; height: 20px;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.3s ease;
    }
    .faq-icon::before, .faq-icon::after {
      content: ''; position: absolute;
      background: var(--bleu-ardoise);
    }
    .faq-icon { position: relative; }
    .faq-icon::before { width: 12px; height: 1px; }
    .faq-icon::after { width: 1px; height: 12px; transition: transform 0.3s ease, opacity 0.3s ease; }
    .faq-question[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); opacity: 0; }
    .faq-answer {
      overflow: hidden; max-height: 0; opacity: 0;
      transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease 0.05s;
    }
    .faq-answer-inner {
      padding: 0 4px 22px;
      font-size: 14px; line-height: 1.85; color: var(--gris-ardoise); font-weight: 300;
    }
    .faq-answer.open { max-height: 800px; opacity: 1; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .page-hero { padding: 60px 24px 52px; }
      .page-hero h1 { font-size: 34px; }
      .section-header h2 { font-size: 22px; }
      .section-white, .section-light, .section-grey, .section-dark { padding: 60px 24px; }
      .accompagnement-grid { flex-direction: column; align-items: center; }
      .accompagnement-photo {
        flex: unset; width: 100%; min-height: 0; clip-path: none;
        border-radius: 20px; overflow: hidden;
        position: relative; aspect-ratio: 1/1;
      }
      .accompagnement-photo img {
        position: absolute; inset: 0;
        width: 100%; height: 100%; object-fit: cover; object-position: center top;
        display: block;
      }
      .accompagnement-photo::after {
        content: ''; position: absolute; inset: 0; z-index: 1;
        background: linear-gradient(to top, rgba(26,26,46,0.90) 0%, rgba(26,26,46,0.42) 32%, transparent 58%);
      }
      .accompagnement-content { width: 100%; padding: 32px 28px 40px; background: var(--blanc); border-radius: 20px; box-shadow: 0 2px 24px rgba(0,0,0,0.06); margin-top: 24px; }
      .recours-card { border-radius: 14px; padding: 32px 32px; }
      footer { padding: 20px 24px; }
    }

    /* ── MOBILE ── */
    @media screen and (max-width: 600px) {
      /* Carousel lp-grid */
      .lp-grid { display: flex; flex-direction: row; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-left: 20px; overscroll-behavior-x: contain; touch-action: pan-x pan-y; will-change: scroll-position; gap: 10px; padding: 4px 20px 20px; scrollbar-width: none; }
      .lp-grid::-webkit-scrollbar { display: none; }
      .lp-card { flex: 0 0 82%; scroll-snap-align: start; border-radius: 16px; touch-action: pan-x pan-y; }
      .lp-card * { touch-action: pan-x pan-y; }
      .page-hero { padding: 64px 20px 52px; }
      .page-hero-tag { font-size: 9px; margin-bottom: 24px; }
      .page-hero h1 { font-size: 28px; }
      .page-hero-text { font-size: 14px; max-width: 100%; margin-bottom: 40px; }
      .section-white, .section-light, .section-grey, .section-dark { padding: 48px 20px; }
      .section-header { margin-bottom: 36px; }
      .section-header h2 { font-size: 20px; }

      .exp-capsule { border-radius: 14px; }
      .motifs-intro { font-size: 14px; }
      .motifs-conclusion { font-size: 15px; padding: 24px 20px; }
      .accompagnement-photo { aspect-ratio: 4/5; }
      .recours-card { border-radius: 14px; padding: 24px 20px; }
      .recours-step-title { font-size: 15px; }
      .faq-question { font-size: 14px; padding: 18px 4px; }
      .accompagnement-photo { border-radius: 16px; }
      .accompagnement-content { padding: 24px 20px 32px; margin-top: 20px; border-radius: 16px; }
      .accompagnement-intro { font-size: 14px; }
      .metiers-list { grid-template-columns: 1fr; gap: 12px; }
      .metiers-list li { font-size: 14px; }
    }
