/* ============================================================
   TUTORIALSGREY — main.css
   Palette : Gris ardoise #2D3748 · Vert électrique #38B2AC
             Vert CTA #2DB87A · Fond #F7FAFC · Texte #1A202C
   Polices  : Poppins (titres) · Inter (corps)
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --c-primary:   #2D3748;
    --c-accent:    #38B2AC;
    --c-cta:       #2DB87A;
    --c-cta-hover: #28a86e;
    --c-bg:        #F7FAFC;
    --c-text:      #1A202C;
    --c-muted:     #718096;
    --c-border:    #E2E8F0;
    --c-white:     #FFFFFF;
    --r-sm:        6px;
    --r-md:        8px;
    --r-lg:        12px;
    --r-xl:        16px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 12px rgba(0,0,0,0.10);
    --font-title:  'Poppins', sans-serif;
    --font-body:   'Inter', sans-serif;
    --nav-h:       64px;
    --max-w:       1080px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

ul, ol { padding-left:40px; margin-bottom:20px }

/* ---- UTILITAIRES ------------------------------------------ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light { background: var(--c-white); }

.section {
    padding: 64px 0;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: var(--c-muted);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 36px;
}

/* ---- NAVBAR ----------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    height: var(--nav-h);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--c-primary);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon-sm { width: 28px; height: 28px; }

.logo-text     { display: flex; flex-direction: column; }
.logo-name     { font-family: var(--font-title); font-size: 15px; font-weight: 700; color: var(--c-primary); line-height: 1.2; }
.logo-tag      { font-size: 10px; color: var(--c-accent); letter-spacing: 0.08em; }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex: 1;
}

.nav-link {
    font-size: 14px;
    color: var(--c-muted);
    transition: color 0.15s;
    font-weight: 500;
}

.nav-link:hover { color: var(--c-primary); }

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn-outline-nav {
    padding: 7px 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    font-size: 13px;
    color: var(--c-primary);
    font-weight: 500;
    transition: background 0.15s;
}

.btn-outline-nav:hover { background: var(--c-bg); }

.btn-cta-nav {
    padding: 8px 18px;
    background: var(--c-cta);
    color: var(--c-white);
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
}

.btn-cta-nav:hover { background: var(--c-cta-hover); }

/* Burger (masqué desktop) */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-primary);
    border-radius: 2px;
    transition: transform 0.2s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    padding: 12px 24px 20px;
}

.nav-mobile-link {
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 15px;
    color: var(--c-text);
    font-weight: 500;
}

.nav-mobile.open { display: flex; }

/* ---- FLASH MESSAGE ---------------------------------------- */
.flash {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.flash-success { background: #C6F6D5; color: #276749; }
.flash-error   { background: #FED7D7; color: #9B2C2C; }

/* ---- HERO ------------------------------------------------- */
.hero {
    background: var(--c-primary);
    padding: 72px 24px 64px;
    text-align: center;
}

.hero-inner { max-width: 640px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 178, 172, 0.15);
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 20px;
    padding: 5px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 500;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-cta);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #F7FAFC;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-title em {
    color: var(--c-accent);
    font-style: normal;
}

.hero-sub {
    font-size: 16px;
    color: #A0AEC0;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    display: inline-block;
    background: var(--c-cta);
    color: var(--c-white);
    padding: 13px 28px;
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-title);
    transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover  { background: var(--c-cta-hover); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #F7FAFC;
    padding: 13px 28px;
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(247,250,252,0.25);
    transition: background 0.15s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* ---- RÉASSURANCE ------------------------------------------ */
.reassurance {
    display: flex;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-white);
}

.rea-item {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rea-item:last-child { border-right: none; }

.rea-num {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--c-primary);
}

.rea-label {
    font-size: 12px;
    color: var(--c-muted);
}

/* ---- PILIERS ---------------------------------------------- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pillar-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pillar-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: #E1F5EE;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.pillar-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.pillar-link {
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 500;
    transition: color 0.15s;
}

.pillar-link:hover { color: var(--c-primary); }

/* ---- PACKAGES --------------------------------------------- */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.pack-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    position: relative;
    transition: box-shadow 0.15s;
}

