/* ===========================================================================
   Indepro - Section "La méthode" V2 (sticky scroll)
   Colonne gauche : 4 piliers qui défilent.
   Colonne droite : visuel sticky qui change selon le pilier actif.
   =========================================================================== */

.indepro-method2 {
    padding: clamp(80px, 10vw, 140px) 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(235, 187, 129, 0.06), transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(201, 154, 91, 0.04), transparent 60%),
        var(--bg);
    position: relative;
    overflow: clip; /* clip au lieu de hidden : ne casse pas position:sticky des enfants */
}

.indepro-method2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 187, 129, 0.3), transparent);
}

.indepro-method2__head {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 100px);
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}
.indepro-method2__head .indepro-tag {
    display: inline-block;
    margin-bottom: 20px;
}
.indepro-method2__head .indepro-h2 {
    margin-bottom: 20px;
}
.indepro-method2__head .indepro-lead {
    font-size: clamp(15px, 1.1vw, 17px);
    color: rgba(242, 241, 237, 0.65);
    line-height: 1.7;
}

.indepro-method2__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    /* align-items: stretch (par défaut grid) pour que la colonne droite
       fasse la même hauteur que la liste des piliers, permettant à la
       sticky de glisser correctement le long du scroll. */
}

@media (max-width: 900px) {
    .indepro-method2__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* === COLONNE GAUCHE : LISTE DES PILIERS === */
.indepro-method2__list {
    display: flex;
    flex-direction: column;
}

.indepro-pillar {
    padding: clamp(60px, 9vh, 110px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.35;
}
.indepro-pillar:first-child {
    border-top: 0;
    padding-top: 0;
}
.indepro-pillar:last-child {
    padding-bottom: 0;
}
.indepro-pillar.is-active {
    opacity: 1;
}

/* Ligne or à gauche qui apparaît sur le pilier actif */
.indepro-pillar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -32px;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: translateY(-50%);
    transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.indepro-pillar.is-active::before {
    width: 24px;
}

.indepro-pillar__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.indepro-pillar__num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 800;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -0.04em;
    -webkit-text-stroke: 1.5px rgba(235, 187, 129, 0.35);
    color: transparent;
    transition: -webkit-text-stroke-color 0.6s ease,
                color 0.6s ease,
                background 0.6s ease;
    margin-bottom: 8px;
}
.indepro-pillar.is-active .indepro-pillar__num {
    -webkit-text-stroke: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: indepro-pillar-shimmer 3s ease-in-out infinite;
}
@keyframes indepro-pillar-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.indepro-pillar__tag {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 5px 10px;
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 4px;
    background: rgba(235, 187, 129, 0.05);
}

.indepro-pillar__t {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}

.indepro-pillar__x {
    font-size: clamp(15px, 1.05vw, 16px);
    line-height: 1.65;
    color: rgba(242, 241, 237, 0.65);
    max-width: 480px;
    margin: 0;
}

.indepro-pillar__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}
.indepro-pillar__bullets li {
    font-size: 13px;
    font-weight: 500;
    color: rgba(242, 241, 237, 0.7);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}
.indepro-pillar.is-active .indepro-pillar__bullets li {
    border-color: rgba(235, 187, 129, 0.25);
    color: var(--text);
    background: rgba(235, 187, 129, 0.04);
}

/* === COLONNE DROITE : VISUELS STICKY === */
.indepro-method2__visual-wrap {
    position: relative;
    /* Pas de height: la colonne grid s'étire à la hauteur de la liste de piliers
       (align-items: stretch par défaut), ce qui donne au sticky enfant la zone
       de glissement nécessaire. */
}

@media (max-width: 900px) {
    .indepro-method2__visual-wrap {
        order: -1;
        height: 460px;
        margin-bottom: 16px;
    }
}

