/* ===========================================================================
   Indepro - Blog (listing + single article) : refonte cohérence DA home
   =========================================================================== */

.indepro-blog-page,
.indepro-single-page {
    background: var(--bg);
    color: var(--text);
}


/* === LISTING GRID === */
.indepro-blog-grid-section {
    padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 100px);
    position: relative;
}
.indepro-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 1024px) {
    .indepro-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .indepro-blog-grid { grid-template-columns: 1fr; gap: 20px; }
}
.indepro-blog-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s ease,
                box-shadow 0.5s ease;
}
.indepro-blog-card: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-blog-card__link {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
}
.indepro-blog-card__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
}
.indepro-blog-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 7, 11, 0.5));
    pointer-events: none;
}
.indepro-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.indepro-blog-card:hover .indepro-blog-card__thumb img { transform: scale(1.05); }
.indepro-blog-card__thumb--ph {
    background:
        radial-gradient(circle at 30% 30%, rgba(235, 187, 129, 0.22), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(235, 187, 129, 0.1), transparent 60%),
        linear-gradient(135deg, #1a1410, #0a0807);
}
.indepro-blog-card__body {
    padding: 26px 26px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.indepro-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(242, 241, 237, 0.55);
    margin-bottom: 14px;
    font-weight: 500;
}
.indepro-blog-card__sep { color: rgba(235, 187, 129, 0.5); }
.indepro-blog-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 19.5px;
    font-weight: 700;
    line-height: 1.32;
    color: #f2f1ed;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}
.indepro-blog-card:hover .indepro-blog-card__title { color: #ebbb81; }
.indepro-blog-card__excerpt {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(242, 241, 237, 0.7);
    margin: 0 0 20px;
    flex: 1;
}
.indepro-blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ebbb81;
    font-weight: 600;
    font-size: 13px;
    transition: gap 0.3s ease;
    margin-top: auto;
}
.indepro-blog-card:hover .indepro-blog-card__more { gap: 14px; }

.indepro-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 64px;
}
.indepro-blog-pagination a,
.indepro-blog-pagination span {
    min-width: 44px;
    padding: 11px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(242, 241, 237, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}
.indepro-blog-pagination a:hover {
    background: rgba(235, 187, 129, 0.1);
    color: #ebbb81;
    border-color: rgba(235, 187, 129, 0.3);
}
.indepro-blog-pagination .current {
    background: linear-gradient(135deg, #ebbb81, #c99a5b);
    color: #07070b;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(235, 187, 129, 0.3);
}

.indepro-blog-empty {
    text-align: center;
    padding: 80px 24px;
    color: rgba(242, 241, 237, 0.6);
    font-size: 17px;
}

/* === BLOG/SINGLE CTA SECTION (cohérent avec CTA finale home) === */
.indepro-blog-cta,
.indepro-single-cta {
    padding: clamp(64px, 8vw, 110px) 0;
    position: relative;
    overflow: clip;
    isolation: isolate;
}
.indepro-blog-cta::before,
.indepro-single-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    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-blog-cta__card,
.indepro-single-cta__card {
    position: relative;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 72px) clamp(28px, 5vw, 56px);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(235, 187, 129, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.indepro-blog-cta__card::before,
.indepro-single-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-blog-cta__card::after,
.indepro-single-cta__card::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ebbb81, transparent);
}
.indepro-blog-cta__card > *,
.indepro-single-cta__card > * {
    position: relative;
    z-index: 1;
}
.indepro-blog-cta__card .indepro-tag,
.indepro-single-cta__card .indepro-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: #ebbb81;
    padding: 6px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.3);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.indepro-blog-cta__card .indepro-h2,
.indepro-single-cta__card .indepro-h2 {
    font-size: clamp(28px, 3.6vw, 44px) !important;
    line-height: 1.15 !important;
    margin-bottom: 14px;
    text-align: center !important;
}
.indepro-blog-cta__card .indepro-lead,
.indepro-single-cta__card .indepro-lead {
    color: rgba(242, 241, 237, 0.78);
    margin-bottom: 32px;
    text-align: center;
}
.indepro-blog-cta__card .indepro-ctas,
.indepro-single-cta__card .indepro-ctas {
    justify-content: center;
    margin-bottom: 0 !important;
}