.pack-card:hover { box-shadow: var(--shadow-md); }

.pack-featured {
    border: 2px solid var(--c-accent);
    padding-top: 36px;
}

.pack-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: #085041;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: var(--font-title);
}

.pack-header    { margin-bottom: 16px; }
.pack-name      { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--c-primary); margin-bottom: 4px; }
.pack-desc      { font-size: 13px; color: var(--c-muted); margin-bottom: 12px; }

.pack-price {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 700;
    color: var(--c-primary);
}

.pack-price-featured { color: var(--c-accent); }
.pack-currency        { font-size: 14px; font-weight: 400; color: var(--c-muted); }

.pack-features {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid var(--c-border);
    padding-top: 14px;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
}

.pack-features li:last-child { border-bottom: none; }

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E1F5EE;
    color: #0F6E56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.check-featured { background: #C6F6D5; }

.btn-pack-primary,
.btn-pack-outline {
    display: block;
    width: 100%;
    padding: 11px;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-title);
    text-align: center;
    transition: all 0.15s;
}

.btn-pack-primary {
    background: var(--c-cta);
    color: var(--c-white);
    border: none;
}

.btn-pack-primary:hover { background: var(--c-cta-hover); }

.btn-pack-outline {
    background: transparent;
    color: var(--c-primary);
    border: 1px solid var(--c-border);
}

.btn-pack-outline:hover { border-color: var(--c-accent); color: var(--c-accent); }

.packs-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--c-muted);
}

.packs-note a { color: var(--c-accent); font-weight: 500; }
.packs-note a:hover { text-decoration: underline; }

/* ---- TUTORIELS -------------------------------------------- */
.tutos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tuto-card {
    display: block;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.15s;
}

.tuto-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tuto-bar   { height: 4px; }
.tuto-body  { padding: 16px; }

.tuto-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-family: var(--font-title);
}

.tuto-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: var(--font-title);
}

.tuto-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tuto-level {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--c-border);
    color: var(--c-muted);
}