.indepro-method2__visual-sticky {
    position: sticky;
    top: 110px;
    height: clamp(440px, 64vh, 600px);
    border-radius: var(--r3);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Halo gold subtil derrière le mockup actif */
.indepro-method2__visual-sticky::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(235, 187, 129, 0.4), transparent 50%, rgba(235, 187, 129, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

/* Petite barre de progression à droite */
.indepro-method2__progress {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.indepro-method2__progress span {
    width: 3px;
    height: 18px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.indepro-method2__progress span.is-active {
    background: var(--gold);
    height: 28px;
    box-shadow: 0 0 10px rgba(235, 187, 129, 0.5);
}

/* Tous les mockups occupent toute la zone, on switche par opacity */
.indepro-mockup {
    position: absolute;
    inset: 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.indepro-mockup.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.indepro-mockup__frame {
    height: 100%;
    background: linear-gradient(180deg, #0e0e14, #08080c);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.indepro-mockup__frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}
.indepro-mockup__frame-bar > span:nth-child(-n+3) {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.indepro-mockup__frame-bar > span:nth-child(1) { background: rgba(255, 255, 255, 0.18); }
.indepro-mockup__frame-bar > span:nth-child(2) { background: rgba(255, 255, 255, 0.14); }
.indepro-mockup__frame-bar > span:nth-child(3) { background: rgba(255, 255, 255, 0.10); }
.indepro-mockup__frame-title {
    margin-left: 10px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(242, 241, 237, 0.55);
    letter-spacing: 0.01em;
}
.indepro-mockup__frame-rec {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(235, 187, 129, 0.95);
    letter-spacing: 0.05em;
}
.indepro-mockup__frame-rec i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ebbb81;
    box-shadow: 0 0 8px #ebbb81;
    animation: indepro-rec-pulse 1.4s ease-in-out infinite;
}
@keyframes indepro-rec-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* === MOCKUP 1 : CALL VIDEO 1:1 === */
.indepro-call {
    flex: 1;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}
.indepro-call__main {
    display: flex;
    flex-direction: column;
    background: #0e0e14;
    position: relative;
    padding: 16px;
    gap: 12px;
}
.indepro-call__big {
    flex: 1;
    background: linear-gradient(135deg, #1a1410, #0e0e14);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}
.indepro-call__big::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(235, 187, 129, 0.18), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.indepro-call__small {
    height: 88px;
    background: linear-gradient(135deg, #14101a, #0e0e14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

/* Grid d'avatars pour le live de groupe */
.indepro-call__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    height: 56px;
}
.indepro-call__tile {
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1410, #0e0e14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(242, 241, 237, 0.85);
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}
.indepro-call__tile span {
    background: linear-gradient(135deg, var(--gold3), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.indepro-call__tile--more {
    background: rgba(235, 187, 129, 0.08);
    color: var(--gold) !important;
    border-color: rgba(235, 187, 129, 0.25);
    font-size: 11px;
}
.indepro-call__tile--more::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(235, 187, 129, 0.12), transparent 70%);
    pointer-events: none;
}
.indepro-call__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    color: #07070b;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(235, 187, 129, 0.3);
}
.indepro-call__small .indepro-call__avatar {
    width: 38px;
    height: 38px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--gold2), var(--gold3));
    box-shadow: 0 4px 12px rgba(235, 187, 129, 0.25);
}
.indepro-call__avatar--mentor {
    /* Pulse ring indicating speaker */
    position: relative;
}
.indepro-call__avatar--mentor::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    animation: indepro-call-pulse 1.8s ease-out infinite;
    opacity: 0.6;
}
@keyframes indepro-call-pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}
.indepro-call__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.indepro-call__name em {
    font-style: italic;
    font-weight: 400;
    color: rgba(242, 241, 237, 0.5);
    margin-left: 4px;
}
.indepro-call__small .indepro-call__name {
    font-size: 11.5px;
    font-weight: 600;
}
.indepro-call__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ebbb81;
    padding: 4px 10px;
    background: rgba(235, 187, 129, 0.12);
    border-radius: 999px;
    position: absolute;
    top: 12px;
    left: 12px;
}
.indepro-call__live i {
    width: 6px;
    height: 6px;
    background: #ebbb81;
    border-radius: 50%;
    animation: indepro-rec-pulse 1.4s ease-in-out infinite;
}
.indepro-call__chat {
    display: flex;
    flex-direction: column;
    background: #08080c;
    padding: 16px;
    gap: 12px;
    overflow: hidden;
}
.indepro-call__chat-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border-top-left-radius: 4px;
}
.indepro-call__chat-row b {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
}
.indepro-call__chat-row span {
    font-size: 12px;
    color: rgba(242, 241, 237, 0.85);
    line-height: 1.45;
}
.indepro-call__chat-row--me {
    background: rgba(235, 187, 129, 0.06);
    border-color: rgba(235, 187, 129, 0.15);
    border-radius: 10px;
    border-top-right-radius: 4px;
    align-self: flex-end;
}
.indepro-call__chat-row--me b { color: var(--text); }

/* === MOCKUP 2 : DASHBOARD CLIENT === */
.indepro-dash {
    flex: 1;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
}
.indepro-dash__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.indepro-dash__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(242, 241, 237, 0.5);
    margin-bottom: 6px;
    font-weight: 600;
}
.indepro-dash__big {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1;
}
.indepro-dash__delta {
    margin-top: 6px;
    font-size: 12px;
    color: #ebbb81;
    font-weight: 600;
}
.indepro-dash__pill {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: rgba(242, 241, 237, 0.7);
    padding: 6px 10px;
    border: 1px solid rgba(235, 187, 129, 0.25);
    background: rgba(235, 187, 129, 0.06);
    border-radius: 4px;
}
.indepro-dash__chart {
    width: 100%;
    height: 90px;
    flex-shrink: 0;
}
.indepro-dash__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.indepro-dash__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 12.5px;
    color: rgba(242, 241, 237, 0.75);
}
.indepro-dash__row b {
    color: var(--gold);
    font-weight: 700;
    font-size: 12.5px;
}

/* === MOCKUP 3 : DISCORD VIVANT === */
.indepro-disco {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}
.indepro-disco__msg {
    display: flex;
    gap: 12px;
}
.indepro-disco__av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}
.indepro-disco__av--o { background: linear-gradient(135deg, #ebbb81, #c99a5b); color: #07070b; }
.indepro-disco__av--p { background: linear-gradient(135deg, #f2c088, #c99a5b); color: #07070b; }
.indepro-disco__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.indepro-disco__head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
}
.indepro-disco__head b {
    color: var(--text);
    font-weight: 600;
}
.indepro-disco__head i {
    font-style: normal;
    font-size: 10.5px;
    color: rgba(242, 241, 237, 0.4);
}
.indepro-disco__txt {
    font-size: 13px;
    color: rgba(242, 241, 237, 0.85);
    line-height: 1.5;
}
.indepro-disco__txt em {
    font-style: italic;
    font-weight: 700;
    color: var(--gold);
}
.indepro-disco__react {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}
.indepro-disco__react span {
    font-size: 11.5px;
    padding: 3px 9px;
    background: rgba(235, 187, 129, 0.07);
    border: 1px solid rgba(235, 187, 129, 0.2);
    border-radius: 999px;
    color: rgba(242, 241, 237, 0.85);
}
.indepro-disco__online {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: rgba(242, 241, 237, 0.5);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -16px;
    padding: 12px 16px;
}
.indepro-disco__online i {
    width: 7px;
    height: 7px;
    background: #ebbb81;
    border-radius: 50%;
    box-shadow: 0 0 8px #ebbb81;
}

/* === MOCKUP 4 : RESULTATS PROGRESSION === */
.indepro-results {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}
.indepro-results__step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: background 0.4s ease, border-color 0.4s ease;
}
.indepro-results__step--done {
    border-color: rgba(235, 187, 129, 0.18);
}
.indepro-results__step--current {
    background: rgba(235, 187, 129, 0.04);
    border-color: rgba(235, 187, 129, 0.3);
}
.indepro-results__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}
.indepro-results__step--done .indepro-results__icon {
    background: rgba(235, 187, 129, 0.12);
    color: #ebbb81;
    border: 1px solid rgba(235, 187, 129, 0.3);
}
.indepro-results__step--current .indepro-results__icon {
    background: rgba(235, 187, 129, 0.15);
    border: 1px solid rgba(235, 187, 129, 0.4);
    position: relative;
}
.indepro-results__step--current .indepro-results__icon i {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--gold);
    animation: indepro-pulse-dot 1.6s ease-in-out infinite;
}
@keyframes indepro-pulse-dot {
    0%, 100% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}