/* === SINGLE ARTICLE === */
.indepro-single-hero {
    position: relative;
    padding: clamp(140px, 16vw, 200px) 0 clamp(56px, 7vw, 90px);
    background-color: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: clip;
    isolation: isolate;
}
.indepro-single-hero::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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    z-index: 0;
    pointer-events: none;
}
.indepro-single-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.indepro-single-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(242, 241, 237, 0.7) !important;
    text-decoration: none !important;
    font-size: 13px;
    margin-bottom: 28px;
    padding: 7px 16px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    transition: all 0.3s ease;
}
.indepro-single-back:hover {
    background: rgba(235, 187, 129, 0.1);
    color: #ebbb81 !important;
    border-color: rgba(235, 187, 129, 0.3);
}
.indepro-single-hero__h1 {
    font-size: clamp(32px, 4.8vw, 60px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    font-weight: 800 !important;
    max-width: 900px;
    margin: 0 auto 24px !important;
    color: #f2f1ed !important;
    text-align: center !important;
}
.indepro-single-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(242, 241, 237, 0.65);
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.indepro-single-meta__sep { color: rgba(235, 187, 129, 0.5); }

.indepro-single-body {
    max-width: 768px !important;
    padding: 56px 24px 80px;
}
.indepro-single-content {
    font-size: 17px;
    line-height: 1.78;
    color: rgba(242, 241, 237, 0.86);
}
.indepro-single-content > * { margin: 0 0 1.4em; }
.indepro-single-content p { margin: 0 0 1.4em; }
.indepro-single-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 32px) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    color: #f2f1ed !important;
    margin: 2em 0 0.7em !important;
    letter-spacing: -0.015em !important;
}
.indepro-single-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 2.4vw, 24px) !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #f2f1ed !important;
    margin: 1.6em 0 0.5em !important;
}
.indepro-single-content h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #f2f1ed !important;
    margin: 1.4em 0 0.5em !important;
}
.indepro-single-content a {
    color: #ebbb81 !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(235, 187, 129, 0.4) !important;
    text-underline-offset: 4px;
    transition: text-decoration-color 0.3s;
}
.indepro-single-content a:hover { text-decoration-color: #ebbb81 !important; }
.indepro-single-content strong { color: #f2f1ed; font-weight: 600; }
.indepro-single-content em { font-style: italic; }
.indepro-single-content blockquote {
    margin: 2em 0 !important;
    padding: 24px 28px;
    border-left: 3px solid #ebbb81;
    background: rgba(235, 187, 129, 0.04);
    border-radius: 0 12px 12px 0;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    color: rgba(242, 241, 237, 0.85);
}
.indepro-single-content ul,
.indepro-single-content ol {
    padding-left: 24px !important;
    margin: 0 0 1.4em !important;
}
.indepro-single-content ul,
.indepro-single-content ul li { list-style: disc !important; list-style-type: disc !important; }
.indepro-single-content ol,
.indepro-single-content ol li { list-style: decimal !important; list-style-type: decimal !important; }
.indepro-single-content ul ul,
.indepro-single-content ul ul li { list-style-type: circle !important; }
.indepro-single-content ul ul ul,
.indepro-single-content ul ul ul li { list-style-type: square !important; }
.indepro-single-content ul li,
.indepro-single-content ol li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.indepro-single-content ul li::marker { color: #ebbb81; }
.indepro-single-content ol li::marker { color: #ebbb81; font-weight: 700; }
.indepro-single-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.8em 0;
    display: block;
}
.indepro-single-content code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.92em;
    color: #ebbb81;
}
.indepro-single-content pre {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.8em 0;
}
.indepro-single-content pre code { background: transparent; padding: 0; }
.indepro-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8em 0;
    font-size: 15px;
}
.indepro-single-content th,
.indepro-single-content td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}
.indepro-single-content th {
    background: rgba(235, 187, 129, 0.06);
    color: #f2f1ed;
    font-weight: 600;
}

