/* global.css — RoastMyURL V7 */

/* Genere automatiquement a partir des <style> inline des composants */

/* Ce fichier centralise TOUS les styles du site */


/* ===== includes/header.php ===== */

/* Variables globales definies dans assets/css/style.css */

        body {
            margin: 0;
            background: var(--rm-bg, #050505);
            color: var(--rm-text, #fff);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav.site-nav {
            position: sticky;
            top: 0;
            z-index: 2500;
            border-bottom: 1px solid var(--rm-border);
            background: var(--rm-surface);
            backdrop-filter: blur(10px);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 74px;
            padding: 0 20px;
            max-width: 1300px;
            margin: 0 auto;
            gap: 24px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .brand-logo:hover .logo-svg {
            transform: scale(1.05) rotate(5deg);
        }

        .brand-text-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-text {
            color: var(--rm-text);
            font-weight: 900;
            font-size: 1.28rem;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .brand-text .accent {
            color: var(--rm-red);
        }

        .brand-baseline {
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 0.58rem;
            color: var(--rm-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
            line-height: 1;
        }

        .desktop-only {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .nav-links {
            flex: 1;
            justify-content: center;
        }

        .nav-actions {
            flex-shrink: 0;
        }

        .nav-links a,
        .nav-actions a {
            color: var(--rm-text-soft);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 700;
            white-space: nowrap;
            transition: color .2s ease;
        }

        .nav-links a {
            position: relative;
            padding: 6px 0;
        }

        .nav-links a::after {
            display: none;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--rm-text, #fff);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: scaleX(1);
        }

        .btn-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--rm-red);
            color: #fff !important;
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.9rem !important;
            border: 1px solid var(--rm-red);
            box-shadow: 0 8px 24px rgba(248,81,73,0.18);
            transition: 0.2s;
        }

        .btn-nav:hover {
            background: #da3633;
            transform: translateY(-1px);
        }

        .burger-toggle {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            width: 32px;
            height: 24px;
            position: relative;
        }

        .burger-line {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background-color: var(--rm-text);
            border-radius: 3px;
            left: 0;
            transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, top 0.3s ease-in-out;
        }

        .burger-line:nth-child(1) { top: 0px; }
        .burger-line:nth-child(2) { top: 10px; }
        .burger-line:nth-child(3) { top: 20px; }

        .burger-toggle.active .burger-line:nth-child(1) {
            top: 10px;
            transform: rotate(45deg);
        }

        .burger-toggle.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-toggle.active .burger-line:nth-child(3) {
            top: 10px;
            transform: rotate(-45deg);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background: var(--rm-bg, rgba(5, 5, 5, 0.98));
            backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2000;
            padding: 80px 24px 40px;
            box-sizing: border-box;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu a {
            color: var(--rm-text);
            font-size: 1.4rem;
            text-decoration: none;
            font-weight: 800;
            text-align: center;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: var(--rm-red);
        }

        .mobile-menu a.mobile-secondary {
            color: var(--rm-text-soft);
            font-size: 1.1rem;
            font-weight: 600;
        }

        @media (max-width: 980px) {
            .desktop-only {
                display: none;
            }

            .burger-toggle {
                display: block;
            }

            .nav-content {
                height: 80px;
            }

            .brand-baseline {
                display: block;
                font-size: 0.55rem;
            }
        }


/* ===== content/home.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */
    body { background-color: var(--rm-bg); color: var(--rm-text); font-family: var(--rm-font-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif); margin: 0; }
    .container { max-width: 1200px; margin: 0 auto; padding: 20px; }

    /* Hero Form & Inputs */
    /* CORRECTION : Padding top réduit de 80px à 30px */
    .hero { text-align: center; padding: 30px 0 50px; }
    .hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 15px; letter-spacing: -1.5px; line-height: 1.1; }
    .hero h1 span { color: var(--rm-red); }
    .hero p { color: var(--rm-text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
    
    .scan-box { background: var(--rm-surface); border: 1px solid var(--rm-border); padding: 35px; border-radius: var(--rm-radius); box-shadow: 0 20px 50px rgba(0,0,0,0.5); max-width: 800px; margin: 0 auto; }
    .url-input { width: 100%; padding: 18px 20px; font-size: 1.1rem; background: var(--rm-surface-light); border: 1px solid var(--rm-border); color: var(--rm-text); border-radius: 8px; margin-bottom: 20px; box-sizing: border-box; font-family: var(--rm-font-mono); transition: 0.2s; }
    .url-input:focus { outline: none; border-color: var(--rm-red); box-shadow: 0 0 0 2px rgba(248, 81, 73, 0.2); }
    
    .btn-roast { width: 100%; padding: 18px; font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; background: var(--rm-cta-bg, linear-gradient(to right, #C41E3A, #9B1B30)); color: #fff; border: 1px solid var(--rm-cta-border, #7A1428); border-radius: 8px; cursor: pointer; transition: 0.2s; display: flex; justify-content: center; align-items: center; gap: 10px; }
    .btn-roast:hover { background: var(--rm-cta-hover, #8A1525); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,30,58,0.3); }
    .btn-roast:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
    
    /* --- TRANSITION TÉLÉMÉTRIE --- */
    .telemetry-header {
        text-align: center;
        margin: 10px auto 30px;
        padding-top: 0;
        max-width: 900px;
    }
    /* telemetry-header::before supprime — remplace par .telemetry-sep dans le HTML */
    .telemetry-header h2 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--rm-text);
        margin: 0 0 10px;
        letter-spacing: -0.5px;
    }
    .telemetry-header p {
        color: var(--rm-text-muted);
        font-size: 0.9rem;
        font-family: var(--rm-font-mono);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }

    /* Stats & Leaderboard Grid */
    .stats-counters { display: flex; justify-content: center; gap: 60px; margin-bottom: 50px; text-align: center; flex-wrap: wrap; }
    .stat-box h3 { font-size: 3.5rem; margin: 0; color: var(--rm-text); font-weight: 900; line-height: 1; font-family: var(--rm-font-mono); }
    .stat-box p { color: var(--rm-text-muted); margin: 8px 0 0; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; font-weight: 700; }
    
    .leaderboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 60px; }
    .leaderboard-col { background: var(--rm-surface); padding: 25px; border-radius: var(--rm-radius); border: 1px solid var(--rm-border); min-width: 0; overflow: hidden; }
    .leaderboard-col.bg-quarantine { background: rgba(248,81,73,0.03); border-color: rgba(248,81,73,0.2) !important; }

    /* LEADERBOARD ITEM */
    .board-item { padding: 16px 0; border-bottom: 1px solid var(--rm-border-soft); transition: 0.2s; }
    .board-item:last-child { border-bottom: none !important; }
    .board-item:hover { transform: translateX(4px); }
    
    .board-row-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
    .board-left { display: flex; align-items: flex-start; gap: 14px; min-width: 0; flex: 1; }
    .board-rank { font-size: 1.1rem; font-weight: 900; line-height: 1; min-width: 30px; padding-top: 4px; color: var(--rm-text-muted); font-family: var(--rm-font-mono); }
    
    .board-item-main { min-width: 0; flex: 1; }
    .board-item-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; min-width: 0; }
    .board-domain { font-weight: 700; color: var(--rm-text); text-decoration: none; font-size: 1.05rem; line-height: 1.3; display: block; min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
    .board-domain:hover { color: var(--rm-blue); }
    
    .external-link { color: var(--rm-text-muted); text-decoration: none; font-size: 0.8rem; transition: 0.2s; padding: 2px; }
    .external-link:hover { color: var(--rm-text); }
    
    .board-tier { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 800; display: inline-block; font-family: var(--rm-font-mono); margin-bottom: 4px; }
    .time-ago { display: block; font-size: 0.75rem; color: var(--rm-text-muted); font-family: var(--rm-font-mono); }
    
    .score-badge { flex-shrink: 0; font-weight: 900; padding: 6px 12px; border-radius: 6px; font-size: 0.95rem; font-family: var(--rm-font-mono); line-height: 1; margin-top: 2px; background: var(--rm-surface-light); border: 1px solid var(--rm-border); }

    /* Loader */
    /* loader-wrap : masquage gere par js-hidden, pas par display:none en dur */
    .loader-wrap { text-align: center; padding: 80px 0; }
    .spinner { width: 40px; height: 40px; border: 3px solid var(--rm-border); border-top-color: var(--rm-red); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; }
    @keyframes spin { 100% { transform: rotate(360deg); } }
    
    @media (max-width: 768px) { 
        .stats-counters { gap: 30px; }
        .leaderboard-grid { grid-template-columns: 1fr; } 
    }


/* ===== components/home/hero-scan-box.php ===== */

/* Animation fluide pour le toggle */
#ghost-mode-toggle:checked + span { background-color: rgba(59, 130, 246, 0.2); border-color: var(--rm-blue); }
#ghost-mode-toggle:checked + span #ghost-slider { transform: translateX(18px); background-color: var(--rm-blue); }


/* CSS Spécifique au composant */
.config-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .config-grid {
        grid-template-columns: 1fr;
    }
}

#ghost-confirm:hover { background: #da3633; }
#ghost-cancel:hover { color: var(--rm-text); }
#ghost-mode-toggle:checked + span { background-color: var(--rm-green); }
#ghost-mode-toggle:checked + span #ghost-slider { transform: translateX(20px); background-color: var(--rm-text); }

/* Animation subtile sur le bouton d’info */
.hero a[href="/comment-ca-marche"]:hover {
    border-color: rgba(165, 214, 255, 0.5) !important;
    background: rgba(59, 130, 246, 0.1) !important;
    color: var(--rm-text) !important;
}

.example-domains{
    font-size:0.8rem;
    color:var(--rm-text-muted);
    font-family:var(--rm-font-mono);
    margin-top:-10px;
    margin-bottom:25px;
}

.example-domains span{
    cursor:pointer;
    color:var(--rm-text-muted);
    transition:0.2s;
}

.example-domains span:hover{
    color:var(--rm-text);
}


/* ===== components/home/stats-summary.php ===== */

.stats-wrapper {
        margin-top: 20px;
        margin-bottom: 50px;
    }
    
    .stats-counters {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    @media (max-width: 1024px) { .stats-counters { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .stats-counters { grid-template-columns: 1fr; } }

    .stat-box {
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        border-radius: 12px;
        padding: 30px 15px;
        text-align: center;
        box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .stat-box:hover {
        transform: translateY(-5px);
        border-color: rgba(255,255,255,0.2);
        background: rgba(127,127,127,0.05);
    }

    .stat-box h3 {
        font-size: 3.2rem;
        margin: 0;
        font-weight: 900;
        line-height: 1;
        font-family: var(--rm-font-mono, monospace);
        letter-spacing: -2px;
    }
    
    /* Thématisation par couleur pour l’effet "Dashboard de Precision" */
    .stat-box.public h3 { color: var(--rm-text); text-shadow: 0 0 15px var(--rm-border); }
    
    /* Mode Fantôme : Violet Furtif */
    .stat-box.ghost h3 { 
        color: #bf91ff; 
        text-shadow: 0 0 20px rgba(191, 145, 255, 0.3); 
    }
    .stat-box.ghost { border-color: rgba(191, 145, 255, 0.1); }

    .stat-box.score h3 { color: var(--rm-green); text-shadow: 0 0 20px rgba(46,160,67,0.2); }
    .stat-box.agents h3 { color: var(--rm-blue); text-shadow: 0 0 20px rgba(59,130,246,0.2); }

    .stat-box p {
        color: var(--rm-text-muted);
        margin: 15px 0 0;
        text-transform: uppercase;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        font-weight: 800;
    }

    /* SVG Icons ajustés */
    .stat-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        opacity: 0.1;
        transition: opacity 0.3s;
    }
    .stat-box:hover .stat-icon { opacity: 0.3; }

    .stat-disclaimer-box {
        background: var(--rm-surface-light);
        padding: 25px;
        border-radius: 10px;
        border: 1px dashed var(--rm-border);
        position: relative;
        text-align: left;
        max-width: 850px;
        margin: 40px auto 0;
    }
    
    /* stat-disclaimer-box::before supprime — remplace par .decoy-sep dans le HTML */


/* ===== components/home/leaderboard.php ===== */

.board-header { text-align: center; margin-bottom: 40px; padding: 0 20px; }
    .board-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 10px; font-weight: 800; letter-spacing: -0.5px; color: var(--rm-text); }
    .board-header p { color: var(--rm-text-muted); max-width: 650px; margin: 0 auto; line-height: 1.6; font-size: 1.05rem; }
    
    .leaderboard-tip {
        margin: 40px auto 0; max-width: 950px; padding: 18px 25px;
        background: rgba(59, 130, 246, 0.05); border-left: 4px solid var(--rm-blue);
        border-radius: 6px; color: var(--rm-blue); font-size: 0.9rem; text-align: left;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    .leaderboard-tip strong { color: var(--rm-blue); font-family: var(--rm-font-mono, monospace); letter-spacing: 1px; }


/* ===== components/home/leaderboard-explainer.php ===== */

.explainer-box {
        margin: 80px auto; max-width: 950px; padding: 40px;
        background: var(--rm-surface); border: 1px solid var(--rm-border);
        border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        position: relative;
    }
    .explainer-badge {
        position: absolute; top: -12px; left: 40px;
        background: var(--rm-bg); padding: 0 10px;
        font-family: var(--rm-font-mono, monospace); font-size: 0.75rem;
        color: var(--rm-red); font-weight: 700; letter-spacing: 1px;
    }
    .explainer-box h2 { margin-top: 0; font-size: 1.8rem; color: var(--rm-text); margin-bottom: 15px; letter-spacing: -0.5px; }
    .explainer-lead { color: var(--rm-text-muted); line-height: 1.6; font-size: 1.05rem; margin-bottom: 30px; border-bottom: 1px solid var(--rm-border); padding-bottom: 25px; }
    .explainer-lead strong { color: var(--rm-text); }
    
    .explainer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; margin-bottom: 35px; }
    .ex-item { background: var(--rm-surface-light); padding: 20px; border: 1px solid var(--rm-border); border-radius: 8px; }
    .ex-item strong { display: flex; align-items: center; gap: 8px; color: var(--rm-text); font-size: 0.95rem; margin-bottom: 8px; }
    .ex-item span { color: var(--rm-text-muted); font-size: 0.85rem; line-height: 1.5; display: block; }
    
    .btn-explainer {
        display: inline-flex; align-items: center; justify-content: center;
        padding: 12px 24px; background: var(--rm-surface-light);
        color: var(--rm-text); text-decoration: none; border-radius: 6px; font-size: 0.9rem;
        font-weight: 700; border: 1px solid var(--rm-border); transition: 0.2s;
    }
    .btn-explainer:hover { background: var(--rm-surface-soft); border-color: var(--rm-text-muted); transform: translateY(-2px); }

    @media(max-width: 600px) { .explainer-box { padding: 30px 20px; } .explainer-badge { left: 20px; } }


/* ===== components/home/faq-home.php ===== */

.faq-home-container {
        margin: 0 auto 80px; max-width: 800px; padding: 0 20px;
    }
    .faq-home-container h2 {
        text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--rm-text); letter-spacing: -0.5px;
    }
    
    .faq-item-home { border: 1px solid var(--rm-border); border-radius: 8px; background: var(--rm-surface); overflow: hidden; margin-bottom: 12px; }
    .faq-btn-home { 
        width: 100%; padding: 20px; background: transparent; border: none; 
        color: var(--rm-text); text-align: left; font-weight: 600; cursor: pointer; 
        display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-family: inherit;
    }
    .faq-btn-home:hover { background: rgba(127,127,127,0.04); }
    .faq-content-home { padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6; }

    /* CTA FINAL */
    .home-final-cta {
        margin-top: 60px;
        padding: 50px 20px;
        background: linear-gradient(180deg, var(--rm-surface) 0%, var(--rm-bg) 100%);
        border: 1px solid var(--rm-border);
        border-radius: 12px;
        text-align: center;
    }
    .home-final-cta h3 { margin: 0 0 10px; font-size: 1.6rem; color: var(--rm-text); }
    .home-final-cta p { color: var(--rm-text-muted); margin: 0 0 25px; }
    
    .btn-scroll-top {
        padding: 16px 32px; background: var(--rm-cta-bg, linear-gradient(to right, #C41E3A, #9B1B30)); color: #fff; border: 1px solid var(--rm-cta-border, #7A1428);
        border-radius: 6px; font-weight: 800; font-size: 1rem; text-transform: uppercase;
        cursor: pointer; transition: 0.2s; box-shadow: 0 10px 30px rgba(196,30,58,0.25);
    }
    .btn-scroll-top:hover { background: var(--rm-cta-hover, #8A1525); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(196,30,58,0.4); }


/* ===== components/geo/geo-radar-report.php ===== */

.geo-master-container { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 15px; }
    .geo-master-card { flex: 1 1 300px; background: linear-gradient(145deg, #0d1117 0%, #161b22 100%); border: 1px solid var(--rm-border); padding: 30px; border-radius: 8px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;}
    .geo-master-border { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--rm-border); transition: 0.3s; }
    .geo-secondary-grid { flex: 2 1 500px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }
    .geo-card { background: var(--rm-surface-light); border: 1px solid var(--rm-border); padding: 20px; border-radius: 8px; display: flex; flex-direction: column; }
    .geo-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
    .geo-card h4 { margin: 0; font-size: 0.8rem; color: var(--rm-text-muted); text-transform: uppercase; letter-spacing: 1px; }
    .geo-jauge-bg { background: var(--rm-border-soft); height: 4px; border-radius: 2px; width: 100%; margin-top: 15px; margin-bottom: 10px;}
    .geo-jauge-fill { height: 100%; border-radius: 2px; transition: width 0.5s ease; }


/* ===== components/survival/survival-report.php ===== */

.surv-box { background: var(--rm-surface-light); border: 1px solid var(--rm-border); padding: 25px; border-radius: 8px; display: flex; flex-direction: column; justify-content: space-between; border-top-width: 4px; }
    .surv-box-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
    .surv-box h4 { margin:0; color:var(--rm-text); font-size: 1.05rem; font-weight: 600; }
    .surv-score-badge { font-weight: 800; font-size: 1.1rem; font-family: 'JetBrains Mono', monospace; }
    .surv-box p { font-size: 0.85rem; color: var(--rm-text-muted); margin: 0 0 20px 0; line-height: 1.5; }
    .surv-bar-bg { background: var(--rm-border-soft); height: 4px; border-radius: 2px; width: 100%; margin-top: auto; }
    .surv-bar-fill { height: 100%; border-radius: 2px; }


/* ===== components/report/action-roadmap.php ===== */

.roadmap-timeline { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }
    .rm-step { display: flex; background: var(--rm-surface-light); border: 1px solid var(--rm-border); border-radius: 8px; overflow: hidden; align-items: stretch; }
    .rm-time { padding: 20px; background: var(--rm-bg); font-weight: 700; width: 140px; display: flex; align-items: center; justify-content: center; text-align: center; border-right: 1px solid var(--rm-border); flex-shrink: 0; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px;}
    .rm-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
    .rm-content h4 { margin: 0 0 8px 0; color: var(--rm-text); font-size: 1.05rem; font-weight: 600; }
    .rm-content p { margin: 0; color: var(--rm-text-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px;}
    .rm-proof { font-size: 0.85rem; color: var(--rm-text-muted); background: rgba(127,127,127,0.05); padding: 10px 15px; border-radius: 6px; border-left: 2px solid var(--rm-yellow); margin-bottom: 12px; line-height: 1.5; }
    .rm-impacts { display: flex; gap: 10px; flex-wrap: wrap; }
    .impact-badge { font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; font-weight: 600; background: var(--rm-border-soft); color: var(--rm-text-soft); border: 1px solid var(--rm-border); text-transform: uppercase; letter-spacing: 0.5px;}
    .impact-high { border-color: var(--rm-green); color: var(--rm-green); background: rgba(46,160,67,0.1); }
    .impact-med { border-color: var(--rm-yellow); color: var(--rm-yellow); background: rgba(210,153,34,0.1); }
    
    @media (max-width: 600px) {
        .rm-step { flex-direction: column; }
        .rm-time { width: 100%; border-right: none; border-bottom: 1px solid var(--rm-border); padding: 15px; }
    }


/* ===== components/report/ai-opportunities.php ===== */

.opp-tag { font-size: 0.65rem; padding: 3px 6px; border-radius: 4px; font-weight: 600; text-transform: uppercase; margin-right: 8px; border: 1px solid;}
    .tag-info { background: rgba(59, 130, 246, 0.1); color: var(--rm-blue); border-color: rgba(59, 130, 246, 0.3); }
    .tag-comp { background: rgba(210,153,34,0.1); color: var(--rm-yellow); border-color: rgba(210,153,34,0.3); }
    .tag-trans { background: rgba(46,160,67,0.1); color: var(--rm-green); border-color: rgba(46,160,67,0.3); }
    .tag-feas-rapide { background: var(--rm-border); color: var(--rm-text); border-color: transparent; }
    .tag-feas-struct { background: rgba(248,81,73,0.1); color: var(--rm-red); border-color: transparent; }


/* ===== components/report/competitive-landscape.php ===== */

@keyframes spin { 100% { transform: rotate(360deg); } }
#real-comp-input:focus { border-color: var(--rm-blue); box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2); }
#btn-scan-comp:hover { background: #2563eb !important; box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5) !important; transform: translateY(-2px); }
#btn-scan-comp:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }


/* ===== components/report/executive-summary-final.php ===== */

.exec-summary-box { background: rgba(127,127,127,0.04); border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 40px; margin-top: 100px; }
    .exec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 30px; }
    .exec-item { border-left: 3px solid var(--rm-border); padding-left: 20px; display: flex; flex-direction: column; justify-content: center;}
    .exec-item.global { border-color: var(--rm-blue); }
    .exec-item.strength { border-color: var(--rm-green); }
    .exec-item.risk { border-color: var(--rm-red); }
    .exec-item.action { border-color: var(--rm-yellow); }
    .exec-item h4 { margin: 0 0 8px 0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--rm-text-muted); font-weight: 600;}
    .exec-item p { margin: 0; font-size: 0.95rem; color: var(--rm-text); line-height: 1.6; font-weight: 500; }
    
    /* Animations pour les cartes de service */
    .service-card { transition: 0.2s ease-in-out; }
    .service-card:hover { transform: translateY(-3px); }


/* ===== includes/footer.php ===== */

.site-footer {
    background: var(--rm-bg, #050505);
    border-top: 1px solid var(--rm-border);
    padding: 60px 0 30px;
    margin-top: 100px;
    font-size: 0.9rem;
    color: var(--rm-text-muted, #8b949e);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.footer-brand { max-width: 350px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--rm-red);
    letter-spacing: -0.5px;
}

.footer-logo span { color: var(--rm-text, #fff); }

.footer-tagline {
    color: var(--rm-text);
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: var(--rm-font-mono, monospace);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
}

.footer-meta {
    color: var(--rm-text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-meta a {
    color: var(--rm-text-muted);
    text-decoration: underline;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h5 {
    color: var(--rm-text, #fff);
    margin: 0 0 20px 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--rm-font-mono, monospace);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
    color: var(--rm-text-muted, #8b949e);
    text-decoration: none;
    transition: 0.2s;
}

.footer-col a:hover { color: var(--rm-text, #fff); }

.footer-support {
    color: var(--rm-yellow) !important;
    font-weight: 700;
}

.footer-trust {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--rm-border-soft);
    text-align: left;
}

.footer-trust p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--rm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--rm-border-soft);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-family: var(--rm-font-mono, monospace);
    font-size: 0.75rem;
    color: var(--rm-text-muted);
}

.sep { margin: 0 10px; color: var(--rm-border); }

.fuel { color: var(--rm-text-muted); }
.logic { color: var(--rm-red); }

@media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .footer-nav { grid-template-columns: 1fr; }
}


/* ===== content/guide.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

  .rmg-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: var(--rm-font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .rmg-page * { box-sizing: border-box; }
  .rmg-page a { color: var(--rm-text); text-decoration: none; transition: 0.2s; }
  .rmg-page a:hover { color: var(--rm-text); }
  
  .rmg-page code {
    font-family: var(--rm-font-mono);
    font-size: 0.85em;
    background: var(--rm-border-soft);
    border: 1px solid var(--rm-border);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    color: var(--rm-text);
  }

  /* Barre de progression lecture */
  .rmg-progress {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    height: 3px; background: transparent;
  }
  .rmg-progress > div {
    height: 100%; width: 0;
    background: var(--rm-red);
    box-shadow: 0 0 10px var(--rm-red);
  }

  .rmg-shell {
    max-width: var(--rm-wrap);
    margin: 0 auto;
    padding: 40px 20px 100px;
  }

  /* Hero Section Premium */
  .rmg-hero { margin-bottom: 50px; }
  .rmg-hero-card {
    position: relative;
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    background: var(--rm-surface);
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .rmg-kicker {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    border: 1px solid var(--rm-border);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--rm-bg);
  }

  .rmg-hero h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--rm-text);
    line-height: 1.1;
  }

  .rmg-hero p {
    margin: 0 auto;
    max-width: 800px;
    color: var(--rm-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .rmg-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }
  .rmg-pill {
    display: inline-flex;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    color: var(--rm-text);
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(127,127,127,0.05);
    border: 1px solid var(--rm-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .rmg-meta {
    margin-top: 30px;
    color: var(--rm-text-muted);
    font-size: 0.8rem;
    font-family: var(--rm-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Layout : Sidebar + Contenu */
  .rmg-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  /* Sidebar (TOC) */
  .rmg-aside {
    position: sticky;
    top: 40px;
    display: grid;
    gap: 20px;
  }

  .rmg-box {
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    background: var(--rm-surface);
    padding: 20px;
  }

  .rmg-toc-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--rm-border);
    padding-bottom: 10px;
  }
  .rmg-toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
  }
  .rmg-toc-sub {
    color: var(--rm-text-muted);
    font-size: 0.75rem;
    font-family: var(--rm-font-mono);
  }

  .rmg-search {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--rm-border);
    background: var(--rm-bg);
    color: var(--rm-text);
    outline: none;
    margin-bottom: 15px;
    font-family: var(--rm-font-sans);
    font-size: 0.9rem;
    transition: 0.2s;
  }
  .rmg-search:focus {
    border-color: var(--rm-red);
  }

  .rmg-toc ul {
    list-style: none; padding: 0; margin: 0; display: grid; gap: 4px;
  }
  .rmg-toc a {
    display: block;
    color: var(--rm-text-muted);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
  }
  .rmg-toc a:hover {
    color: var(--rm-text);
    background: rgba(127,127,127,0.05);
  }
  .rmg-toc a.active {
    color: var(--rm-text);
    background: var(--rm-border-soft);
    border-left-color: var(--rm-red);
    font-weight: 500;
  }

  /* Actions Sidebar */
  .rmg-tools h3 {
    margin: 0 0 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
  }
  .rmg-stack { display: grid; gap: 10px; }

  /* Boutons Pro */
  .rmg-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 6px; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: 0.2s; border: 1px solid transparent;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .rmg-btn:hover { transform: translateY(-1px); }
  .rmg-btn-primary {
    background: var(--rm-cta-bg, linear-gradient(to right, #C41E3A, #9B1B30)); color: #fff; border: 1px solid var(--rm-cta-border, #7A1428);
  }
  .rmg-btn-primary:hover { background: var(--rm-cta-hover, #8A1525); box-shadow: 0 4px 15px rgba(196,30,58,0.35); }
  
  .rmg-btn-secondary {
    background: var(--rm-surface-light); color: var(--rm-text); border-color: var(--rm-border);
  }
  .rmg-btn-secondary:hover { background: var(--rm-surface-soft); border-color: var(--rm-text-muted); }
  
  .rmg-btn-ghost {
    background: transparent; color: var(--rm-text-muted); border-color: var(--rm-border);
  }
  .rmg-btn-ghost:hover { color: var(--rm-text); background: var(--rm-border-soft); }

  /* Contenu Principal */
  .rmg-main { min-width: 0; }

  .rmg-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--rm-border);
    scroll-margin-top: 60px;
  }
  .rmg-section:last-of-type { border-bottom: none; }

  .rmg-badge {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .rmg-badge-blue { color: var(--rm-blue); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); }
  .rmg-badge-green { color: var(--rm-green); background: rgba(46, 160, 67, 0.1); border: 1px solid rgba(46, 160, 67, 0.3); }
  .rmg-badge-amber { color: var(--rm-yellow); background: rgba(210, 153, 34, 0.1); border: 1px solid rgba(210, 153, 34, 0.3); }
  .rmg-badge-red { color: var(--rm-red); background: rgba(248, 81, 73, 0.1); border: 1px solid rgba(248, 81, 73, 0.3); }

  .rmg-section h2 {
    margin: 0 0 20px;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--rm-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .rmg-mini-btn {
    background: transparent; color: var(--rm-text-muted); border: 1px solid var(--rm-border);
    padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-family: var(--rm-font-mono);
    cursor: pointer; transition: 0.2s;
  }
  .rmg-mini-btn:hover { color: var(--rm-text); border-color: var(--rm-text-muted); }

  .rmg-section-intro {
    font-size: 1.05rem; color: var(--rm-text); margin-bottom: 30px;
  }

  /* Grilles & Cartes */
  .rmg-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
  .rmg-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

  .rmg-card {
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
  }
  .rmg-card h4 {
    margin: 0 0 10px; font-size: 1rem; font-weight: 600; color: var(--rm-text);
  }
  .rmg-card p {
    margin: 0; font-size: 0.9rem; color: var(--rm-text-muted); line-height: 1.6;
  }

  /* Callouts (Info/Warn/Tip) */
  .rmg-info, .rmg-tip, .rmg-warn {
    padding: 16px 20px; border-radius: 6px; margin: 30px 0; font-size: 0.95rem; border-left: 3px solid;
  }
  .rmg-info { background: rgba(59, 130, 246, 0.05); border-color: var(--rm-blue); color: var(--rm-blue); }
  .rmg-tip { background: rgba(46, 160, 67, 0.05); border-color: var(--rm-green); color: var(--rm-green); }
  .rmg-warn { background: rgba(248, 81, 73, 0.05); border-color: var(--rm-red); color: var(--rm-red); }
  .rmg-info strong, .rmg-tip strong, .rmg-warn strong { color: var(--rm-text); font-weight: 600; }

  /* Blocs de code */
  .rmg-pre {
    position: relative;
    margin: 20px 0;
    padding: 20px;
    background: var(--rm-bg);
    border: 1px solid var(--rm-border);
    border-radius: 8px;
    overflow: auto;
    color: var(--rm-text);
  }
  .rmg-pre code {
    background: none; border: none; padding: 0; color: inherit; font-size: 0.9rem;
  }
  .rmg-code-copy {
    position: absolute; top: 10px; right: 10px;
    background: var(--rm-surface-light);
  }

  /* Accordéon (FAQ) */
  .rmg-accordion { display: grid; gap: 12px; margin-top: 25px; }
  .rmg-acc-item {
    border: 1px solid var(--rm-border); border-radius: 6px; background: var(--rm-surface-light);
  }
  .rmg-acc-btn {
    width: 100%; border: none; background: transparent; color: var(--rm-text);
    cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; font-weight: 600; font-size: 0.95rem; font-family: inherit;
  }
  .rmg-acc-btn small {
    display: block; color: var(--rm-text-muted); font-weight: 400; margin-top: 4px; font-size: 0.8rem; font-family: var(--rm-font-mono);
  }
  .rmg-acc-icon { font-family: var(--rm-font-mono); color: var(--rm-text-muted); font-weight: bold; }
  .rmg-acc-panel {
    padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6;
  }

  /* CTA Bas de page */
  .rmg-cta {
    border: 1px solid var(--rm-border); border-radius: var(--rm-radius);
    padding: 40px; margin-top: 50px; background: var(--rm-surface);
    text-align: center;
  }
  .rmg-cta h3 { margin: 0 0 15px; font-size: 1.5rem; font-weight: 700; color: var(--rm-text); letter-spacing: -0.5px;}
  .rmg-cta p { margin: 0 auto 25px; color: var(--rm-text-muted); font-size: 1.05rem; max-width: 600px; }
  .rmg-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }

  .rmg-footer-note {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--rm-border);
    color: var(--rm-text-muted); font-size: 0.8rem; text-align: center; font-family: var(--rm-font-mono);
  }

  /* Mobile UI */
  .rmg-mobile-fab, .rmg-back-top {
    position: fixed; z-index: 90; padding: 12px 18px; border-radius: 6px;
    border: 1px solid var(--rm-border); background: var(--rm-surface);
    color: var(--rm-text); font-weight: 600; font-size: 0.85rem; font-family: var(--rm-font-mono);
    cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.5); text-transform: uppercase;
  }
  .rmg-mobile-fab { right: 20px; bottom: 20px; display: none; }
  .rmg-back-top {
    left: 20px; bottom: 20px; opacity: 0; pointer-events: none;
    transform: translateY(10px); transition: 0.2s;
  }
  .rmg-back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* Toast Notification */
  .rmg-toast {
    position: fixed; top: 20px; right: 20px; z-index: 100;
    background: var(--rm-surface-light); border: 1px solid var(--rm-border);
    color: var(--rm-text); border-radius: 6px; padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); font-size: 0.9rem; font-weight: 500;
    opacity: 0; pointer-events: none; transform: translateY(-10px); transition: 0.2s;
  }
  .rmg-toast.show { opacity: 1; transform: translateY(0); }
  .rmg-toast small { display: block; margin-top: 5px; color: var(--rm-text-muted); font-family: var(--rm-font-mono); font-size: 0.75rem; }

  /* Responsive */
  @media (max-width: 900px) {
    .rmg-layout { grid-template-columns: 1fr; }
    .rmg-aside { display: none; }
    .rmg-mobile-fab { display: inline-flex; }
    .rmg-grid-2, .rmg-grid-3 { grid-template-columns: 1fr; }
    .rmg-hero-card { padding: 40px 20px; }
  }
  @media (max-width: 600px) {
    .rmg-section h2 { flex-direction: column; align-items: flex-start; gap: 10px; }
  }


/* ===== content/tarifs.php ===== */

/* ===== content/contact.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

    .contact-page {
        position: relative;
        overflow: hidden;
        background: 
            radial-gradient(circle at 0% 0%, rgba(248,81,73,0.05), transparent 40%),
            radial-gradient(circle at 100% 100%, rgba(59,130,246,0.05), transparent 40%),
            var(--rm-bg);
        font-family: var(--rm-font-sans);
        color: var(--rm-text);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    .contact-shell {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        padding: 56px 20px 100px;
    }

    .contact-hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .contact-intro {
        padding-top: 16px;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 4px;
        background: rgba(127,127,127,0.05);
        border: 1px solid var(--rm-border);
        color: var(--rm-text-muted);
        font-size: 0.75rem;
        font-family: var(--rm-font-mono);
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .contact-intro h1 {
        margin: 0 0 20px 0;
        font-size: clamp(2.6rem, 5vw, 4rem);
        line-height: 1.05;
        letter-spacing: -1px;
        font-weight: 800;
        color: var(--rm-text);
    }

    .contact-intro p.lead {
        margin: 0 0 30px 0;
        max-width: 640px;
        color: var(--rm-text-muted);
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .contact-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 35px;
    }

    .contact-point {
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        border-radius: var(--rm-radius);
        padding: 20px;
    }

    .contact-point-title {
        display: block;
        color: var(--rm-text);
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .contact-point-text {
        color: var(--rm-text-muted);
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .contact-links-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 25px;
    }

    .mini-link-card {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 6px;
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        color: var(--rm-text);
        text-decoration: none;
        font-size: 0.85rem;
        font-family: var(--rm-font-mono);
        font-weight: 600;
        text-transform: uppercase;
        transition: 0.2s ease;
    }

    .mini-link-card:hover {
        border-color: var(--rm-text-muted);
        background: var(--rm-surface-soft);
    }

    .mini-link-paypal {
        background: rgba(210, 153, 34, 0.1);
        border-color: rgba(210, 153, 34, 0.3);
        color: var(--rm-yellow);
    }
    .mini-link-paypal:hover {
        background: rgba(210, 153, 34, 0.2);
        border-color: var(--rm-yellow);
    }

    .contact-side-note {
        color: var(--rm-text-muted);
        font-size: 0.85rem;
        line-height: 1.6;
        max-width: 650px;
        padding-top: 20px;
        border-top: 1px solid var(--rm-border);
    }

    .contact-side-note a {
        color: var(--rm-text);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .contact-side-note a:hover {
        color: var(--rm-blue);
    }

    .contact-form-card {
        position: relative;
        background: var(--rm-surface);
        border: 1px solid var(--rm-border);
        border-radius: 12px;
        padding: 35px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .contact-form-card::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 3px;
        background: var(--rm-red);
        border-radius: 12px 12px 0 0;
    }

    .form-head {
        margin-bottom: 25px;
    }

    .form-head-title {
        margin: 0 0 10px 0;
        color: var(--rm-text);
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .form-head-text {
        margin: 0;
        color: var(--rm-text-muted);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group { margin-bottom: 20px; }
    .form-group.full { grid-column: 1 / -1; }

    .form-label {
        display: block;
        color: var(--rm-text);
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 0.75rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: var(--rm-font-mono);
    }

    .form-input,
    .form-textarea,
    .form-select {
        width: 100%;
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        color: var(--rm-text);
        padding: 14px 16px;
        border-radius: 6px;
        font-family: inherit;
        font-size: 0.95rem;
        transition: 0.2s ease;
        appearance: none;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: var(--rm-text-muted);
    }

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
        outline: none;
        border-color: var(--rm-red);
        box-shadow: 0 0 0 3px rgba(248,81,73,0.15);
    }

    .form-textarea {
        height: 140px;
        resize: vertical;
        min-height: 120px;
    }

    .form-helper {
        margin-top: 8px;
        color: var(--rm-text-muted);
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .form-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin: 10px 0 25px 0;
    }

    .trust-chip {
        padding: 8px 10px;
        border-radius: 4px;
        background: rgba(127,127,127,0.04);
        border: 1px solid var(--rm-border);
        color: var(--rm-text-muted);
        font-size: 0.75rem;
        font-family: var(--rm-font-mono);
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .btn-submit {
        width: 100%;
        padding: 16px 20px;
        background: var(--rm-red);
        color: var(--rm-text);
        border: none;
        border-radius: 6px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-submit:hover {
        background: #da3633;
        box-shadow: 0 8px 20px rgba(248,81,73,0.25);
    }

    .form-footer {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--rm-border-soft);
        display: flex;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
        align-items: center;
    }

    .form-footer-text {
        color: var(--rm-text-muted);
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .form-footer a {
        color: var(--rm-text-muted);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .form-footer a:hover { color: var(--rm-text); }

    /* Bottom Cards (No Emojis, B2B styling) */
    .contact-bottom {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .contact-bottom-card {
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        border-radius: var(--rm-radius);
        padding: 25px;
    }

    .cb-badge {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.65rem;
        font-family: var(--rm-font-mono);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    .cb-blue { background: rgba(59, 130, 246, 0.1); color: var(--rm-blue); border: 1px solid rgba(59, 130, 246, 0.3); }
    .cb-red { background: rgba(248, 81, 73, 0.1); color: var(--rm-red); border: 1px solid rgba(248, 81, 73, 0.3); }
    .cb-yellow { background: rgba(210, 153, 34, 0.1); color: var(--rm-yellow); border: 1px solid rgba(210, 153, 34, 0.3); }

    .contact-bottom-title {
        display: block;
        color: var(--rm-text);
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact-bottom-text {
        color: var(--rm-text-muted);
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .contact-bottom-text a {
        color: var(--rm-text);
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .contact-bottom-text a:hover { color: var(--rm-blue); }

    @media (max-width: 980px) {
        .contact-hero {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .contact-grid,
        .contact-bottom,
        .contact-points,
        .form-trust {
            grid-template-columns: 1fr;
        }
        .contact-form-card {
            padding: 25px;
        }
    }


/* ===== content/checklist.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

.checklist-page {
  padding: 56px 20px 110px;
  color: var(--rm-text);
  font-family: var(--rm-font-sans);
  background:
    radial-gradient(circle at 15% 10%, rgba(248,81,73,0.08), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(59,130,246,0.05), transparent 28%),
    var(--rm-bg);
  min-height: 100vh;
  line-height: 1.6;
}

.checklist-page * { box-sizing: border-box; }
.checklist-page a { color: inherit; text-decoration: none; }

code {
  font-family: var(--rm-font-mono);
  font-size: 0.85em;
  background: var(--rm-border-soft);
  border: 1px solid var(--rm-border);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  color: var(--rm-text);
}

.checklist-wrap {
  max-width: 1050px;
  margin: 0 auto;
}

/* Hero Section */
.checklist-hero {
  text-align: center;
  margin-bottom: 30px;
  padding: 50px 30px;
  border-radius: 12px;
  border: 1px solid var(--rm-border);
  background: var(--rm-surface);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.checklist-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rm-red), rgba(248,81,73,0.2), transparent);
}

.rm-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 15px;
  color: var(--rm-text);
  line-height: 1.1;
}

.rm-p-hero {
  font-size: 1.05rem;
  color: var(--rm-text-muted);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.hero-target {
  color: var(--rm-text);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 10px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--rm-border);
  background: rgba(127,127,127,0.04);
  color: var(--rm-text);
  font-family: var(--rm-font-mono);
}

/* Shortcuts */
.cl-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 0 auto 20px;
}

.cl-shortcut-card {
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.cl-shortcut-card:hover {
  border-color: var(--rm-text-muted);
  background: var(--rm-surface-soft);
  transform: translateY(-2px);
}

.cl-shortcut-card .icon {
  font-size: 1.2rem;
  font-family: var(--rm-font-mono);
  color: var(--rm-text-muted);
}
.cl-shortcut-card .txt strong {
  display: block;
  color: var(--rm-text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.cl-shortcut-card .txt span {
  color: var(--rm-text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Quick Links */
.cl-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 25px;
}
.cl-quick-links .lnk {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  color: var(--rm-text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cl-quick-links .lnk:hover {
  border-color: var(--rm-text-muted);
  color: var(--rm-text);
}
.cl-quick-links .lnk-paypal {
  color: var(--rm-yellow);
  border-color: rgba(210,153,34,0.3);
  background: rgba(210,153,34,0.05);
}
.cl-quick-links .lnk-paypal:hover {
  border-color: var(--rm-yellow);
}

/* Topbar : Search & Stats */
.cl-topbar {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin: 20px 0 30px;
}
@media(max-width:900px){ .cl-topbar{grid-template-columns:1fr} }

.cl-search, .cl-stats {
  border-radius: 8px;
  border: 1px solid var(--rm-border);
  background: var(--rm-surface);
  padding: 20px;
}

.cl-search-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cl-search input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid var(--rm-border);
  background: var(--rm-surface-light);
  color: var(--rm-text);
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.2s;
}
.cl-search input:focus {
  border-color: var(--rm-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.cl-search .hint {
  margin-top: 12px;
  color: var(--rm-text-muted);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.kbd {
  font-family: var(--rm-font-mono);
  font-size: 0.7rem;
  border: 1px solid var(--rm-border);
  background: var(--rm-surface-light);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--rm-text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-card {
  background: rgba(127,127,127,0.04);
  border: 1px solid var(--rm-border);
  border-radius: 6px;
  padding: 12px;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rm-text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rm-text);
  font-family: var(--rm-font-mono);
}
.stat-value .ok { color: var(--rm-green); }
.stat-value .warn { color: var(--rm-yellow); }
.stat-value .bad { color: var(--rm-red); }

.progress-wrap {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.progress-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.10);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--rm-green);
  transition: width 0.35s ease;
}
.progress-meta {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--rm-font-mono);
  color: var(--rm-text);
  min-width: 45px;
  text-align: right;
}

/* Categories & Items */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cl-category {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  padding: 25px;
}

.cl-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--rm-border-soft);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.cl-title {
  font-size: 1.15rem;
  color: var(--rm-text);
  margin: 0;
  font-weight: 600;
}
.cl-cat-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cl-cat-pill {
  font-size: 0.75rem;
  color: var(--rm-text-muted);
  border: 1px solid var(--rm-border);
  background: var(--rm-surface-light);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--rm-font-mono);
}
.cl-cat-toggle {
  cursor: pointer;
  border: 1px solid var(--rm-border);
  background: rgba(127,127,127,0.04);
  color: var(--rm-text);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.2s;
}
.cl-cat-toggle:hover {
  background: var(--rm-border-soft);
  border-color: var(--rm-text-muted);
}

.cl-cat-progress {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.cl-cat-progress .bar {
  flex: 1;
  height: 4px;
  background: var(--rm-border-soft);
  border-radius: 2px;
  overflow: hidden;
}
.cl-cat-progress .fill {
  height: 100%;
  width: 0%;
  background: var(--rm-blue);
  transition: width 0.35s ease;
}
.cl-cat-progress .txt {
  font-size: 0.75rem;
  font-family: var(--rm-font-mono);
  color: var(--rm-text-muted);
  min-width: 40px;
  text-align: right;
}

.cl-items { margin-top: 10px; }
.cl-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  cursor: pointer;
  padding: 15px;
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
  user-select: none;
  border: 1px solid transparent;
}
.cl-item:hover {
  background: rgba(127,127,127,0.04);
  border-color: var(--rm-border-soft);
}
.cl-checkbox {
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid var(--rm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: var(--rm-surface-light);
  transition: 0.2s ease;
}
.cl-content h4 {
  margin: 0 0 5px;
  font-size: 0.95rem;
  color: var(--rm-text);
  font-weight: 600;
  transition: 0.2s ease;
}
.cl-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rm-text-muted);
  line-height: 1.6;
}
.cl-content .tip {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--rm-blue);
  border-left: 2px solid var(--rm-blue);
  padding-left: 10px;
  display: none;
}
.cl-item[data-has-tip="1"] .cl-content .tip { display: block; }

.cl-item.active .cl-checkbox {
  background: var(--rm-green);
  border-color: var(--rm-green);
}
.cl-item.active .cl-checkbox::after {
  content: "✔";
  font-size: 12px;
  color: var(--rm-bg);
  font-weight: 900;
}
.cl-item.active h4 {
  text-decoration: line-through;
  color: var(--rm-text-muted);
}
.cl-item.active p {
  color: var(--rm-text-muted);
}

.focus-mode .cl-content p,
.focus-mode .cl-content .tip {
  display: none !important;
}
.focus-mode .cl-item {
  padding: 10px 15px;
}

.cl-category.collapsed .cl-items,
.cl-category.collapsed .cl-cat-progress {
  display: none;
}
.cl-category.collapsed {
  padding-bottom: 15px;
}

/* Interstitials */
.rm-interstitial {
  margin: 30px 0;
  padding: 20px;
  background: rgba(127,127,127,0.04);
  border-left: 3px solid var(--rm-border);
  border-radius: 4px;
}
.rm-interstitial p {
  font-size: 0.9rem;
  color: var(--rm-text-muted);
  line-height: 1.6;
  margin: 0;
}
.rm-interstitial strong { color: var(--rm-text); }

/* Markdown Export Zone */
.md-zone {
  margin-top: 40px;
  padding: 30px;
  background: var(--rm-surface);
  border-radius: 8px;
  border: 1px solid var(--rm-border);
}
.md-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.md-header h3 {
  margin: 0 0 5px;
  color: var(--rm-text);
  font-size: 1.1rem;
}
.md-header p {
  margin: 0;
  color: var(--rm-text-muted);
  font-size: 0.9rem;
}
.md-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.md-textarea {
  width: 100%;
  height: 250px;
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  border-radius: 6px;
  padding: 15px;
  color: var(--rm-text);
  font-family: var(--rm-font-mono);
  font-size: 0.85rem;
  resize: vertical;
  outline: none;
}
.md-textarea:focus {
  border-color: var(--rm-blue);
}

/* Buttons */
.btn-mini {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--rm-border);
  background: rgba(127,127,127,0.04);
  color: var(--rm-text);
  cursor: pointer;
  transition: 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-mini:hover {
  background: var(--rm-border-soft);
  border-color: var(--rm-text-muted);
}
.btn-mini.danger { border-color: rgba(248,81,73,0.3); color: var(--rm-red); }
.btn-mini.danger:hover { background: rgba(248,81,73,0.1); }
.btn-mini.ok { border-color: rgba(46,160,67,0.3); color: var(--rm-green); }
.btn-mini.ok:hover { background: rgba(46,160,67,0.1); }

/* Progress Sticky Bar */
.progress-sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(900px, calc(100% - 40px));
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 100;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.progress-sticky.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.sticky-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 150px;
}
.prog-text {
  font-size: 1.1rem;
  color: var(--rm-text);
  font-weight: 700;
  font-family: var(--rm-font-mono);
}
.sticky-mid {
  flex: 1;
  display: flex;
  align-items: center;
}
.prog-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--rm-border);
  border-radius: 3px;
  overflow: hidden;
}
.prog-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--rm-green);
  transition: width 0.3s ease;
}
.sticky-right {
  display: flex;
  gap: 10px;
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  color: var(--rm-text);
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 200;
  max-width: 350px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast small {
  display: block;
  color: var(--rm-text-muted);
  margin-top: 5px;
  font-size: 0.75rem;
}

/* Confetti hidden via CSS (replaced by Toast) */
#confettiCanvas { display: none; }

/* Final Path */
.rm-final-path {
  margin-top: 60px;
}
.rm-final-path .rm-card-xl {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.rm-kicker {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rm-text-muted);
  background: rgba(127,127,127,0.05);
  border: 1px solid var(--rm-border);
  font-family: var(--rm-font-mono);
  margin-bottom: 15px;
}
.rm-final-path h3 {
  font-size: 1.5rem;
  color: var(--rm-text);
  margin: 0 0 10px;
  font-weight: 700;
}
.rm-final-path p {
  color: var(--rm-text-muted);
  margin: 0 auto 30px;
  max-width: 600px;
  font-size: 0.95rem;
}

.rm-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.path-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  transition: 0.2s ease;
}
.path-item:hover {
  border-color: var(--rm-text-muted);
  background: var(--rm-surface-soft);
  transform: translateY(-2px);
}
.path-item.special-paypal {
  border-color: rgba(210,153,34,0.3);
  background: rgba(210,153,34,0.05);
}
.path-item.special-paypal:hover {
  border-color: var(--rm-yellow);
}
.path-item .path-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: var(--rm-font-mono);
}
.path-item strong {
  color: var(--rm-text);
  font-size: 1rem;
  margin-bottom: 4px;
}
.path-item span {
  color: var(--rm-text-muted);
  font-size: 0.8rem;
}

@media (max-width:768px){
  .cl-shortcuts-grid{grid-template-columns:1fr}
  .rm-path-grid{grid-template-columns:1fr 1fr}
  .sticky-left { display: none; }
}
@media (max-width:600px){
  .rm-path-grid{grid-template-columns:1fr}
}


/* ===== content/manifeste.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

.manifesto-page {
  background-color: var(--rm-bg);
  color: var(--rm-text);
  font-family: var(--rm-font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.manifesto-shell {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 20px 100px;
}

/* Hero Section */
.manifesto-hero {
  position: relative;
  border: 1px solid var(--rm-border);
  border-radius: 12px;
  background: var(--rm-surface);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  margin-bottom: 40px;
  overflow: hidden;
}
.manifesto-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rm-red), var(--rm-blue), transparent);
}

.hero-topline {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-pill {
  font-family: var(--rm-font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(127,127,127,0.05);
  border: 1px solid var(--rm-border);
  color: var(--rm-text-muted);
}

.manifesto-hero h1 {
  margin: 0 0 15px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--rm-text);
  line-height: 1;
}

.manifesto-subtitle {
  font-family: var(--rm-font-mono);
  font-size: 0.9rem;
  color: var(--rm-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-desc {
  color: var(--rm-text-muted);
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-soft {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  color: var(--rm-text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.2s;
}
.btn-soft:hover {
  background: var(--rm-surface-soft);
  border-color: var(--rm-text-muted);
  transform: translateY(-1px);
}

.hero-micro {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  color: var(--rm-text-muted);
  font-size: 0.75rem;
  font-family: var(--rm-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sections Grid */
.section-grid { display: grid; gap: 20px; }

.story-card {
  background: var(--rm-surface);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
  padding: 35px;
}
.story-card h2 {
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  color: var(--rm-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}
.h2-accent {
  width: 8px; height: 8px;
  background: var(--rm-red);
  border-radius: 2px;
}

.story-card p {
  margin-bottom: 15px;
  color: var(--rm-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.story-card strong { color: var(--rm-text); font-weight: 600; }

.callout, .warning {
  padding: 20px;
  border-radius: 6px;
  margin: 25px 0;
  font-size: 0.95rem;
  border-left: 4px solid;
}
.callout { background: rgba(46,160,67,0.05); border-color: var(--rm-green); color: var(--rm-green); }
.warning { background: rgba(248,81,73,0.05); border-color: var(--rm-red); color: var(--rm-red); }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin: 20px 0;
}
.mini-card {
  background: rgba(127,127,127,0.04);
  border: 1px solid var(--rm-border);
  padding: 20px;
  border-radius: 6px;
}
.mini-card h3 { color: var(--rm-text); font-size: 0.95rem; margin-bottom: 10px; font-weight: 600; }
.mini-card p { font-size: 0.85rem; color: var(--rm-text-muted); margin: 0; line-height: 1.6; }

.quote-box {
  padding: 40px 0;
  text-align: center;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rm-text);
  border-top: 1px solid var(--rm-border);
  border-bottom: 1px solid var(--rm-border);
  margin: 40px 0;
}
.quote-author {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  font-family: var(--rm-font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rm-text-muted);
  font-style: normal;
}

/* Principles */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.principle {
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  padding: 20px;
  border-radius: 6px;
}
.principle .k {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rm-text);
  font-weight: 700;
  margin-bottom: 10px;
}
.icon { font-size: 1.1rem; }
.principle p { font-size: 0.85rem; color: var(--rm-text-muted); margin: 0; }

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  margin: 25px 0;
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  border-radius: 8px;
}
.comp-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.comp-table th {
  text-align: left; padding: 15px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--rm-text-muted); border-bottom: 1px solid var(--rm-border);
}
.comp-table td {
  padding: 15px; border-bottom: 1px solid rgba(127,127,127,0.05);
  font-size: 0.9rem;
}
.row-us { background: rgba(248,81,73,0.03); }
.status-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px;
}
.dot-green { background: var(--rm-green); }
.dot-yellow { background: var(--rm-yellow); }
.dot-red { background: var(--rm-red); }

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 25px;
}
.link-card {
  display: flex; gap: 15px; padding: 20px; border-radius: 8px;
  background: var(--rm-surface-light); border: 1px solid var(--rm-border);
  transition: 0.2s;
}
.link-card:hover { border-color: var(--rm-text-muted); background: var(--rm-surface-soft); }
.link-card .emoji { font-size: 1.3rem; }
.link-card strong { display: block; color: var(--rm-text); margin-bottom: 5px; font-size: 0.95rem; }
.link-card span { font-size: 0.85rem; color: var(--rm-text-muted); }

/* FAQ */
details.faq {
  background: var(--rm-surface-light);
  border: 1px solid var(--rm-border);
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 15px 20px;
}
details.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--rm-text);
  display: flex; justify-content: space-between; align-items: center;
}
details.faq summary::after { content: "+"; color: var(--rm-text-muted); font-family: var(--rm-font-mono); }
details.faq[open] summary::after { content: "-"; }
details.faq p { margin-top: 15px; color: var(--rm-text-muted); font-size: 0.9rem; border-top: 1px solid var(--rm-border-soft); padding-top: 15px; }

/* Final CTA */
.final-cta {
  text-align: center; margin-top: 60px; padding: 50px 30px;
  background: var(--rm-surface); border: 1px solid var(--rm-border); border-radius: 12px;
}
.signature {
  text-align: right; margin-top: 25px; font-family: var(--rm-font-mono);
  font-size: 0.75rem; color: var(--rm-text-muted); text-transform: uppercase; letter-spacing: 1px;
}

@media(max-width: 768px) {
  .manifesto-hero { padding: 40px 20px; }
  .story-card { padding: 25px; }
  .hero-micro { flex-direction: column; gap: 10px; align-items: center; }
}


/* ===== content/comment-ca-marche.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

  .rmh-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: var(--rm-font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .rmh-page * { box-sizing: border-box; }
  .rmh-page a { color: var(--rm-text); text-decoration: none; transition: 0.2s; }
  .rmh-page a:hover { color: var(--rm-text); }
  
  .rmh-page code {
    font-family: var(--rm-font-mono);
    font-size: 0.85em;
    background: var(--rm-border-soft);
    border: 1px solid var(--rm-border);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    color: var(--rm-text);
  }

  /* Barre de progression lecture */
  .rmh-progress {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    height: 3px; background: transparent;
  }
  .rmh-progress > div {
    height: 100%; width: 0;
    background: var(--rm-red);
    box-shadow: 0 0 10px var(--rm-red);
  }

  .rmh-shell {
    max-width: var(--rm-wrap);
    margin: 0 auto;
    padding: 40px 20px 100px;
  }

  /* Hero Section Premium */
  .rmh-hero { margin-bottom: 50px; }
  .rmh-hero-card {
    position: relative;
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    background: var(--rm-surface);
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .rmh-kicker {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    border: 1px solid var(--rm-border);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--rm-bg);
  }

  .rmh-hero h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--rm-text);
    line-height: 1.1;
  }

  .rmh-hero p {
    margin: 0 auto;
    max-width: 700px;
    color: var(--rm-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .rmh-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }
  .rmh-pill {
    display: inline-flex;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    color: var(--rm-text);
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(127,127,127,0.05);
    border: 1px solid var(--rm-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .rmh-meta {
    margin-top: 30px;
    color: var(--rm-text-muted);
    font-size: 0.8rem;
    font-family: var(--rm-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Layout : Sidebar + Contenu */
  .rmh-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  /* Sidebar (TOC) */
  .rmh-aside {
    position: sticky;
    top: 40px;
    display: grid;
    gap: 20px;
  }

  .rmh-box {
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    background: var(--rm-surface);
    padding: 20px;
  }

  .rmh-toc-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--rm-border);
    padding-bottom: 10px;
  }
  .rmh-toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
  }
  .rmh-toc-sub {
    color: var(--rm-text-muted);
    font-size: 0.75rem;
    font-family: var(--rm-font-mono);
  }

  .rmh-search {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--rm-border);
    background: var(--rm-bg);
    color: var(--rm-text);
    outline: none;
    margin-bottom: 15px;
    font-family: var(--rm-font-sans);
    font-size: 0.9rem;
    transition: 0.2s;
  }
  .rmh-search:focus {
    border-color: var(--rm-red);
  }

  .rmh-toc ul {
    list-style: none; padding: 0; margin: 0; display: grid; gap: 4px;
  }
  .rmh-toc a {
    display: block;
    color: var(--rm-text-muted);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
  }
  .rmh-toc a:hover {
    color: var(--rm-text);
    background: rgba(127,127,127,0.05);
  }
  .rmh-toc a.active {
    color: var(--rm-text);
    background: var(--rm-border-soft);
    border-left-color: var(--rm-red);
    font-weight: 500;
  }

  /* Actions Sidebar */
  .rmh-tools h3 {
    margin: 0 0 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
  }
  .rmh-stack { display: grid; gap: 10px; }

  /* Boutons Pro */
  .rmh-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 6px; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: 0.2s; border: 1px solid transparent;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .rmh-btn:hover { transform: translateY(-1px); }
  .rmh-btn-primary {
    background: var(--rm-cta-bg, linear-gradient(to right, #FF2020, #cc1a1a)); color: #fff; border: 1px solid var(--rm-cta-border, #a01515);
  }
  .rmh-btn-primary:hover { background: var(--rm-cta-hover, #b81818); box-shadow: 0 4px 15px rgba(255,32,32,0.3); }
  
  .rmh-btn-secondary {
    background: var(--rm-surface-light); color: var(--rm-text); border-color: var(--rm-border);
  }
  .rmh-btn-secondary:hover { background: var(--rm-surface-soft); border-color: var(--rm-text-muted); }
  
  .rmh-btn-ghost {
    background: transparent; color: var(--rm-text-muted); border-color: var(--rm-border);
  }
  .rmh-btn-ghost:hover { color: var(--rm-text); background: var(--rm-border-soft); }

  /* Contenu Principal */
  .rmh-main { min-width: 0; }

  .rmh-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--rm-border);
    scroll-margin-top: 60px;
  }
  .rmh-section:last-of-type { border-bottom: none; }

  .rmh-badge {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .rmh-badge-blue { color: var(--rm-blue); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); }
  .rmh-badge-green { color: var(--rm-green); background: rgba(46, 160, 67, 0.1); border: 1px solid rgba(46, 160, 67, 0.3); }
  .rmh-badge-amber { color: var(--rm-yellow); background: rgba(210, 153, 34, 0.1); border: 1px solid rgba(210, 153, 34, 0.3); }
  .rmh-badge-red { color: var(--rm-red); background: rgba(248, 81, 73, 0.1); border: 1px solid rgba(248, 81, 73, 0.3); }

  .rmh-section h2 {
    margin: 0 0 20px;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--rm-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .rmh-mini-btn {
    background: transparent; color: var(--rm-text-muted); border: 1px solid var(--rm-border);
    padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-family: var(--rm-font-mono);
    cursor: pointer; transition: 0.2s;
  }
  .rmh-mini-btn:hover { color: var(--rm-text); border-color: var(--rm-text-muted); }

  .rmh-section-intro {
    font-size: 1.05rem; color: var(--rm-text); margin-bottom: 30px;
  }

  /* Grilles & Cartes */
  .rmh-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
  .rmh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

  .rmh-card {
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
  }
  .rmh-card h4 {
    margin: 0 0 10px; font-size: 1rem; font-weight: 600; color: var(--rm-text);
  }
  .rmh-card p {
    margin: 0; font-size: 0.9rem; color: var(--rm-text-muted); line-height: 1.6;
  }

  /* Callouts (Info/Warn/Tip) */
  .rmh-info, .rmh-tip, .rmh-warn {
    padding: 16px 20px; border-radius: 6px; margin: 30px 0; font-size: 0.95rem; border-left: 3px solid;
  }
  .rmh-info { background: rgba(59, 130, 246, 0.05); border-color: var(--rm-blue); color: var(--rm-blue); }
  .rmh-tip { background: rgba(46, 160, 67, 0.05); border-color: var(--rm-green); color: var(--rm-green); }
  .rmh-warn { background: rgba(248, 81, 73, 0.05); border-color: var(--rm-red); color: var(--rm-red); }
  .rmh-info strong, .rmh-tip strong, .rmh-warn strong { color: var(--rm-text); font-weight: 600; }

  /* Étapes (Steps) */
  .rmh-steps { display: grid; gap: 20px; margin-top: 30px; }
  .rmh-step {
    display: grid; grid-template-columns: 50px 1fr; gap: 20px; align-items: start;
    background: var(--rm-surface); border: 1px solid var(--rm-border);
    padding: 25px; border-radius: var(--rm-radius);
  }
  .rmh-step-num {
    width: 40px; height: 40px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--rm-font-mono); font-weight: 700; font-size: 0.9rem;
    color: var(--rm-green); background: rgba(46, 160, 67, 0.1); border: 1px solid rgba(46, 160, 67, 0.3);
  }
  .rmh-step h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 600; color: var(--rm-text); }
  .rmh-step p { margin: 0; font-size: 0.95rem; color: var(--rm-text-muted); line-height: 1.6; }

  /* Accordéon (FAQ) */
  .rmh-accordion { display: grid; gap: 12px; margin-top: 25px; }
  .rmh-acc-item {
    border: 1px solid var(--rm-border); border-radius: 6px; background: var(--rm-surface-light);
  }
  .rmh-acc-btn {
    width: 100%; border: none; background: transparent; color: var(--rm-text);
    cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; font-weight: 600; font-size: 0.95rem; font-family: inherit;
  }
  .rmh-acc-btn small {
    display: block; color: var(--rm-text-muted); font-weight: 400; margin-top: 4px; font-size: 0.8rem; font-family: var(--rm-font-mono);
  }
  .rmh-acc-icon { font-family: var(--rm-font-mono); color: var(--rm-text-muted); font-weight: bold; }
  .rmh-acc-panel {
    padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6;
  }

  /* CTA Bas de page */
  .rmh-cta {
    border: 1px solid var(--rm-border); border-radius: var(--rm-radius);
    padding: 40px; margin-top: 50px; background: var(--rm-surface);
    text-align: center;
  }
  .rmh-cta h3 { margin: 0 0 15px; font-size: 1.5rem; font-weight: 700; color: var(--rm-text); letter-spacing: -0.5px;}
  .rmh-cta p { margin: 0 auto 25px; color: var(--rm-text-muted); font-size: 1.05rem; max-width: 600px; }
  .rmh-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }

  .rmh-footer-note {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--rm-border);
    color: var(--rm-text-muted); font-size: 0.8rem; text-align: center; font-family: var(--rm-font-mono);
  }

  /* Mobile UI */
  .rmh-mobile-fab, .rmh-back-top {
    position: fixed; z-index: 90; padding: 12px 18px; border-radius: 6px;
    border: 1px solid var(--rm-border); background: var(--rm-surface);
    color: var(--rm-text); font-weight: 600; font-size: 0.85rem; font-family: var(--rm-font-mono);
    cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.5); text-transform: uppercase;
  }
  .rmh-mobile-fab { right: 20px; bottom: 20px; display: none; }
  .rmh-back-top {
    left: 20px; bottom: 20px; opacity: 0; pointer-events: none;
    transform: translateY(10px); transition: 0.2s;
  }
  .rmh-back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* Toast Notification */
  .rmh-toast {
    position: fixed; top: 20px; right: 20px; z-index: 100;
    background: var(--rm-surface-light); border: 1px solid var(--rm-border);
    color: var(--rm-text); border-radius: 6px; padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); font-size: 0.9rem; font-weight: 500;
    opacity: 0; pointer-events: none; transform: translateY(-10px); transition: 0.2s;
  }
  .rmh-toast.show { opacity: 1; transform: translateY(0); }
  .rmh-toast small { display: block; margin-top: 5px; color: var(--rm-text-muted); font-family: var(--rm-font-mono); font-size: 0.75rem; }

  /* Responsive */
  @media (max-width: 900px) {
    .rmh-layout { grid-template-columns: 1fr; }
    .rmh-aside { display: none; }
    .rmh-mobile-fab { display: inline-flex; }
    .rmh-grid-2, .rmh-grid-3 { grid-template-columns: 1fr; }
    .rmh-hero-card { padding: 40px 20px; }
  }
  @media (max-width: 600px) {
    .rmh-step { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
    .rmh-section h2 { flex-direction: column; align-items: flex-start; gap: 10px; }
  }


/* ===== content/privacy.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

.privacy-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: var(--rm-font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.privacy-shell {
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px 20px 100px;
}

/* Hero Section */
.privacy-hero {
    position: relative;
    border: 1px solid var(--rm-border);
    border-radius: 12px;
    background: var(--rm-surface);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 40px;
    overflow: hidden;
}
.privacy-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rm-blue), var(--rm-green), transparent);
}

.privacy-kicker {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    border: 1px solid var(--rm-border);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--rm-bg);
}

.privacy-hero h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--rm-text);
    line-height: 1;
}

.privacy-hero p {
    margin: 0 auto;
    max-width: 800px;
    color: var(--rm-text-muted);
    font-size: 1.1rem;
}

.privacy-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.privacy-pill {
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(127,127,127,0.05);
    border: 1px solid var(--rm-border);
    color: var(--rm-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Layout */
.privacy-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.privacy-aside {
    position: sticky;
    top: 40px;
    display: grid;
    gap: 20px;
}

.privacy-box {
    border: 1px solid var(--rm-border);
    background: var(--rm-surface);
    border-radius: 8px;
    padding: 20px;
}

.privacy-toc h3, .privacy-actions h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--rm-border);
    padding-bottom: 10px;
}

.privacy-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.privacy-toc a {
    display: block;
    color: var(--rm-text-muted);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: 0.2s;
}
.privacy-toc a:hover { color: var(--rm-text); background: rgba(127,127,127,0.05); }

.privacy-stack { display: grid; gap: 10px; }

.privacy-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 6px; font-weight: 600; font-size: 0.85rem;
    text-decoration: none; transition: 0.2s; border: 1px solid transparent;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.privacy-btn-primary { background: var(--rm-cta-bg, linear-gradient(to right, #FF2020, #cc1a1a)); color: #fff; border: 1px solid var(--rm-cta-border, #a01515); }
.privacy-btn-secondary { background: var(--rm-surface-light); color: var(--rm-text); border-color: var(--rm-border); }
.privacy-btn-paypal { background: var(--rm-yellow); color: var(--rm-bg); font-weight: 700; }

/* Main Content */
.privacy-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--rm-border);
    scroll-margin-top: 60px;
}
.privacy-section:last-of-type { border-bottom: none; }

.privacy-badge {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.privacy-badge-blue { color: var(--rm-blue); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); }
.privacy-badge-green { color: var(--rm-green); background: rgba(46, 160, 67, 0.1); border: 1px solid rgba(46, 160, 67, 0.3); }
.privacy-badge-amber { color: var(--rm-yellow); background: rgba(210, 153, 34, 0.1); border: 1px solid rgba(210, 153, 34, 0.3); }
.privacy-badge-red { color: var(--rm-red); background: rgba(248, 81, 73, 0.1); border: 1px solid rgba(248, 81, 73, 0.3); }

.privacy-section h2 { margin: 0 0 20px 0; font-size: 1.6rem; font-weight: 700; color: var(--rm-text); letter-spacing: -0.5px; }
.privacy-section p { color: var(--rm-text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.privacy-section strong { color: var(--rm-text); }

.privacy-table-wrap {
    overflow-x: auto;
    margin: 25px 0;
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    border-radius: 8px;
}
.privacy-table {
    width: 100%; border-collapse: collapse; min-width: 600px;
}
.privacy-table th {
    text-align: left; padding: 15px;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--rm-text-muted); border-bottom: 1px solid var(--rm-border);
}
.privacy-table td {
    padding: 15px; border-bottom: 1px solid rgba(127,127,127,0.05);
    font-size: 0.9rem; color: var(--rm-text);
}

.privacy-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; margin: 25px 0; }
.privacy-card {
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    padding: 20px;
    border-radius: 6px;
}
.privacy-card h4 { color: var(--rm-text); font-size: 0.95rem; margin-bottom: 10px; font-weight: 600; }
.privacy-card p { font-size: 0.85rem; color: var(--rm-text-muted); margin: 0; line-height: 1.6; }

.privacy-note, .privacy-warn, .privacy-info {
    padding: 20px; border-radius: 6px; margin: 25px 0; font-size: 0.95rem; border-left: 4px solid;
}
.privacy-note { background: rgba(59, 130, 246, 0.05); border-color: var(--rm-blue); color: var(--rm-blue); }
.privacy-warn { background: rgba(248, 81, 73, 0.05); border-color: var(--rm-red); color: var(--rm-red); }
.privacy-info { background: rgba(46, 160, 67, 0.05); border-color: var(--rm-green); color: var(--rm-green); }

/* FAQ */
.privacy-faq { display: grid; gap: 10px; margin-top: 25px; }
.privacy-faq-item { border: 1px solid var(--rm-border); border-radius: 6px; background: var(--rm-surface-light); }
.privacy-faq-btn {
    width: 100%; border: none; background: transparent; color: var(--rm-text);
    cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; font-weight: 600; font-size: 0.95rem; font-family: inherit;
}
.privacy-faq-panel { padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6; }

/* CTA */
.privacy-cta {
    border: 1px solid var(--rm-border); border-radius: 12px;
    padding: 40px; margin-top: 60px; background: var(--rm-surface);
    text-align: center;
}
.privacy-cta h3 { margin: 0 0 15px; font-size: 1.4rem; font-weight: 700; color: var(--rm-text); }
.privacy-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 25px; }

.privacy-footer-note {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--rm-border);
    color: var(--rm-text-muted); font-size: 0.75rem; text-align: center; font-family: var(--rm-font-mono); text-transform: uppercase;
}

