/* ===========================================================================
   Indepro - Page Benjamin (refonte rich, cohérence DA home)
   =========================================================================== */

/* Override : on neutralise l'opacity:0 initial du reveal pour que tout soit visible
   immédiatement, même si l'IntersectionObserver rate. On laisse les transforms hover
   intacts sur les cards. */
.indepro-bzj-page [data-indepro-reveal] {
    opacity: 1 !important;
}

.indepro-bzj-page {
    background: var(--bg);
    color: var(--text);
}
.indepro-bzj-page section {
    position: relative;
    padding: clamp(64px, 9vw, 110px) 0;
}
/* Ligne fine #333 entre chaque section (sauf la première) */
.indepro-bzj-page section + section {
    border-top: 1px solid #333;
}



/* ============================================================
   18 ANS — Section enrichie (grid + beams + shadow framing)
   ============================================================ */
.indepro-bzj-tl-section {
    position: relative;
    overflow: clip;
    isolation: isolate;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(235, 187, 129, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(12, 10, 8, 0.4) 0%, rgba(15, 12, 9, 0.85) 50%, rgba(12, 10, 8, 0.4) 100%) !important;
    box-shadow:
        inset 0 32px 64px -32px rgba(235, 187, 129, 0.18),
        inset 0 -32px 64px -32px rgba(235, 187, 129, 0.12);
}
.indepro-bzj-tl-section__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(235, 187, 129, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 187, 129, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.indepro-bzj-tl-section__beam {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    z-index: -2;
    pointer-events: none;
}
.indepro-bzj-tl-section__beam--top {
    top: -250px;
    left: -150px;
    background: radial-gradient(circle, rgba(235, 187, 129, 0.42), transparent 60%);
    animation: indepro-bzj-beam 16s ease-in-out infinite;
}
.indepro-bzj-tl-section__beam--bot {
    bottom: -250px;
    right: -150px;
    background: radial-gradient(circle, rgba(201, 154, 91, 0.32), transparent 60%);
    animation: indepro-bzj-beam 16s ease-in-out -8s infinite;
}

/* ============================================================
   18 ANS — Timeline alternée premium (zigzag)
   ============================================================ */
.indepro-bzj-tl {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px 0;
    z-index: 1;
}
.indepro-bzj-tl__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}
.indepro-bzj-tl__rail-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(235, 187, 129, 0.12) 6%,
        rgba(235, 187, 129, 0.12) 94%,
        transparent 100%);
    border-radius: 2px;
}
.indepro-bzj-tl__rail-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom,
        rgba(235, 187, 129, 0) 0%,
        rgba(235, 187, 129, 0.85) 8%,
        rgba(235, 187, 129, 0.85) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(235, 187, 129, 0.4);
    transition: height 0.1s linear;
}

.indepro-bzj-tl__row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}
.indepro-bzj-tl__row:last-child { margin-bottom: 0; }

.indepro-bzj-tl__row--left .indepro-bzj-tl__card {
    grid-column: 1;
    justify-self: end;
    text-align: right;
    margin-right: 8px;
}
.indepro-bzj-tl__row--left .indepro-bzj-tl__node {
    grid-column: 2;
}
.indepro-bzj-tl__row--right .indepro-bzj-tl__node {
    grid-column: 2;
}
.indepro-bzj-tl__row--right .indepro-bzj-tl__card {
    grid-column: 3;
    justify-self: start;
    text-align: left;
    margin-left: 8px;
}

/* Connecteur horizontal entre node et card */
.indepro-bzj-tl__row--left .indepro-bzj-tl__card::after,
.indepro-bzj-tl__row--right .indepro-bzj-tl__card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(235, 187, 129, 0.5), transparent);
    transform: translateY(-50%);
    z-index: 0;
}
.indepro-bzj-tl__row--left .indepro-bzj-tl__card::after {
    right: -28px;
    background: linear-gradient(90deg, rgba(235, 187, 129, 0.5), transparent);
}
.indepro-bzj-tl__row--right .indepro-bzj-tl__card::after {
    left: -28px;
    background: linear-gradient(90deg, transparent, rgba(235, 187, 129, 0.5));
}