/* === LEGAL PAGES (CGV, Mentions, Confidentialité) === */
.indepro-legal-page {
    background: var(--bg);
    color: var(--text);
}
.indepro-legal-hero {
    position: relative;
    padding: clamp(140px, 16vw, 180px) 0 clamp(48px, 6vw, 70px);
    text-align: center;
    overflow: clip;
    background: linear-gradient(180deg, var(--bg) 0%, #0c0a08 100%);
}
.indepro-legal-hero::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: 60px 60px;
    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;
}
.indepro-legal-hero__inner {
    position: relative;
    z-index: 1;
}
.indepro-legal-hero .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-legal-hero h1 {
    font-size: clamp(32px, 4.4vw, 56px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    font-weight: 800 !important;
    max-width: 900px;
    margin: 0 auto !important;
    text-align: center !important;
}
.indepro-legal-body {
    max-width: 900px !important;
    padding: 40px 24px 80px;
}
.indepro-legal-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 700;
    color: #ebbb81;
    margin: 2em 0 0.7em;
    letter-spacing: -0.015em;
}
.indepro-legal-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #f2f1ed;
    margin: 1.6em 0 0.5em;
}
.indepro-legal-body p,
.indepro-legal-body li {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(242, 241, 237, 0.82);
}
.indepro-legal-body ul,
.indepro-legal-body ol { padding-left: 24px; margin: 0 0 1.4em; }
.indepro-legal-body li { margin-bottom: 0.5em; }
.indepro-legal-body li::marker { color: #ebbb81; }
.indepro-legal-body strong { color: #f2f1ed; }
.indepro-legal-body a {
    color: #ebbb81;
    text-decoration: underline;
    text-decoration-color: rgba(235, 187, 129, 0.4);
    text-underline-offset: 4px;
}


/* ===========================================================================
   Single article hero stacked (2026-04-26).
   Layout : pill cat + H1 + meta sur fond sombre + grid pattern + halo gold.
   Cover image : grand visuel sous le hero, pas de superposition (evite le
   doublon avec les textes deja sur l'image).
   =========================================================================== */
.indepro-single-hero--stacked {
    position: relative;
    padding: clamp(110px, 14vw, 170px) 0 clamp(36px, 4vw, 56px);
    background: none;
    background-image: none !important;
    text-align: left;
    overflow: clip;
    isolation: isolate;
}
.indepro-single-hero--stacked::after { display: none; }
.indepro-single-hero--stacked .indepro-single-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 20%, rgba(235, 187, 129, 0.18) 0%, transparent 65%),
        linear-gradient(180deg, #0a0a0e 0%, #07070b 100%);
    pointer-events: none;
}
.indepro-single-hero--stacked .indepro-single-hero__bg::before {
    content: '';
    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: 50px 50px;
    mask-image: radial-gradient(ellipse 100% 80% at center, #000 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at center, #000 30%, transparent 90%);
    pointer-events: none;
}

.indepro-single-hero--stacked > .indepro-c {
    position: relative;
    z-index: 1;
    max-width: 880px;
    text-align: left;
}
.indepro-single-hero--stacked .indepro-single-back {
    margin-bottom: 22px;
}
.indepro-single-cat {
    display: inline-block;
    margin-bottom: 18px;
    padding: 5px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.32);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.indepro-single-hero--stacked .indepro-single-hero__h1 {
    font-size: clamp(32px, 4.8vw, 60px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
    font-weight: 800 !important;
    margin: 0 0 22px !important;
    text-align: left !important;
    color: #f2f1ed !important;
}
.indepro-single-hero--stacked .indepro-single-meta {
    justify-content: flex-start;
    color: rgba(242, 241, 237, 0.7);
}

/* Cover image grand format sous le hero */
.indepro-single-cover {
    margin: 0 auto clamp(40px, 5vw, 64px);
    max-width: 1080px;
    padding: 0 24px;
}
.indepro-single-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    border: 1px solid rgba(235, 187, 129, 0.22);
    box-shadow:
        0 36px 80px rgba(0, 0, 0, 0.55),
        0 0 80px -20px rgba(235, 187, 129, 0.25);
}

@media (max-width: 768px) {
    .indepro-single-hero--stacked {
        padding-top: clamp(96px, 18vw, 130px);
        padding-bottom: 28px;
    }
    .indepro-single-hero--stacked .indepro-single-hero__h1 {
        font-size: clamp(26px, 7vw, 38px) !important;
    }
    .indepro-single-cover {
        padding: 0 18px;
        margin-bottom: 32px;
    }
    .indepro-single-cover img {
        border-radius: 14px;
    }
}


/* ===========================================================================
   Single article : layout 2 colonnes (article gauche + sidebar droite).
   Article dans une card glassmorphism qui ressort de la page.
   Sidebar sticky avec partage, CTA prospect, reseaux sociaux.
   =========================================================================== */
.indepro-single-body {
    max-width: 1200px !important;
    padding: clamp(40px, 5vw, 64px) 24px clamp(48px, 6vw, 80px);
}
.indepro-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(32px, 3.5vw, 48px);
    align-items: start;
}

/* Article : card glassmorphism qui ressort de la page (sans bordure visible
   trop encadree, juste une elevation et un fond subtil) */
.indepro-single-content-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: clamp(32px, 4vw, 56px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(235, 187, 129, 0.04) inset;
    position: relative;
    overflow: hidden;
}
/* Halo decoratif subtle au top-left de la card pour la faire ressortir */
.indepro-single-content-card::before {
    content: '';
    position: absolute;
    top: -160px;
    left: -160px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(235, 187, 129, 0.18), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.indepro-single-content-card > .indepro-single-content {
    position: relative;
    z-index: 1;
}

/* Sidebar sticky desktop */
.indepro-single-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: start;
}

/* Card sidebar de base */
.indepro-single-aside {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 22px 22px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.indepro-single-aside__t {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ebbb81;
    margin: 0 0 14px;
}

/* Card share : boutons compacts */
.indepro-single-aside__share {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.indepro-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(7, 7, 11, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: rgba(242, 241, 237, 0.85) !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.indepro-share-btn:hover {
    background: rgba(235, 187, 129, 0.08);
    border-color: rgba(235, 187, 129, 0.32);
    color: #ebbb81 !important;
    transform: translateX(2px);
}
.indepro-share-btn svg { flex-shrink: 0; }
.indepro-share-btn--copied {
    background: rgba(235, 187, 129, 0.15) !important;
    border-color: rgba(235, 187, 129, 0.5) !important;
    color: #ebbb81 !important;
}

/* Card CTA prospect : accent gold */
.indepro-single-aside--cta {
    background: linear-gradient(160deg, rgba(235, 187, 129, 0.08), rgba(235, 187, 129, 0.018));
    border-color: rgba(235, 187, 129, 0.28);
    box-shadow: 0 14px 38px -8px rgba(235, 187, 129, 0.15);
}
.indepro-single-aside--cta .indepro-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 11px;
    background: rgba(7, 7, 11, 0.55);
    border: 1px solid rgba(235, 187, 129, 0.32);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
}
.indepro-single-aside--cta .indepro-single-aside__t {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #f2f1ed;
    text-transform: none;
    line-height: 1.25;
    margin-bottom: 12px;
}
.indepro-single-aside--cta .indepro-single-aside__t em {
    font-style: italic;
    color: #ebbb81;
}
.indepro-single-aside__lead {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(242, 241, 237, 0.72);
    margin: 0 0 18px;
}
.indepro-single-aside__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    margin-bottom: 14px;
}
.indepro-single-aside__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(242, 241, 237, 0.7);
    font-size: 12.5px;
}
.indepro-single-aside__bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.indepro-single-aside__bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ebbb81;
    flex-shrink: 0;
}