@media (max-width: 900px) {
    .privacy-layout { grid-template-columns: 1fr; }
    .privacy-aside { display: none; }
}


/* ===== content/cgu.php ===== */

/* On réutilise les variables du site pour cohérence parfaite */
/* Variables definies dans assets/css/style.css — pas de redefinition ici */

.legal-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    padding-bottom: 100px;
}

.legal-shell {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Hero Section */
.legal-hero {
    position: relative;
    border: 1px solid var(--rm-border);
    border-radius: 12px;
    background: var(--rm-surface);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 50px;
    overflow: hidden;
}
.legal-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rm-yellow), var(--rm-red), transparent);
}

.legal-kicker {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    border: 1px solid var(--rm-border);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--rm-bg);
}

.legal-hero h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--rm-text);
}

.legal-hero p {
    margin: 0 auto;
    max-width: 700px;
    color: var(--rm-text-muted);
    font-size: 1.1rem;
}

/* Layout Grille (Sidebar + Contenu) */
.legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-aside { display: none; }
}

.legal-aside {
    position: sticky;
    top: 100px; /* Décale par rapport au header fixe */
    display: grid;
    gap: 20px;
}

.legal-box {
    border: 1px solid var(--rm-border);
    background: var(--rm-surface);
    border-radius: 8px;
    padding: 25px 20px;
}

