/* ═══════════════════ Spécifique page creation-holding ═══════════════════ */

    /* Accent émeraude (var --c-holding) sur les eyebrows partagés */
    body.holding-page .section-eyebrow { color: var(--c-holding); }
    body.holding-page .section-eyebrow::before {
      background: linear-gradient(90deg, var(--c-holding), transparent);
    }
    body.holding-page .nav-link.active { color: #fff; }
    body.holding-page .nav-link.active::after {
      background: var(--c-holding);
      box-shadow: 0 0 8px var(--c-holding-soft);
    }

    /* Lueur curseur teintée émeraude (mêmes paramètres que global.css, seule la couleur change) */
    body.holding-page #cursor-glow {
      background: radial-gradient(circle at center,
        rgba(16, 185, 129, 0.18) 0%,
        rgba(16, 185, 129, 0.07) 35%,
        transparent 65%);
    }

    /* Sections alternées */
    .sec-dark   { background: var(--navy-deep); }
    .sec-soft   { background: linear-gradient(180deg, var(--navy-deep), #08162d 50%, var(--navy-deep)); }
    .sec-raised { background: radial-gradient(800px 500px at 50% 0%, rgba(16, 185, 129, 0.04), transparent 65%), var(--navy-deep); }

    /* ═══════════════════ HERO ═══════════════════ */
    #hero-holding {
      padding: 138px 0 4.5rem;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--navy-deep);
    }
    #hero-holding::before {
      content: '';
      position: absolute; inset: 0; z-index: -1;
      background:
        radial-gradient(900px 600px at 15% 20%, rgba(16, 185, 129, 0.10), transparent 60%),
        radial-gradient(700px 500px at 85% 80%, rgba(0, 184, 255, 0.04), transparent 65%);
    }
    #hero-holding::after {
      content: '';
      position: absolute; inset: 0; z-index: -1;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 10%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 10%, transparent 75%);
      opacity: 0.6;
      pointer-events: none;
    }
    .hero-s-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 3rem 2rem 1rem;
      position: relative;
    }
    .hero-s-breadcrumb {
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.04em;
      margin-bottom: 1.4rem;
    }
    .hero-s-breadcrumb a { color: var(--ink-dim); text-decoration: none; transition: color 0.2s; }
    .hero-s-breadcrumb a:hover { color: var(--c-holding); }
    .hero-s-breadcrumb .sep { margin: 0 0.5rem; color: var(--border-strong); }
    .hero-s-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--c-holding);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .hero-s-eyebrow::before {
      content: '';
      width: 32px; height: 2px;
      background: linear-gradient(90deg, var(--c-holding), transparent);
      display: inline-block;
    }
    .hero-s-h1 {
      font-size: clamp(2rem, 4.6vw, 3.4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.028em;
      color: #fff;
      max-width: 960px;
      margin-top: 1.1rem;
    }
    .hero-s-h1 .accent {
      color: var(--c-holding);
      position: relative;
    }
    .hero-s-h1 .accent::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 0.08em;
      height: 0.32em;
      background: rgba(16, 185, 129, 0.18);
      z-index: -1;
      border-radius: 2px;
    }
    .hero-s-sub {
      font-size: 1.08rem;
      color: var(--ink-dim);
      line-height: 1.7;
      max-width: 760px;
      margin-top: 1.35rem;
    }
    .hero-s-ctas {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    .hero-s-reassure {
      margin-top: 1.4rem;
      font-size: 0.82rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .hero-s-reassure svg { stroke: var(--c-holding); flex-shrink: 0; }

    /* ═══════════════════ VOTRE SITUATION — 3 tuiles ═══════════════════ */
    .situation-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2.75rem;
    }
    @media (max-width: 900px) { .situation-grid { grid-template-columns: 1fr; gap: 1rem; } }
    .situation-card {
      padding: 2rem 1.75rem;
      background: linear-gradient(160deg, rgba(26,48,85,0.48), rgba(10,31,61,0.35));
      border: 1px solid var(--border);
      border-left: 3px solid var(--c-holding);
      border-radius: 14px;
    }
    .situation-title {
      font-size: 1.02rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      margin-bottom: 0.7rem;
    }
    .situation-body {
      font-size: 0.93rem;
      color: var(--ink-dim);
      line-height: 1.7;
    }
    .situation-body a {
      color: var(--c-holding);
      text-decoration: none;
      border-bottom: 1px dotted var(--c-holding-soft);
    }
    .situation-body a:hover { border-bottom-color: var(--c-holding); }

    /* ═══════════════════ APPORTS — 3 piliers numérotés ═══════════════════ */
    .diff-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2.75rem;
    }
    @media (max-width: 900px) { .diff-pillars { grid-template-columns: 1fr; } }
    .diff-pillar {
      padding: 1.85rem;
      background: rgba(10, 31, 61, 0.38);
      border: 1px solid var(--border);
      border-radius: 14px;
      position: relative;
    }
    .diff-num {
      display: inline-flex;
      width: 38px; height: 38px;
      background: var(--c-holding);
      color: var(--navy-deep);
      font-weight: 800;
      font-size: 0.9rem;
      align-items: center; justify-content: center;
      border-radius: 10px;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }
    .diff-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.55rem;
      letter-spacing: -0.01em;
    }
    .diff-body {
      font-size: 0.93rem;
      color: var(--ink-dim);
      line-height: 1.7;
    }

    /* ═══════════════════ LIVRABLE — 4 cartes 2x2 ═══════════════════ */
    .apports-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-top: 2.75rem;
    }
    @media (max-width: 820px) { .apports-grid { grid-template-columns: 1fr; } }
    .apport-card {
      padding: 2rem;
      background: linear-gradient(135deg, rgba(26,48,85,0.5), rgba(5,13,29,0.55));
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .apport-card:hover {
      transform: translateY(-3px);
      border-color: rgba(16, 185, 129, 0.32);
      box-shadow: 0 18px 40px -18px rgba(16, 185, 129, 0.25);
    }
    .apport-icon {
      width: 48px; height: 48px;
      display: inline-flex;
      align-items: center; justify-content: center;
      border-radius: 12px;
      background: var(--c-holding-soft);
      color: var(--c-holding);
      margin-bottom: 1.1rem;
    }
    .apport-title {
      font-size: 1.08rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.55rem;
      letter-spacing: -0.01em;
    }
    .apport-body {
      font-size: 0.94rem;
      color: var(--ink-dim);
      line-height: 1.7;
    }
    .livrable-foot-link {
      margin-top: 1.75rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      color: var(--c-holding);
      text-decoration: none;
      border-bottom: 1px dotted var(--c-holding-soft);
      padding-bottom: 1px;
      transition: border-color 0.2s;
    }
    .livrable-foot-link:hover { border-bottom-color: var(--c-holding); }

    /* ═══════════════════ PROCESS — timeline 5 étapes ═══════════════════ */
    .process-timeline {
      margin-top: 3rem;
      position: relative;
      max-width: 820px;
      margin-left: auto; margin-right: auto;
    }
    .process-step {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 1.5rem;
      padding: 1rem 0 1.5rem;
      position: relative;
    }
    .process-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 35px; top: 76px; bottom: -6px;
      width: 2px;
      background: linear-gradient(180deg, rgba(16, 185, 129, 0.45), rgba(16, 185, 129, 0.12));
      z-index: 0;
    }
    .process-num {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(16, 185, 129, 0.08);
      border: 2px solid var(--c-holding);
      color: var(--c-holding);
      font-size: 1.4rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center; justify-content: center;
      position: relative; z-index: 2;
      letter-spacing: 0;
    }
    .process-content { padding-top: 14px; }
    .process-title {
      font-size: 1.08rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.4rem;
      letter-spacing: -0.01em;
    }
    .process-body {
      font-size: 0.95rem;
      color: var(--ink-dim);
      line-height: 1.7;
    }
    .process-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 0.7rem;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.12);
      color: var(--c-holding);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid rgba(16, 185, 129, 0.2);
    }
    .process-badge svg { stroke: var(--c-holding); }

    /* ═══════════════════ CAS D'ÉCOLE — narratif long ═══════════════════ */
    .case-narrative {
      max-width: 860px;
      margin: 2.75rem auto 0;
      padding: 2.75rem 2.5rem;
      border: 1px solid var(--border-strong);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(26,48,85,0.55), rgba(10,31,61,0.4));
      position: relative;
    }
    @media (max-width: 760px) { .case-narrative { padding: 2rem 1.5rem; } }
    .case-anon-badge {
      position: absolute;
      top: 20px; right: 20px;
      padding: 5px 11px;
      border-radius: 999px;
      background: rgba(0,0,0,0.45);
      color: var(--ink-dim);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      z-index: 3;
      backdrop-filter: blur(8px);
    }
    .case-heading {
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.015em;
      margin-bottom: 1.75rem;
      line-height: 1.3;
    }
    .case-section-label {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--c-holding);
      font-style: italic;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }
    .case-section-label:first-of-type { margin-top: 0; }
    .case-section-body {
      font-size: 0.95rem;
      color: var(--ink-dim);
      line-height: 1.75;
    }
    .case-section-body + .case-section-body { margin-top: 0.5rem; }
    .case-internal-note {
      max-width: 860px;
      margin: 0.9rem auto 0;
      font-size: 0.75rem;
      color: var(--muted);
      font-style: italic;
      text-align: center;
      letter-spacing: 0.02em;
    }

    /* ═══════════════════ TÉMOIGNAGES ═══════════════════ */
    .testi-partner-wrap {
      max-width: 720px;
      margin: 2.75rem auto 0;
    }
    .testi-card {
      background: linear-gradient(140deg, rgba(26, 48, 85, 0.4) 0%, rgba(10, 31, 61, 0.3) 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem 1.5rem;
      display: flex; flex-direction: column;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: border-color 0.3s, transform 0.3s;
    }
    .testi-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
    .testi-card--partner {
      border-left: 3px solid var(--c-holding);
      padding: 2rem 2rem;
    }
    .testi-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; color: #fff; font-size: 0.85rem;
      flex-shrink: 0;
      box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
    }
    .testi-name { font-weight: 600; font-size: 0.95rem; color: #fff; }
    .testi-role { font-size: 0.76rem; color: var(--ink-dim); margin-top: 1px; }
    .testi-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
    .testi-stars svg { width: 14px; height: 14px; }
    .testi-quote {
      font-size: 0.92rem; color: var(--ink-dim); line-height: 1.65; flex-grow: 1;
      font-style: italic;
    }
    .testi-source {
      margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
      font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 6px;
    }
    .testi-source--partner {
      color: var(--c-holding);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .testi-source--partner svg { stroke: var(--c-holding); }

    .testi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      max-width: 1180px;
      margin: 1.5rem auto 0;
    }
    @media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════ PARTENAIRES (teaser simplifié) ═══════════════════ */
    .partners-teaser-inner {
      max-width: 980px; margin: 2.75rem auto 0;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(0, 184, 255, 0.05) 100%);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2.75rem 3rem;
      display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
      box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    @media (max-width: 800px) { .partners-teaser-inner { grid-template-columns: 1fr; padding: 2rem 1.75rem; } }
    .partners-teaser-inner h3 {
      font-size: clamp(1.2rem, 2vw, 1.55rem);
      font-weight: 700; color: #fff; letter-spacing: -0.02em;
      margin-bottom: 0.875rem;
    }
    .partners-teaser-inner p { font-size: 0.95rem; color: var(--ink-dim); line-height: 1.7; }

    /* ═══════════════════ FAQ ═══════════════════ */
    .faq-list {
      max-width: 820px;
      margin: 2.75rem auto 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .faq-item {
      background: rgba(10, 31, 61, 0.45);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s, background 0.2s;
    }
    .faq-item[open] {
      border-color: rgba(16, 185, 129, 0.3);
      background: rgba(10, 31, 61, 0.6);
    }
    .faq-item summary {
      cursor: pointer;
      padding: 1.15rem 3rem 1.15rem 1.35rem;
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      list-style: none;
      position: relative;
      transition: color 0.2s;
      line-height: 1.4;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '';
      position: absolute;
      right: 1.3rem;
      top: 50%;
      width: 14px; height: 14px;
      transform: translateY(-50%);
      background-image:
        linear-gradient(var(--c-holding), var(--c-holding)),
        linear-gradient(var(--c-holding), var(--c-holding));
      background-size: 14px 2px, 2px 14px;
      background-position: center, center;
      background-repeat: no-repeat;
      transition: transform 0.3s ease;
    }
    .faq-item[open] summary::after {
      background-size: 14px 2px, 0 0;
      transform: translateY(-50%) rotate(90deg);
    }
    .faq-item summary:hover { color: var(--c-holding); }
    .faq-body {
      padding: 0 1.35rem 1.3rem;
      font-size: 0.94rem;
      color: var(--ink-dim);
      line-height: 1.75;
    }
    .faq-body p + p { margin-top: 0.8rem; }

    /* ═══════════════════ CTA FINAL ═══════════════════ */
    .cta-final {
      background:
        radial-gradient(800px 500px at 30% 50%, rgba(16, 185, 129, 0.14), transparent 60%),
        radial-gradient(600px 400px at 80% 40%, rgba(0,184,255,0.06), transparent 65%),
        linear-gradient(135deg, var(--navy), var(--navy-deep));
      border-top: 1px solid rgba(16, 185, 129, 0.2);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 80%);
      opacity: 0.5;
      pointer-events: none;
    }
    .cta-inner {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 2rem;
      text-align: center;
      position: relative;
    }
    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--c-holding);
      margin-bottom: 1rem;
    }
    .cta-eyebrow::before {
      content: ''; width: 24px; height: 2px;
      background: linear-gradient(90deg, var(--c-holding), transparent);
    }
    .cta-title {
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.025em;
      line-height: 1.15;
    }
    .cta-title .accent { color: var(--c-holding); }
    .cta-sub {
      font-size: 1.02rem;
      color: var(--ink-dim);
      margin-top: 1.15rem;
      line-height: 1.65;
      max-width: 620px;
      margin-left: auto; margin-right: auto;
    }
    .cta-btn-wrap {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-engagement {
      margin-top: 1.25rem;
      font-size: 0.84rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .cta-engagement svg { stroke: var(--c-holding); flex-shrink: 0; }

    /* ═══════════════════ RESPONSIVE FINETUNING ═══════════════════ */
    @media (max-width: 760px) {
      #hero-holding { padding: 128px 0 3rem; }
      .hero-s-inner { padding: 2rem 1.25rem 0.5rem; }
      .hero-s-ctas .btn-primary,
      .hero-s-ctas .btn-outline { width: 100%; justify-content: center; }
      .process-step { grid-template-columns: 56px 1fr; gap: 1rem; }
      .process-num { width: 56px; height: 56px; font-size: 1.1rem; }
      .process-step:not(:last-child)::after { left: 27px; top: 60px; }
      .apport-card, .diff-pillar, .situation-card, .testi-card { padding: 1.5rem; }
      .cta-btn-wrap .btn-primary, .cta-btn-wrap .btn-outline { width: 100%; justify-content: center; }
    }