.indepro-results__step b {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 2px;
}
.indepro-results__step span {
    font-size: 12px;
    color: rgba(242, 241, 237, 0.5);
}
.indepro-results__amount {
    font-size: 14px;
    font-weight: 700;
    color: #ebbb81;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.indepro-results__amount--target {
    color: var(--gold);
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .indepro-pillar { opacity: 1 !important; }
    .indepro-mockup { opacity: 1 !important; transform: none !important; }
    .indepro-mockup ~ .indepro-mockup { display: none; }
    .indepro-call__avatar--mentor::before,
    .indepro-mockup__frame-rec i,
    .indepro-call__live i,
    .indepro-results__step--current .indepro-results__icon i {
        animation: none !important;
    }
}


/* ===========================================================================
   Mockups — responsive mobile (ajoute 2026-04-26).
   Sur mobile etroit, le split main+chat de .indepro-call rendait chaque colonne
   trop petite. Stack en colonne et compactage pour rester lisible a 360-393px.
   =========================================================================== */
@media (max-width: 768px) {
    /* Mockup 1 : LIVE call - stack main / chat verticalement */
    .indepro-call {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .indepro-call__main {
        padding: 14px;
        gap: 10px;
        min-height: 220px;
    }
    .indepro-call__big {
        padding: 16px 12px;
        min-height: 180px;
    }
    .indepro-call__avatar {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    .indepro-call__name { font-size: 12px; }
    .indepro-call__live {
        font-size: 9px;
        padding: 3px 8px;
        top: 10px;
        left: 10px;
    }
    .indepro-call__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
        height: 44px;
    }
    .indepro-call__tile { font-size: 11px; }
    .indepro-call__tile--more { font-size: 10px; }

    /* Chat passe sous le main, plus large = lisible */
    .indepro-call__chat {
        padding: 12px 14px;
        gap: 8px;
    }
    .indepro-call__chat-row {
        padding: 8px 11px;
    }
    .indepro-call__chat-row b { font-size: 10.5px; }
    .indepro-call__chat-row span { font-size: 12.5px; }

    /* Mockup 2 : DASHBOARD - reduit le head split + chart hauteur */
    .indepro-dash { padding: 16px; gap: 14px; }
    .indepro-dash__head { gap: 12px; }
    .indepro-dash__big { font-size: 26px; }
    .indepro-dash__pill { font-size: 9.5px; padding: 5px 8px; }
    .indepro-dash__chart { height: 70px; }
    .indepro-dash__row { padding: 8px 12px; font-size: 12px; }

    /* Mockup 3 : DISCORD chat - leger compactage */
    .indepro-disco { padding: 14px; gap: 12px; }
    .indepro-disco__av { width: 32px; height: 32px; font-size: 13px; }
    .indepro-disco__head { font-size: 12.5px; gap: 6px; }
    .indepro-disco__txt { font-size: 12.5px; }
    .indepro-disco__react { gap: 5px; }
    .indepro-disco__react span { font-size: 11px; padding: 2px 7px; }

    /* Mockup frame bar - titre plus petit pour eviter overflow */
    .indepro-mockup__frame-title { font-size: 10.5px; }
    .indepro-mockup__frame-rec { font-size: 10px; }
}
