
  :root {
    --blanc: #ffffff;
    --gris-fond: #f5f5f7;
    --noir: #1d1d1f;
    --noir-pur: #000000;
    --gris-texte: #6e6e73;
    --gris-clair: #86868b;
    --hairline: #d2d2d7;
    --r: 24px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
    background: var(--blanc);
    color: var(--noir);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: #1d1d1f; color: #fff; }

  img { max-width: 100%; display: block; }
  .nb { filter: grayscale(1) contrast(1.04); }

  .wrap { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
  .wrap-narrow { max-width: 740px; margin: 0 auto; padding: 0 24px; }

  h1, h2, h3 { letter-spacing: -0.015em; text-wrap: balance; }

  .eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-clair);
    margin-bottom: 18px;
  }

  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--noir);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 24px;
    min-height: 52px;
    max-width: 1024px;
    margin: 0 auto;
  }
  .nav-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-decoration: none; padding: 8px 0; }
  .nav-brand img { height: 34px; width: auto; display: block; }
  .nav-brand .bl, .footer-brand2 .bl2 { display: none; }
  .nav-brand .bl {
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gris-clair);
    white-space: nowrap;
  }
  @media (max-width: 560px) { .nav-brand .bl { display: none; } }
  .nav-links { display: flex; align-items: center; gap: 22px; }
  .nav-links a {
    color: rgba(0,0,0,0.72);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--noir-pur); }
    .nav-lang { display: inline-flex; align-items: center; }
  .nav-lang select { border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: rgba(0,0,0,0.72); font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; padding: 4px 6px; cursor: pointer; transition: border-color 0.25s, color 0.25s; }
  .nav-lang select:hover { color: #1d1d1f; border-color: rgba(0,0,0,0.3); }
  @media (max-width: 560px) { .nav-lang select { padding: 4px 4px; font-size: 11px; } }
  .nav-links a.nav-cta {
    color: #fff;
    background: #ef4900;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.25s;
  }
  .nav-links a.nav-cta:hover { background: #d64000; }
  /* ---------- Menu burger mobile ---------- */
  .nav-brand { flex-shrink: 0; }
  .nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 2px; }
  .nav-burger span { display: block; width: 22px; height: 2px; background: #1d1d1f; border-radius: 2px; transition: transform .25s, opacity .2s; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-drawer { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--hairline); box-shadow: 0 14px 26px rgba(0,0,0,0.09); padding: 6px 22px 16px; flex-direction: column; }
  .nav-drawer a { display: block; padding: 13px 2px; font-size: 16px; font-weight: 500; color: #1d1d1f; text-decoration: none; border-bottom: 1px solid #f0f0f2; }
  .nav-drawer a:last-of-type { border-bottom: none; }
  .nav-drawer .nav-lang { display: flex; margin-top: 12px; }
  .nav-drawer .nav-lang select { width: 100%; padding: 10px 12px; font-size: 14px; }
  @media (max-width: 780px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links .nav-lang { display: none; }
    .nav-burger { display: flex; }
    .nav-drawer.open { display: flex; }
  }
  @media (max-width: 560px) { .nav-brand img { height: 30px; } }

  /* ---------- Boutons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 13px 26px;
    border-radius: 999px;
    transition: all 0.3s var(--ease);
  }
  .btn-dark { background: var(--noir); color: #fff; }
  .btn-dark:hover { background: #000; transform: translateY(-1px); }
  .btn-light { background: #fff; color: var(--noir); }
  .btn-light:hover { transform: translateY(-1px); }
  .btn-line {
    color: var(--noir);
    box-shadow: inset 0 0 0 1px var(--hairline);
  }
  .btn-line:hover { box-shadow: inset 0 0 0 1px var(--noir); }
  .btn-orange { background: #ef4900; color: #fff; }
  .btn-orange:hover { background: #d64000; transform: translateY(-1px); }
  .link-plus {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--noir);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s;
  }
  .link-plus:hover { border-color: var(--noir); }
  .link-plus svg { width: 13px; height: 13px; }

  /* ---------- Hero ---------- */
  .hero { padding: 110px 0 0; text-align: center; }
  .hero h1 {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    max-width: 18ch;
    margin: 0 auto;
  }
  .hero .lede {
    margin: 26px auto 0;
    max-width: 56ch;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.5;
    color: var(--gris-texte);
    font-weight: 400;
  }
  .hero-ctas {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 28px;
  }
  .hero-shot { margin-top: 72px; padding-bottom: 100px; }
  .hero-shot .shot-wrap { max-width: 860px; margin: 0 auto; text-align: left; }
  .hero-shot .shot { max-height: 600px; object-fit: cover; object-position: top; }
  @media (max-width: 900px) { .hero-shot { padding-bottom: 80px; } }

  /* ---------- Compteurs KPI ---------- */
  .kpi {
    background: var(--blanc);
    color: var(--noir);
    padding: 96px 0 100px;
  }
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
  @media (max-width: 860px) { .kpi-grid { grid-template-columns: 1fr; gap: 48px; } }
  .kpi-item {
    border-top: 2px solid #ef4900;
    padding-top: 28px;
  }
  .kpi-num {
    font-size: clamp(56px, 7vw, 88px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--noir);
  }
  .kpi-num .unit { font-size: 0.5em; font-weight: 600; color: var(--gris-clair); margin-left: 2px; }
  .kpi-item > p:last-child {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gris-texte);
    max-width: 32ch;
  }
  .kpi-item b { color: var(--noir); font-weight: 600; }

  /* ---------- Sections ---------- */
  section { padding: 120px 0; }
  .alt { background: var(--gris-fond); }
  .section-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
  .section-head h2 {
    font-size: clamp(30px, 4.6vw, 48px);
    font-weight: 700;
    line-height: 1.12;
  }
  .section-head p {
    margin-top: 18px;
    font-size: 18px;
    color: var(--gris-texte);
  }

  /* ---------- Constat ---------- */
  .constat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 860px) { .constat-grid { grid-template-columns: 1fr; } }
  .constat-item {
    position: relative;
    background: #fff;
    border-radius: var(--r);
    padding: 38px 32px 40px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .constat-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
  .constat-item .n {
    display: block;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--noir);
    font-variant-numeric: tabular-nums;
    margin-bottom: 22px;
  }
  .constat-item h3 { position: relative; font-size: 19px; font-weight: 700; margin-bottom: 10px; max-width: 18ch; }
  .constat-item p { position: relative; font-size: 14.5px; color: var(--gris-texte); }
  .constat-strip {
    margin-top: 18px;
    background: #d64000;
    color: #fff;
    border-radius: var(--r);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 34px;
    align-items: start;
  }
  .constat-strip .n2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
    padding-top: 2px;
  }
  .constat-strip h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
  .constat-strip p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.92); max-width: 72ch; }
  .constat-strip p b { color: #fff; font-weight: 700; }
  @media (max-width: 700px) {
    .constat-strip { grid-template-columns: 1fr; gap: 14px; padding: 32px 28px 36px; }
  }

  /* ---------- Méthode ---------- */
  .met-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 52px 0;
  }
  .met-row + .met-row { border-top: 1px solid var(--hairline); }
  .met-row:nth-child(even) .met-visual { order: -1; }
  @media (max-width: 900px) {
    .met-row { grid-template-columns: 1fr; gap: 36px; }
    .met-row:nth-child(even) .met-visual { order: 0; }
  }
  .met-text .n {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--noir);
    margin-bottom: 22px;
  }
  .met-text .n::before {
    content: attr(data-n);
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ef4900;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
  }
  .eyebrow-strong {
    display: inline-block;
    background: #ef4900;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .met-text h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .met-text > p { color: var(--gris-texte); font-size: 16px; }
  .met-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; }
  .met-list li {
    font-size: 14.5px;
    font-weight: 500;
    padding: 11px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .met-list li:last-child { border-bottom: none; }

  /* Vignettes monochromes */
  .vignette {
    background: #fff;
    border-radius: var(--r);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 20px 50px rgba(0,0,0,0.08);
    padding: 28px;
  }
  .vignette.shot { padding: 0; overflow: hidden; }
  .vignette.shot img { display: block; width: 100%; height: auto; }
  .vignette-cap {
    margin-top: 14px;
    font-size: 12px;
    color: var(--gris-clair);
    line-height: 1.55;
  }
  .alt .vignette { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
  .vg-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
  }
  .vg-head .t { font-weight: 700; font-size: 15px; }
  .vg-head .s { font-size: 12px; color: var(--gris-clair); }
  .vg-chip {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--gris-fond);
    color: var(--noir);
    white-space: nowrap;
  }
  .vg-chip.inv { background: var(--noir); color: #fff; }
  .jauge { margin-bottom: 16px; }
  .jauge:last-child { margin-bottom: 0; }
  .jauge .lbl {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 7px;
  }
  .jauge .lbl b { color: var(--gris-clair); font-weight: 600; font-variant-numeric: tabular-nums; }
  .jauge .bar { height: 5px; border-radius: 999px; background: #e8e8ed; overflow: hidden; }
  .jauge .bar i { display: block; height: 100%; border-radius: 999px; background: #ef4900; }
  .jauge.g2 .bar i { background: #ff9d6b; }
  .note {
    margin-top: 20px;
    background: var(--gris-fond);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--gris-texte);
    line-height: 1.55;
  }
  .note b { color: var(--noir); font-weight: 600; }
  .cards-mini { display: flex; flex-direction: column; gap: 10px; }
  .card-mini {
    border: 1px solid var(--hairline);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--gris-texte);
  }
  .card-mini b { color: var(--noir); font-weight: 600; }
  .card-mini.plein { background: var(--noir); border-color: var(--noir); color: rgba(255,255,255,0.75); }
  .card-mini.plein b { color: #fff; }
  .lien-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gris-fond);
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    overflow: hidden;
  }
  .lien-pill svg { width: 13px; height: 13px; flex-shrink: 0; }
  .lien-pill .u { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--gris-texte); }
  .lien-pill .u b { color: var(--noir); }
  .activity { list-style: none; }
  .activity li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 2px;
    font-size: 13px;
    border-bottom: 1px solid var(--gris-fond);
  }
  .activity li:last-child { border-bottom: none; }
  .activity .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--noir); flex-shrink: 0; }
  .activity .dot.g { background: #a1a1a6; }
  .activity time { margin-left: auto; font-size: 11.5px; color: var(--gris-clair); font-variant-numeric: tabular-nums; white-space: nowrap; }

  /* ---------- Bande photo ---------- */
  .photo-band { padding: 0; }
  .photo-band img {
    width: 100%;
    height: min(62vh, 620px);
    object-fit: cover;
  }

  /* ---------- Expertise ---------- */
  .exp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; gap: 48px; } }
  .exp-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; }
  .exp-text > p { margin-top: 18px; color: var(--gris-texte); font-size: 16.5px; }
  .exp-text > p strong { color: var(--noir); font-weight: 600; }
  .exp-text cite { font-style: normal; font-weight: 600; color: var(--noir); }
  .book-scene { display: flex; flex-direction: column; align-items: center; gap: 22px; }
  .book-img {
    width: min(270px, 62vw);
    height: auto;
    border-radius: 4px 10px 10px 4px;
    box-shadow:
      inset -2px 0 5px rgba(255,255,255,0.1),
      24px 34px 60px rgba(0,0,0,0.22),
      0 2px 10px rgba(0,0,0,0.10);
  }
  .book {
    width: min(270px, 66vw);
    aspect-ratio: 0.72;
    border-radius: 3px 12px 12px 3px;
    background: linear-gradient(140deg, #3a3a3c, #1d1d1f 55%, #0f0f10);
    box-shadow:
      inset 10px 0 20px rgba(0,0,0,0.4),
      inset -2px 0 5px rgba(255,255,255,0.10),
      24px 34px 60px rgba(0,0,0,0.22);
    padding: 28px 24px 24px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .book::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.13) 1.5px, transparent 1.5px);
    background-size: 17px 17px;
    pointer-events: none;
  }
  .book > * { position: relative; }
  .bk-badge {
    align-self: flex-start;
    background: #fff;
    color: var(--noir);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    margin-bottom: 16px;
  }
  .bk-authors { font-size: 14px; font-weight: 600; line-height: 1.5; margin-bottom: 18px; color: rgba(255,255,255,0.85); }
  .bk-title { font-weight: 800; text-transform: uppercase; line-height: 1.03; }
  .bk-title .w { display: block; font-size: 22px; color: rgba(255,255,255,0.65); }
  .bk-title .b { display: block; font-size: 30px; color: #fff; }
  .bk-sub { margin-top: 14px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.8); }
  .bk-ed { margin-top: 7px; font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.5); }
  .bk-pub { margin-top: auto; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; }
  .book-caption { font-size: 12.5px; color: var(--gris-clair); text-align: center; max-width: 36ch; line-height: 1.6; }

  /* ---------- Manifeste ---------- */
  .manifeste { background: var(--gris-fond); color: var(--noir); text-align: left; padding: 116px 0; }
  .manifeste blockquote {
    font-size: clamp(26px, 4.4vw, 46px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.22;
    max-width: 22ch;
    margin: 0;
    text-wrap: balance;
  }
  .manifeste blockquote::before {
    content: "\201C";
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 92px;
    line-height: 0.5;
    color: #ef4900;
    margin-bottom: 26px;
  }
  .manifeste blockquote em { font-style: normal; color: #ef4900; }
  .manifeste figcaption { margin-top: 34px; font-size: 18px; color: var(--noir); font-weight: 600; }

  /* ===== Section vidéo (La série) ===== */
  #serie { padding: 104px 0; text-align: center; }
  .serie-head { max-width: 620px; margin: 0 auto 44px; }
  .serie-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.02em; margin-top: 10px; }
  .serie-head p { margin-top: 16px; font-size: 17px; color: var(--gris-texte); line-height: 1.5; }
  .video-thumb {
    display: block; position: relative; max-width: 840px; margin: 0 auto;
    aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--hairline); box-shadow: 0 10px 40px rgba(0,0,0,0.10);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }
  .video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.35s var(--ease); }
  .video-thumb:hover { transform: translateY(-4px); box-shadow: 0 20px 54px rgba(0,0,0,0.16); }
  .video-thumb:hover::after { background: rgba(0,0,0,0.06); }
  .video-thumb::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0)); z-index: 1;
  }
  .vt-cta {
    position: absolute; left: 18px; bottom: 16px; z-index: 3;
    display: inline-flex; align-items: center; gap: 9px;
    background: #ef4900; color: #fff; font-weight: 600; font-size: 15px;
    padding: 11px 18px; border-radius: 999px;
    box-shadow: 0 6px 18px rgba(239,73,0,0.42); transition: transform 0.3s var(--ease);
  }
  .video-thumb:hover .vt-cta { transform: translateY(-2px); }
  .vt-cta svg { width: 15px; height: 15px; margin-left: 1px; }
  .video-thumb[data-yt] { cursor: pointer; }
  .video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
  .video-thumb.playing::before, .video-thumb.playing::after { display: none; }
  .vt-dur {
    position: absolute; bottom: 20px; right: 16px; z-index: 3;
    font-size: 12px; font-weight: 600; color: #fff;
    background: rgba(0,0,0,0.55); padding: 5px 11px; border-radius: 999px;
  }
  @media (max-width: 640px) { #serie { padding: 72px 0; } .vt-cta { font-size: 13.5px; padding: 9px 15px; } }

  /* ===== Page Vidéos : grille des épisodes ===== */
  .vhead { text-align: center; max-width: 640px; margin: 0 auto 44px; }
  .vhead h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.02em; }
  .vhead p { margin-top: 14px; font-size: 16px; color: var(--gris-texte); }
  .vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .vcard {
    display: flex; flex-direction: column; justify-content: space-between;
    aspect-ratio: 16 / 9; text-align: left; width: 100%;
    background: #fff; border: 1px solid var(--hairline); border-radius: 18px;
    padding: 22px 24px; cursor: pointer; font: inherit; color: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .vcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); border-color: var(--vc); }
  .vcard-ep { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris-clair); }
  .vcard-titre { display: block; margin-top: 9px; font-size: clamp(20px, 1.9vw, 26px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; color: var(--vc); }
  .vcard-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
  .vcard-play { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--vc); color: #fff; display: grid; place-items: center; transition: transform 0.3s var(--ease); }
  .vcard:hover .vcard-play { transform: scale(1.08); }
  .vcard-play svg { width: 16px; height: 16px; margin-left: 2px; }
  .vcard-dur { font-size: 12.5px; font-weight: 600; color: var(--gris-clair); font-variant-numeric: tabular-nums; }
  @media (max-width: 900px) { .vgrid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .vgrid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

  /* ===== Lightbox vidéo ===== */
  .lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0,0,0,0.86); }
  .lightbox.open { display: flex; }
  .lb-frame { position: relative; width: 100%; max-width: 960px; aspect-ratio: 16 / 9; }
  .lb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 12px; }
  .lb-close { position: absolute; top: 16px; right: 20px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; border: 0; font-size: 26px; line-height: 1; cursor: pointer; transition: background 0.2s; }
  .lb-close:hover { background: rgba(255,255,255,0.28); }

  /* ---------- Fonctionnalités ---------- */
  .bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }
  .cardf {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--r);
    padding: 34px 32px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .alt .cardf { box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
  .cardf:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
  .cardf.noire { background: var(--noir); color: #fff; }
  .cardf.noire h3 { color: #fff; }
  .cardf.noire p { color: #a1a1a6; }
  .sp7 { grid-column: span 7; }
  .sp5 { grid-column: span 5; }
  .sp4 { grid-column: span 4; }
  .sp6 { grid-column: span 6; }
  .sp12 { grid-column: span 12; }
  @media (max-width: 940px) { .sp7, .sp5, .sp4, .sp6 { grid-column: span 6; } }
  @media (max-width: 660px) { .sp7, .sp5, .sp4, .sp6, .sp12 { grid-column: span 12; } }
  .cardf h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
  .cardf p { font-size: 14.5px; color: var(--gris-texte); }
  .cardf .visual { margin-top: auto; padding-top: 26px; }
  .pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .pill {
    border: 1px solid var(--hairline);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
  }
  .pill b { font-weight: 700; font-variant-numeric: tabular-nums; }
  /* ---------- Nouvelles fonctionnalités (captures réelles) ---------- */
  .shotwrap { border-radius: 16px; border: 1px solid var(--hairline); box-shadow: 0 2px 10px rgba(0,0,0,0.05), 0 26px 60px rgba(0,0,0,0.10); overflow: hidden; background: #fff; }
  .shotwrap img { display: block; width: 100%; height: auto; }
  .shot-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
  @media (max-width: 820px) { .shot-duo { grid-template-columns: 1fr; gap: 22px; } }
  .shot-cap { margin-top: 14px; font-size: 13.5px; color: var(--gris-clair); text-align: center; }
  .feat { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  @media (max-width: 900px) { .feat { grid-template-columns: 1fr; gap: 30px; } }
  .feat h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; line-height: 1.14; }
  .feat .eyebrow { margin-bottom: 16px; }
  .feat-lead { margin-top: 16px; font-size: 17px; color: var(--gris-texte); }
  .feat-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
  .feat-list li { padding-left: 26px; position: relative; }
  .feat-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: #ef4900; }
  .feat-list strong { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 2px; }
  .feat-list span { font-size: 14.5px; color: var(--gris-texte); line-height: 1.55; }
  .integ { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .integ .chip { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; background: #fff; border: 1px solid var(--hairline); border-radius: 999px; padding: 12px 22px; }
  .integ .chip b { color: #ef4900; font-weight: 700; }

  .cardf.wide { flex-direction: row; align-items: center; gap: 48px; }
  .cardf.wide .fw { flex: 1; min-width: 0; }
  @media (max-width: 820px) { .cardf.wide { flex-direction: column; align-items: stretch; gap: 26px; } }

  /* ---------- Proposition ---------- */
  .apercu-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 900px) { .apercu-grid { grid-template-columns: 1fr; } }
  .apercu-points { list-style: none; }
  .apercu-points li { padding: 18px 0; }
  .apercu-points li + li { border-top: 1px solid var(--hairline); }
  .apercu-points strong { display: block; font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
  .apercu-points span { font-size: 14.5px; color: var(--gris-texte); line-height: 1.6; }
  .browser {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 34px 80px rgba(0,0,0,0.16);
  }
  .browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gris-fond);
    padding: 10px 14px;
    border-bottom: 1px solid var(--hairline);
  }
  .browser-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #d2d2d7; }
  .browser-bar .url {
    flex: 1;
    background: #fff;
    border-radius: 7px;
    font-size: 11px;
    color: var(--gris-clair);
    padding: 5px 12px;
    margin-left: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .browser-bar .url b { color: var(--noir); font-weight: 600; }
  /* Captures réelles du produit (mini-site généré) */
  .shot-wrap { position: relative; }
  .browser img.shot { display: block; width: 100%; height: auto; }
  .phone {
    position: absolute;
    right: -14px;
    bottom: 34px;
    width: 30%;
    border: 5px solid #1d1d1f;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0,0,0,0.30);
  }
  .phone img { display: block; width: 100%; height: auto; }
  .shot-cap {
    margin-top: 18px;
    padding-right: 36%;
    font-size: 12.5px;
    color: var(--gris-clair);
    line-height: 1.6;
  }
  @media (max-width: 900px) {
    .phone { right: 4px; bottom: 24px; width: 34%; border-radius: 18px; border-width: 4px; }
  }

  /* Page de mini-site montrée dans le navigateur */
  .ms { background: #fff; }
  .ms-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-bottom: 1px solid var(--gris-fond);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .ms-logo {
    width: 20px; height: 20px;
    background: var(--noir);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    flex-shrink: 0;
  }
  .ms-nav .ms-menu {
    margin-left: auto;
    display: flex;
    gap: 10px;
    font-size: 9.5px;
    color: var(--gris-clair);
    font-variant-numeric: tabular-nums;
  }
  .ms-cover { position: relative; overflow: hidden; }
  .ms-cover img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.55);
  }
  .ms-cover > div { position: relative; padding: 42px 26px 34px; color: #fff; }
  .ms-kicker {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    display: block;
    margin-bottom: 12px;
  }
  .ms-cover h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.01em;
    max-width: 24ch;
  }
  .ms-cover .ms-meta { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 5px 16px; font-size: 10.5px; color: rgba(255,255,255,0.65); }
  .ms-sec { padding: 20px 26px; border-bottom: 1px solid var(--gris-fond); display: flex; gap: 16px; }
  .ms-sec .ms-n {
    font-size: 11px;
    font-weight: 700;
    color: var(--gris-clair);
    font-variant-numeric: tabular-nums;
    padding-top: 2px;
  }
  .ms-sec h6 { font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
  .ms-sec .fill { flex: 1; min-width: 0; }
  .ms-p { font-size: 12px; line-height: 1.6; color: var(--gris-texte); }
  .ms-quote {
    margin-top: 12px;
    border-left: 2px solid var(--noir);
    padding: 8px 0 8px 14px;
    font-size: 12px;
    line-height: 1.55;
  }
  .ms-quote .who { display: block; margin-top: 6px; font-size: 10px; color: var(--gris-clair); font-weight: 600; }
  .ms-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .ms-thumbs figure { margin: 0; }
  .ms-thumbs .ph {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e8e8ed;
  }
  .ms-thumbs .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.04);
  }
  .ms-thumbs figcaption { font-size: 9.5px; font-weight: 600; color: var(--gris-texte); margin-top: 6px; }
  .ms-price { display: flex; flex-direction: column; gap: 8px; }
  .ms-price .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid var(--gris-fond);
    padding-bottom: 8px;
  }
  .ms-price .amt {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    white-space: nowrap;
    color: var(--gris-texte);
  }
  .ms-price .row.total { border-bottom: none; font-weight: 700; }
  .ms-price .row.total .amt { color: var(--noir); font-size: 13px; }
  .ms-qr { padding: 20px 26px; background: var(--gris-fond); }
  .ms-qr .ms-qr-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-texte);
    margin-bottom: 12px;
  }
  .bulle {
    max-width: 88%;
    font-size: 12px;
    line-height: 1.5;
    padding: 9px 13px;
    border-radius: 14px;
    margin-bottom: 8px;
  }
  .bulle.client { background: #fff; border: 1px solid var(--hairline); border-bottom-left-radius: 3px; }
  .bulle.vous { background: var(--noir); color: #fff; margin-left: auto; border-bottom-right-radius: 3px; }
  .ms-ask {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 11.5px;
    color: var(--gris-clair);
    margin-top: 12px;
  }
  .ms-ask svg { width: 13px; height: 13px; flex-shrink: 0; }
  .ms-accept {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 26px;
    font-size: 12.5px;
    font-weight: 700;
  }
  .ms-accept .sig-btn {
    background: var(--noir);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }

  /* ---------- Interactivité (Q&R) ---------- */
  .interactif { background: var(--noir-pur); color: #fff; }
  .interactif .section-head h2 { color: #fff; }
  .interactif .section-head p { color: #a1a1a6; }
  .inter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 900px) { .inter-grid { grid-template-columns: 1fr; gap: 44px; } }
  .inter-points { list-style: none; }
  .inter-points li { padding: 18px 0; }
  .inter-points li + li { border-top: 1px solid rgba(255,255,255,0.12); }
  .inter-points strong { display: block; font-size: 16.5px; font-weight: 700; color: #fff; margin-bottom: 4px; }
  .inter-points span { font-size: 14.5px; color: #a1a1a6; line-height: 1.6; }
  .chat {
    background: #161617;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    padding: 26px 24px;
  }
  .chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 18px;
  }
  .chat .bulle2 {
    max-width: 88%;
    font-size: 13.5px;
    line-height: 1.55;
    padding: 11px 15px;
    border-radius: 16px;
    margin-bottom: 10px;
  }
  .chat .bulle2.client {
    background: rgba(255,255,255,0.09);
    color: #e8e8ed;
    border-bottom-left-radius: 4px;
  }
  .chat .bulle2.ia {
    background: #fff;
    color: var(--noir);
    margin-left: auto;
    border-bottom-right-radius: 4px;
  }
  .chat .ia-tag {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #86868b;
    margin: 2px 4px 10px 0;
  }
  .chat .ia-tag i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #ef4900;
    font-style: normal;
  }
  .chat .notif {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #a1a1a6;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 10px 14px;
    margin: 14px 0 16px;
  }
  .chat .notif svg { width: 14px; height: 14px; flex-shrink: 0; color: #ef4900; }
  .chat .ask {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 13px;
    color: #86868b;
  }
  .chat .ask svg { width: 14px; height: 14px; flex-shrink: 0; color: #e8e8ed; }

  /* ---------- Équipes ---------- */
  .roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 940px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .roles-grid { grid-template-columns: 1fr; } }
  .role {
    background: #fff;
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    padding: 30px 26px 32px;
    border-top: 2px solid #ef4900;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .role:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
  .role h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .role .qui {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris-clair);
    margin-bottom: 14px;
  }
  .role p { font-size: 14px; color: var(--gris-texte); }

  /* ---------- Patrimoine (dans Expertise) ---------- */
  .patrimoine-lead {
    margin: 84px auto 26px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 40ch;
  }
  .patrimoine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 980px) { .patrimoine-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 700px) { .patrimoine-grid { grid-template-columns: 1fr; } }
  .patrimoine-grid .cardf { border: 1px solid var(--hairline); }

  /* ---------- Visuel client (téléphone + signaux) ---------- */
  .client-visual { display: flex; flex-direction: column; gap: 20px; align-items: center; }
  .phone-solo {
    width: min(280px, 68vw);
    border: 6px solid #1d1d1f;
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
  }
  .phone-solo img { display: block; width: 100%; height: auto; }
  .client-visual .vignette { width: 100%; }

  /* ---------- Prix ---------- */
  .prix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
  }
  @media (max-width: 1080px) { .prix-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .prix-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
  .offre {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hairline);
    border-radius: var(--r);
    padding: 32px 26px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }
  .offre.reco { border-color: #ff4a17; }
  .offre:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
  .offre.reco {
    background: #ff4a17;
    color: #fff;
    position: relative;
  }
  .offre .badge {
    position: absolute;
    top: 20px; right: 22px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff;
    color: var(--noir);
    padding: 5px 12px;
    border-radius: 999px;
  }
  .offre.reco .badge { top: -12px; left: 50%; right: auto; transform: translateX(-50%); background: #ffe23d; color: #1a2b07; white-space: nowrap; }
  .offre .nom { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gris-clair); }
  .offre.reco .nom { color: rgba(255,255,255,0.82); }
  .offre .tarif { margin-top: 16px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
  .offre .tarif .montant { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
  .offre .tarif .unite { font-size: 12.5px; color: var(--gris-clair); font-weight: 500; }
  .offre.reco .tarif .unite { color: rgba(255,255,255,0.82); }
  .offre .sub { margin-top: 6px; font-size: 11.5px; color: var(--gris-clair); line-height: 1.5; }
  .offre.reco .sub { color: rgba(255,255,255,0.82); }
  .offre .pour { margin-top: 10px; font-size: 13.5px; color: var(--gris-texte); min-height: 58px; }
  .offre.reco .pour { color: rgba(255,255,255,0.82); }

  /* Options sous les formules */
  .options { margin-top: 52px; }
  .options-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gris-clair);
    margin-bottom: 6px;
  }
  .opt-row {
    display: grid;
    grid-template-columns: 1.1fr auto 2fr;
    gap: 8px 26px;
    align-items: baseline;
    padding: 14px 2px;
    border-bottom: 1px solid var(--hairline);
    font-size: 14px;
  }
  .opt-row:first-of-type { border-top: 1px solid var(--hairline); }
  .opt-row .o-nom { font-weight: 700; }
  .opt-row .o-prix { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
  .opt-row .o-desc { color: var(--gris-texte); font-size: 13.5px; }
  @media (max-width: 720px) {
    .opt-row { grid-template-columns: 1fr auto; }
    .opt-row .o-desc { grid-column: 1 / -1; }
  }
  .offre ul { list-style: none; margin-top: 24px; flex: 1; }
  .offre ul li {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--gris-fond);
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  .offre.reco ul li { border-bottom-color: rgba(255,255,255,0.22); }
  .offre ul li:last-child { border-bottom: none; }
  .offre .btn { width: 100%; justify-content: center; text-align: center;
    white-space: nowrap; font-size: 15px; padding: 12px 16px; margin-top: 24px; }
  .offre ul li svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 4px; }
  .offre .btn { margin-top: 28px; justify-content: center; }
  .prix-note { margin-top: 34px; text-align: center; font-size: 12.5px; color: var(--gris-clair); }

  /* ===== Packs de propositions (Tarifs) ===== */
  #packs .section-head { max-width: 720px; margin-bottom: 48px; }
  .pack-compteur {
    display: flex; align-items: center; gap: 20px;
    background: #fff; border: 1px solid var(--hairline);
    border-radius: var(--r); padding: 24px 28px; margin: 0 auto 52px; max-width: 780px;
  }
  .pack-compteur .pc-ico {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 15px;
    background: #ef4900; color: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .pack-compteur .pc-ico svg { width: 26px; height: 26px; }
  .pack-compteur h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--noir); }
  .pack-compteur p { margin-top: 5px; font-size: 14px; color: var(--gris-texte); line-height: 1.5; }
  .pack-group { margin-top: 44px; }
  .pack-group:first-of-type { margin-top: 0; }
  .pack-group-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
  .pack-group-head h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: var(--noir); }
  .pack-note { font-size: 13px; color: var(--gris-clair); }
  .pack-badge {
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: #ef4900; background: rgba(239,73,0,0.10); padding: 4px 11px; border-radius: 999px;
  }
  .pack-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pack-card {
    position: relative; background: #fff; border: 1px solid var(--hairline);
    border-radius: 20px; padding: 28px 20px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .pack-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .pack-card .pk-vol { font-size: 42px; font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; line-height: 1; color: var(--noir); }
  .pack-card .pk-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris-clair); }
  .pack-card .pk-prix { margin-top: 14px; font-size: 25px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--noir); }
  .pack-card .pk-unit { margin-top: 2px; font-size: 12.5px; color: var(--gris-texte); }
  .pack-cards.etranger .pack-card { border-top: 3px solid #ef4900; }
  .pack-cards.etranger .pack-card .pk-prix { color: #ef4900; }
  .pk-best {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    color: #fff; background: var(--noir); padding: 4px 10px; border-radius: 999px; white-space: nowrap;
  }
  @media (max-width: 900px) { .pack-cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px) {
    .pack-cards { grid-template-columns: 1fr; }
    .pack-compteur { flex-direction: column; text-align: center; gap: 14px; }
  }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 740px; margin: 0 auto; }
  .faq-group {
    margin: 52px 0 0;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
    color: #ef4900;
  }
  .faq-group:first-child { margin-top: 0; }
  .faq-list details { border-bottom: 1px solid var(--hairline); }
  .faq-group + details { border-top: 1px solid var(--hairline); }
  .faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 2px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary .plus {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--gris-fond);
    display: grid;
    place-items: center;
    transition: transform 0.3s var(--ease);
  }
  .faq-list summary .plus svg { width: 12px; height: 12px; }
  .faq-list details[open] summary .plus { transform: rotate(45deg); }
  .faq-list details p { padding: 0 46px 26px 2px; font-size: 15px; color: var(--gris-texte); }

  /* ---------- CTA finale ---------- */
  .cta-finale { padding: 0; position: relative; }
  .cta-finale img {
    width: 100%;
    height: min(70vh, 640px);
    object-fit: cover;
  }
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
  }
  .cta-overlay h2 {
    color: #fff;
    font-size: clamp(28px, 4.6vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    max-width: 22ch;
  }
  .cta-overlay p { margin: 18px auto 0; max-width: 50ch; color: rgba(255,255,255,0.75); font-size: 17px; }
  .cta-overlay .hero-ctas { margin-top: 34px; }
  .cta-overlay .small { margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,0.55); }

  /* ---------- Footer ---------- */
  footer { background: var(--gris-fond); padding: 54px 0 48px; font-size: 12px; color: var(--gris-texte); border-top: 1px solid var(--hairline); }
  .footer-legal {
    border-top: 1px solid var(--hairline);
    margin-top: 36px;
    padding-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
  }
  .qualiopi-badge {
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
  }
  .qualiopi-badge img { height: 58px; width: auto; display: block; }
  .footer-legal .legal-text { flex: 1; min-width: 260px; font-size: 11.5px; line-height: 1.7; }
  .footer-legal .legal-text p { margin-bottom: 6px; }
  .footer-legal .legal-text p:last-child { margin-bottom: 0; }
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
  }
  footer img { height: 26px; width: auto; }
  .footer-brand2 { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
  .footer-brand2 img { align-self: flex-start; height: 34px; width: auto; }
  .footer-brand2 .bl2 {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #86868b;
  }
  footer a { color: var(--noir); text-decoration: none; font-weight: 500; transition: color 0.25s; }
  footer a:hover { color: #ef4900; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 22px; }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .btn, .cardf, .offre, .role { transition: none; }
  }
  .met-compo { position: relative; padding-bottom: 26px; padding-right: 12px; }
  .met-compo .phone { right: -6px; bottom: 0; width: 31%; }
  .met-punch {
    margin-top: 72px;
    text-align: center;
    font-size: clamp(20px, 2.6vw, 27px);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }

/* En-tête des pages intérieures : variante du hero sans capture */
.hero.sub { padding: 96px 0 64px; }
.hero.sub .eyebrow { display: block; margin-bottom: 16px; }
.hero.sub .lede { margin-top: 22px; }
@media (max-width: 700px) { .hero.sub { padding: 72px 0 48px; } }

/* ---------- Bento : finition (icônes, média, survol) ---------- */
.cardf .card-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--hairline);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 22px;
}
.cardf .card-ico svg { width: 22px; height: 22px; stroke: var(--noir); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cardf.noire .card-ico { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); box-shadow: none; }
.cardf.noire .card-ico svg { stroke: #fff; }
.cardf .card-media { margin: 26px -32px -34px; border-radius: 0 0 var(--r) var(--r); overflow: hidden; }
.cardf .card-media img { width: 100%; display: block; max-height: 300px; object-fit: cover; object-position: top; transition: transform 0.6s var(--ease); }
.cardf:hover .card-media img { transform: scale(1.03); }

/* Carte vedette bento : occupe 2 rangées, les cartes de droite s'empilent à côté */
.cardf.rowspan2 { grid-row: span 2; }
.cardf.rowspan2 .card-media { margin-top: auto; }
@media (max-width: 660px) { .cardf.rowspan2 { grid-row: auto; } }

/* Accent orange, réservé à la carte vedette du bento */
.cardf.accent .card-ico { background: #fff4ef; border-color: #ffd9c7; box-shadow: none; }
.cardf.accent .card-ico svg { stroke: #ef4900; }
.cardf.accent .eyebrow { color: #ef4900; }

/* ---------- Double bento du hero : accroche + mini-site sur iPhone ---------- */
.hero-bento { margin: 76px auto 0; padding-bottom: 96px; text-align: left; }
.hero-bento .cardf { background: var(--gris-fond); }
.hero-bento .cardf.noire { background: #101413; }
.hero-bento .cardf h3 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.015em; line-height: 1.08; margin: 14px 0 14px; }
.hero-bento .cardf p { font-size: 16.5px; line-height: 1.62; }
.hero-bento .note { margin-top: auto; padding-top: 22px; font-size: 12.5px; color: var(--gris-clair); line-height: 1.5; }
.hero-bento .visu { display: flex; align-items: center; justify-content: center; padding: 14px 0; height: 100%; }
.hero-bento .phone-solo { width: min(300px, 64vw); }
@media (max-width: 700px) { .hero-bento { margin-top: 56px; padding-bottom: 72px; } }

/* ---------- Vitrine de la proposition (accroche + insert navigateur/iPhone, façon vidéo) ---------- */
.propshow { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: center; margin-top: 64px; padding-bottom: 92px; text-align: left; }
.propshow-text h2 { font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -0.02em; line-height: 1.05; margin: 14px 0 16px; }
.propshow-text > p { font-size: 16.5px; line-height: 1.62; color: var(--gris-texte); }
.propshow-text .note { margin-top: 18px; font-size: 12.5px; color: var(--gris-clair); line-height: 1.5; }
.propshow .shot-link { display: block; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.propshow .shot-link:hover { transform: translateY(-3px); }
.propshow .shot-wrap { max-width: 640px; margin-left: auto; }
.propshow .browser img.shot { max-height: 460px; object-fit: cover; object-position: top; }
@media (max-width: 900px) { .propshow { grid-template-columns: 1fr; gap: 30px; margin-top: 44px; padding-bottom: 64px; } .propshow .shot-wrap { margin: 0 auto; } }

/* ---------- Bento coloré (aplats acidulés) ---------- */
.cardf.c-orange { background: #ff4a17; }
.cardf.c-blue   { background: #ff2e93; }
.cardf.c-green  { background: #0e9c88; }
.cardf.c-violet { background: #6c40e4; }
.cardf.c-amber  { background: #ffe23d; }
.cardf.c-orange, .cardf.c-blue, .cardf.c-green, .cardf.c-violet { color: #fff; }
.cardf.c-orange h3, .cardf.c-blue h3, .cardf.c-green h3, .cardf.c-violet h3 { color: #fff; }
.cardf.c-orange > p, .cardf.c-blue > p, .cardf.c-green > p, .cardf.c-violet > p { color: rgba(255,255,255,0.9); }
.cardf.c-orange .eyebrow, .cardf.c-blue .eyebrow, .cardf.c-green .eyebrow, .cardf.c-violet .eyebrow { color: rgba(255,255,255,0.82); }
.cardf.c-amber, .cardf.c-amber h3 { color: #1d1d1f; }
.cardf.c-amber > p { color: rgba(0,0,0,0.72); }
.cardf.c-amber .eyebrow { color: rgba(0,0,0,0.6); }
/* icônes sur aplat */
.cardf[class*="c-"] .card-ico { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.32); box-shadow: none; }
.cardf[class*="c-"] .card-ico svg { stroke: #fff; }
.cardf.c-amber .card-ico { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.16); }
.cardf.c-amber .card-ico svg { stroke: #1d1d1f; }
/* pastilles sur aplat */
.cardf[class*="c-"] .pill { border-color: rgba(255,255,255,0.55); color: #fff; }
.cardf.c-amber .pill { border-color: rgba(0,0,0,0.32); color: #1d1d1f; }
/* survol : ombre colorée */
.alt .cardf[class*="c-"] { box-shadow: 0 10px 30px -12px rgba(0,0,0,0.35); }
.cardf[class*="c-"]:hover { box-shadow: 0 22px 50px -18px rgba(0,0,0,0.45); }

.propshow-text .eyebrow { color: #ef4900; }

.hl-o { color: var(--noir); background: linear-gradient(transparent 56%, #ffe23d 56%, #ffe23d 90%, transparent 90%); padding: 0 .08em; }
/* Fleche retour a l'accueil (pages interieures) */
.backtop { display: inline-flex; align-items: center; gap: 7px; margin: 22px 0 -14px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--gris-clair); text-decoration: none; }
.backtop:hover { color: #ef4900; }
.backtop svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- CTA final, traitement clair (photo lumineuse, texte sombre à droite) ---------- */
.cta-finale.light img { object-position: 22% center; }
.cta-finale.light .cta-overlay {
  background: linear-gradient(90deg, rgba(245,245,247,0) 26%, rgba(245,245,247,0.72) 56%, rgba(245,245,247,0.94) 100%);
  justify-content: flex-end;
  text-align: left;
  padding: 24px clamp(24px, 7vw, 104px);
}
.cta-finale.light .cta-overlay > div { max-width: 440px; }
.cta-finale.light .cta-overlay h2 { color: var(--noir); max-width: 16ch; }
.cta-finale.light .cta-overlay p { color: var(--gris-texte); margin: 16px 0 0; }
.cta-finale.light .cta-overlay .hero-ctas { justify-content: flex-start; }
.cta-finale.light .cta-overlay .small { color: var(--gris-clair); }
@media (max-width: 760px) {
  .cta-finale.light img { object-position: 13% center; }
  .cta-finale.light .cta-overlay {
    background: linear-gradient(180deg, rgba(245,245,247,0) 12%, rgba(245,245,247,0.55) 42%, rgba(245,245,247,0.96) 78%);
    align-items: flex-end; justify-content: center; text-align: center; padding: 24px 24px 40px;
  }
  .cta-finale.light .cta-overlay > div { max-width: 100%; }
  .cta-finale.light .cta-overlay h2 { max-width: 100%; }
  .cta-finale.light .cta-overlay p { margin-left: auto; margin-right: auto; }
  .cta-finale.light .cta-overlay .hero-ctas { justify-content: center; }
}
  /* ---------- Schéma « convergence » (page Concept) ---------- */
  .flux { max-width: 640px; margin: 56px auto 0; }
  .flux svg { width: 100%; height: auto; display: block; overflow: visible; }
  .flux text { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif; }
  .flux .fx-title { font-weight: 650; font-size: 16px; fill: var(--noir); letter-spacing: -0.01em; }
  .flux .fx-sub { font-size: 13px; fill: #6e6e73; }
  .flux .fx-out { font-weight: 700; font-size: 17.5px; fill: var(--noir); letter-spacing: -0.01em; }
  .flux .fx-esub { font-size: 13px; fill: #6e6e73; }
  .flux .fx-prop { font-weight: 700; font-size: 17.5px; fill: var(--noir); letter-spacing: -0.01em; }
  /* Schema carrefour : version mobile lisible (texte natif, cartes empilees) */
  .flux-m { display: none; }
  @media (max-width: 640px) {
    .carrefour .flux svg { display: none; }
    .flux-m { display: flex; flex-direction: column; align-items: stretch; gap: 12px; max-width: 360px; margin: 6px auto 0; }
    .flux-m .fmc { position: relative; background: #fff; border: 1px solid #e7e7ec; border-radius: 18px; padding: 17px 44px 17px 20px; box-shadow: 0 1px 5px rgba(0,0,0,0.05); }
    .flux-m .fmc b { display: block; font-size: 18px; font-weight: 650; color: var(--noir); letter-spacing: -0.01em; line-height: 1.2; }
    .flux-m .fmc i { display: block; font-style: normal; font-size: 14px; color: #6e6e73; margin-top: 4px; line-height: 1.35; }
    .flux-m .fmc-dot { position: absolute; top: 20px; right: 20px; width: 12px; height: 12px; border-radius: 50%; background: var(--fd); }
    .flux-m .fmc-arrow { align-self: center; width: 2px; height: 20px; background: linear-gradient(#cfcfd6, #ef4900); position: relative; }
    .flux-m .fmc-arrow::after { content: ""; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #ef4900; }
    .flux-m .fmc-core { border-color: #ffd3bf; padding-left: 44px; }
    .flux-m .fmc-core::before { content: "\2726"; position: absolute; top: 16px; left: 18px; color: #ef4900; font-size: 17px; line-height: 1; }
    .flux-m .fmc-core b, .flux-m .fmc-win b { font-size: 19px; font-weight: 700; }
    .flux-m .fmc-win { text-align: center; padding: 18px 20px; border-color: #d7d7dd; }
  }
  @media (prefers-reduced-motion: reduce) { .flux .flow-dot { display: none; } }

/* ---------- Page Fonctionnalités : familles + grille de features ---------- */
.famille { padding: 84px 0; }
.famille.alt2 { background: var(--gris-fond); }
.famille.managers { background: #f5f2ff; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px 34px; margin-top: 46px; }
.feat-item { }
.feat-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--fam-bg, #f0f0f3); margin-bottom: 16px; }
.feat-ico svg { width: 23px; height: 23px; stroke: var(--fam, #1d1d1f); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feat-item h3 { font-size: 17px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--noir); }
.feat-item p { font-size: 14.5px; line-height: 1.55; color: var(--gris-texte); }
.famille.fam1 { --fam: #ef4900; --fam-bg: #fff2ec; }
.famille.fam2 { --fam: #ff2e93; --fam-bg: #ffe4ef; }
.famille.fam3 { --fam: #0e9c88; --fam-bg: #d6f5ef; }
.famille.fam4 { --fam: #6c40e4; --fam-bg: #efe9fd; }
.famille.fam5 { --fam: #b8760a; --fam-bg: #fdf3e0; }

.famille .section-head { text-align: left; margin: 0 0 42px; max-width: 780px; }

/* ---------- Spotlight : indice de persuasion ---------- */
.spotlight { padding: 92px 0 0; }
.spot { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center;
  background: #fff; border: 1px solid var(--hairline); border-radius: 28px; padding: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05), 0 28px 64px rgba(0,0,0,.09); }
@media (max-width: 820px) { .spot { grid-template-columns: 1fr; gap: 34px; padding: 32px; } }
.spot-text .eyebrow { color: #ef4900; }
.spot-text h2 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 700; line-height: 1.12; }
.spot-text p { margin-top: 16px; color: var(--gris-texte); font-size: 16.5px; line-height: 1.62; }
.spot-viz { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.ring-big { position: relative; width: 168px; }
.ring-big .rb-lbl { text-align: center; margin-top: 10px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gris-clair); }
.ring-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; width: 100%; align-items: start; }
.ring-big svg { width: 100%; height: auto; max-width: 168px; }
.ring-mini { text-align: center; }
.ring-mini svg { display: block; margin: 0 auto; width: 100%; height: auto; max-width: 72px; }
.ring-mini .rm-lbl { font-size: 11.5px; color: var(--gris-clair); margin-top: 9px; line-height: 1.3; }
.spot-viz text { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif; }

/* Cartes bento dans les familles Fonctionnalités */
.famille .cardf { box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.famille .cardf[class*="c-"] { box-shadow: 0 10px 30px -12px rgba(0,0,0,0.35); }

/* CTA Fonctionnalités : sujet à droite, texte à gauche */
.cta-finale.light.ccs2 img { object-position: 82% center; }
.cta-finale.light.ccs2 .cta-overlay {
  justify-content: flex-start; text-align: left;
  background: linear-gradient(90deg, rgba(245,245,247,0.96) 0%, rgba(245,245,247,0.78) 40%, rgba(245,245,247,0) 72%);
}
@media (max-width: 760px) {
  .cta-finale.light.ccs2 img { object-position: 72% center; }
  .cta-finale.light.ccs2 .cta-overlay { background: linear-gradient(180deg, rgba(245,245,247,0.35) 8%, rgba(245,245,247,0.75) 42%, rgba(245,245,247,0.96) 78%); align-items: flex-end; justify-content: center; text-align: center; }
}