.tuto-access      { font-size: 12px; font-weight: 600; }
.access-free      { color: var(--c-cta); }
.access-premium   { color: #854F0B; }

/* ---- BLOG ------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.article-card {
    display: block;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 20px;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.article-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: #A0AEC0;
}

.article-cat {
    display: inline-block;
    background: #E1F5EE;
    color: #0F6E56;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: var(--font-title);
}

.article-title {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 600;
    color: var(--c-primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.article-excerpt {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta { font-size: 12px; color: #A0AEC0; }

/* ---- BOUTONS GÉNÉRIQUES ----------------------------------- */
.btn-outline-dark {
    display: inline-block;
    padding: 11px 28px;
    border: 1.5px solid var(--c-primary);
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
    font-family: var(--font-title);
    transition: all 0.15s;
}

.btn-outline-dark:hover { background: var(--c-primary); color: var(--c-white); }

/* ---- CTA FINAL -------------------------------------------- */
.cta-final {
    background: var(--c-primary);
    padding: 64px 24px;
    text-align: center;
}

.cta-inner  { max-width: 560px; margin: 0 auto; }
.cta-title  { font-family: var(--font-title); font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: #F7FAFC; margin-bottom: 12px; }
.cta-sub    { font-size: 15px; color: #A0AEC0; line-height: 1.7; margin-bottom: 28px; }

.cta-btns   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: var(--c-white);
    padding: 13px 24px;
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-title);
    transition: background 0.15s;
}

.btn-whatsapp:hover { background: #20bf5b; }

.btn-outline-white {
    display: inline-block;
    padding: 13px 24px;
    border: 1px solid rgba(247,250,252,0.3);
    border-radius: var(--r-md);
    font-size: 15px;
    color: #F7FAFC;
    transition: background 0.15s;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.08); }

/* ---- FOOTER ----------------------------------------------- */
.footer {
    background: #1A202C;
    color: #A0AEC0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 52px 24px 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-name   { font-family: var(--font-title); font-size: 15px; font-weight: 700; color: #F7FAFC; }
.footer-tagline     { font-size: 12px; color: var(--c-accent); letter-spacing: 0.08em; margin-bottom: 10px; }
.footer-desc        { font-size: 13px; line-height: 1.6; }

.footer-group-title {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 700;
    color: #F7FAFC;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-link {
    display: block;
    font-size: 13px;
    color: #A0AEC0;
    margin-bottom: 8px;
    transition: color 0.15s;
}

.footer-link:hover { color: var(--c-accent); }

.footer-contact-item {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 16px 24px;
    border-top: 1px solid #2D3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy       { font-size: 13px; }
.footer-legal      { display: flex; gap: 20px; }
.footer-legal-link { font-size: 13px; color: #718096; transition: color 0.15s; }
.footer-legal-link:hover { color: var(--c-accent); }

/* ---- WHATSAPP FLOTTANT ------------------------------------ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
    transition: transform 0.2s, background 0.15s;
    z-index: 200;
}

.wa-float:hover { transform: scale(1.08); background: #20bf5b; }

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 900px) {

    .nav-links, .nav-actions { display: none; }
    .nav-burger               { display: flex; }

    .pillars-grid,
    .packs-grid,
    .tutos-grid    { grid-template-columns: 1fr; }

    .blog-grid     { grid-template-columns: 1fr; }

    .reassurance   { flex-wrap: wrap; }
    .rea-item      { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--c-border); }

    .footer-inner  { grid-template-columns: 1fr 1fr; }

    .hero-title    { font-size: 26px; }
}

@media (max-width: 560px) {

    .section       { padding: 40px 0; }

    .hero          { padding: 48px 20px 40px; }

    .hero-btns,
    .cta-btns      { flex-direction: column; align-items: center; }

    .rea-item      { flex: 0 0 100%; }

    .footer-inner  { grid-template-columns: 1fr; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- DROPDOWN MENU (user connecté) ----------------------- */
.nav-user-menu   { position: relative; }
.nav-user-btn    { display: flex; align-items: center; gap: 7px; background: none; border: 0.5px solid var(--c-border); border-radius: var(--r-md); padding: 6px 10px; cursor: pointer; font-size: 13px; color: var(--c-text); }
.nav-avatar      { width: 28px; height: 28px; border-radius: 50%; background: var(--c-accent); color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-avatar-lg   { width: 40px; height: 40px; font-size: 16px; }
.nav-user-name   { font-weight: 500; }
.nav-dropdown    { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); min-width: 180px; z-index: 200; overflow: hidden; }
.nav-dropdown.open         { display: block; }
.nav-dropdown-badge        { background: var(--c-accent); color: #085041; font-size: 11px; font-weight: 700; padding: 6px 14px; text-align: center; }
.nav-dropdown-link         { display: block; padding: 10px 16px; font-size: 13px; color: var(--c-text); transition: background 0.1s; }
.nav-dropdown-link:hover   { background: var(--c-bg); }
.nav-dropdown-sep          { height: 1px; background: var(--c-border); margin: 4px 0; }
.nav-dropdown-admin        { color: var(--c-accent); font-weight: 500; }
.nav-dropdown-logout       { color: #E53E3E; }

/* ---- NAV ACTIVE ------------------------------------------ */
.nav-link--active { color: var(--c-primary) !important; font-weight: 600; }

/* ---- MOBILE USER ----------------------------------------- */
.nav-mobile-user        { display: flex; align-items: center; gap: 12px; padding: 16px 0 12px; }
.nav-mobile-user-name   { font-size: 15px; font-weight: 600; color: var(--c-primary); }
.nav-mobile-premium      { font-size: 12px; color: var(--c-accent); font-weight: 500; }
.nav-mobile-premium-link { color: var(--c-accent); font-weight: 600; }
.nav-mobile-logout       { color: #E53E3E; }
.nav-mobile-sep          { height: 1px; background: var(--c-border); margin: 8px 0; }

/* ---- ALERTS ---------------------------------------------- */
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: 14px; font-weight: 500; position: relative; animation: slideDown 0.25s ease; }
.alert-success { background: #C6F6D5; color: #276749; border-bottom: 2px solid #9AE6B4; }
.alert-error   { background: #FED7D7; color: #9B2C2C; border-bottom: 2px solid #FC8181; }
.alert-warning { background: #FEFCBF; color: #7B6A00; border-bottom: 2px solid #F6E05E; }
.alert-info    { background: #BEE3F8; color: #2A69AC; border-bottom: 2px solid #90CDF4; }
.alert-close   { margin-left: auto; background: none; border: none; font-size: 18px; cursor: pointer; opacity: 0.6; line-height: 1; }
.alert-close:hover { opacity: 1; }

.alert-banner  { background: var(--c-accent); color: #085041; padding: 10px 24px; text-align: center; font-size: 13px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 12px; }
.alert-banner-link { color: #085041; font-weight: 700; text-decoration: underline; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- SIDEBAR --------------------------------------------- */
.sidebar              { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card         { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 20px; }
.sidebar-title        { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--c-primary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.sidebar-search       { display: flex; gap: 0; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.sidebar-search-input { flex: 1; padding: 9px 12px; border: none; font-size: 13px; outline: none; background: var(--c-white); color: var(--c-text); }
.sidebar-search-btn   { padding: 9px 12px; background: var(--c-primary); border: none; cursor: pointer; display: flex; align-items: center; color: white; }
.sidebar-list         { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.sidebar-list-link    { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: var(--r-sm); font-size: 13px; color: var(--c-muted); transition: all 0.1s; }
.sidebar-list-link:hover           { background: var(--c-bg); color: var(--c-primary); }
.sidebar-list-link--active         { background: #E1F5EE; color: var(--c-accent); font-weight: 500; }
.sidebar-list-count                { font-size: 11px; background: var(--c-border); padding: 1px 7px; border-radius: 10px; color: var(--c-muted); }
.sidebar-recent                    { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sidebar-recent-item               { border-bottom: 1px solid var(--c-border); padding-bottom: 12px; }
.sidebar-recent-item:last-child    { border-bottom: none; padding-bottom: 0; }
.sidebar-recent-link               { font-size: 13px; font-weight: 500; color: var(--c-primary); line-height: 1.4; display: block; margin-bottom: 3px; }
.sidebar-recent-link:hover         { color: var(--c-accent); }
.sidebar-recent-date               { font-size: 11px; color: var(--c-muted); }

.sidebar-premium        { background: #2D3748; border-color: #2D3748; text-align: center; }
.sidebar-premium-badge  { display: inline-block; background: var(--c-accent); color: #085041; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 10px; }
.sidebar-premium-title  { font-family: var(--font-title); font-size: 15px; font-weight: 700; color: #F7FAFC; margin-bottom: 8px; }
.sidebar-premium-desc   { font-size: 13px; color: #A0AEC0; line-height: 1.6; margin-bottom: 12px; }
.sidebar-premium-price  { font-size: 22px; font-weight: 700; color: var(--c-accent); margin-bottom: 14px; }
.sidebar-premium-price span { font-size: 13px; font-weight: 400; color: #A0AEC0; }
.sidebar-premium-btn    { display: block; background: var(--c-cta); color: #fff; border-radius: var(--r-md); padding: 11px; font-size: 14px; font-weight: 600; text-align: center; }

.sidebar-wa             { background: #E1F5EE; border-color: #9FE1CB; }
.sidebar-wa-desc        { font-size: 13px; color: #0F6E56; margin-bottom: 12px; line-height: 1.5; }
.sidebar-wa-btn         { display: block; background: #25D366; color: #fff; border-radius: var(--r-md); padding: 10px; font-size: 13px; font-weight: 600; text-align: center; }

/* ---- JS ajouté dans main.js ----------------------------- */
/* Burger : .open sur .nav-mobile                            */
/* Dropdown : .open sur .nav-dropdown                        */