/* Card socials : grid 2x2 */
.indepro-single-aside__socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.indepro-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(7, 7, 11, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: rgba(242, 241, 237, 0.85) !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.indepro-social-link:hover {
    background: rgba(235, 187, 129, 0.1);
    border-color: rgba(235, 187, 129, 0.4);
    color: #ebbb81 !important;
    transform: translateY(-1px);
}
.indepro-social-link svg { flex-shrink: 0; }

/* Mobile : layout 1 colonne, sidebar sous l'article */
@media (max-width: 900px) {
    .indepro-single-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .indepro-single-sidebar {
        position: static;
        top: auto;
    }
    .indepro-single-content-card {
        border-radius: 18px;
        padding: 28px 22px;
    }
    .indepro-single-content-card::before {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }
}

/* ===========================================================================
   Cover image integree en haut de la card article (au lieu d'un grand visuel
   pleine largeur separe). Elle prend toute la largeur de la card, bord a bord,
   conserve le border-radius haut, et a une marge basse pour respirer.
   =========================================================================== */
.indepro-single-content-cover {
    margin: calc(clamp(32px, 4vw, 56px) * -1) calc(clamp(32px, 4vw, 56px) * -1) clamp(28px, 3.5vw, 40px);
    padding: 0;
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.indepro-single-content-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border: 0;
}

/* Mobile : adapter aux paddings reduits */
@media (max-width: 900px) {
    .indepro-single-content-cover {
        margin-left: -22px;
        margin-right: -22px;
        margin-top: -28px;
        margin-bottom: 24px;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }
}

/* Cache l'ancienne cover separee (au cas ou elle reste dans des templates copies) */
.indepro-single-cover { display: none !important; }

/* Ajuste l'espace titre "Suivre Benjamin" -> grille boutons */
.indepro-single-aside--socials .indepro-single-aside__t {
    margin-bottom: 16px;
}

/* Plus d'air entre le lead et le bouton "Prendre rendez-vous" */
.indepro-single-aside--cta .indepro-single-aside__lead {
    margin-bottom: 26px;
}


/* ===========================================================================
   Blog UX : breadcrumb + ToC + related + prev/next (2026-04-26).
   =========================================================================== */

/* === Breadcrumb (Home > Blog > Article) === */
.indepro-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    color: rgba(242, 241, 237, 0.55);
}
.indepro-breadcrumb a {
    color: rgba(242, 241, 237, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.indepro-breadcrumb a:hover {
    color: #ebbb81 !important;
}
.indepro-breadcrumb__sep {
    color: rgba(235, 187, 129, 0.45);
    font-size: 14px;
}
.indepro-breadcrumb__current {
    color: rgba(242, 241, 237, 0.85);
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* === Table des matieres (sidebar) === */
.indepro-single-aside--toc { padding: 18px 22px; }
.indepro-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: toc-counter;
    max-height: 50vh;
    overflow-y: auto;
}
.indepro-toc__item {
    margin: 0;
    padding: 0;
    list-style: none;
}
.indepro-toc__item--h3 {
    padding-left: 14px;
}
.indepro-toc__link {
    display: block;
    padding: 7px 10px;
    color: rgba(242, 241, 237, 0.7) !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    border-left: 2px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    border-radius: 0 6px 6px 0;
}
.indepro-toc__link:hover {
    color: #ebbb81 !important;
    border-left-color: rgba(235, 187, 129, 0.4);
    background: rgba(235, 187, 129, 0.04);
}
.indepro-toc__link.is-active {
    color: #ebbb81 !important;
    border-left-color: #ebbb81;
    background: rgba(235, 187, 129, 0.08);
    font-weight: 600;
}

/* === Articles connexes === */
.indepro-related {
    margin: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
}
.indepro-related__head {
    text-align: center;
    margin-bottom: clamp(28px, 3vw, 40px);
}
.indepro-related__head .indepro-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 14px;
    background: rgba(7, 7, 11, 0.6);
    border: 1px solid rgba(235, 187, 129, 0.32);
    border-radius: 999px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.indepro-related__h2 {
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: #f2f1ed !important;
}
.indepro-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.indepro-related__card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.indepro-related__card:hover {
    transform: translateY(-3px);
    border-color: rgba(235, 187, 129, 0.32);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 60px -20px rgba(235, 187, 129, 0.25);
}
.indepro-related__link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}
/* Vignette ratio 16:9 (cohérent YouTube thumb) */
.indepro-related__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(7, 7, 11, 0.6);
}
.indepro-related__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.indepro-related__card:hover .indepro-related__thumb img {
    transform: scale(1.05);
}
.indepro-related__thumb--ph {
    background:
        radial-gradient(circle at center, rgba(235,187,129,.14), transparent 60%),
        linear-gradient(160deg, #14101a, #07070b);
}
.indepro-related__body {
    padding: 18px 20px 22px;
}
.indepro-related__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(242, 241, 237, 0.55);
    font-size: 12px;
    margin-bottom: 10px;
}
.indepro-related__sep {
    color: rgba(235, 187, 129, 0.4);
}
.indepro-related__title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #f2f1ed;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.indepro-related__excerpt {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(242, 241, 237, 0.7);
    margin: 0 0 14px;
}
.indepro-related__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ebbb81;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s ease;
}
.indepro-related__card:hover .indepro-related__more {
    gap: 10px;
}