.legal-toc h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
    font-family: var(--rm-font-mono);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--rm-border);
    padding-bottom: 10px;
    margin-top: 0;
}

.legal-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 5px; }
.legal-toc a {
    display: block;
    color: var(--rm-text-muted);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.2s;
}
.legal-toc a:hover { color: var(--rm-text); background: var(--rm-border-soft); }

/* Main Content */
.legal-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--rm-border);
    scroll-margin-top: 100px; /* Pour l’ancre depuis le menu */
}
.legal-section:first-of-type { padding-top: 0; }
.legal-section:last-of-type { border-bottom: none; }

.legal-badge {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.badge-red { color: var(--rm-red); background: rgba(248, 81, 73, 0.1); border: 1px solid rgba(248, 81, 73, 0.3); }
.badge-yellow { color: var(--rm-yellow); background: rgba(210, 153, 34, 0.1); border: 1px solid rgba(210, 153, 34, 0.3); }

.legal-section h2 { margin: 0 0 20px 0; font-size: 1.6rem; font-weight: 700; color: var(--rm-text); letter-spacing: -0.5px; }
.legal-section p { color: var(--rm-text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }
.legal-section strong { color: var(--rm-text); }
.legal-section ul { color: var(--rm-text-muted); line-height: 1.7; font-size: 1.05rem; margin-bottom: 20px; padding-left: 20px; }

.alert-box {
    padding: 20px; border-radius: 6px; margin: 25px 0; font-size: 0.95rem; border-left: 4px solid;
    background: rgba(248, 81, 73, 0.05); border-color: var(--rm-red); color: var(--rm-red);
}

/* Signature & Footer */
.legal-signature {
    margin-top: 60px;
    padding: 30px;
    background: var(--rm-surface-light);
    border: 1px dashed var(--rm-border);
    border-radius: 8px;
    text-align: center;
}
.legal-signature p { margin: 0; font-size: 0.9rem; color: var(--rm-text-muted); font-family: var(--rm-font-mono); }


/* ===== content/ia-responsable.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

.ia-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: var(--rm-font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.ia-shell {
    max-width: 1050px;
    margin: 0 auto;
    padding: 56px 20px 100px;
}

/* Hero Section */
.ia-hero {
    position: relative;
    border: 1px solid var(--rm-border);
    border-radius: 12px;
    background: var(--rm-surface);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    margin-bottom: 40px;
    overflow: hidden;
}
.ia-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rm-blue), var(--rm-red), transparent);
}

