/* ============================================================
   Offres alternances & stages — Paris Digital School (v5)
   Extracted from standalone HTML; nav/footer handled by base.
   ============================================================ */
    :root {
      --pds-blue:        #0084BC;
      --pds-blue-bright: #27AAE1;
      --pds-blue-deep:   #00638c;
      --pds-orange:      #FF5500;
      --pds-ink:         #1c2b33;
      --pds-body:        #46555d;
      --pds-line:        #e4ebef;
      --pds-tint:        #f0f8fc;   /* fond bleuté très clair */
      --pds-tint-2:      #f7fafc;
      --pds-white:       #ffffff;
      --pds-dark:        #14222b;   /* footer */
      --pds-gradient:    linear-gradient(270deg, var(--pds-blue-bright) 0%, var(--pds-blue) 100%);

      --ff-body:  'Jost', system-ui, -apple-system, sans-serif;
      --ff-serif: 'Libre Baskerville', Georgia, serif;

      --radius-card: 10px 10px 70px 10px;   /* coins asymétriques signature */
      --radius-soft: 14px;
      --shadow-soft: 0 8px 30px rgba(0,72,104,.07);
      --container: 1200px;
      --header-h: 78px;
      --anchor-h: 60px;
    }

    *,*::before,*::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; overflow-x: clip; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
    }

    body {
      margin: 0;
      font-family: var(--ff-body);
      color: var(--pds-body);
      background: var(--pds-white);
      line-height: 1.65;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,h2,h3,h4 { font-family: var(--ff-serif); color: var(--pds-ink); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
    p { margin: 0 0 1rem; }
    a { color: var(--pds-blue); text-decoration: none; transition: color .2s; }
    a:hover { color: var(--pds-blue-deep); }
    img { max-width: 100%; height: auto; display: block; }
    ul,ol { margin: 0 0 1rem; padding-left: 1.2rem; }
    li { margin-bottom: .4rem; }
    strong { color: var(--pds-ink); font-weight: 600; }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

    /* ---------- Boutons : ombre décalée, inversion au survol ---------- */
    .btn-pds {
      --bg: var(--pds-blue);
      --fg: #fff;
      display: inline-flex; align-items: center; gap: .55em;
      font-family: var(--ff-body); font-weight: 600; font-size: .98rem;
      padding: .8em 1.5em;
      color: var(--fg); background: var(--bg);
      border: 2px solid var(--bg);
      border-radius: 8px;
      box-shadow: 5px 5px 0 rgba(0,0,0,.18);
      cursor: pointer;
      transition: transform .18s, box-shadow .18s, background .2s, color .2s;
      text-align: center;
    }
    .btn-pds:hover {
      background: #fff; color: var(--bg);
      box-shadow: 0 0 0 rgba(0,0,0,0);
      transform: translate(5px,5px);
    }
    .btn-pds.is-orange { --bg: var(--pds-orange); }
    .btn-pds.is-ghost {
      background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.85);
      box-shadow: 5px 5px 0 rgba(0,0,0,.12);
    }
    .btn-pds.is-ghost:hover { background:#fff; color: var(--pds-blue); }
    .hero {
      position: relative;
      padding: calc(var(--header-h) + 42px) 0 0;
      background: var(--pds-blue-deep);
      color: #fff; overflow: hidden;
    }
    /* couche image en fond */
    .hero-bg {
      position:absolute; top:0; left:0; right:0; bottom:0; z-index:0;
      background-position: center 35%; background-size: cover; background-repeat: no-repeat;
    }
    /* voile dégradé bleu PDS par-dessus l'image */
    .hero::before {
      content:""; position:absolute; top:0; left:0; right:0; bottom:0; z-index:1;
      background: linear-gradient(270deg, rgba(0,99,140,.80) 0%, rgba(0,132,188,.92) 100%);
      pointer-events:none;
    }
    .hero .container { position: relative; z-index:2; }
    /* rangée de pastilles : RNCP niveau 7 + modalités, même forme */
    .hero-badges { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom: 1.1rem; }
    .hero-badge {
      display:inline-flex; align-items:center; gap:.5em;
      background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.35);
      color:#fff; font-weight:500; font-size:.82rem; letter-spacing:.03em; text-transform:uppercase;
      padding:.42em 1em; border-radius: 50px;
      backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    }
    .hero-badge i { color:#fff; font-size:.85em; }
    .hero h1 { color:#fff; font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: .25em; text-shadow: 0 2px 18px rgba(0,40,60,.35); }
    .hero-rncp { font-family: var(--ff-body); font-size: 1rem; color: rgba(255,255,255,.9);
      margin-bottom: 0; padding-bottom: 2.4rem; text-shadow: 0 1px 10px rgba(0,40,60,.3); }

    /* barre de CTA sombre, séparateurs verticaux (réf. capture) — pleine largeur */
    .hero-cta, .hero-flash {
      position: relative; left: 50%; right: 50%;
      margin-left: -50vw; margin-right: -50vw; width: 100vw;
    }
    .hero-cta {
      display:flex; flex-wrap:wrap; align-items:stretch;
      background: rgba(8,28,40,.62);
      border-top: 1px solid rgba(255,255,255,.14);
      border-bottom: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    }
    /* le contenu de la barre reste aligné sur le container */
    .hero-cta-inner {
      width:100%; max-width: var(--container); margin:0 auto;
      display:flex; flex-wrap:wrap; align-items:stretch;
    }
    .hero-cta a {
      flex:1 1 0; min-width: 220px;
      display:flex; align-items:center; justify-content:center; gap:.7em;
      padding: 1.25rem 1.5rem;
      color:#fff; font-family: var(--ff-body); font-weight:500; font-size:1rem;
      border-left: 1px solid rgba(255,255,255,.14);
      transition: background .2s, color .2s;
    }
    .hero-cta a:first-child { border-left: 0; }
    .hero-cta a i { color: var(--pds-blue-bright); font-size:1.15em; transition: color .2s; }
    .hero-cta a:hover { background: rgba(255,255,255,.96); color: var(--pds-blue); }
    .hero-cta a:hover i { color: var(--pds-blue); }
    @media (max-width: 720px){
      .hero-cta a { flex-basis: 100%; border-left:0; border-top:1px solid rgba(255,255,255,.12); justify-content:flex-start; }
      .hero-cta a:first-child { border-top:0; }
    }
    .hero-flash {
      display:flex; align-items:center; justify-content:center; gap:.6em;
      background: var(--pds-orange); color:#fff; font-weight:500; font-size:.92rem;
      padding:.7rem 1rem; text-align:center;
    }
    .anchor-bar {
      position: sticky; top: var(--header-h); z-index: 900;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--pds-line);
      box-shadow: 0 4px 18px rgba(0,72,104,.05);
    }
    .anchor-bar ul {
      display:flex; gap:.3rem; list-style:none; margin:0; padding:0;
      overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none;
    }
    .anchor-bar ul::-webkit-scrollbar { display:none; }
    .anchor-bar a {
      display:block; white-space:nowrap; padding: 1.1rem .9rem;
      font-weight:500; font-size:.93rem; color: var(--pds-body);
      border-bottom: 2px solid transparent;
    }
    .anchor-bar a:hover { color: var(--pds-blue); }
    .anchor-bar a.active { color: var(--pds-blue); border-bottom-color: var(--pds-blue); }
    .section { padding: 80px 0; scroll-margin-top: calc(var(--header-h) + var(--anchor-h)); }
    .section.tint { background: var(--pds-tint); }
    .section.tint2 { background: var(--pds-tint-2); }
    .sec-head { max-width: 760px; margin-bottom: 3rem; }
    .sec-head.center { margin-left:auto; margin-right:auto; text-align:center; }
    .eyebrow {
      display:inline-block; font-family: var(--ff-body); font-weight:600;
      font-size:.8rem; letter-spacing:.12em; text-transform:uppercase;
      color: var(--pds-blue); margin-bottom: .8rem;
    }
    .sec-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
    .sec-head p { font-size: 1.08rem; }

    /* ---- Cartes sobres ---- */
    .card-pds {
      background:#fff; border:1px solid var(--pds-line);
      border-radius: var(--radius-card);
      padding: 2rem 1.9rem; height:100%;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .card-pds:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: #cfe3ee; }
    /* ---- Picto unifié (standard Home) : tuile 84x84 fond bleu clair, picto 40x40, centré ---- */
    .card-ico, .stat-ico, .rythme-ico, .handi-ico {
      width: 84px; height: 84px; border-radius: 20px;
      background: var(--pds-tint); color: var(--pds-blue);
      display:flex; align-items:center; justify-content:center;
      margin: 0 auto 1.3rem;
      border: 1px solid #e2f0f8;
    }
    .card-ico svg, .stat-ico svg, .rythme-ico svg, .handi-ico svg {
      width: 40px; height: 40px; stroke: var(--pds-blue); fill:none;
      stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round;
    }
    .card-pds h3 { font-size: 1.2rem; margin-bottom: .5rem; }
    .card-pds p, .card-pds li { font-size: .98rem; }
    /* cartes à picto : contenu centré (cohérence Home) */
    .card-pds.is-centered { text-align: center; }

    /* ---- Objectifs : cartes d'orientation MBA1/MBA2 ---- */
    .orient { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; margin-bottom:2.5rem; }
    @media (max-width:680px){ .orient{ grid-template-columns:1fr; } }
    .orient-card {
      background:#fff; border:1px solid var(--pds-line);
      border-radius: var(--radius-card); padding:1.6rem 1.8rem;
      border-top: 4px solid var(--pds-blue-bright);
    }
    .orient-card .tag {
      display:inline-block; background: var(--pds-gradient); color:#fff;
      font-weight:600; font-size:.82rem; letter-spacing:.04em;
      padding:.35em .9em; border-radius:6px; margin-bottom:.7rem;
    }
    .orient-card p { margin:0; font-size:1rem; }
    /* intertitre avant les cartes objectifs */
    .obj-lead { font-weight:600; color: var(--pds-ink); font-size:1.08rem; margin-bottom:1.6rem; }
    /* en grid-4, cartes plus compactes */
    .obj-grid .card-pds { padding: 1.8rem 1.3rem; }
    .obj-grid .card-pds h3 { font-size:1.08rem; }
    .obj-grid .card-pds p { font-size:.92rem; }

    .grid { display:grid; gap: 1.6rem; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 900px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr);} }
    @media (max-width: 640px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

    /* ---- Présentation MBA1 / MBA2 ---- */
    .pres-cards { display:grid; grid-template-columns: 1fr 1fr; gap:1.6rem; margin-top:2rem; }
    @media (max-width:760px){ .pres-cards{ grid-template-columns:1fr; } }
    .pres-card { background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card); padding:2rem; }
    .pres-card .tag {
      display:inline-block; background: var(--pds-gradient); color:#fff;
      font-weight:600; font-size:.85rem; letter-spacing:.04em;
      padding:.4em 1em; border-radius:6px; margin-bottom:1rem;
    }
    .pres-card .hl { color: var(--pds-blue); font-weight:700; }

    /* ---- Stats / points clés ---- */
    .stats { display:grid; grid-template-columns: repeat(4,1fr); gap:1.4rem; }
    @media (max-width:860px){ .stats{ grid-template-columns: repeat(2,1fr);} }
    @media (max-width:480px){ .stats{ grid-template-columns: 1fr;} }
    .stat {
      background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-soft);
      padding:2rem 1.5rem; text-align:center;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color:#cfe3ee; }
    .stat .num { font-family: var(--ff-serif); font-size: 1.9rem; color: var(--pds-blue); font-weight:700; line-height:1; margin-bottom:.4rem; }
    .stat .lbl { font-size:.95rem; color: var(--pds-body); }

    /* ---- Cartes rythme (Points clés) ---- */
    .rythmes { display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem; margin-top:1.6rem; }
    @media (max-width:760px){ .rythmes{ grid-template-columns:1fr; } }
    .rythme {
      background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card);
      padding:2rem 1.9rem; display:flex; flex-direction:column; align-items:center; text-align:center;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .rythme:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color:#cfe3ee; }
    .rythme h3 { font-size:1.15rem; margin-bottom:.9rem; }
    .rythme-facts { display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; margin-bottom:.9rem; }
    .rythme-fact {
      display:inline-flex; align-items:center; gap:.4em; font-size:.82rem; font-weight:600;
      color: var(--pds-blue); background: var(--pds-tint); border-radius:50px; padding:.3em .8em;
    }
    .rythme p { font-size:.96rem; margin:0; }

    /* ---- Carte handicap ---- */
    .handi {
      text-align:center; margin-top:1.6rem;
      background:#fff; border:1px solid var(--pds-line);
      border-radius: var(--radius-card); padding:2rem 1.9rem;
      max-width: 760px; margin-left:auto; margin-right:auto;
    }
    .handi h3 { font-size:1.15rem; margin-bottom:.4rem; }
    .handi p { margin:0; font-size:.96rem; }

    /* ---- Modules ---- */
    .mod-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.6rem; }
    @media (max-width:760px){ .mod-grid{ grid-template-columns:1fr;} }
    .mod-col { background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card); padding:2rem 1.9rem; }
    .mod-col > .tag {
      display:inline-block; color: var(--pds-blue); font-weight:600;
      border:1px solid var(--pds-blue); border-radius:6px; padding:.35em .9em; margin-bottom:1.4rem; font-size:.95rem;
    }
    .mod-block { margin-bottom:1.2rem; }
    .mod-block > strong { display:block; color: var(--pds-ink); margin-bottom:.3rem; font-size:1.02rem; }
    .mod-block ul { margin:0; padding-left:1.1rem; }
    .mod-block li { font-size:.95rem; margin-bottom:.25rem; }

    /* ---- Timeline admission (système Home : connecteurs pointillés animés) ---- */
    .timeline { display:flex; align-items:stretch; justify-content:center; gap:0; margin-bottom:3rem; }
    .tl-step {
      flex:1; background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card);
      padding:2.4rem 1.8rem 2rem; text-align:center;
      opacity:0; transform: translateY(28px);
      transition: background .3s, box-shadow .3s, border-color .3s;
      animation: tl-rise .65s cubic-bezier(.2,.7,.3,1) forwards .15s;
    }
    .timeline.in .tl-step { animation: tl-rise .65s cubic-bezier(.2,.7,.3,1) forwards; }
    .timeline.in .tl-step:nth-of-type(2){ animation-delay:.55s; }
    .timeline.in .tl-step:nth-of-type(3){ animation-delay:1.1s; }
    @keyframes tl-rise { to { opacity:1; transform:none; } }
    .tl-step:hover { box-shadow: var(--shadow-soft); border-color:#cfe3ee; }

    /* connecteur pointillé animé entre les cartes */
    .tl-link { flex:0 0 56px; align-self:center; position:relative; height:3px; }
    .tl-link::before { content:""; position:absolute; inset:0 5px; background: var(--pds-line); border-radius:3px; }
    .tl-link::after {
      content:""; position:absolute; inset:0 5px; border-radius:3px;
      background: repeating-linear-gradient(90deg, var(--pds-blue-bright) 0 7px, transparent 7px 14px);
      background-size:14px 3px; animation: tl-flow .8s linear infinite;
      box-shadow: 0 0 8px rgba(39,170,225,.5);
    }
    @keyframes tl-flow { to { background-position:14px 0; } }

    /* tuile picto unifiée + badge numéro */
    .tl-ico {
      position:relative; width:84px; height:84px; border-radius:20px;
      background: var(--pds-tint); border:1px solid #e2f0f8;
      display:flex; align-items:center; justify-content:center; margin:0 auto 1.3rem;
    }
    .tl-ico svg { width:40px; height:40px; stroke: var(--pds-blue); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
    .tl-num {
      position:absolute; top:-10px; right:-10px;
      font-family: var(--ff-serif); font-size:.9rem; font-weight:700; color:#fff;
      background: var(--pds-gradient); width:32px; height:32px; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 4px 10px rgba(0,99,140,.3);
    }
    .tl-step h3 { font-size:1.05rem; margin-bottom:.5rem; }
    .tl-step p { font-size:.95rem; margin:0; }

    /* animation de tracé du picto (système Home : svg *, déclenché par le conteneur) */
    .tl-ico svg * { stroke-dasharray:240; stroke-dashoffset:240; animation: tl-draw 1.3s ease forwards .5s; }
    .timeline.in .tl-step .tl-ico svg * { animation: tl-draw 1.3s ease forwards .35s; }
    .timeline.in .tl-step:nth-of-type(2) .tl-ico svg * { animation-delay:.9s; }
    .timeline.in .tl-step:nth-of-type(3) .tl-ico svg * { animation-delay:1.45s; }
    @keyframes tl-draw { to { stroke-dashoffset:0; } }

    @media (max-width:768px){
      .timeline { flex-direction:column; gap:18px; }
      .tl-link { display:none; }
      .tl-step { width:100%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .tl-step { opacity:1 !important; transform:none !important; animation:none !important; }
      .tl-ico svg * { stroke-dasharray:none !important; stroke-dashoffset:0 !important; animation:none !important; }
      .tl-link::after { animation:none !important; }
    }

    .blocs { background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-soft); padding:2rem; }
    .bloc-item { display:flex; gap:1rem; padding:1rem 0; border-bottom:1px solid var(--pds-line); }
    .bloc-item:last-child { border-bottom:0; }
    .bloc-code { font-family: var(--ff-body); font-weight:700; color: var(--pds-blue); font-size:.9rem; white-space:nowrap; }

    /* ---- Débouchés tags ---- */
    /* ---- Débouchés : cartes métiers (système Home) ---- */
    .metier-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem; }
    @media (max-width:880px){ .metier-grid{ grid-template-columns:1fr 1fr; } }
    @media (max-width:560px){ .metier-grid{ grid-template-columns:1fr; } }
    .metier {
      border:1px solid var(--pds-line); border-radius: var(--radius-card);
      padding:2.2rem 1.7rem; background:#fff; text-align:center;
      display:flex; flex-direction:column; align-items:center;
      box-shadow: 0 6px 22px rgba(13,27,36,.05);
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .metier:hover { border-color:transparent; box-shadow: 0 18px 40px rgba(0,132,188,.13); transform: translateY(-6px); }
    .metier .mi {
      width:84px; height:84px; border-radius:24px;
      background: linear-gradient(160deg,#e9f6fc 0%,#f5fbff 100%);
      display:grid; place-items:center; margin-bottom:1.3rem;
      box-shadow: inset 0 0 0 1px rgba(39,170,225,.12);
    }
    .metier .mi svg { width:40px; height:40px; fill:none; stroke: var(--pds-blue-deep); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
    .metier:hover .mi svg { stroke: var(--pds-blue-bright); }
    .metier h3 { font-size:1.12rem; margin:0 0 .3rem; color: var(--pds-ink); }
    .metier .role-sub { color: var(--pds-blue); font-weight:500; font-size:.8rem; text-transform:uppercase; letter-spacing:.03em; }

    /* ---- Pourquoi choisir : liste à puces custom ---- */
    .why-list { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:.9rem 2rem; }
    @media (max-width:680px){ .why-list{ grid-template-columns:1fr;} }
    .why-list li { display:flex; gap:.8em; align-items:flex-start; margin:0; font-size:1rem; }
    .why-list i { color: var(--pds-blue); margin-top:.25em; }

    /* ---- Corps professoral ---- */
    .team-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:1.2rem; }
    @media (max-width:1100px){ .team-grid{ grid-template-columns: repeat(3,1fr);} }
    @media (max-width:760px){ .team-grid{ grid-template-columns: repeat(2,1fr);} }
    @media (max-width:480px){ .team-grid{ grid-template-columns:1fr;} }
    .teacher { background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card); overflow:hidden; display:flex; flex-direction:column; }
    .teacher .ph { aspect-ratio: 4/3; background: var(--pds-tint); overflow:hidden; }
    .teacher .ph img { width:100%; height:100%; object-fit:cover; }
    .teacher .body { padding:1.1rem 1.1rem; display:flex; flex-direction:column; flex:1; }
    .teacher .name { font-family: var(--ff-serif); font-weight:700; color: var(--pds-ink); font-size:1rem; }
    .teacher .role { color: var(--pds-blue); font-size:.82rem; margin-bottom:.6rem; min-height:1.2em; }
    .teacher .bio { font-size:.85rem; color: var(--pds-body); }
    .teacher .bio ul { padding-left:1.1rem; margin:0; }
    /* complément de bio dépliable + bouton "En savoir +" */
    .teacher .bio-more { max-height:0; overflow:hidden; transition: max-height .4s ease; }
    .teacher.open .bio-more { max-height:600px; }
    .teacher .bio-more-inner { padding-top:.6rem; font-size:.9rem; color: var(--pds-body); }
    .teacher .more-btn {
      margin-top:auto; align-self:flex-start;
      display:inline-flex; align-items:center; gap:.45em;
      background:none; border:0; cursor:pointer; padding:.7rem 0 0;
      color: var(--pds-blue); font-family: var(--ff-body); font-weight:600; font-size:.9rem;
    }
    .teacher .more-btn:hover { color: var(--pds-blue-deep); }
    .teacher .more-btn i { transition: transform .3s; font-size:.8em; }
    .teacher.open .more-btn i { transform: rotate(45deg); }
    .team-more { text-align:center; margin-top:2.5rem; }

    /* ---- Financement ---- */
    .fin-price {
      background: var(--pds-gradient); color:#fff; border-radius: var(--radius-card);
      padding:2.2rem 2.4rem; margin-bottom:1.6rem;
      display:grid; grid-template-columns: auto 1fr; gap:1rem 3rem; align-items:center;
    }
    @media (max-width:760px){ .fin-price{ grid-template-columns:1fr; gap:1.3rem; } }
    .fin-price h3 { color:#fff; font-size:1.2rem; margin:0 0 1rem; grid-column:1 / -1; }
    .fin-amounts { display:flex; gap:2.5rem; flex-wrap:wrap; }
    .fin-amount .v { font-family: var(--ff-serif); font-size:2.1rem; font-weight:700; line-height:1; }
    .fin-amount .k { font-size:.9rem; color:rgba(255,255,255,.85); margin-top:.3rem; }
    .fin-right { display:flex; flex-direction:column; }
    .fin-pay { list-style:none; padding:0; margin:0; }
    .fin-pay li { display:flex; align-items:flex-start; gap:.6em; font-size:.96rem; color:rgba(255,255,255,.95); margin-bottom:.5rem; }
    .fin-pay li i { margin-top:.25em; color:#fff; }
    .fin-bank { margin-top:.9rem; font-size:.9rem; color:rgba(255,255,255,.9); border-top:1px solid rgba(255,255,255,.25); padding-top:.9rem; }
    .fin-bank a { color:#fff; text-decoration:underline; }
    .fin-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; }
    @media (max-width:880px){ .fin-grid{ grid-template-columns:1fr; } }
    .fin-card {
      background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card); padding:2rem 1.9rem;
      display:flex; flex-direction:column;
    }
    .fin-card .fico { width:84px;height:84px;border-radius:20px;background:var(--pds-tint);border:1px solid #e2f0f8;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem; }
    .fin-card .fico svg { width:40px;height:40px;stroke:var(--pds-blue);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round; }
    .fin-card h3 { font-size:1.15rem; margin-bottom:.6rem; }
    .fin-card p { font-size:.96rem; margin:0 0 1.1rem; }
    .fin-card .gov-link { align-self:center; }
    .gov-link {
      display:inline-flex; align-items:center; gap:.5em; margin-top:auto; align-self:flex-start;
      background: var(--pds-blue-bright); color:#fff; padding:.7em 1.2em; border-radius:8px;
      font-size:.9rem; font-weight:600;
    }
    .gov-link:hover { background: var(--pds-blue-deep); color:#fff; }

    /* ---- Accordéon détails ---- */
    .acc { max-width: 920px; margin:0 auto; }
    .acc-item { background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-soft); margin-bottom:1rem; overflow:hidden; }
    .acc-head {
      width:100%; text-align:left; background:none; border:0; cursor:pointer;
      font-family: var(--ff-serif); font-weight:700; color: var(--pds-ink); font-size:1.12rem;
      padding:1.3rem 1.6rem; display:flex; align-items:center; justify-content:space-between; gap:1rem;
    }
    .acc-head:hover { color: var(--pds-blue); }
    .acc-head i { color: var(--pds-blue); transition: transform .3s; flex:none; }
    .acc-head { list-style:none; }
    .acc-head::-webkit-details-marker { display:none; }
    .acc-item[open] .acc-head i { transform: rotate(180deg); }
    .acc-body { overflow:hidden; }
    .acc-body-inner { padding: 0 1.6rem 1.5rem; font-size:.98rem; }
    .acc-body-inner .fi-title { font-family: var(--ff-serif); color: var(--pds-blue); font-weight:700; font-size:1.05rem; margin:1.3rem 0 .6rem; }
    .acc-body-inner a.gov-link { display:inline-block; background: var(--pds-blue-bright); color:#fff; padding:.6em 1.1em; border-radius:8px; margin:.3rem 0; font-size:.92rem; }
    .acc-body-inner a.gov-link:hover { background: var(--pds-blue-deep); }

    /* ---- Témoignage : citation vedette ---- */
    .quote-feature {
      max-width: 880px; margin: 0 auto; text-align: center; position: relative;
      background:#fff; border:1px solid var(--pds-line); border-radius: var(--radius-card);
      padding: 3.4rem 3rem 2.6rem;
    }
    .quote-feature .qmark {
      font-family: var(--ff-serif); font-size: 5rem; line-height: .8; color: var(--pds-blue-bright);
      opacity: .35; height: 2.2rem;
    }
    .quote-feature blockquote {
      margin: 0 0 1.8rem; border: 0; padding: 0;
      font-family: var(--ff-serif); font-style: italic;
      font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--pds-ink);
    }
    .quote-feature .author { display:flex; align-items:center; justify-content:center; gap: .9rem; }
    .quote-feature .author .av {
      width:52px; height:52px; border-radius:50%; background: var(--pds-gradient);
      color:#fff; display:grid; place-items:center; font-family: var(--ff-body); font-weight:700; font-size:1rem;
    }
    .quote-feature .author .who { text-align:left; }
    .quote-feature .author .n { color: var(--pds-ink); font-weight:600; }
    .quote-feature .author .p { font-size:.9rem; color: var(--pds-body); }
    @media (max-width:560px){ .quote-feature{ padding: 2.6rem 1.6rem 2rem; } }

    /* ---- Pop-up contact "Nous appeler" ---- */
    .call-pop {
      position:fixed; inset:0; z-index:2000; display:none;
      align-items:center; justify-content:center; padding:24px;
      background:rgba(8,22,30,.7); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
    }
    .call-pop.open { display:flex; }
    .call-card {
      position:relative; width:100%; max-width:540px;
      background: var(--pds-gradient); color:#fff; border-radius:20px;
      padding:2.4rem 2.2rem; box-shadow:0 30px 80px rgba(0,0,0,.4);
      text-align:center;
    }
    .call-card .close {
      position:absolute; top:14px; right:16px; background:none; border:0; cursor:pointer;
      color:rgba(255,255,255,.85); font-size:1.3rem; line-height:1; padding:6px;
    }
    .call-card .close:hover { color:#fff; }
    .call-card .cc-head { font-family: var(--ff-serif); font-size:1.25rem; margin-bottom:1.6rem; }
    .call-contact { display:flex; align-items:center; gap:18px; text-align:left;
      background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.22); border-radius:16px; padding:18px 20px; }
    .call-contact .ac-av { flex:none; width:58px; height:58px; border-radius:50%; background:#fff;
      color: var(--pds-blue-deep); display:grid; place-items:center; font-weight:700; font-size:1.15rem; }
    .call-contact .ac-info b { display:block; color:#fff; font-size:1.1rem; line-height:1.2; }
    .call-contact .ac-info .role { display:block; color:rgba(255,255,255,.85); font-size:.86rem; margin:3px 0 10px; }
    .call-contact .ac-links { display:flex; flex-direction:column; gap:8px; }
    .call-contact .ac-links a { display:inline-flex; align-items:center; gap:9px; color:#fff; font-size:.95rem; font-weight:500; }
    .call-contact .ac-links a:hover { color:#d6f1ff; }
    .call-contact .ac-links svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
    @media(max-width:480px){ .call-contact{ flex-direction:column; text-align:center; } .call-contact .ac-links{ align-items:center; } }

    /* ---- CTA final (pleine largeur, style Home) ---- */
    .foot-cta { background: var(--pds-gradient); color:#fff; text-align:center; padding: 70px 0; }
    .foot-cta h2 { font-family: var(--ff-serif); color:#fff; font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom:.6rem; }
    .foot-cta p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 1.8rem; font-size:1.08rem; }
    .foot-cta .btns { display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; }
    .foot-cta .fbtn {
      display:inline-flex; align-items:center; gap:.5em;
      font-family: var(--ff-body); font-weight:600; font-size:1rem;
      padding:.85em 1.6em; border-radius:8px; border:2px solid #fff;
      transition: background .2s, color .2s, transform .15s;
    }
    .foot-cta .fbtn-solid { background:#fff; color: var(--pds-blue-deep); }
    .foot-cta .fbtn-solid:hover { background: var(--pds-blue-deep); color:#fff; }
    .foot-cta .fbtn-ghost { background: transparent; color:#fff; }
    .foot-cta .fbtn-ghost:hover { background:#fff; color: var(--pds-blue-deep); }
    .cta-contact { display:inline-flex; margin: 0 auto 1.8rem; text-align:left; }

    /* ---- Certifications (style Home) ---- */
    .certifs { background: var(--pds-tint); padding: 54px 0; }
    .certifs .inner { display:grid; grid-template-columns: auto 1fr; gap: 42px; align-items:center; }
    @media (max-width:768px){ .certifs .inner{ grid-template-columns:1fr; gap:26px; } }
    .certif-logos { display:flex; gap:18px; flex-wrap:wrap; }
    .certif-logos .cl { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:16px;
      box-shadow:0 6px 18px rgba(0,0,0,.06); padding:18px 24px; display:flex; align-items:center; justify-content:center; height:116px; }
    .certif-logos .cl img { max-height:78px; width:auto; display:block; }
    @media (max-width:768px){ .certif-logos .cl{ height:100px; } .certif-logos .cl img{ max-height:64px; } }
    .certif-text { color: var(--pds-body); line-height:1.65; font-size:.92rem; }
    .certif-text strong { color: var(--pds-ink); font-weight:600; }
    .certif-text .af { display:block; margin-top:12px; color: var(--pds-orange); font-weight:700; font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; }

/* ---------- Responsive ---------- */
    @media (max-width: 768px){
      :root { --header-h: 70px; }
      .section { padding: 54px 0; }
      .sec-head { margin-bottom: 2rem; }
      .hero { padding-top: calc(var(--header-h) + 30px); }
      .hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
      .hero-rncp { padding-bottom: 1.8rem; font-size: .95rem; }
      .hero-badge { font-size: .74rem; padding: .4em .85em; }
      .hero-cta a { padding: 1rem 1.2rem; font-size: .95rem; }
      .hero-flash { font-size: .85rem; padding: .65rem .9rem; }
      .anchor-bar a { padding: .9rem .8rem; font-size: .88rem; }
    }
    @media (max-width: 420px){
      .container { padding: 0 18px; }
      .hero-cta, .hero-flash { margin-left: -50vw; margin-right: -50vw; }
      .card-pds, .pres-card, .mod-col, .tl-step, .blocs, .cta-band { padding: 1.5rem 1.3rem; }
      .cta-band { padding: 2.2rem 1.4rem; }
    }

/* ===== Offres : barre filtres, cartes offre, aide ===== */
    .offers-bar { position:sticky; top:var(--header-h); z-index:900; background:rgba(255,255,255,.96); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border-bottom:1px solid var(--pds-line); box-shadow:0 4px 18px rgba(0,72,104,.05); }
    .offers-bar .container { padding-top:.9rem; padding-bottom:.9rem; }
    .offers-filters { display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; }
    .off-count { font-size:.9rem; color:var(--pds-body); }
    .off-count strong { color:var(--pds-blue-deep); }
    .off-spacer { flex:1; min-width:1rem; }
    .offers-filters .filter-btn { background:var(--pds-tint); border:1px solid #e2f0f8; border-radius:30px; padding:.5rem 1rem; font-size:.85rem; font-weight:600; color:var(--pds-blue-deep); cursor:pointer; transition:background .2s,color .2s,border-color .2s; }
    .offers-filters .filter-btn:hover { border-color:#cfe3ee; }
    .offers-filters .filter-btn.active { background:var(--pds-gradient); color:#fff; border-color:transparent; }
    .offers-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; align-items:stretch; }
    @media (max-width:760px){ .offers-grid { grid-template-columns:1fr; } }
    .offer-card { display:flex; flex-direction:column; height:100%; background:#fff; border:1px solid var(--pds-line); border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:1.6rem 1.6rem 1.4rem; transition:box-shadow .3s, transform .3s, border-color .3s; }
    .offer-card:hover { box-shadow:0 16px 40px rgba(0,132,188,.13); border-color:#cfe3ee; transform:translateY(-3px); }
    .oc-company { font-size:.85rem; font-weight:700; color:var(--pds-blue); text-transform:uppercase; letter-spacing:.03em; }
    .oc-title { font-family:var(--ff-serif); font-size:1.22rem; color:var(--pds-ink); line-height:1.3; margin:.5rem 0 1rem; }
    .oc-meta { display:flex; align-items:center; gap:.8rem; flex-wrap:wrap; margin-top:auto; padding-top:1rem; border-top:1px solid var(--pds-line); }
    .oc-tag { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; padding:.28rem .7rem; border-radius:20px; }
    .oc-tag.t-alternance { background:#dceeff; color:#0d4b9e; }
    .oc-tag.t-stage { background:#fff0dc; color:#7a4800; }
    .oc-date { display:inline-flex; align-items:center; gap:.4rem; font-size:.85rem; color:var(--pds-body); }
    .oc-date svg { width:16px; height:16px; stroke:var(--pds-blue); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
    .oc-go { margin-top:1rem; color:var(--pds-blue); font-weight:700; font-size:.9rem; display:inline-flex; align-items:center; gap:.4rem; }
    .oc-go i { transition:transform .2s; }
    .offer-card:hover .oc-go i { transform:translateX(3px); }
    .offer-card.is-hidden { display:none; }
    .offers-empty { display:none; text-align:center; color:var(--pds-body); background:var(--pds-tint); border:1px dashed #cfe3ee; border-radius:var(--radius-soft); padding:2rem; margin-top:.5rem; }
    .offers-help { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
    @media (max-width:760px){ .offers-help { grid-template-columns:1fr; } }
    .oh-card { background:#fff; border:1px solid var(--pds-line); border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:1.8rem 1.6rem; }
    .oh-ico { display:inline-flex; width:54px; height:54px; border-radius:15px; background:var(--pds-gradient); align-items:center; justify-content:center; margin-bottom:1rem; }
    .oh-ico svg { width:26px; height:26px; stroke:#fff; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
    .oh-card h3 { font-family:var(--ff-serif); font-size:1.2rem; color:var(--pds-ink); margin-bottom:.6rem; }
    .oh-card p { color:var(--pds-body); line-height:1.6; margin-bottom:1rem; font-size:.95rem; }
    .oh-link { color:var(--pds-blue); font-weight:700; font-size:.92rem; display:inline-flex; align-items:center; gap:.4rem; }

    /* ======================= OFFRE DÉTAIL ======================= */
    .crumbs { position:sticky; top:var(--header-h); z-index:900; background:rgba(255,255,255,.96); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border-bottom:1px solid var(--pds-line); box-shadow:0 4px 18px rgba(0,72,104,.05); }
    .crumbs .container { padding:.85rem 24px; font-size:.85rem; color:var(--pds-body); }
    .crumbs a { color:var(--pds-blue); font-weight:600; } .crumbs .sep { margin:0 .5rem; color:#b9c6ce; } .crumbs .cur { color:var(--pds-ink); font-weight:600; }
    .offd-layout { display:grid; grid-template-columns:1fr 300px; gap:2.4rem; align-items:start; }
    @media (max-width:860px){ .offd-layout { grid-template-columns:1fr; } }
    .offd-article { min-width:0; }
    .offd-article h2 { font-family:var(--ff-serif); font-size:1.35rem; color:var(--pds-ink); margin:1.8rem 0 .7rem; }
    .offd-article h2:first-child { margin-top:0; }
    .offd-article h3 { font-family:var(--ff-serif); font-size:1.1rem; color:var(--pds-ink); margin:1.3rem 0 .5rem; }
    .offd-article p { color:var(--pds-body); line-height:1.75; margin-bottom:1rem; }
    .offd-article ul { margin:0 0 1.1rem 1.2rem; color:var(--pds-body); line-height:1.7; }
    .offd-article li { margin-bottom:.4rem; }
    .offd-article a { color:var(--pds-blue); font-weight:600; }
    .offd-side { position:sticky; top:calc(var(--header-h) + 80px); background:#fff; border:1px solid var(--pds-line); border-radius:var(--radius-card); box-shadow:var(--shadow-soft); padding:1.5rem 1.5rem 1.6rem; }
    .offd-side .os-logo { height:140px; display:flex; align-items:center; justify-content:center; margin-bottom:.9rem; }
    .offd-side .os-logo img { max-height:130px; max-width:90%; object-fit:contain; }
    .offd-side .os-comp { display:block; text-align:center; font-size:.85rem; font-weight:700; text-transform:uppercase; letter-spacing:.03em; color:var(--pds-blue); }
    .offd-side .os-tag { display:inline-block; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; padding:.28rem .7rem; border-radius:20px; margin:.6rem 0 .3rem; }
    .os-tag.t-alternance { background:#dceeff; color:#0d4b9e; } .os-tag.t-stage { background:#fff0dc; color:#7a4800; }
    .offd-side dl { margin:0 0 1.2rem; }
    .offd-side dt { font-size:.72rem; text-transform:uppercase; letter-spacing:.04em; color:var(--pds-body); font-weight:700; margin-top:.7rem; }
    .offd-side dd { font-size:.95rem; color:var(--pds-ink); font-weight:600; margin:.1rem 0 0; }
    .offd-side .apply { display:flex; align-items:center; justify-content:center; gap:.5rem; width:100%; background:var(--pds-gradient); color:#fff; font-weight:700; padding:.85rem 1rem; border-radius:10px; box-shadow:0 6px 16px rgba(0,132,188,.25); margin-top:.4rem; }
    .offd-side .back { display:block; text-align:center; margin-top:.9rem; font-weight:600; color:var(--pds-blue); font-size:.9rem; }
    .offd-actions { display:flex; flex-wrap:wrap; gap:.8rem; align-items:center; margin-top:2.2rem; padding-top:1.7rem; border-top:1px solid var(--pds-line); }
    .offd-actions .b-ghost { display:inline-flex; align-items:center; gap:.5rem; border:2px solid var(--pds-blue); color:var(--pds-blue-deep); font-weight:700; padding:.75rem 1.3rem; border-radius:10px; transition:background .2s; }
    .offd-actions .b-ghost:hover { background:var(--pds-tint); }
    .offd-actions .b-primary { display:inline-flex; align-items:center; gap:.5rem; margin-left:auto; background:var(--pds-gradient); color:#fff; font-weight:700; padding:.85rem 1.5rem; border-radius:10px; box-shadow:0 6px 16px rgba(0,132,188,.25); transition:transform .2s,box-shadow .2s,filter .2s; }
    .offd-actions .b-primary:hover { transform:translateY(-1px); box-shadow:0 10px 22px rgba(0,132,188,.32); filter:brightness(1.04); }
    @media (max-width:560px){ .offd-actions .b-primary, .offd-actions .b-ghost { margin-left:0; width:100%; justify-content:center; } }