/* Card glassmorphism */
.indepro-bzj-tl__card {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 26px 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    z-index: 2;
}
.indepro-bzj-tl__row--left .indepro-bzj-tl__card { transform: translateX(-40px); }
.indepro-bzj-tl__row--right .indepro-bzj-tl__card { transform: translateX(40px); }

.indepro-bzj-tl__row.is-visible .indepro-bzj-tl__card {
    opacity: 1;
    transform: translateX(0);
}
.indepro-bzj-tl__card:hover {
    border-color: rgba(235, 187, 129, 0.32);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 60px -20px rgba(235, 187, 129, 0.4);
}

.indepro-bzj-tl__num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ebbb81;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}
.indepro-bzj-tl__t {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(18px, 1.9vw, 22px) !important;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #f2f1ed !important;
    margin: 0 0 10px !important;
}
.indepro-bzj-tl__x {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: rgba(242, 241, 237, 0.7) !important;
    margin: 0 !important;
}

/* Node central pulsant */
.indepro-bzj-tl__node {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    justify-self: center;
}
.indepro-bzj-tl__node-dot {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ebbb81, #c99a5b);
    box-shadow: 0 0 0 4px rgba(7, 7, 11, 1),
                0 0 0 5px rgba(235, 187, 129, 0.4),
                0 0 24px rgba(235, 187, 129, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.indepro-bzj-tl__node-pulse {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(235, 187, 129, 0.6);
    opacity: 0;
}
.indepro-bzj-tl__row.is-visible .indepro-bzj-tl__node-pulse {
    animation: indepro-bzj-tl-pulse 2.4s ease-out infinite;
}
@keyframes indepro-bzj-tl-pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(3.5); }
}
.indepro-bzj-tl__row.is-visible .indepro-bzj-tl__node-dot {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(7, 7, 11, 1),
                0 0 0 5px rgba(235, 187, 129, 0.55),
                0 0 32px rgba(235, 187, 129, 0.7);
}

/* Mobile : passe en colonne unique avec rail à gauche */
@media (max-width: 900px) {
    .indepro-bzj-tl__rail { left: 24px; transform: none; }
    .indepro-bzj-tl__row,
    .indepro-bzj-tl__row--left,
    .indepro-bzj-tl__row--right {
        grid-template-columns: 48px 1fr;
        margin-bottom: 24px;
    }
    .indepro-bzj-tl__row--left .indepro-bzj-tl__card,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__card {
        grid-column: 2;
        justify-self: stretch;
        text-align: left;
        margin: 0;
        max-width: 100%;
        transform: translateX(20px);
    }
    .indepro-bzj-tl__row.is-visible .indepro-bzj-tl__card { transform: translateX(0); }
    .indepro-bzj-tl__row--left .indepro-bzj-tl__node,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__node {
        grid-column: 1;
        width: 48px;
        height: 48px;
        justify-self: center;
    }
    .indepro-bzj-tl__row--left .indepro-bzj-tl__card::after,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__card::after {
        left: -16px;
        right: auto;
        width: 16px;
        background: linear-gradient(90deg, transparent, rgba(235, 187, 129, 0.5));
    }
}

/* ============================================================
   SECTIONS COMMUNES (titres centrés)
   ============================================================ */