.ia-kicker {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    border: 1px solid var(--rm-border);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--rm-bg);
}

.ia-hero h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--rm-text);
    line-height: 1.1;
}

.ia-hero p {
    margin: 0 auto;
    max-width: 800px;
    color: var(--rm-text-muted);
    font-size: 1.1rem;
}

.ia-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.ia-pill {
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(127,127,127,0.05);
    border: 1px solid var(--rm-border);
    color: var(--rm-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Layout */
.ia-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.ia-aside {
    position: sticky;
    top: 40px;
    display: grid;
    gap: 20px;
}

.ia-box {
    border: 1px solid var(--rm-border);
    background: var(--rm-surface);
    border-radius: 8px;
    padding: 20px;
}

.ia-toc h3, .ia-actions h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--rm-border);
    padding-bottom: 10px;
}

.ia-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.ia-toc a {
    display: block;
    color: var(--rm-text-muted);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: 0.2s;
}
.ia-toc a:hover { color: var(--rm-text); background: rgba(127,127,127,0.05); }

.ia-stack { display: grid; gap: 10px; }

.ia-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 6px; font-weight: 600; font-size: 0.85rem;
    text-decoration: none; transition: 0.2s; border: 1px solid transparent;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.ia-btn-primary { background: var(--rm-cta-bg, linear-gradient(to right, #FF2020, #cc1a1a)); color: #fff; border: 1px solid var(--rm-cta-border, #a01515); }
.ia-btn-secondary { background: var(--rm-surface-light); color: var(--rm-text); border-color: var(--rm-border); }
.ia-btn-paypal { background: var(--rm-yellow); color: var(--rm-bg); font-weight: 700; }

/* Main Content */
.ia-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--rm-border);
    scroll-margin-top: 60px;
}
.ia-section:last-of-type { border-bottom: none; }

.ia-badge {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.ia-badge-blue { color: var(--rm-blue); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); }
.ia-badge-green { color: var(--rm-green); background: rgba(46, 160, 67, 0.1); border: 1px solid rgba(46, 160, 67, 0.3); }
.ia-badge-amber { color: var(--rm-yellow); background: rgba(210, 153, 34, 0.1); border: 1px solid rgba(210, 153, 34, 0.3); }
.ia-badge-red { color: var(--rm-red); background: rgba(248, 81, 73, 0.1); border: 1px solid rgba(248, 81, 73, 0.3); }

.ia-section h2 { margin: 0 0 20px 0; font-size: 1.6rem; font-weight: 700; color: var(--rm-text); letter-spacing: -0.5px; }
.ia-section p { color: var(--rm-text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.ia-section strong { color: var(--rm-text); }

.ia-list { padding-left: 20px; color: var(--rm-text-muted); margin-bottom: 20px; }
.ia-list li { margin-bottom: 10px; }

.ia-grid-3, .ia-grid-2 { display: grid; gap: 15px; margin: 25px 0; }
.ia-grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.ia-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.ia-card {
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    border-radius: 6px;
    padding: 20px;
}
.ia-card h4 { color: var(--rm-text); font-size: 0.95rem; margin-bottom: 10px; font-weight: 600; }
.ia-card p { font-size: 0.85rem; color: var(--rm-text-muted); margin: 0; line-height: 1.6; }

.ia-note, .ia-warn, .ia-eco {
    padding: 20px; border-radius: 6px; margin: 25px 0; font-size: 0.95rem; border-left: 4px solid;
}
.ia-note { background: rgba(59, 130, 246, 0.05); border-color: var(--rm-blue); color: var(--rm-blue); }
.ia-warn { background: rgba(248, 81, 73, 0.05); border-color: var(--rm-red); color: var(--rm-red); }
.ia-eco { background: rgba(46, 160, 67, 0.05); border-color: var(--rm-green); color: var(--rm-green); }

/* FAQ */
.ia-faq { display: grid; gap: 10px; margin-top: 25px; }
.ia-faq-item { border: 1px solid var(--rm-border); border-radius: 6px; background: var(--rm-surface-light); }
.ia-faq-btn {
    width: 100%; border: none; background: transparent; color: var(--rm-text);
    cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; font-weight: 600; font-size: 0.95rem; font-family: inherit;
}
.ia-faq-panel { padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6; }

/* CTA */
.ia-cta {
    border: 1px solid var(--rm-border); border-radius: 12px;
    padding: 40px; margin-top: 60px; background: var(--rm-surface);
    text-align: center;
}
.ia-cta h3 { margin: 0 0 15px; font-size: 1.4rem; font-weight: 700; color: var(--rm-text); }
.ia-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 25px; }

.ia-footer-note {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--rm-border);
    color: var(--rm-text-muted); font-size: 0.75rem; text-align: center; font-family: var(--rm-font-mono); text-transform: uppercase;
}

@media (max-width: 900px) {
    .ia-layout { grid-template-columns: 1fr; }
    .ia-aside { display: none; }
}


/* ===== content/changelog.php ===== */

/* ===== content/equipage.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

.equipage-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

.container-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

/* Hero */
.hero-box {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid var(--rm-border);
    border-radius: 12px;
    background: var(--rm-surface);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.hero-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rm-red), var(--rm-yellow));
}