@media (max-width: 1024px) {
    .indepro-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .indepro-related__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* === Prev / Next === */
.indepro-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: clamp(28px, 3.5vw, 48px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: clamp(24px, 3vw, 36px);
}
.indepro-prev-next__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.indepro-prev-next__item:hover {
    background: rgba(235, 187, 129, 0.06);
    border-color: rgba(235, 187, 129, 0.3);
    transform: translateY(-2px);
}
.indepro-prev-next__item--placeholder {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}
.indepro-prev-next__item--next {
    text-align: right;
    align-items: flex-end;
}
.indepro-prev-next__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ebbb81;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.indepro-prev-next__title {
    color: rgba(242, 241, 237, 0.85);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 600px) {
    .indepro-prev-next {
        grid-template-columns: 1fr;
    }
    .indepro-prev-next__item--next {
        text-align: left;
        align-items: flex-start;
    }
}

/* ===========================================================================
   ToC collapsible (2026-04-26).
   Utilise <details>/<summary> natif (a11y propre, zero JS pour toggle).
   Fermee par defaut. Click summary -> ouvre/ferme.
   =========================================================================== */
.indepro-single-aside--toc {
    padding: 0;
}
.indepro-toc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.indepro-toc__summary::-webkit-details-marker { display: none; }
.indepro-toc__summary::marker { display: none; }
.indepro-toc__summary:hover {
    background: rgba(235, 187, 129, 0.04);
}
.indepro-toc__summary:focus-visible {
    outline: 2px solid rgba(235, 187, 129, 0.5);
    outline-offset: -2px;
    border-radius: 16px;
}
.indepro-toc__title {
    margin: 0;
    flex: 1;
}
.indepro-toc__chevron {
    color: #ebbb81;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.indepro-single-aside--toc[open] .indepro-toc__chevron {
    transform: rotate(180deg);
}
.indepro-single-aside--toc .indepro-toc__list {
    padding: 4px 18px 18px;
    margin: 0;
    max-height: 50vh;
    overflow-y: auto;
}
/* Animation douce a l'ouverture */
.indepro-single-aside--toc[open] .indepro-toc__list {
    animation: indepro-toc-slide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes indepro-toc-slide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================================================
   ToC repositionnee via grid-template-areas (2026-04-26).
   Desktop : ToC en haut de la colonne sidebar, sidebar (CTA+socials) sticky en dessous.
   Mobile : ToC AVANT l'article (avant le content-card), CTA+socials apres.
   =========================================================================== */
.indepro-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-areas:
        "content toc"
        "content side";
    column-gap: clamp(32px, 3.5vw, 48px);
    row-gap: 16px;
    align-items: start;
}
.indepro-toc-block { grid-area: toc; }
.indepro-single-content-card { grid-area: content; }
.indepro-single-sidebar { grid-area: side; }

/* Mobile : ToC en premier, puis article, puis CTA+socials */
@media (max-width: 900px) {
    .indepro-single-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "toc"
            "content"
            "side";
        gap: 20px;
    }
    .indepro-single-sidebar {
        position: static;
    }
}