.indepro-bzj-s--alt {
    background: linear-gradient(180deg, rgba(235, 187, 129, 0.025), transparent 70%);
}
.indepro-bzj-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}
.indepro-bzj-head .indepro-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.indepro-bzj-head .indepro-h2 {
    font-size: clamp(30px, 3.8vw, 48px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 16px !important;
    text-align: center !important;
    font-weight: 800 !important;
}
.indepro-bzj-head .indepro-h2 .indepro-gold {
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.indepro-bzj-head .indepro-lead {
    color: rgba(242, 241, 237, 0.72);
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
}

/* (Ancien grid 5 obstacles supprimé — remplacé par .indepro-bzj-obs-list au-dessus) */
.indepro-bzj-quote {
    margin: 48px auto 0 !important;
    padding: 22px 28px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    color: rgba(242, 241, 237, 0.72);
    border-left: 2px solid rgba(235, 187, 129, 0.4);
    background: rgba(235, 187, 129, 0.03);
    border-radius: 0 12px 12px 0;
    max-width: 768px !important;
}

/* ============================================================
   12 MOIS DE GALERE (zone sombre dramatique)
   ============================================================ */
.indepro-bzj-galere {
    padding: clamp(80px, 10vw, 130px) 0 !important;
    background: #050507;
    border-top: 1px solid rgba(235, 187, 129, 0.06);
    border-bottom: 1px solid rgba(235, 187, 129, 0.06);
    overflow: clip;
    isolation: isolate;
}
.indepro-bzj-galere__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(235, 187, 129, 0.05), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(235, 187, 129, 0.04), transparent 50%);
    z-index: -1;
}
.indepro-bzj-galere__inner { max-width: 768px; margin: 0 auto; }
.indepro-bzj-galere__indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(235, 187, 129, 0.08);
    border: 1px solid rgba(235, 187, 129, 0.28);
    border-radius: 999px;
    color: #ebbb81;
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.indepro-bzj-galere__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ebbb81;
    animation: indepro-bzj-pulse-gold 1.8s ease-out infinite;
}
@keyframes indepro-bzj-pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(235, 187, 129, 0.55); }
    50% { box-shadow: 0 0 0 8px rgba(235, 187, 129, 0); }
}
.indepro-bzj-galere__h2 {
    font-size: clamp(28px, 3.6vw, 44px) !important;
    line-height: 1.15 !important;
    margin: 0 0 32px !important;
    color: #f2f1ed !important;
    letter-spacing: -0.02em !important;
    font-weight: 800 !important;
}
.indepro-bzj-galere__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.indepro-bzj-galere__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
.indepro-bzj-galere__bullet {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(235, 187, 129, 0.6);
    margin-top: 7px;
}
.indepro-bzj-galere__item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(242, 241, 237, 0.78);
    margin: 0;
}
.indepro-bzj-galere__item strong { color: #f2f1ed; font-weight: 600; }

/* ============================================================
   LE DECLIC MENTOR (split-screen avant/après)
   ============================================================ */
.indepro-bzj-declic { padding: clamp(80px, 10vw, 130px) 0 !important; }
.indepro-bzj-declic__head { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.indepro-bzj-declic__head .indepro-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.indepro-bzj-declic__head .indepro-h2 {
    font-size: clamp(30px, 3.8vw, 48px) !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
}
.indepro-bzj-declic__head .indepro-h2 .indepro-gold {
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* PAIRS — table de transformations connectées avant → après */
.indepro-bzj-pairs {
    max-width: 1024px;
    margin: 0 auto;
    padding: 28px clamp(20px, 3vw, 40px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
    border: 1px solid rgba(235, 187, 129, 0.18);
    border-radius: 22px;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5),
                0 0 70px -20px rgba(235, 187, 129, 0.18);
}
.indepro-bzj-pairs__head {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    align-items: center;
    padding: 16px 20px 22px;
    border-bottom: 1px solid rgba(235, 187, 129, 0.15);
    margin-bottom: 14px;
}
.indepro-bzj-pairs__lbl {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    justify-self: start;
}
.indepro-bzj-pairs__lbl--before {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(242, 241, 237, 0.6);
}
.indepro-bzj-pairs__lbl--after {
    background: rgba(235, 187, 129, 0.12);
    border: 1px solid rgba(235, 187, 129, 0.35);
    color: #ebbb81;
}
.indepro-bzj-pairs__lbl-sep {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 187, 129, 0.35), transparent);
}

.indepro-bzj-pair {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.indepro-bzj-pair:first-of-type { border-top: 0; }

.indepro-bzj-pair__before,
.indepro-bzj-pair__after {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.indepro-bzj-pair__before {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(242, 241, 237, 0.55);
    filter: saturate(0.5);
}
.indepro-bzj-pair__before strong { color: rgba(242, 241, 237, 0.75); font-weight: 600; }
.indepro-bzj-pair__after {
    background: linear-gradient(135deg, rgba(235, 187, 129, 0.06), rgba(235, 187, 129, 0.015));
    border: 1px solid rgba(235, 187, 129, 0.25);
    color: rgba(242, 241, 237, 0.92);
    box-shadow: 0 12px 30px -15px rgba(235, 187, 129, 0.35);
}
.indepro-bzj-pair__after strong { color: #ebbb81; font-weight: 700; }
.indepro-bzj-pair__after:hover {
    transform: translateY(-2px);
    border-color: rgba(235, 187, 129, 0.45);
}
.indepro-bzj-pair__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.indepro-bzj-pair__icon--before {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(242, 241, 237, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.indepro-bzj-pair__icon--after {
    background: linear-gradient(135deg, rgba(235, 187, 129, 0.25), rgba(235, 187, 129, 0.08));
    color: #ebbb81;
    border: 1px solid rgba(235, 187, 129, 0.4);
}
.indepro-bzj-pair__arrow {
    align-self: center;
    justify-self: center;
    color: rgba(235, 187, 129, 0.55);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(7, 7, 11, 0.85);
    border: 1px solid rgba(235, 187, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(235, 187, 129, 0.18);
}

@media (max-width: 900px) {
    .indepro-bzj-pairs__head { grid-template-columns: 1fr; gap: 8px; padding-bottom: 18px; }
    .indepro-bzj-pairs__lbl-sep { display: none; }
    .indepro-bzj-pair { grid-template-columns: 1fr; gap: 8px; padding: 14px 0; }
    .indepro-bzj-pair__arrow { transform: rotate(90deg); }
}

/* PULL-QUOTE — version sobre, full Poppins (DA respectée) */
.indepro-bzj-pull-quote {
    position: relative;
    max-width: 768px;
    margin: 48px auto 0;
    padding: 32px 36px;
    text-align: center;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
    border: 1px solid rgba(235, 187, 129, 0.2);
    border-radius: 16px;
}
.indepro-bzj-pull-quote::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ebbb81, transparent);
}
.indepro-bzj-pull-quote__mark { display: none; }
.indepro-bzj-pull-quote p {
    font-family: 'Poppins', sans-serif !important;
    font-style: normal;
    font-size: clamp(17px, 1.9vw, 21px) !important;
    line-height: 1.55 !important;
    font-weight: 500;
    color: rgba(242, 241, 237, 0.85) !important;
    margin: 0 0 18px !important;
    letter-spacing: -0.005em;
}
.indepro-bzj-pull-quote footer {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(242, 241, 237, 0.65);
    margin: 0;
}
.indepro-bzj-pull-quote footer strong {
    color: #ebbb81;
    font-weight: 700;
}

/* ============================================================
   TRAJECTOIRE CHIFFRÉE (avec courbe SVG ascendante)
   ============================================================ */
.indepro-bzj-traj-section {
    padding: clamp(80px, 10vw, 130px) 0 !important;
    background: linear-gradient(180deg, rgba(235, 187, 129, 0.02), transparent 80%);
}
/* Trajectoire — 3 cards alignées sur la même ligne avec flèches gold */
.indepro-bzj-traj-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
    max-width: 1024px;
    margin: 0 auto;
}
.indepro-bzj-traj-step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 28px 32px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    text-align: center;
    overflow: hidden;
    min-height: 260px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}
/* Cards toutes alignées sur la même ligne */

.indepro-bzj-traj-step::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(235, 187, 129, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 187, 129, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at top, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, #000, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}
.indepro-bzj-traj-step > * { position: relative; z-index: 1; }
.indepro-bzj-traj-step:hover {
    border-color: rgba(235, 187, 129, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 60px -20px rgba(235, 187, 129, 0.3);
}
.indepro-bzj-traj-step--peak {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(235, 187, 129, 0.18), transparent 70%),
        linear-gradient(160deg, rgba(235, 187, 129, 0.1), rgba(235, 187, 129, 0.02));
    border-color: rgba(235, 187, 129, 0.4);
    box-shadow:
        0 40px 80px -20px rgba(235, 187, 129, 0.45),
        0 0 60px -10px rgba(235, 187, 129, 0.3);
}
.indepro-bzj-traj-step--peak:hover {
    transform: translateY(-4px);
}
.indepro-bzj-traj-step__pill {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(242, 241, 237, 0.7);
    margin: 0 auto 22px !important;
    align-self: center;
    white-space: nowrap;
}
.indepro-bzj-traj-step__pill--gold {
    background: rgba(235, 187, 129, 0.12);
    border-color: rgba(235, 187, 129, 0.4);
    color: #ebbb81;
}
.indepro-bzj-traj-step__amount {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(36px, 4.8vw, 56px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: #f2f1ed !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.03em !important;
    font-variant-numeric: tabular-nums;
}
.indepro-bzj-traj-step__amount--gold {
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}
.indepro-bzj-traj-step__x {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(242, 241, 237, 0.7) !important;
    margin: 0 !important;
    margin-top: auto !important;
}
.indepro-bzj-traj-arrow {
    align-self: center;
    justify-self: center;
    color: rgba(235, 187, 129, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(7, 7, 11, 0.85);
    border: 1px solid rgba(235, 187, 129, 0.28);
    box-shadow: 0 0 20px rgba(235, 187, 129, 0.2);
}

.indepro-bzj-traj-foot {
    display: block;
    text-align: center !important;
    margin: 96px auto 0 !important;
    max-width: 768px;
    font-size: 16px !important;
    color: rgba(242, 241, 237, 0.7) !important;
    line-height: 1.6 !important;
    font-style: italic;
    padding: 0 24px;
}
@media (max-width: 900px) {
    .indepro-bzj-traj-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 0;
    }
    .indepro-bzj-traj-step,
    .indepro-bzj-traj-step--mid,
    .indepro-bzj-traj-step--peak { transform: none !important; min-height: auto; }
    .indepro-bzj-traj-arrow,
    .indepro-bzj-traj-grid > .indepro-bzj-traj-arrow:nth-of-type(2) {
        transform: rotate(90deg) !important;
        margin: 0 auto;
    }
}

/* ============================================================
   VIDEO PRESENTATION FRAMÉE
   ============================================================ */
.indepro-bzj-video-section { padding: clamp(64px, 9vw, 110px) 0 !important; }
.indepro-bzj-video-frame {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 14px;
    background: linear-gradient(160deg, rgba(235, 187, 129, 0.12), rgba(235, 187, 129, 0.02));
    border: 1px solid rgba(235, 187, 129, 0.28);
    border-radius: 22px;
    box-shadow: 0 40px 80px -30px rgba(235, 187, 129, 0.35);
}
.indepro-bzj-video-frame::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, rgba(235, 187, 129, 0.4), transparent 30%, transparent 70%, rgba(235, 187, 129, 0.4));
    border-radius: 24px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
}
.indepro-bzj-video-frame .indepro-vfacade {
    border-radius: 14px;
    aspect-ratio: 16 / 9;
}

/* ============================================================
   DEUX ENTREPRISES
   ============================================================ */
.indepro-bzj-orgs-section { padding: clamp(80px, 10vw, 130px) 0 !important; }
.indepro-bzj-orgs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto;
}
@media (max-width: 900px) { .indepro-bzj-orgs-grid { grid-template-columns: 1fr; } }
.indepro-bzj-org {
    position: relative;
    padding: 36px 32px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.indepro-bzj-org::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(235, 187, 129, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 187, 129, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at top right, #000, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, #000, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}
.indepro-bzj-org > * { position: relative; z-index: 1; }
.indepro-bzj-org:hover {
    transform: translateY(-5px);
    border-color: rgba(235, 187, 129, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 60px -20px rgba(235, 187, 129, 0.3);
}
.indepro-bzj-org__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}
.indepro-bzj-org__pill {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(235, 187, 129, 0.1);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    align-self: flex-start;
}
.indepro-root .indepro-bzj-org__name {
    font-family: 'Poppins', sans-serif;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #f2f1ed !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    line-height: 1.1 !important;
}
.indepro-root .indepro-bzj-org__x {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
    color: rgba(242, 241, 237, 0.75) !important;
    margin: 0 0 24px !important;
}
.indepro-bzj-org__chips {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.indepro-bzj-org__chips li {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 12.5px;
    color: rgba(242, 241, 237, 0.8);
}
.indepro-bzj-org__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ebbb81;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s;
}
.indepro-bzj-org__link:hover { gap: 12px; }
.indepro-bzj-org__link--mute { color: rgba(242, 241, 237, 0.5); font-weight: 500; cursor: default; }

/* ============================================================
   POSTS LINKEDIN — mockups réseau social
   ============================================================ */
.indepro-bzj-punch { padding: clamp(80px, 10vw, 130px) 0 !important; }
.indepro-bzj-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 1024px) { .indepro-bzj-posts { grid-template-columns: 1fr; max-width: 480px; } }
.indepro-bzj-post {
    position: relative;
    padding: 22px 22px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.indepro-bzj-post:hover {
    transform: translateY(-4px);
    border-color: rgba(235, 187, 129, 0.32);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px -20px rgba(235, 187, 129, 0.25);
}
.indepro-bzj-post__head {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.indepro-bzj-post__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(235, 187, 129, 0.3);
}
.indepro-bzj-post__meta { min-width: 0; }
.indepro-bzj-post__name {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 700;
    color: #f2f1ed !important;
    margin: 0 0 1px !important;
    letter-spacing: -0.01em;
}
.indepro-bzj-post__verified {
    flex-shrink: 0;
    margin-bottom: -1px;
}
.indepro-bzj-post__role {
    font-size: 12px !important;
    color: rgba(242, 241, 237, 0.6) !important;
    margin: 0 0 1px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.indepro-bzj-post__date {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: 11.5px !important;
    color: rgba(242, 241, 237, 0.45) !important;
    margin: 0 !important;
}
.indepro-bzj-post__date-globe {
    display: inline-flex;
    align-items: center;
    color: rgba(242, 241, 237, 0.4);
}
.indepro-bzj-post__logo {
    align-self: flex-start;
    opacity: 0.85;
}
.indepro-bzj-post__text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(242, 241, 237, 0.88) !important;
    margin: 0 0 16px !important;
    flex: 1;
}
.indepro-bzj-post__text strong { color: #f2f1ed; font-weight: 700; }
.indepro-bzj-post__foot {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: rgba(242, 241, 237, 0.6);
}
.indepro-bzj-post__sep { color: rgba(255, 255, 255, 0.15); }
.indepro-bzj-post__reactions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ebbb81;
    font-weight: 600;
}
.indepro-bzj-post__react-icons {
    display: inline-flex;
    align-items: center;
}
.indepro-bzj-post__react-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #07070b;
    color: #07070b;
}
.indepro-bzj-post__react-icon--like {
    background: linear-gradient(135deg, #ebbb81, #c99a5b);
    box-shadow: 0 4px 10px rgba(235, 187, 129, 0.35);
}

/* SOCIALS ROW (sous les posts LinkedIn) */
.indepro-bzj-socials {
    margin-top: 56px;
    text-align: center;
}
.indepro-bzj-socials__lead {
    font-size: 14px !important;
    color: rgba(242, 241, 237, 0.6) !important;
    margin: 0 0 18px !important;
    letter-spacing: 0.01em;
}
.indepro-bzj-socials__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.indepro-bzj-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(235, 187, 129, 0.22);
    border-radius: 999px;
    color: rgba(242, 241, 237, 0.85) !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.indepro-bzj-social svg { color: #ebbb81; transition: transform 0.3s ease; }
.indepro-bzj-social:hover {
    transform: translateY(-2px);
    border-color: rgba(235, 187, 129, 0.5);
    background: rgba(235, 187, 129, 0.08);
    color: #ebbb81 !important;
}
.indepro-bzj-social:hover svg { transform: scale(1.1); }

/* ============================================================
   MANIFESTO — Liste numérotée verticale (valeurs)
   ============================================================ */
.indepro-bzj-values-section {
    padding: clamp(80px, 10vw, 130px) 0 !important;
    background: linear-gradient(180deg, rgba(235, 187, 129, 0.02), transparent 80%);
}
/* CREED — split sticky asymétrique (titre fixé à gauche, valeurs scrollables à droite) */
.indepro-bzj-creed {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 96px);
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}
.indepro-bzj-creed__side {
    position: sticky;
    top: 100px;
    align-self: start;
}
.indepro-bzj-creed__side .indepro-tag {
    display: inline-block;
    margin-bottom: 22px;
    padding: 6px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.indepro-bzj-creed__h2 {
    font-size: clamp(32px, 4vw, 52px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em !important;
    font-weight: 800 !important;
    margin: 0 0 22px !important;
    text-align: left !important;
}
.indepro-bzj-creed__h2 .indepro-gold {
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.indepro-bzj-creed__lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: rgba(242, 241, 237, 0.65) !important;
    margin: 0 !important;
    max-width: 480px;
}

.indepro-bzj-creed__list {
    display: flex;
    flex-direction: column;
}
.indepro-bzj-creed__item {
    padding: 32px 0;
    border-top: 1px solid #333;
    position: relative;
    transition: padding-left 0.3s ease;
}
.indepro-bzj-creed__item:first-child { border-top: 0; padding-top: 8px; }
.indepro-bzj-creed__item:last-child { padding-bottom: 8px; }
.indepro-bzj-creed__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 38px;
    bottom: 38px;
    width: 2px;
    background: linear-gradient(to bottom, #ebbb81, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.indepro-bzj-creed__item:first-child::before { top: 14px; }
.indepro-bzj-creed__item:hover {
    padding-left: 22px;
}
.indepro-bzj-creed__item:hover::before {
    opacity: 1;
}
.indepro-bzj-creed__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(235, 187, 129, 0.08);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    color: #ebbb81;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.indepro-bzj-creed__pill svg {
    color: #ebbb81;
    flex-shrink: 0;
}
.indepro-bzj-creed__item:hover .indepro-bzj-creed__pill {
    background: rgba(235, 187, 129, 0.14);
    border-color: rgba(235, 187, 129, 0.5);
    transform: translateY(-1px);
}
.indepro-bzj-creed__t {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(22px, 2.4vw, 30px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    color: #f2f1ed !important;
    margin: 0 0 14px !important;
}
.indepro-bzj-creed__t .indepro-gold {
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.indepro-bzj-creed__x {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
    color: rgba(242, 241, 237, 0.7) !important;
    margin: 0 !important;
    max-width: 768px;
}
@media (max-width: 1024px) {
    .indepro-bzj-creed { grid-template-columns: 1fr; gap: 48px; }
    .indepro-bzj-creed__side { position: static; }
    .indepro-bzj-creed__lead { max-width: none; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.indepro-bzj-cta {
    padding: clamp(80px, 10vw, 130px) 0 !important;
    overflow: clip;
    isolation: isolate;
}
.indepro-bzj-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 187, 129, 0.18), transparent 50%);
    filter: blur(80px);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}
.indepro-bzj-cta__card {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(235, 187, 129, 0.25);
    border-radius: 26px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.indepro-bzj-cta__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(235, 187, 129, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 187, 129, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.indepro-bzj-cta__card::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ebbb81, transparent);
}
.indepro-bzj-cta__card > * { position: relative; z-index: 1; }
.indepro-bzj-cta__card .indepro-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.indepro-bzj-cta__card .indepro-h2 {
    font-size: clamp(28px, 3.6vw, 44px) !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em !important;
}
.indepro-bzj-cta__card .indepro-h2 .indepro-gold {
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.indepro-bzj-cta__card .indepro-lead { color: rgba(242, 241, 237, 0.78); margin-bottom: 32px; }
.indepro-bzj-cta__card .indepro-ctas { justify-content: center; }


/* ===========================================================================
   Timeline "A 18 ans" mobile fix (2026-04-26).
   translateX initial des cards causait un flash + overflow latent pendant
   les 3s du fallback IntersectionObserver. On force etat final immediat.
   =========================================================================== */
@media (max-width: 900px) {
    .indepro-bzj-tl__row .indepro-bzj-tl__card,
    .indepro-bzj-tl__row--left .indepro-bzj-tl__card,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__card {
        transform: none !important;
        opacity: 1 !important;
        transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
    }
    .indepro-bzj-tl__row--left .indepro-bzj-tl__card::after,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__card::after {
        display: none;
    }
    .indepro-bzj-tl__node-pulse {
        animation: none !important;
    }
}


/* ===========================================================================
   Timeline mobile (2026-04-26 v2) — fix dots pas centres sur les cards left.
   Cause : DOM order pour --left est "card -> node", l'auto-placement grid
   collait le node en row 2 implicite (sous la card). Force grid-row: 1.
   =========================================================================== */
@media (max-width: 900px) {
    .indepro-bzj-tl__row--left .indepro-bzj-tl__card,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__card,
    .indepro-bzj-tl__row--left .indepro-bzj-tl__node,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__node {
        grid-row: 1 !important;
    }
    /* Tous les nodes : alignes verticalement au centre de la card */
    .indepro-bzj-tl__row--left .indepro-bzj-tl__node,
    .indepro-bzj-tl__row--right .indepro-bzj-tl__node {
        align-self: center !important;
    }
}