.hero-box h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--rm-text);
    margin: 0 0 10px;
}

.hero-tag {
    font-family: var(--rm-font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--rm-red);
    letter-spacing: 2px;
    font-weight: 700;
}

/* Sections */
.content-section { margin-bottom: 60px; }
.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rm-text);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.h2-dot { width: 8px; height: 8px; background: var(--rm-red); border-radius: 2px; }

.text-block {
    font-size: 1.1rem;
    color: var(--rm-text-muted);
    line-height: 1.8;
}
.text-block strong { color: var(--rm-text); }

/* Grid Bâtisseur */
.batisseur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.batisseur-card {
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    padding: 25px;
    border-radius: 8px;
}
.batisseur-card .label {
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    color: var(--rm-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* FAQ */
.faq-grid { display: grid; gap: 12px; margin-top: 30px; }
.faq-item { border: 1px solid var(--rm-border); border-radius: 8px; background: var(--rm-surface); overflow: hidden; }
.faq-btn { 
    width: 100%; padding: 18px 25px; background: transparent; border: none; 
    color: var(--rm-text); text-align: left; font-weight: 700; cursor: pointer; 
    display: flex; justify-content: space-between; align-items: center;
}
.faq-content { padding: 0 25px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.7; border-top: 1px solid var(--rm-border-soft); padding-top: 15px; }

/* PayPal CTA */
.support-card {
    background: linear-gradient(135deg, var(--rm-surface), #000);
    border: 1px solid var(--rm-yellow);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
}
.btn-paypal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rm-yellow);
    color: var(--rm-bg);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s;
}
.btn-paypal:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(210, 153, 34, 0.2); }