/* ===========================================================================
   ToC mobile-first (2026-04-26 v2).
   Desktop : layout 2 cols, .indepro-single-right = flex column sticky avec ToC + sidebar.
   Mobile : display:contents sur .indepro-single-right pour reordonner via order.
   Ordre mobile : ToC (1) -> content-card (2) -> sidebar CTA+socials (3).
   =========================================================================== */
.indepro-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(32px, 3.5vw, 48px);
    align-items: start;
    /* Reset des grid-template-areas qui etaient en place v1 */
    grid-template-areas: none !important;
}
.indepro-single-content-card { grid-area: auto !important; }
.indepro-toc-block { grid-area: auto !important; }
.indepro-single-sidebar { grid-area: auto !important; }

/* Desktop : right wrapper sticky avec toc en haut + sidebar dessous */
.indepro-single-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
    align-self: start;
}
.indepro-single-right .indepro-single-sidebar {
    position: static;
    top: auto;
}

/* Mobile : right transparent (display:contents), enfants directs du grid avec order */
@media (max-width: 900px) {
    .indepro-single-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .indepro-single-right {
        display: contents;
    }
    .indepro-toc-block { order: 1; }
    .indepro-single-content-card { order: 2; }
    .indepro-single-sidebar { order: 3; }
}

/* ===========================================================================
   Lien auteur (single article meta) : redirige vers la page Benjamin
   =========================================================================== */
.indepro-single-meta__author {
    color: rgba(242, 241, 237, 0.85) !important;
    text-decoration: none !important;
    border-bottom: 1px dashed rgba(235, 187, 129, 0.4);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.indepro-single-meta__author:hover {
    color: #ebbb81 !important;
    border-bottom-color: #ebbb81;
}

/* =============================================================
   Blocs custom dans le content : notes (cards) + accordions <details>
   Utilises sur l'article themify-ultra-theme-wordpress-avis-et-guide
   et potentiellement d'autres articles avec des notations.
   ============================================================= */

.indepro-notes-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 32px 0;
}
.indepro-note-card {
    background: #0e0e0e;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
}
.indepro-note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(235, 187, 129, 0.12);
    border-radius: 50%;
    color: #ebbb81;
    margin-bottom: 12px;
}
.indepro-note-icon svg { width: 22px; height: 22px; }
.indepro-note-pct {
    font-size: 32px;
    font-weight: 700;
    color: #ebbb81;
    line-height: 1;
    margin-bottom: 6px;
}
.indepro-note-text {
    color: #f2f1ed;
    font-size: 14px;
    line-height: 1.4;
}

.indepro-accordion {
    margin: 24px 0;
}
.indepro-accordion details {
    background: #0e0e0e;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    margin-bottom: 8px;
    padding: 14px 18px;
    transition: border-color 0.2s ease;
}
.indepro-accordion details[open] {
    border-color: rgba(235, 187, 129, 0.4);
}
.indepro-accordion summary {
    cursor: pointer;
    font-weight: 600;
    color: #ebbb81;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.indepro-accordion summary::-webkit-details-marker { display: none; }
.indepro-accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #ebbb81;
    transition: transform 0.2s ease;
}
.indepro-accordion details[open] summary::after {
    content: '−';
}
.indepro-accordion-body {
    margin-top: 12px;
    color: #f2f1ed;
    font-size: 14px;
    line-height: 1.7;
}
.indepro-accordion-body p {
    margin: 0 0 12px;
}
.indepro-accordion-body p:last-child {
    margin-bottom: 0;
}
.indepro-accordion-body ul {
    margin: 0 0 12px 20px;
    padding: 0;
}
.indepro-accordion-body li {
    margin-bottom: 6px;
}

/* === Notes : cercles SVG de progression (style score visuel) === */
.indepro-note-ring {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 14px;
}
.indepro-note-ring svg {
    width: 100%;
    height: 100%;
    display: block;
}
.indepro-note-ring-bg {
    fill: none;
    stroke: rgba(235, 187, 129, 0.15);
    stroke-width: 8;
}
.indepro-note-ring-fg {
    fill: none;
    stroke: #ebbb81;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.indepro-note-ring-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.indepro-note-ring-icon {
    color: #ebbb81;
    opacity: 0.8;
    line-height: 0;
}
.indepro-note-ring-pct {
    font-size: 26px;
    font-weight: 700;
    color: #ebbb81;
    line-height: 1;
}

/* Override : on retire l'icone separee + le pct en bas (deplaces dans le ring) */
.indepro-note-card .indepro-note-icon { display: none; }
.indepro-note-card > .indepro-note-pct { display: none; }
.indepro-note-text {
    color: #f2f1ed;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

/* Liens dans accordions (gold) */
.indepro-accordion-body a {
    color: #ebbb81;
    text-decoration: underline;
    text-decoration-color: rgba(235, 187, 129, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}
.indepro-accordion-body a:hover {
    text-decoration-color: #ebbb81;
}

/* Strong dans accordions plus visible */
.indepro-accordion-body strong {
    color: #ebbb81;
}

/* === Promo / CTA card (DA-compliant, reutilisable via shortcode [indepro_cta_card]) === */
.indepro-promo-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(235, 187, 129, 0.22);
    border-radius: 22px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.indepro-promo-card::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235, 187, 129, 0.18), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}
.indepro-promo-card > * { position: relative; }
.indepro-promo-card__badge {
    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 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.indepro-promo-card .indepro-promo-card__title,
.indepro-single-content .indepro-promo-card .indepro-promo-card__title {
    font-size: clamp(22px, 2.4vw, 28px) !important;
    margin: 0 0 14px !important;
    font-weight: 700;
    line-height: 1.25 !important;
    background: linear-gradient(120deg, #ebbb81 30%, #f2c088 50%, #c99a5b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}
.indepro-promo-card__desc {
    color: rgba(242, 241, 237, 0.7) !important;
    margin: 0 auto 24px !important;
    max-width: 540px;
    line-height: 1.6;
    font-size: 15px;
}
.indepro-promo-card__code {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(7, 7, 11, 0.45);
    border: 1px dashed rgba(235, 187, 129, 0.4);
    padding: 12px 22px;
    border-radius: 10px;
    margin-bottom: 22px;
}
.indepro-promo-card__code-label {
    font-size: 10px;
    color: rgba(242, 241, 237, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.indepro-promo-card__code-value {
    font-size: 18px;
    font-weight: 700;
    color: #ebbb81;
    letter-spacing: 0.08em;
}
.indepro-root .indepro-promo-card__cta,
.indepro-promo-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ebbb81 !important;
    color: #07070b !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 10px;
    border: 1.5px solid #ebbb81;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.indepro-promo-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(235, 187, 129, 0.35);
    background: #f2c088 !important;
    border-color: #f2c088;
}
@media (max-width: 600px) {
    .indepro-promo-card { padding: 28px 22px; }
    .indepro-promo-card__code { flex-direction: column; gap: 6px; padding: 14px 20px; }
}

/* === Features grid (add-ons Themify) === */
.indepro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 16px 0 4px;
}
.indepro-root .indepro-features-card,
.indepro-features-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.indepro-features-card:hover {
    border-color: rgba(235, 187, 129, 0.4);
    background: rgba(235, 187, 129, 0.04);
    transform: translateY(-2px);
}
.indepro-features-card__name {
    display: block;
    font-weight: 700;
    color: #ebbb81 !important;
    font-size: 15px;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.indepro-features-card__desc {
    display: block;
    font-size: 13.5px;
    color: #bdbdbd;
    line-height: 1.55;
}

/* === Pros/Cons grid (Points Forts / Points Faibles) === */
.indepro-prosncons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin: 16px 0 24px;
}
.indepro-prosncons-card {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    align-items: flex-start;
}
.indepro-prosncons-card.is-pro {
    border-left: 3px solid #ebbb81;
}
.indepro-prosncons-card.is-con {
    border-left: 3px solid rgba(255, 255, 255, 0.18);
}
.indepro-prosncons-card__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
}
.indepro-prosncons-card.is-pro .indepro-prosncons-card__icon {
    background: rgba(235, 187, 129, 0.12);
    color: #ebbb81;
}
.indepro-prosncons-card.is-con .indepro-prosncons-card__icon {
    background: rgba(255, 255, 255, 0.06);
    color: #888;
}
.indepro-prosncons-card__content {
    flex: 1;
    line-height: 1.55;
    font-size: 14px;
    color: #d4d4d4;
}
.indepro-prosncons-card__title {
    display: block;
    font-weight: 700;
    color: #ebbb81;
    font-size: 15px;
    margin-bottom: 4px;
}

/* === VS Table (comparatif, DA-compliant) === */
.indepro-vs-table-wrap,
.indepro-single-content .indepro-vs-table-wrap {
    margin: 28px 0 !important;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(235, 187, 129, 0.22);
    background: #0a0a0a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.indepro-vs-table,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table {
    width: 100% !important;
    border-collapse: collapse !important;
    background: transparent !important;
    color: rgba(242, 241, 237, 0.85);
    font-size: 14.5px;
    margin: 0 !important;
}
.indepro-vs-table thead th,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table thead th {
    background: rgba(255, 255, 255, 0.025) !important;
    color: rgba(242, 241, 237, 0.95) !important;
    font-weight: 700 !important;
    text-align: left !important;
    padding: 16px 20px !important;
    border: none !important;
    border-bottom: 1px solid rgba(235, 187, 129, 0.25) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.indepro-vs-table thead th.indepro-vs-table__hl,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table thead th.indepro-vs-table__hl {
    background: linear-gradient(180deg, rgba(235, 187, 129, 0.18), rgba(235, 187, 129, 0.05)) !important;
    color: #ebbb81 !important;
    border-bottom-color: #ebbb81 !important;
}
.indepro-vs-table tbody td,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table tbody td {
    padding: 14px 20px !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: left !important;
    background: transparent;
}
.indepro-vs-table tbody tr:last-child td,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table tbody tr:last-child td {
    border-bottom: none !important;
}
.indepro-vs-table tbody td:first-child,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table tbody td:first-child {
    color: rgba(242, 241, 237, 0.7) !important;
    font-weight: 600;
}
.indepro-vs-table tbody td.indepro-vs-table__hl,
.indepro-single-content .indepro-vs-table-wrap .indepro-vs-table tbody td.indepro-vs-table__hl {
    background: rgba(235, 187, 129, 0.05) !important;
    color: #ebbb81 !important;
    font-weight: 700;
}
.indepro-vs-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}
.indepro-vs-table tbody tr:hover td.indepro-vs-table__hl {
    background: rgba(235, 187, 129, 0.10) !important;
}

/* === Anchor chips (jumps internes) === */
.indepro-anchor-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}
.indepro-root .indepro-anchor-chip,
.indepro-anchor-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(235, 187, 129, 0.06);
    border: 1px solid rgba(235, 187, 129, 0.3);
    color: #ebbb81 !important;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.indepro-anchor-chip:hover {
    background: rgba(235, 187, 129, 0.12);
    border-color: rgba(235, 187, 129, 0.5);
    transform: translateY(-1px);
}