.signature {
    margin-top: 50px;
    font-family: var(--rm-font-mono);
    font-size: 0.8rem;
    color: var(--rm-text-muted);
    text-align: right;
    text-transform: uppercase;
}


/* ===== content/exemples.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

  .rmx-page {
    background-color: var(--rm-bg);
    color: var(--rm-text);
    font-family: var(--rm-font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .rmx-page * { box-sizing: border-box; }
  .rmx-page a { color: var(--rm-text); text-decoration: none; transition: 0.2s; }
  .rmx-page a:hover { color: var(--rm-text); }
  
  .rmx-page code {
    font-family: var(--rm-font-mono);
    font-size: 0.85em;
    background: var(--rm-border-soft);
    border: 1px solid var(--rm-border);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    color: var(--rm-text);
  }

  /* Progress Bar */
  .rmx-progress {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    height: 3px; background: transparent;
  }
  .rmx-progress > div {
    height: 100%; width: 0;
    background: var(--rm-red);
    box-shadow: 0 0 10px var(--rm-red);
  }

  .rmx-shell {
    max-width: var(--rm-wrap);
    margin: 0 auto;
    padding: 40px 20px 100px;
  }

  /* Hero Section Premium */
  .rmx-hero { margin-bottom: 50px; }
  .rmx-hero-card {
    position: relative;
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    background: var(--rm-surface);
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .rmx-kicker {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text-muted);
    border: 1px solid var(--rm-border);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: var(--rm-bg);
  }

  .rmx-hero h1 {
    margin: 0 0 15px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--rm-text);
    line-height: 1.1;
  }

  .rmx-hero p {
    margin: 0 auto;
    max-width: 700px;
    color: var(--rm-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .rmx-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }
  .rmx-pill {
    display: inline-flex;
    font-family: var(--rm-font-mono);
    font-size: 0.75rem;
    color: var(--rm-text);
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(127,127,127,0.05);
    border: 1px solid var(--rm-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .rmx-meta {
    margin-top: 30px;
    color: var(--rm-text-muted);
    font-size: 0.8rem;
    font-family: var(--rm-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Layout : Sidebar + Contenu */
  .rmx-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  /* Sidebar (TOC) */
  .rmx-aside {
    position: sticky;
    top: 40px;
    display: grid;
    gap: 20px;
  }

  .rmx-box {
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    background: var(--rm-surface);
    padding: 20px;
  }

  .rmx-toc-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--rm-border);
    padding-bottom: 10px;
  }
  .rmx-toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
  }
  .rmx-toc-sub {
    color: var(--rm-text-muted);
    font-size: 0.75rem;
    font-family: var(--rm-font-mono);
  }

  .rmx-search {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--rm-border);
    background: var(--rm-bg);
    color: var(--rm-text);
    outline: none;
    margin-bottom: 15px;
    font-family: var(--rm-font-sans);
    font-size: 0.9rem;
    transition: 0.2s;
  }
  .rmx-search:focus {
    border-color: var(--rm-red);
  }

  .rmx-toc ul {
    list-style: none; padding: 0; margin: 0; display: grid; gap: 4px;
  }
  .rmx-toc a {
    display: block;
    color: var(--rm-text-muted);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
  }
  .rmx-toc a:hover {
    color: var(--rm-text);
    background: rgba(127,127,127,0.05);
  }
  .rmx-toc a.active {
    color: var(--rm-text);
    background: var(--rm-border-soft);
    border-left-color: var(--rm-red);
    font-weight: 500;
  }

  /* Actions Sidebar */
  .rmx-tools h3 {
    margin: 0 0 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rm-text);
  }
  .rmx-stack { display: grid; gap: 10px; }

  /* Boutons Pro */
  .rmx-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 18px; border-radius: 6px; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: 0.2s; border: 1px solid transparent;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .rmx-btn:hover { transform: translateY(-1px); }
  .rmx-btn-primary {
    background: var(--rm-cta-bg, linear-gradient(to right, #FF2020, #cc1a1a)); color: #fff; border: 1px solid var(--rm-cta-border, #a01515);
  }
  .rmx-btn-primary:hover { background: var(--rm-cta-hover, #b81818); box-shadow: 0 4px 15px rgba(255,32,32,0.3); }
  
  .rmx-btn-secondary {
    background: var(--rm-surface-light); color: var(--rm-text); border-color: var(--rm-border);
  }
  .rmx-btn-secondary:hover { background: var(--rm-surface-soft); border-color: var(--rm-text-muted); }
  
  .rmx-btn-ghost {
    background: transparent; color: var(--rm-text-muted); border-color: var(--rm-border);
  }
  .rmx-btn-ghost:hover { color: var(--rm-text); background: var(--rm-border-soft); }

  /* Contenu Principal */
  .rmx-main { min-width: 0; }

  .rmx-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--rm-border);
    scroll-margin-top: 60px;
  }
  .rmx-section:last-of-type { border-bottom: none; }

  .rmx-badge {
    display: inline-block;
    font-family: var(--rm-font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .rmx-badge-blue { color: var(--rm-blue); background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); }
  .rmx-badge-green { color: var(--rm-green); background: rgba(46, 160, 67, 0.1); border: 1px solid rgba(46, 160, 67, 0.3); }
  .rmx-badge-amber { color: var(--rm-yellow); background: rgba(210, 153, 34, 0.1); border: 1px solid rgba(210, 153, 34, 0.3); }
  .rmx-badge-red { color: var(--rm-red); background: rgba(248, 81, 73, 0.1); border: 1px solid rgba(248, 81, 73, 0.3); }

  .rmx-section h2 {
    margin: 0 0 20px;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--rm-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .rmx-mini-btn {
    background: transparent; color: var(--rm-text-muted); border: 1px solid var(--rm-border);
    padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-family: var(--rm-font-mono);
    cursor: pointer; transition: 0.2s;
  }
  .rmx-mini-btn:hover { color: var(--rm-text); border-color: var(--rm-text-muted); }

  .rmx-section-intro {
    font-size: 1.05rem; color: var(--rm-text); margin-bottom: 30px;
  }

  /* Grilles & Cartes */
  .rmx-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
  .rmx-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
  .rmx-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }

  .rmx-card {
    background: var(--rm-surface-light);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
  }
  .rmx-card h4 {
    margin: 0 0 10px; font-size: 1rem; font-weight: 600; color: var(--rm-text);
  }
  .rmx-card p {
    margin: 0; font-size: 0.9rem; color: var(--rm-text-muted); line-height: 1.6;
  }

  /* Score Dashboard Mockup */
  .rmx-score-shell {
    display: grid; grid-template-columns: 290px minmax(0,1fr); gap: 20px; margin-top: 20px;
  }
  .rmx-score-card {
    border: 1px solid var(--rm-border); background: var(--rm-surface-light); border-radius: var(--rm-radius); padding: 25px;
  }
  .rmx-score-ring {
    width: 140px; height: 140px; margin: 20px auto; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 6px solid var(--rm-green); box-shadow: 0 0 30px rgba(46,160,67,0.15);
  }
  .rmx-score-ring span { font-size: 3rem; font-weight: 800; color: var(--rm-text); font-family: var(--rm-font-mono); letter-spacing: -1px;}
  .rmx-score-meta { text-align: center; color: var(--rm-text-muted); font-size: 0.9rem; line-height: 1.5; }

  .rmx-metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; }
  .rmx-metric { border: 1px solid var(--rm-border); background: var(--rm-surface); border-radius: 6px; padding: 15px; }
  .rmx-metric .label { font-size: 0.75rem; text-transform: uppercase; color: var(--rm-text-muted); letter-spacing: 1px; font-weight: 600;}
  .rmx-metric .value { margin-top: 8px; font-size: 1.1rem; font-weight: 700; color: var(--rm-text); }
  .rmx-metric .note { margin-top: 4px; font-size: 0.8rem; color: var(--rm-text-muted); }

  /* Plan d’action Status */
  .rmx-status-row { display: grid; gap: 15px; margin-top: 20px;}
  .rmx-status-card { display: grid; grid-template-columns: 100px minmax(0,1fr); gap: 20px; align-items: center; border-radius: 8px; padding: 20px; border: 1px solid var(--rm-border); background: var(--rm-surface-light); }
  .rmx-status-mark { padding: 8px 12px; text-align: center; font-weight: 700; font-size: 0.85rem; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px;}
  .rmx-status-mark.red { background: rgba(248,81,73,0.1); color: var(--rm-red); border: 1px solid var(--rm-red); }
  .rmx-status-mark.amber { background: rgba(210,153,34,0.1); color: var(--rm-yellow); border: 1px solid var(--rm-yellow); }
  .rmx-status-mark.green { background: rgba(46,160,67,0.1); color: var(--rm-green); border: 1px solid var(--rm-green); }

  .rmx-status-card h4 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 600; color: var(--rm-text);}
  .rmx-status-card p { margin: 0; font-size: 0.95rem; color: var(--rm-text-muted); }

  /* Piliers Checklists */
  .rmx-pillar { border: 1px solid var(--rm-border); background: var(--rm-surface-light); border-radius: 8px; padding: 25px; }
  .rmx-pillar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid var(--rm-border-soft); padding-bottom: 10px; }
  .rmx-pillar-head h4 { margin: 0; font-size: 1rem; color: var(--rm-text); }
  .rmx-pillar-score { font-weight: 800; font-size: 1.1rem; font-family: var(--rm-font-mono);}
  .rmx-pillar-score.good { color: var(--rm-green); }
  .rmx-pillar-score.mid { color: var(--rm-yellow); }
  .rmx-pillar-score.bad { color: var(--rm-red); }

  .rmx-checklist { display: grid; gap: 10px; }
  .rmx-check { display: flex; gap: 10px; align-items: flex-start; color: var(--rm-text-muted); font-size: 0.9rem; line-height: 1.5; }
  .rmx-check .ok { color: var(--rm-green); font-weight: 900; }
  .rmx-check .ko { color: var(--rm-red); font-weight: 900; }
  .rmx-check .mid { color: var(--rm-yellow); font-weight: 900; }

  /* Callouts (Info/Warn/Tip) */
  .rmx-info, .rmx-tip, .rmx-warn { padding: 16px 20px; border-radius: 6px; margin: 30px 0; font-size: 0.95rem; border-left: 3px solid; }
  .rmx-info { background: rgba(59, 130, 246, 0.05); border-color: var(--rm-blue); color: var(--rm-blue); }
  .rmx-tip { background: rgba(46, 160, 67, 0.05); border-color: var(--rm-green); color: var(--rm-green); }
  .rmx-warn { background: rgba(248, 81, 73, 0.05); border-color: var(--rm-red); color: var(--rm-red); }
  .rmx-info strong, .rmx-tip strong, .rmx-warn strong { color: var(--rm-text); font-weight: 600; }

  /* Accordéon (FAQ) */
  .rmx-accordion { display: grid; gap: 12px; margin-top: 25px; }
  .rmx-acc-item { border: 1px solid var(--rm-border); border-radius: 6px; background: var(--rm-surface-light); }
  .rmx-acc-btn { width: 100%; border: none; background: transparent; color: var(--rm-text); cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; font-weight: 600; font-size: 0.95rem; font-family: inherit; }
  .rmx-acc-btn small { display: block; color: var(--rm-text-muted); font-weight: 400; margin-top: 4px; font-size: 0.8rem; font-family: var(--rm-font-mono); }
  .rmx-acc-icon { font-family: var(--rm-font-mono); color: var(--rm-text-muted); font-weight: bold; }
  .rmx-acc-panel { padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6; }

  /* CTA Bas de page */
  .rmx-cta { border: 1px solid var(--rm-border); border-radius: var(--rm-radius); padding: 40px; margin-top: 50px; background: var(--rm-surface); text-align: center; }
  .rmx-cta h3 { margin: 0 0 15px; font-size: 1.5rem; font-weight: 700; color: var(--rm-text); letter-spacing: -0.5px;}
  .rmx-cta p { margin: 0 auto 25px; color: var(--rm-text-muted); font-size: 1.05rem; max-width: 600px; }
  .rmx-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }

  .rmx-footer-note { margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--rm-border); color: var(--rm-text-muted); font-size: 0.8rem; text-align: center; font-family: var(--rm-font-mono); }

  /* Mobile UI */
  .rmx-mobile-fab, .rmx-back-top { position: fixed; z-index: 90; padding: 12px 18px; border-radius: 6px; border: 1px solid var(--rm-border); background: var(--rm-surface); color: var(--rm-text); font-weight: 600; font-size: 0.85rem; font-family: var(--rm-font-mono); cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.5); text-transform: uppercase; }
  .rmx-mobile-fab { right: 20px; bottom: 20px; display: none; }
  .rmx-back-top { left: 20px; bottom: 20px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: 0.2s; }
  .rmx-back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* Toast Notification */
  .rmx-toast { position: fixed; top: 20px; right: 20px; z-index: 100; background: var(--rm-surface-light); border: 1px solid var(--rm-border); color: var(--rm-text); border-radius: 6px; padding: 15px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); font-size: 0.9rem; font-weight: 500; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: 0.2s; }
  .rmx-toast.show { opacity: 1; transform: translateY(0); }
  .rmx-toast small { display: block; margin-top: 5px; color: var(--rm-text-muted); font-family: var(--rm-font-mono); font-size: 0.75rem; }

  /* Responsive */
  @media (max-width: 900px) {
    .rmx-layout { grid-template-columns: 1fr; }
    .rmx-aside { display: none; }
    .rmx-mobile-fab { display: inline-flex; }
    .rmx-score-shell { grid-template-columns: 1fr; }
    .rmx-grid-2, .rmx-grid-3, .rmx-grid-4 { grid-template-columns: 1fr; }
    .rmx-hero-card { padding: 40px 20px; }
  }
  @media (max-width: 600px) {
    .rmx-status-card { grid-template-columns: 1fr; gap: 10px; }
    .rmx-section h2 { flex-direction: column; align-items: flex-start; gap: 10px; }
  }