/* === Mini promo callout (FAQ accordion answer) === */
.indepro-mini-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(235, 187, 129, 0.05);
    border: 1px dashed rgba(235, 187, 129, 0.4);
    border-radius: 12px;
    padding: 18px 16px;
    margin: 12px 0 4px;
    text-align: center;
}
.indepro-mini-promo__code {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #ebbb81;
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 6px;
}
.indepro-root .indepro-mini-promo__cta,
.indepro-mini-promo__cta {
    display: inline-block;
    background: #ebbb81 !important;
    color: #18181a !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none !important;
}

/* === Author box (auto-injectee en fin de post) === */
.indepro-author-box {
    display: flex;
    gap: 20px;
    margin: 48px 0 24px;
    padding: 24px 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(235, 187, 129, 0.18);
    border-radius: 18px;
    align-items: flex-start;
}
.indepro-author-box__photo {
    flex-shrink: 0;
}
.indepro-author-box__photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(235, 187, 129, 0.4);
}
.indepro-author-box__body {
    flex: 1;
    min-width: 0;
}
.indepro-author-box__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ebbb81;
    margin-bottom: 6px;
}
.indepro-author-box .indepro-author-box__name,
.indepro-single-content .indepro-author-box .indepro-author-box__name {
    margin: 0 0 8px !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3 !important;
}
.indepro-author-box .indepro-author-box__name a {
    color: #f2f1ed !important;
    text-decoration: none !important;
}
.indepro-author-box .indepro-author-box__name a:hover { color: #ebbb81 !important; }
.indepro-author-box__bio {
    margin: 0 0 10px !important;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(242, 241, 237, 0.75);
}
.indepro-author-box__bio a {
    color: #ebbb81 !important;
    text-decoration: underline;
    text-decoration-color: rgba(235, 187, 129, 0.4);
    text-underline-offset: 3px;
}
.indepro-author-box__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ebbb81 !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
}
@media (max-width: 600px) {
    .indepro-author-box {
        flex-direction: column;
        padding: 20px 22px;
    }
    .indepro-author-box__photo img { width: 64px; height: 64px; }
}

/* === Blockquote stylé (citation expert dans le contenu) === */
.indepro-quote {
    margin: 32px 0;
    padding: 24px 28px 24px 36px;
    background: linear-gradient(160deg, rgba(235, 187, 129, 0.06), rgba(235, 187, 129, 0.015));
    border-left: 4px solid #ebbb81;
    border-radius: 0 14px 14px 0;
    position: relative;
}
.indepro-quote::before {
    content: "\201C";
    position: absolute;
    top: -8px;
    left: 14px;
    font-size: 60px;
    line-height: 1;
    color: rgba(235, 187, 129, 0.45);
    font-family: Georgia, serif;
}
.indepro-quote p {
    margin: 0 0 12px !important;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(242, 241, 237, 0.92);
    font-style: italic;
}
.indepro-quote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: #ebbb81;
}
.indepro-quote cite::before {
    content: "";
    color: rgba(235, 187, 129, 0.6);
}