/* ===== content/hall-of-fame.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

    body {
        background-color: var(--rm-bg);
        color: var(--rm-text);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

    .hof-page {
        padding-bottom: 100px;
    }

    /* HERO */
    .hof-hero {
        text-align: center;
        padding: 80px 20px 60px;
        background: radial-gradient(circle at center, rgba(210, 153, 34, 0.05), transparent 60%);
        border-bottom: 1px solid var(--rm-border);
    }

    .hof-badge {
        display: inline-block;
        font-family: var(--rm-font-mono);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 4px 12px;
        border-radius: 4px;
        background: rgba(127,127,127,0.05);
        border: 1px solid var(--rm-border);
        color: var(--rm-text-muted);
        margin-bottom: 20px;
    }

    .hof-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
        letter-spacing: -1.5px;
        color: var(--rm-text);
        margin: 0 0 15px;
    }

    .hof-hero p {
        color: var(--rm-text-muted);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .stats-row {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-badge {
        font-family: var(--rm-font-mono);
        font-size: 0.8rem;
        padding: 8px 16px;
        background: var(--rm-surface);
        border: 1px solid var(--rm-border);
        border-radius: 6px;
        color: var(--rm-text);
    }

    .stat-badge b { color: var(--rm-yellow); font-size: 0.95rem; }

    /* CONTENT WRAPPER */
    .hof-container {
        max-width: 1000px;
        margin: -30px auto 0;
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }

    /* TOOLBAR */
    .hof-toolbar {
        background: var(--rm-surface);
        border: 1px solid var(--rm-border);
        border-radius: 8px;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.6);
        margin-bottom: 50px;
        align-items: center;
    }

    .search-box {
        flex: 1;
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        border-radius: 6px;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 250px;
    }

    .search-box input {
        background: transparent;
        border: none;
        color: var(--rm-text);
        outline: none;
        width: 100%;
        font-size: 0.95rem;
        font-family: inherit;
    }

    .btn-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: 0.2s;
        border: 1px solid transparent;
        cursor: pointer;
    }
    .btn-primary { background: var(--rm-cta-bg, linear-gradient(to right, #FF2020, #cc1a1a)); color: #fff; border: 1px solid var(--rm-cta-border, #a01515); }
    .btn-primary:hover { background: var(--rm-cta-hover, #b81818); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,32,32,0.3); }

    .btn-paypal { background: rgba(210, 153, 34, 0.1); color: var(--rm-yellow); border-color: rgba(210, 153, 34, 0.3); }
    .btn-paypal:hover { background: rgba(210, 153, 34, 0.2); border-color: var(--rm-yellow); transform: translateY(-2px); }

    /* PODIUM (TOP 3) */
    .podium-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 20px;
        margin-bottom: 50px;
        align-items: flex-end;
    }

    .podium-card {
        background: var(--rm-surface-light);
        border: 1px solid var(--rm-border);
        border-radius: 8px;
        padding: 30px 20px;
        text-align: center;
        position: relative;
        transition: 0.2s;
    }
    .podium-card:hover { border-color: var(--rm-text-muted); transform: translateY(-4px); }

    .podium-card.first { border-color: var(--rm-yellow); order: 2; padding: 45px 20px; background: var(--rm-surface); box-shadow: 0 10px 30px rgba(210, 153, 34, 0.1); }
    .podium-card.second { order: 1; border-top: 3px solid var(--rm-silver); }
    .podium-card.third { order: 3; border-top: 3px solid var(--rm-bronze); }

    .rank-tag {
        font-family: var(--rm-font-mono);
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 15px;
        display: block;
        letter-spacing: 1px;
    }
    .first .rank-tag { color: var(--rm-yellow); font-size: 0.85rem; }
    .second .rank-tag { color: var(--rm-silver); }
    .third .rank-tag { color: var(--rm-bronze); }

    .podium-card strong {
        display: block;
        color: var(--rm-text);
        font-size: 1.15rem;
        margin-bottom: 15px;
        word-break: break-all;
    }

    .score-circle {
        width: 70px; height: 70px;
        border-radius: 50%;
        margin: 0 auto;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; font-family: var(--rm-font-mono);
        border: 3px solid var(--rm-border);
        background: var(--rm-surface-light);
        font-size: 1.2rem;
    }
    .first .score-circle { border-color: var(--rm-yellow); color: var(--rm-yellow); font-size: 1.5rem; width: 80px; height: 80px; }
    .second .score-circle { border-color: var(--rm-silver); color: var(--rm-silver); }
    .third .score-circle { border-color: var(--rm-bronze); color: var(--rm-bronze); }

    /* LEADERBOARD LIST */
    .leaderboard-list { display: grid; gap: 12px; }

    .rank-row {
        display: flex;
        align-items: center;
        background: var(--rm-surface);
        border: 1px solid var(--rm-border);
        border-radius: 6px;
        padding: 15px 20px;
        transition: 0.2s;
    }
    .rank-row:hover { border-color: var(--rm-text-muted); background: var(--rm-surface-light); }

    .rank-num {
        font-family: var(--rm-font-mono);
        font-size: 1rem;
        font-weight: 700;
        color: var(--rm-text-muted);
        min-width: 50px;
    }

    .rank-info { flex: 1; min-width: 0; }
    .rank-info a { color: var(--rm-text); font-weight: 600; font-size: 1.05rem; text-decoration: none; }
    .rank-info a:hover { color: var(--rm-blue); }
    
    .rank-date { 
        display: block; 
        font-size: 0.75rem; 
        color: var(--rm-text-muted); 
        margin-top: 5px; 
        font-family: var(--rm-font-mono); 
        text-transform: uppercase;
    }

    .rank-score {
        font-family: var(--rm-font-mono);
        font-weight: 800;
        font-size: 1.2rem;
        color: var(--rm-green);
        background: var(--rm-surface-light);
        padding: 6px 14px;
        border-radius: 4px;
        border: 1px solid var(--rm-border);
    }

    .empty-state {
        text-align: center;
        padding: 80px 20px;
        border: 1px dashed var(--rm-border);
        border-radius: 8px;
        color: var(--rm-text-muted);
        background: var(--rm-surface);
    }

    /* FAQ SECTION */
    .faq-section {
        margin-top: 80px;
        border-top: 1px solid var(--rm-border);
        padding-top: 50px;
    }
    .faq-section h2 {
        font-size: 1.8rem;
        color: var(--rm-text);
        margin-bottom: 30px;
        text-align: center;
        letter-spacing: -0.5px;
    }
    .faq-grid { display: grid; gap: 12px; max-width: 800px; margin: 0 auto; }
    .faq-item { border: 1px solid var(--rm-border); border-radius: 6px; background: var(--rm-surface); overflow: hidden; }
    .faq-btn { width: 100%; padding: 18px 20px; background: transparent; border: none; color: var(--rm-text); text-align: left; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; font-size: 1rem; }
    .faq-btn:hover { background: rgba(127,127,127,0.04); }
    .faq-content { padding: 0 20px 20px; color: var(--rm-text-muted); font-size: 0.95rem; line-height: 1.6; }

    @media (max-width: 768px) {
        .podium-grid { grid-template-columns: 1fr; align-items: stretch; }
        .podium-card.first { order: 1; transform: none; padding: 30px 20px; }
        .podium-card.second { order: 2; }
        .podium-card.third { order: 3; }
        .hof-toolbar { flex-direction: column; align-items: stretch; }
        .btn-action { width: 100%; }
        .search-box { width: 100%; }
    }


/* ===== content/404.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

    /* Reset pour forcer le plein écran sans décalage */
    #dashboard-404-wrapper {
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--rm-bg);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        padding: 20px;
    }

    .error-container {
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    /* --- Glitch Effect 2026 --- */
    .glitch-text {
        font-size: clamp(6rem, 20vw, 12rem);
        font-weight: 900;
        line-height: 0.8;
        color: var(--rm-text);
        position: relative;
        margin: 0;
        letter-spacing: -8px;
        text-shadow: 2px 2px 0px var(--rm-red);
        animation: glitch 4s infinite;
    }

    @keyframes glitch {
        0% { transform: translate(0); text-shadow: 2px 2px 0px var(--rm-red); }
        2% { transform: translate(-3px, 2px); text-shadow: -2px -2px 0px var(--rm-green); }
        4% { transform: translate(3px, -2px); text-shadow: 2px 2px 0px var(--rm-red); }
        6% { transform: translate(0); }
        100% { transform: translate(0); }
    }

    .error-subtitle {
        font-family: var(--rm-font-mono);
        font-size: 0.85rem;
        color: var(--rm-text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin: 30px 0 40px;
    }

    /* --- Terminal UI --- */
    .fake-terminal {
        background: var(--rm-surface);
        border: 1px solid var(--rm-border);
        border-radius: 12px;
        padding: 30px;
        text-align: left;
        font-family: var(--rm-font-mono);
        font-size: 0.85rem;
        color: var(--rm-text);
        margin-bottom: 40px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        position: relative;
    }

    .cmd { color: var(--rm-green); }
    .err { color: var(--rm-red); font-weight: bold; }

    .term-line { opacity: 0; animation: typeLine 0.1s forwards; margin-bottom: 8px; }
    .delay-1 { animation-delay: 0.4s; }
    .delay-2 { animation-delay: 1.0s; }
    .delay-3 { animation-delay: 1.6s; }

    @keyframes typeLine { to { opacity: 1; } }

    .verdict {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--rm-border-soft);
        color: var(--rm-text);
        font-style: italic;
        opacity: 0;
        animation: typeLine 0.5s forwards;
        animation-delay: 2.2s;
        line-height: 1.5;
    }

    /* --- Actions --- */
    .btn-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-main, .btn-secondary, .btn-paypal {
        padding: 14px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-main { background: var(--rm-cta-bg, linear-gradient(to right, #FF2020, #cc1a1a)); color: #fff; border: 1px solid var(--rm-cta-border, #a01515); }
    .btn-main:hover { background: var(--rm-cta-hover, #b81818); transform: translateY(-2px); }

    .btn-secondary { background: var(--rm-surface-light); color: var(--rm-text); border: 1px solid var(--rm-border); }
    .btn-secondary:hover { border-color: var(--rm-text-muted); background: var(--rm-surface-soft); }

    .btn-paypal { background: var(--rm-yellow); color: var(--rm-bg); }
    .btn-paypal:hover { background: #b5821c; transform: translateY(-2px); }

    .protocol-footer {
        margin-top: 50px;
        font-family: var(--rm-font-mono);
        font-size: 0.65rem;
        color: var(--rm-text-muted);
        text-transform: uppercase;
        letter-spacing: 2px;
    }


/* ===== content/500.php ===== */

/* Variables definies dans assets/css/style.css — pas de redefinition ici */

    /* Reset pour ignorer les sidebars et colonnes du site */
    #dashboard-500-wrapper {
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--rm-bg);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        padding: 20px;
    }

    .error-container {
        text-align: center;
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    /* --- Glitch Effect 500 --- */
    .glitch-text {
        font-size: clamp(6rem, 20vw, 12rem);
        font-weight: 900;
        line-height: 0.8;
        color: var(--rm-text);
        position: relative;
        margin: 0;
        letter-spacing: -8px;
        text-shadow: 3px 3px 0px var(--rm-orange);
        animation: glitch 3s infinite;
    }

    @keyframes glitch {
        0% { transform: translate(0); text-shadow: 2px 2px 0px var(--rm-orange); }
        20% { transform: translate(-3px, 2px); text-shadow: -2px -2px 0px var(--rm-red); }
        40% { transform: translate(3px, -2px); text-shadow: 2px 2px 0px var(--rm-orange); }
        60% { transform: translate(0); }
        100% { transform: translate(0); }
    }

    .error-subtitle {
        font-family: var(--rm-font-mono);
        font-size: 0.85rem;
        color: var(--rm-orange);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin: 30px 0 40px;
    }

    /* --- Terminal UI B2B --- */
    .fake-terminal {
        background: var(--rm-surface);
        border: 1px solid var(--rm-orange);
        border-radius: 12px;
        padding: 30px;
        text-align: left;
        font-family: var(--rm-font-mono);
        font-size: 0.85rem;
        color: var(--rm-text);
        margin-bottom: 40px;
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    }

    .cmd { color: var(--rm-green); }
    .warn { color: var(--rm-yellow); }
    .crit { color: var(--rm-red); font-weight: bold; }

    .term-line { opacity: 0; animation: typeLine 0.1s forwards; margin-bottom: 8px; }
    .delay-1 { animation-delay: 0.5s; }
    .delay-2 { animation-delay: 1.2s; }
    .delay-3 { animation-delay: 1.8s; }

    @keyframes typeLine { to { opacity: 1; } }

    .verdict {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed var(--rm-border);
        color: var(--rm-text);
        font-style: italic;
        opacity: 0;
        animation: typeLine 0.5s forwards;
        animation-delay: 2.5s;
        line-height: 1.5;
    }

    /* --- Actions --- */
    .btn-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-main, .btn-paypal {
        padding: 14px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-main { background: var(--rm-orange); color: white; border: none; cursor: pointer; }
    .btn-main:hover { background: #e05a2b; transform: translateY(-2px); }

    .btn-paypal { background: var(--rm-yellow); color: var(--rm-bg); }
    .btn-paypal:hover { background: #b5821c; transform: translateY(-2px); }

    .protocol-footer {
        margin-top: 50px;
        font-family: var(--rm-font-mono);
        font-size: 0.65rem;
        color: var(--rm-text-muted);
        text-transform: uppercase;
        letter-spacing: 2px;
    }


/* ===== content/tools/tools-llms.php ===== */
