/* poppins-regular - latin */
@font-face {
    font-display: swap;
    /* ← CRUCIAL : évite le FOIT (Flash of Invisible Text) */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

/* poppins-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* -------------------- 1. VARIABLES & RESET -------------------- */
:root {
    --primary-color: #003262;
    --secondary-color: #1e40af;
    --primary-hover: #1e3a8a;
    --accent-color: #d97706;
      --accent: #0EA5A4;
    --accent-dark: #0F766E;
    --accent-light: #ECFEFF;
    --accent-border: rgba(14, 165, 164, 0.22);
    --danger-color: #dc2626;
    --dark-color: #1E3A5F;
    --light-color: #f1f5f9;
    --white-color: #ffffff;
    --agenda-dark: #1a0b2ee3;
    --agenda-pink: #ff00ab;
    --agenda-gold: #d4af37;
    --tp-bg: #0f172a;
    --tp-accent: #38bdf8;
    --text-color: #334155;
    --text-color-dark: #1e293b;
    --text-color-light: #64748b;
    --text-light: #cbd5e1;
    --border-color: #e2e8f0;
    --section-bg: #f8fafc;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-topbar: 'Inter', sans-serif;
    --max-width: 1400px;
    --header-height: 80px;
    --transition-base: 0.3s ease;
    --c-bg: #ffffff;
    --c-bg-sub: #f7f5f0;
    --c-text: #1a1a16;
    --c-text-muted: #6b6b60;
    --c-accent: #d85a30;
    --c-accent-dark: #993c1d;
    --c-border: rgba(26, 26, 22, 0.1);
    --c-border-hover: rgba(26, 26, 22, 0.22);
    --nav-h: 72px;
    --radius: 8px;


}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #F4F6F9;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.sr-only,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center {
    text-align: center;
}

/* -------------------- 2. UTILITAIRES & CONTENEURS -------------------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-pad {
    padding: 80px 0;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* -------------------- 3. TOP BAR & HEADER -------------------- */
.top-bar {
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    color: white;
    padding: 8px 0;
    font-family: 'Poppins';
    font-size: 0.92rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.container-top-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.top-link {
    color: var(--light-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.partnership-link {
    font-weight: 600;
    /* Un peu plus gras */
    transition: all 0.3s ease;
    color: var(--border-color);
}

.partnership-link:hover {
    filter: brightness(1.2);
    /* Brille légèrement au survol */
}

.top-link:hover {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.icon-top,
.icon-top-bar {
    width: 20px;
    height: 20px;
    color: var(--light-color);
    vertical-align: middle;
    margin-top: 0;
}

.top-link:hover .icon-top {
    transform: scale(1.15);
}

.separator {
    color: var(--border-color);
    font-size: 1.1rem;
    font-weight: 300;
}

.top-bar-promo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 1.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.top-bar-promo:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.promo-badge {
    background: linear-gradient(90deg, #ff3366, #ff6b00);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 51, 102, 0.3);
    white-space: nowrap;
}

.promo-msg {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    white-space: nowrap;
}

.promo-msg strong {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.05rem;
}

.promo-details {
    margin-left: 0.4rem;
    padding: 0.35rem 1rem;
    background: white;
    color: var(--dark-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.promo-details:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(26, 26, 22, 0.08);
}

.navbar-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 32px;
}

/* ── Logo ── */
.logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark svg {
    display: block;
}

.logo-text {
    font-family:
        /* var(--font-display) */
        'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.02em;
    color: var(--dark-color);
    line-height: 1;
}

.logo-text span {
    color: var(--dark-color);
}

/* ── Nav ── */
.nav-items {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-link {

    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--c-text);
    background: var(--c-bg-sub);
}

.nav-link .chevron {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: transform 0.25s, opacity 0.2s;
    flex-shrink: 0;
}

/* ── Dropdown ── */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
    display: block;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 8px 32px rgba(26, 26, 22, 0.1);
    z-index: 100;
}

.nav-item.has-dropdown.dd-open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-item.has-dropdown.dd-open>.nav-link {
    color: var(--dark-color);
    background: var(--c-bg-sub);
}

.nav-item.has-dropdown.dd-open>.nav-link .chevron {
    transform: rotate(180deg);
    opacity: 0.8;
}

/* Arrow pointer */
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: var(--c-bg);
    /* Doit être de la même couleur que le fond du menu */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-top: 1px solid var(--c-border);
    /* Optionnel selon ton design */
}

.dropdown::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 7px;
    background: var(--c-border-hover);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: -1;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 1.1rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.dropdown a:hover {
    color: var(--dark-color);
    background: var(--c-bg-sub);
}

.dropdown a .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-border-hover);
    flex-shrink: 0;
    transition: background 0.15s;
}

.dropdown a:hover .dot {
    background: var(--dark-color);
}

/* ── CTA ── */
.nav-cta {
    flex-shrink: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #ff3366, #ff6b00);
    color: #fff !important;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    /* FIX : on maintient le gradient au hover au lieu de le remplacer par une couleur unie */
    background: linear-gradient(90deg, #e6194a, #e05500);
    transform: translateY(-1px);
}

.nav-cta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Mobile toggle ── */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 9px 10px;
    margin-left: auto;
    transition: border-color 0.2s;
}

.mobile-menu-toggle:hover {
    border-color: var(--c-border-hover);
}

.bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--c-text);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ──────────────────────────── RESPONSIVE ──────────────────────────── */
/* FIX : breakpoint unifié à 992px (suppression du 960px redondant) */
@media (max-width: 992px) {

    /* Force l'affichage du bouton Burger */
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 3000 !important;
        /* Augmenté pour être sûr */
    }

    /* Le menu latéral */
    .nav-items {
        position: fixed !important;
        top: 0;
        right: 0;
        width: 100% !important;
        /* Full width pour mobile */
        max-width: 100% !important;
        height: 100vh !important;
        background: #ffffff !important;

        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 100px 24px 40px !important;

        /* État caché : on le pousse à droite */
        transform: translateX(100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none;

        transition: all 0.4s ease !important;
        z-index: 2000 !important;
        overflow-y: auto !important;
    }

    /* État Ouvert (Ajouté par le JS) */
    .nav-items.is-open {
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Liens du menu */
    .nav-link {
        width: 100%;
        font-size: 1.2rem !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #f0f0f0;
        justify-content: center !important;
        color: var(--dark-color) !important;
    }

    /* Sous-menus (Accordéons) */
    .nav-item.has-dropdown .dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        /* Caché par défaut */
        width: 100%;
        box-shadow: none !important;
        border: none !important;
        background: #f9f9f9 !important;
        padding: 0 !important;
    }

    /* Affiche le sous-menu quand le parent est ouvert */
    .nav-item.has-dropdown.is-open .dropdown {
        display: block !important;
        pointer-events: auto !important;
    }

    /* Liens à l'intérieur du sous-menu */
    .dropdown a {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        border-bottom: 1px solid #eee;
    }

    /* On cache le bouton CTA original pour en mettre un plein écran */
    .nav-cta {
        margin: 20px auto !important;
        display: flex !important;
        width: 100% !important;
        justify-content: center;
    }
}

/* ACCESSIBILITÉ - LIEN DE SAUT */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* -------------------- 4. BOUTONS -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 500;
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    /* Un dégradé plus subtil */
    border: none;
    box-shadow: 0 10px 15px -3px rgba(255, 95, 109, 0.3);
    padding: 14px 28px;
    /* Un peu plus grand */
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ff6b00, #ff3366);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--dark-color);
    color: #475569;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-white {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* -------------------- 5. TYPOGRAPHIE & SECTIONS -------------------- */
.section-title,
.hero-title-section {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-family: 'poppins';
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.section-lead {
    font-size: 1.3rem;
    color: var(--text-color-light);
    max-width: 1100px;
    margin: 4px auto;
    line-height: 1.7;
}

.internal-link {
       position: relative;
    display: inline-block;
    color: #4f46e5; /* Indigo vif */
    font-weight: 600;
    text-decoration: none;
    padding: 0.1rem 0.15rem;
    transition: color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

.internal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #4f46e5);
    background-size: 200% 100%;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background-position 0.6s ease;
    opacity: 0.7;
}

.internal-link:hover {
    color: #1e1b4b; /* Très foncé pour contraste */
    transform: translateY(-1px);
}

.internal-link:hover::after {
    transform: scaleX(1);
    background-position: 100% 0;
}

.internal-link:active {
    transform: scale(0.97);
    transition-duration: 0.08s;
}

.internal-link.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-section {
    display: inline-block;
    background: linear-gradient(135deg, #003262, #419aff);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    margin: 20px;
}

.badge-section::before {
    content: "✨";
    margin-right: 8px;
}

.badge-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-benefits {
    margin-bottom: 2.5rem;
}

.hero-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 1.2rem;
}

.hero-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 14px;
    line-height: 1.6;
    color: #b91c1c;
    margin-top: 1.5rem;
}

.hero-warning strong {
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    /* On enlève les puces par défaut */
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #1e293b;
}

.benefits-list li strong {
    color: #003262;
    /* Ton bleu marine pour souligner l'important */
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #22c55e;
    /* Un vert "succès" qui rassure */
    flex-shrink: 0;
    /* Évite que l'icône s'écrase sur mobile */
}

.forbidden-icon {
    width: 24px;
    height: 24px;
    color: #ef4444;
    /* Un rouge "erreur" pour indiquer l'interdiction */
    flex-shrink: 0;
}


/* Optionnel : Ajoute un petit effet au survol de la liste */
.benefits-list li:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
}

/* -------------------- CGV - Cookies ------------------------ */
.legal-content {
    padding: 3rem 0 4rem;
}

.legal-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #2c5aa0;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #e8eef7;
}

.legal-content h3 {
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.4rem;
}

.highlight-hero {
    position: relative;
    color: var(--secondary-color);
    /* Utilise ton bleu vif */
    font-weight: 800;
    text-shadow: none;
    /* On enlève le contour noir */
    /* On ajoute un petit soulignement discret ou un dégradé */
    background: linear-gradient(120deg, #1e40af 0%, #419aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

.page-navigation {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.page-navigation h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.page-navigation h3 {
    margin-top: 0;
    color: #2c5aa0;
}

.page-navigation ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
}

.page-navigation li {
    margin-bottom: 0.5rem;
}

.page-navigation a {
    display: block;
    padding: 12px 15px;
    background: #f8fafc;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.page-navigation a:hover {
    background: #eff6ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* -------------------- 6. HERO -------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 5vw, 3rem) clamp(1rem, 5vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-content {
    flex: 1.2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1), transparent 70%);
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    filter: brightness(0.9) saturate(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    position: relative;
    z-index: 2;
}

/* Force l'opacité du hero même si AOS n'est pas encore prêt */
.hero-content,
.hero-image {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Optionnel : Désactiver AOS sur mobile pour améliorer le temps de réponse */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* L'effet au survol */
.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
    filter: brightness(1) saturate(1);
}

/* 4. Le petit "plus" : Un reflet brillant qui passe sur l'image */
.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%,
            transparent 100%);
    z-index: 3;
    pointer-events: none;
    /* Ne bloque pas le clic ou le hover */
    border-radius: 20px;
    opacity: 0.5;
}

.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    text-align: left;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    text-align: left;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    max-width: 700px;
}

.hero-lead {
    font-size: clamp(1rem, 1vw + 0.85rem, 1.125rem);
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 1.25rem;
    max-width: 68ch;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-wrap: pretty;
}

.hero-lead .internal-link {
    position: relative;
    color: #1d6fb8;
    text-decoration: none;
    font-weight: 500;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.hero-lead .internal-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.85);
    transform-origin: left;
    opacity: 0.7;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.hero-lead .internal-link:hover {
    color: #14508a;
}

.hero-lead .internal-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* -------------------- 7. ABOUT -------------------- */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-image,
.about-text {
    flex: 1;
    max-width: 500px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-text {
    text-align: left;
}

/* ================= SECTION PRO ================= */

/* ===== SECTION CONVICTIONS ===== */

.pro-section {
    position: relative;
    margin-bottom: 2rem;
}

/* Badge label */
.section-tag {
    display: inline-block;
    background: #E6F1FB;
    color: #0C447C;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Titre */
.section-title .highlight {
    color: var(--primary-color);
}

/* Carte principale */
.pro-section-content {
    max-width: 1400px;
    margin: 20px auto;
    padding: 2rem 2.25rem;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    line-height: 1.75;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.pro-section-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Texte */
.pro-section-content p {
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.pro-section-content p:last-of-type {
    margin-bottom: 0;
}



/* Rangée de pills */
.pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 13px;
    color: var(--text-color);
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

.pill-dot.green {
    background: #1D9E75;
}

.pill-dot.amber {
    background: #BA7517;
}

/* Responsive */
@media (max-width: 768px) {
    .pro-section-content {
        padding: 1.5rem;
    }

    .pills-row {
        gap: 6px;
    }
}

/* -------------------- 8. POURQUOI NOUS CHOISIR -------------------- */
.why-choose {
    background: linear-gradient(135deg, var(--section-bg) 0%, #f8fafc 100%);
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-choose .section-lead {
    font-size: 1.3rem;
    margin-bottom: 4rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.why-choose-item {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid var(--primary-color);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.08);

    border-color: var(--primary-color);
}

.why-choose-item .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.why-choose-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* -------------------- 9. SERVICES -------------------- */
.services-section {
    padding: 60px 0;
    background-color: transparent;
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white-color);
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(73, 155, 239, 0.5);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-8px);
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.service-content p {
    margin-bottom: 1rem;
    color: var(--text-color-dark);
    line-height: 1.6;
}

.service-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-content ul li i {
    color: var(--primary-color);
    font-size: 1.1em;
    padding-top: 4px;
}

/* -------------------- 10. AGENDA PROMO -------------------- */
.agenda-promo {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--agenda-dark) 0%, #2d1b4e 100%);
    text-align: center;
    color: white;
    overflow: hidden;
}

.agenda-visual-container {
    max-width: 900px;
    margin: 0 auto 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.agenda-img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.agenda-img-responsive:hover {
    transform: scale(1.02);
}

.agenda-promo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-agenda-gold {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: #1a0b2e !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
    transition: all 0.3s ease;
}

.btn-agenda-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.6);
    filter: brightness(1.1);
}

/* -------------------- 11. GRILLES GÉNÉRIQUES -------------------- */
.services-grid,
.blog-grid,
.region-grid,
.guarantee-grid,
.values-grid,
.process-grid,
.partners-grid,
.features-grid,
.why-choose-grid,
.offers-grid {
    display: grid;
    gap: 2rem;
}

.services-grid,
.blog-grid,
.region-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.guarantee-grid,
.values-grid,
.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.features-grid,
.why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== STATS Card ===== */

.stats-pub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    padding: 1.5rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card-pub {
    background: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Barre colorée en haut — une couleur par carte */
.stat-card-pub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card-pub:nth-child(1)::before {
    background: #378ADD;
}

.stat-card-pub:nth-child(2)::before {
    background: #1D9E75;
}

.stat-card-pub:nth-child(3)::before {
    background: #BA7517;
}

.stat-card-pub:nth-child(4)::before {
    background: #D4537E;
}

/* Hover */
.stat-card-pub:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Chiffre */
.stat-number-pub {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.4rem;
}

/* Couleur du chiffre selon la carte */
.stat-card-pub:nth-child(1) .stat-number-pub {
    color: #185FA5;
}

.stat-card-pub:nth-child(2) .stat-number-pub {
    color: #0F6E56;
}

.stat-card-pub:nth-child(3) .stat-number-pub {
    color: #854F0B;
}

.stat-card-pub:nth-child(4) .stat-number-pub {
    color: #D4537E;
}

/* Label */
.stat-label-pub {
    font-size: 16px;
    color: var(--dark-color) !important;
    line-height: 1.4;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Responsive */
@media (max-width: 480px) {
    .stats-pub {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Listes génériques */
.blog {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog li {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.2s ease;
}

.blog li:hover {
    background: #f1f5f9;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.blog li strong {
    color: #111827;
    font-weight: 600;
}

/* -------------------- 12. CARDS (feature, region, partner, guarantee) -------------------- */
.feature-item {
    background-color: var(--card-bg);
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--card-hover-shadow);
}

.feature-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #007bff;
    color: #f8fafc;
    font-size: 2.8rem;
    border-radius: 50%;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.feature-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

.region-listing-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.region-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.region-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffb347);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.region-card:hover::after {
    opacity: 1;
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.region-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.75rem 1.75rem 1rem;
    flex-grow: 1;
}

.card-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.card-department {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-description {
    color: var(--text-color-light);
    line-height: 1.6;
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
}

.card-footer {
    padding: 1rem 1.75rem 1.75rem;
    margin-top: auto;
}

.region-card .btn {
    width: 100%;
    border-radius: 50px;
}

.partner-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.partner-item img {
    max-width: 150px;
    max-height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.partner-item p {
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color-light);
}

.guarantee-card {
    padding: 2rem 1.5rem;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.guarantee-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.guarantee-text {
    color: var(--text-color);
    font-size: 1rem;
}

/* -------------------- 13. BLOG (preview, hero, layout) -------------------- */
.blog-preview {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.blog-intro-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.blog-intro-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content {
    text-align: center;
}

.title-article {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.intro-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.intro-main-text p {
    margin-bottom: 20px;
}

.intro-main-text strong {
    color: #111;
    font-weight: 600;
}

.intro-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-preview:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.blog-preview-image {
    position: relative;
    overflow: hidden;
}

.blog-preview-image img,
.service-img img {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-preview:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-preview-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-preview-content h3 a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.blog-preview-content h3 a:hover {
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 1.1em;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-color-dark);
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-preview-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

.blog-preview-content .btn i {
    transition: transform 0.3s ease;
}

.blog-preview-content .btn:hover i {
    transform: translateX(5px);
}

.blog-preview-category,
.blog-new-badge {
    position: absolute;
    top: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-preview-category {
    right: 1rem;
}

.blog-new-badge {
    left: 1rem;
    background-color: var(--danger-color);
}

.blog-hero-pro {
    background: linear-gradient(135deg, var(--dark-color) 0%, #292929 100%);
    color: var(--white-color);
    padding: 4rem 1rem;
    margin-top: 1.2rem;
    position: relative;
    overflow: hidden;
}

.blog-hero-title-pro {
    font-size: 3.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.highlight-bis {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 2.2rem;
    display: block;
    margin-top: 0.5rem;
}

.blog-categories-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.category-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fffeee;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-tag.active {
    background: linear-gradient(145deg, #F8D27A, #E8B654);
    color: #0E2A47;
    border: 1px solid #F4C166;
}

.blog-listing-section {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

.blog-layout-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 10px;
}

.sidebar-widget {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--dark-color);
}

.widget-search-bar form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.widget-search-bar input {
    flex-grow: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: transparent;
}

.widget-search-bar button {
    border: none;
    background-color: var(--dark-color);
    color: white;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: background-color .3s;
}

.widget-search-bar button:hover {
    background-color: var(--primary-hover);
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.widget-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.widget-list a:hover {
    background-color: #f2f2f2;
    color: var(--primary-color);
}

.widget-list li.active a {
    background: linear-gradient(135deg, var(--dark-color) 0%, #292929 100%);
    color: white;
}

.post-count {
    font-size: 0.8rem;
    background-color: #e9ecef;
    color: var(--text-color-light);
    padding: 0.1rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.widget-cta {
    background-color: var(--white-color);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-item .page-link {
    position: relative;
    display: block;
    padding: .75rem 1rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--primary-color);
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    transition: all .3s ease-in-out;
    font-weight: 600
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.page-item .page-link:hover {
    z-index: 2;
    color: var(--primary-hover);
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    cursor: default;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 20px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0, 0, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.benefit-card:hover::before {
    opacity: 1;
}

.pillier {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

@media (max-width: 600px) {
    .benefit-card {
        padding: 18px;
    }
}

/* -------------------- 14. ARTICLE (SINGLE) -------------------- */
.article-wrapper {
    padding: 4rem 0;
    background-color: var(--white-color);
}

.article-content-main {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
}

.article-header {
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-title {
    margin: 0 0 1.5rem;
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-color);
}

.article-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a8a 100%);
    color: #e0f2f7;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(44, 111, 187, 0.2);
}

.article-meta {
    margin-top: 1.5rem;
    color: #6c757d;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.featured-image-container {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.featured-image-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image-container:hover img {
    transform: scale(1.03);
}

.featured-image-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
    pointer-events: none;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-dark);
    max-width: 800px;
    margin: 0 auto;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    color: #343a40;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(44, 111, 187, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.article-body h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-body blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--section-bg);
    border-left: 4px solid var(--primary-color);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-color);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.illegal-trans {
     list-style: none;
    padding: 12px 16px;
    margin: 8px 0;
    background: #efeeee;
    border-left: 1px solid #f43426c3;
    border-radius: 4px;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.2s ease;
   
}

.illegal-trans-list {
    list-style: none;
    padding: 0;
    margin: 0;
}









.expert-note {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
}

.author-box {
    margin: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--section-bg), #eef2f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.article-author {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.social-mabel-share {
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-share {
    margin: 0 45px;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.social-share a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: red;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-share a.facebook {
    background: #3b5998;
}

.social-share a.twitter {
    background: #000000;
}

.social-share a.linkedin {
    background: #0077b5;
}

.social-share a.link {
    background: #6c757d;
}

.social-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* -------------------- 15. TABLE DES MATIÈRES & RECHERCHE -------------------- */
.table-of-contents {
    background: #ffffff;
    border: 1px solid #f1f3f4;
    border-radius: 10px;
    padding: 28px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.table-of-contents h3 {
    margin: 0 0 18px;
    color: var(--primary-hover);
    font-size: 1.3em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-of-contents h3::before {
    content: "📋";
    font-size: 1.1em;
}

.table-of-contents ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.table-of-contents li {
    margin-bottom: 10px;
    counter-increment: toc-counter;
    position: relative;
    padding-left: 28px;
}

.table-of-contents li::before {
    content: counter(toc-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f9fa;
    color: #6b7280;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 600;
}

.table-of-contents a {
    text-decoration: none;
    color: var(--text-muted);
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.table-of-contents a:hover {
    background: #f3f4f6;
    color: #111827;
    transform: translateX(4px);
}

.search-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
}

#blogSearchForm {
    display: flex;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

#blogSearchInput {
    flex: 1;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    outline: none;
}

#blogSearchForm button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 1.1rem;
}

#blogSearchForm button:hover {
    background: #0056b3;
}

/* -------------------- 16. FAQ -------------------- */
.faq-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--white-color);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color-dark);
}

.faq-question:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.faq-chevron {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: #f7fafc;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1rem 1.5rem 2rem;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    color: #0E2A47;
}

/* -------------------- 17. PRICING & SIMULATEUR -------------------- */
.pricing-section {
    padding: 96px 0;
    background: var(--section-bg);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 10px auto 72px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 103, 167, 0.08);
    border: 1px solid rgba(43, 103, 167, 0.15);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.recommended {
    background: linear-gradient(160deg, var(--primary-color) 0%, #1D4E8F);
    color: var(--border-color);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translate(-10px);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e8900d);
    color: var(--border-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(244, 166, 35, 0.4);
}

.card-header {
    padding: 35px;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: inherit;
}

.recommended .card-header h3 {
    color: #fff;
}

.ideal-for {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 24px;
}

.recommended .ideal-for {
    color: rgba(255, 255, 255, 0.65);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 12px;
}

.recommended .price-amount {
    color: #fff;
}

.card-body {
    padding: 0 32px 24px;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li .list {
    color: white;
}

.recommended .features-list li {
    color: rgba(255, 255, 255, 0.1);
}

.check-icon {
    color: #059669;
}

.check-icon .list {
    color: var(--light-color);
}

.card-footer {
    padding: 24px 32px 32px;
}

.btn-pack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-pack-outline {
    background: var(--primary-color);
    border: 1.5px solid var(--border-color);
}

.btn-pack-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-pack-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e8900d);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
}

.select,
input[type="range"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    font-family: 'Poppins';
    background: #fefefe;
}

.quantity-display {
    margin-top: 12px;
    font-weight: 600;
    background: #eef2ff;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
}

.first-order-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.insight-locality-badge {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.75rem;
}

.villes {
    color: #0E2A47;
    font-weight: 600;
}

.simulateur-note {
    background: #fef9e3;
    padding: 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 24px 0;
    border-left: 4px solid #eab308;
}

.price-container {
    margin: 24px 0;
}

.price-estimation,
.price-promo {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.striked .price-value {
    text-decoration: line-through;
    opacity: 0.7;
}

.price-promo {
    font-weight: 800;
    font-size: 1.5rem;
    border-bottom: none;
    margin-top: 8px;
}

.additional-details {
    background: var(--dark-color);
    color: var(--light-color);
    border-radius: 20px;
    padding: 16px;
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 20px 0;
}

/* transition */
.transition-section {
    background: white;
    text-align: center;
    padding: 64px 24px;
}

.transition-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.simulator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: transparent;
    border-radius: 32px;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.simulator-form {
    flex: 1.2;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

.simulator-result {
    flex: 1;
    color: var(--dark-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* -------------------- 18. COOKIES -------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 1px solid #e0e0e0;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.cookie-btn-primary {
    background: #2c5aa0;
    color: white;
}

.cookie-btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

/* -------------------- 19. FOOTER -------------------- */
.footer-pro {
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    color: #cbd5e1;
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #2563eb;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.sitemap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sitemap-grid a {
    font-size: 0.85rem;
    color: #94a3b8;
}

.sitemap-grid a:hover {
    color: #ffffff;
}

.social-label {
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--border-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}



.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info li a {
    color: var(--border-color);
}

.separator {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--text-light);
    margin: 0 10px;
    vertical-align: middle;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s;
}

.social-btn svg {
    width: 22px;
    height: 22px;
    fill: #1e293b !important;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn:hover svg {
    fill: #ffffff !important;
}

.social-btn.fb:hover {
    background-color: #1877F2;
}

.social-btn.x:hover {
    background-color: #000000;
}

.social-btn.ig:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.social-btn.li:hover {
    background-color: #0077B5;
}

.footer-bottom {
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-nav {
    display: flex;
    gap: 20px;
}

.legal-nav a {
    color: #cbd5e1;
}

.legal-nav a:hover {
    color: #ffffff;
}

.highlight-footer {
    color: var(--danger-color);
}

.social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}

/* -------------------- sitemap -------------------- */
.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links .link {
    margin-bottom: 8px;
}

.sitemap-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sitemap-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}



/* -------------------- 20. BOUTON RETOUR HAUT -------------------- */
#btnTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2B67A7 0%, #013263 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btnTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#btnTop:hover {
    background: linear-gradient(135deg, #013263 0%, #2b67a7 100%);
    transform: translateY(-3px);
}

/* -------------------- 21. RESPONSIVE (regroupé) -------------------- */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }

    html {
        font-size: 17px;
        scroll-padding-top: 80px;
    }

    .top-bar .contact-info {
        display: none;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .navbar-container .nav-cta {
        display: none;
    }
}

@media (max-width: 1024px) {
    .trust-text {
        display: none;
    }

    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .simulator-container {
        grid-template-columns: 1fr;
    }

    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-text {
        text-align: center;
        max-width: 600px;
    }

    .about-image {
        order: -1;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle,
    .hero-lead {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .pricing-card.recommended {
        transform: scale(1);
        margin-top: 20px;
    }

    .blog-layout-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .sidebar {
        order: 2;
        position: relative;
        top: 0;
        height: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    html {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .container-top-bar {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .mail-link,
    .separator,
    .desktop-only {
        display: none !important;
    }

    .top-bar-contact {
        width: 100%;
        justify-content: center;
    }

    .top-bar-promo {
        width: 100%;
    }

    .promo-msg {
        flex-wrap: wrap;
        text-align: center;
    }

    .nav-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons,
    .footer-social-links,
    .contact-info li {
        justify-content: center;
    }

    .footer-bottom-container,
    .bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .blog-hero-title-pro {
        font-size: 2.2rem;
    }

    .highlight-bis {
        font-size: 1.6rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .article-title {
        font-size: 2rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        min-width: 100%;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .vcard-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .vcard-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-banner.primary {
        width: 100%;
        justify-content: center;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-card.recommended {
        order: -1;
        transform: none;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
    }

    .blog-intro-section {
        padding: 60px 15px;
    }

    .title-article {
        font-size: 1.6rem;
    }

    .intro-main-text {
        font-size: 1rem;
    }

    .intro-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .badge-section {
        font-size: 0.85rem;
    }

    .footer-icon {
        width: 14px !important;
        height: 14px !important;
    }

    .cookie-banner {
        padding: 0.75rem 1rem;
        max-height: 65vh;
    }

    .cookie-banner h3 {
        font-size: 1rem;
    }

    .cookie-btn {
        padding: 0.85rem 1rem;
    }

    #btnTop {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }

    .vcard-banner-content {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-container,
    .features-grid,
    .why-choose-grid {
        grid-template-columns: 1fr !important;
    }

    .promo-badge {
        display: none;
    }

    .top-bar {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container-top-bar {
        gap: 8px;
    }

    .top-link span {
        font-size: 0.85rem;
    }

    .navbar-container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .footer-icon {
        width: 14px;
        height: 14px;
    }

    .cookie-banner p {
        font-size: 0.85rem;
    }

    .trust-stat-number {
        font-size: 1.7rem;
    }

    .trust-stats {
        flex-direction: row;
        gap: 0.25rem;
    }

    .trust-stat {
        border-bottom: 1px solid rgba(200, 168, 75, 0.1);
    }

    .trust-stat::after {
        display: none;
    }

    .trust-badge-item {
        min-width: 100%;
    }
}

/* Fil d'Ariane */
.breadcrumbs-container {
    background: transparent;
    padding: 0.75rem 0;
    font-size: 0.88rem;
}

.breadcrumbs-container ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs-container li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-color-light);
}

.breadcrumbs-container li a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumbs-container li a:hover {
    color: var(--secondary-color);
}

.breadcrumbs-container li.separator {
    color: var(--text-color-light);
    display: flex;
    align-items: center;
}

.breadcrumbs-container li.separator svg {
    stroke: currentColor;
    fill: none;
}

.breadcrumbs-container #breadcrumb-current span {
    color: var(--text-color-dark);
    font-weight: 600;
}

/* En-tête de page */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 1rem 3rem;
    text-align: center;
}

.page-header .section-title {
    color: white;
    margin-bottom: 1rem;
}

.page-header .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* -------------------- 22. PAGE FAQ -------------------- */
.faq-page-section {
    padding: 4rem 0;
    background: var(--section-bg);
}

/* Table des matières */
.demo-section {
    margin-bottom: 3rem;
}

.demo-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: #2d3436;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--dark-color);
    /* Petite barre d'accentuation */
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.parent {
    display: flex;
    justify-content: center;
    /* Centre horizontalement */
}

.demo-badge-central {
    /* Vos styles existants */
    display: inline-flex;
    justify-content: center;
    text-align: center;
    padding: 5px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: #2d3436;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--dark-color);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}



.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-color);
    margin: 2rem 0;
    position: relative;
    letter-spacing: 0.5px;
}



/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.faq-toc {
    max-width: 700px;
}

.faq-toc ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.toc-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.toc-card strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.toc-card small {
    color: #6b7280;
    font-size: 0.8rem;
}

.toc-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Titres de catégorie FAQ */
.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 3rem 0 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Liste FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Items FAQ — variante page FAQ (chevron à droite) */
.faq-list .faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.faq-list .faq-item:hover {
    box-shadow: var(--shadow-md);
}

/* Bouton question */
.faq-list .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins';
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-list .faq-question:hover {
    background: var(--section-bg);
    color: var(--primary-color);
}

.faq-list .faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(30, 64, 175, 0.03));
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

/* Texte de la question */
.faq-list .faq-question-text {
    flex: 1;
    line-height: 1.45;
}

/* Chevron SVG */
.faq-chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    stroke: currentColor;
    fill: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}

.faq-list .faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-color);
}

/* Réponse FAQ */
.faq-list .faq-answer {
    display: none;
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 0.97rem;
    color: var(--text-color);
    line-height: 1.75;
}

.faq-list .faq-answer.open {
    display: block;
}

.faq-list .faq-question[aria-expanded="true"]+.faq-answer {
    display: block;
}

.faq-list .faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-list .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-list .faq-answer ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.faq-list .faq-answer ul li {
    line-height: 1.6;
}

.faq-list .faq-answer a {
    color: var(--primary-color);
    font-weight: 500;
}

.faq-list .faq-answer a:hover {
    text-decoration: underline;
}

/* Google review container dans footer */
.google-review-container {
    margin-top: 1.5rem;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.google-review-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Responsive FAQ page */
@media (max-width: 768px) {
    .page-header {
        padding: 2.5rem 1rem 2rem;
    }

    .faq-category-title {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .faq-list .faq-question {
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
    }

    .faq-list .faq-answer {
        padding: 1rem 1.1rem 1.25rem;
    }

    .faq-toc {
        padding: 1.1rem 1.25rem;
    }

    .demo-section .section-title {
        font-size: 1.2rem;
    }

    .rating-stars {
        justify-content: center;
    }

    .rating-text {
        margin-left: 0;
    }

    .footer-sitemap {
        justify-content: center;
        text-align: center;
    }

    .sitemap-grid {
        justify-content: center;
    }
}

/* -------------------- 23. STYLES SVG Top bar : icônes email & téléphone -------------------- */
.icon-top {
    width: 18px;
    height: 18px;
    color: var(--light-color);
    flex-shrink: 0;
    vertical-align: middle;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-link:hover .icon-top {
    color: #ffffff;
    transform: scale(1.15);
}

.font-bold {
    font-weight: 700;
    color: var(--primary-color);
}

/* --- Hero : icône bouclier dans .info --- */
.hero .info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-top: 1rem;
}

.hero .info svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    fill: none;
    stroke: currentColor;
}

/* --- Section "Pourquoi nous choisir" : icônes .icon --- */
.why-choose-item .icon {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.05));
    border-radius: 16px;
    padding: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-choose-item:hover .icon {
    transform: scale(1.12) rotate(3deg);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(30, 64, 175, 0.1));
}

/* --- FAQ : icônes dans les questions --- */
.faq-question-text svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary-color);
    fill: none;
    stroke: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover .faq-question-text svg {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.faq-question[aria-expanded="true"] .faq-question-text svg {
    color: var(--accent-color);
}

/* --- Footer contact : icônes téléphone, email, adresse, horaires --- */
.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--danger-color);
    flex-shrink: 0;
    fill: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info li:hover .footer-icon {
    transform: scale(1.15);
    color: #ffffff;
}

/* --- Footer : étoiles Google rating --- */
.icon-footer-star {
    width: 22px;
    height: 22px;
    fill: #f59e0b;
    stroke: #d97706;
    stroke-width: 0.5;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.4));
    transition: transform 0.2s ease;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 0.75rem;
}

.rating-stars:hover .icon-footer-star {
    transform: scale(1.08);
}

.rating-text {
    font-weight: 700;
    color: var(--card-bg);
    margin-left: 6px;
    font-size: 1rem;
}

/* --- Footer : bouton Google review SVG --- */
.google-review-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --- Bouton retour en haut : .button-icon --- */
   #btnTop { position: fixed; bottom: 2rem; right: 2rem; background: var(--secondary-color); color: white; border: none; border-radius: 12px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); transition: transform .2s, background .2s; z-index: 999; }
        #btnTop:hover { transform: translateY(-3px); background: var(--primary-color); }
        .button-icon { width: 22px; height: 22px; }

/* --- Social SVG : compléments responsive --- */
@media (max-width: 576px) {
    .footer-icon {
        width: 16px;
        height: 16px;
    }

    .icon-footer-star {
        width: 18px;
        height: 18px;
    }

    .button-icon {
        width: 18px;
        height: 18px;
    }


}

/* -------------------- 23. ANIMATIONS -------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* -------------------- 24 Campagne index ----------------- */
.expertise-electorale {
    padding: 4rem 0;
    background: #f9fafb;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.expertise-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--text-color-light);
    text-align: center;
}

.expertise-item h3 {
    color: var(--primary-color);
}

.expertise-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta {
    background: #f5f7fa;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-cta .title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.faq-cta .footer-description {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.faq-cta .btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.faq-cta .btn-white {
    background: #ffffff;
    color: #003262;
    border: 2px solid #003262;
}

.faq-cta .btn-white:hover {
    background: #003262;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.process-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.testimonial {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: #f8f9fb;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.testimonial::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    font-family: 'Poppins';
}

.testimonial p {
    margin: 0 0 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-color);
}

/*          STYLES POUR LA PAGE À PROPOS         */
.timeline-section {
    padding: 100px 0;
    background: var(--section-bg);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #e0e0e0);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    top: 30px;
    left: -30px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: auto;
    right: -30px;
}

.timeline-icon:hover {
    transform: scale(1.05);
    background: var(--secondary-color);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    margin: 15px 0 10px;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-content p {
    color: #003262;
    line-height: 1.6;
    margin: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: violet;
    border: 3px solid white;
    border-radius: 50%;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    background: var(--secondary-color);
    transform: translateX(-50%) scale(1.2);
}

/* SECTION FONDATRICE & VALEURS */
.founder-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    font-family: 'Poppins';
    position: relative;
    overflow: hidden;
}

.founder-values-section .section-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.founder-values-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.founder-values-section .section-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.founder-values-section .section-header p {
    font-size: 1.05rem;
    color: var(--text-color-light);
    margin: 0;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.founder-card {
    flex: 0 0 300px;
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 50, 98, 0.10);
    border-top: 4px solid var(--primary-color);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

.founder-photo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 22px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
}

.founder-photo-container::after {
    content: '★';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--white-color);
    line-height: 26px;
    text-align: center;
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white-color);
    display: block;
}

.founder-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 6px;
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.founder-quote {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-color);
    background: var(--light-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    padding: 16px 18px 16px 40px;
    position: relative;
    text-align: left;
    line-height: 1.7;
    margin: 0;
}

.values-container {
    flex: 1;
    min-width: 280px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0, 50, 98, 0.08);
    border-bottom: 3px solid transparent;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.value-card:hover::before {
    opacity: 1;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-color-light);
    line-height: 1.65;
    margin: 0;
}

/* --- SVG A Propos : icônes  --- */
.icon-svg {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.feature-item .icon-svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-icon .icon-svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.timeline-icon .icon-svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.feature-item:hover .icon-svg {
    transform: scale(1.1) rotate(3deg);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .founder-card {
        flex: 1 1 100%;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .founder-values-section .section-title {
        font-size: 1.6rem;
    }
}

/* --- Bas des articles --- */
.related-posts {
    max-width: min(1250px, 90%);
    margin: 1rem auto;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.section-title {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.post-image {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

.post-title {
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.post-title a {
    color: #003262;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Tableau page services index */
.comparison-container {
    background: var(--section-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin: 40px auto;
    max-width: 1300px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
}

.comparison-table thead th {
    background: var(--tp-accent);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    font-size: 1rem;
}

.comparison-table tbody tr:nth-of-type(even) {
    background-color: var(--section-bg);
}

.comparison-table tbody tr:hover {
    background-color: rgba(73, 155, 239, 0.1);
    transition: var(--transition-base);
}

.recommended-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f75757;
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
    rotate: 10deg;
}

h3 {
    color: var(--card-bg);
}

.info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: help;
    color: greenyellow;
}

.info-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 100%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    width: 200px;
    z-index: 100;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* Grille 2 colonnes page affichage libre */
.content-block {
    padding: 4rem 0;
    background-color: transparent;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-item-text {
    padding-right: 1rem;
}

.grid-item-image {
    text-align: center;
}

.about-img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Campagne politique en Charente */
.zone-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.zone-pills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.zone-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.zone-pill-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color, #007bff);
    color: var(--primary-color, #007bff);
    cursor: default;
}

/* --- SECTION LÉGALITÉ & ECO --- */
.legal-eco-section {
    padding: 60px 0;
    background-color: #f1f5f9;
}

.legal-eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.legal-box,
.eco-box {
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.legal-box {
    border-left: 6px solid var(--primary-color);
}

.eco-box {
    border-left: 6px solid #10b981;
}

.legal-box h3,
.eco-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-box i {
    color: var(--primary-color);
}

.eco-box i {
    color: #10b981;
}

.legal-box ul,
.eco-box ul {
    list-style: none;
    padding: 0;
}

.legal-box li,
.eco-box li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
}

.legal-box li::before {
    content: "⚖️";
    position: absolute;
    left: 0;
}

.eco-box li::before {
    content: "🌿";
    position: absolute;
    left: 0;
}


.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 1rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02) inset,
        0 0 0 1px rgba(200, 168, 75, 0.1);
}

.trust-stat {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.8rem;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 20px;
}

.trust-stat::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(200, 168, 75, 0.2) 20%,
            rgba(200, 168, 75, 0.2) 80%,
            transparent 100%);
}

.trust-stat:last-child::after {
    display: none;
}

.trust-stat:hover {
    background: rgba(200, 168, 75, 0.02);
    transform: translateY(-2px);
}

.trust-stat-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.trust-stat-number sup {
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #c8a84b 0%, #b38f3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    top: -0.5em;
}

.trust-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
    max-width: 120px;
    line-height: 1.4;
}

/* --- ÉLÉMENTS DÉCORATIFS SUBTILS --- */

.trust-bar {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Chiffres clés */
.trust-stats {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.trust-stat {
  text-align: center;
  padding: 0 2.5rem;
  position: relative;
}

.trust-stat + .trust-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e5e7eb;
}

.trust-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.trust-stat-label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* Séparateur */
.trust-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 1.75rem;
}

/* Badges de réassurance */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  font-size: 0.82rem;
  color: #6b7280;
  white-space: nowrap;
}

.trust-badge-item svg {
  width: 15px;
  height: 15px;
  color: red;
  flex-shrink: 0;
}

.trust-badge-item strong {
  color: #111827;
  font-weight: 600;
}



.legal-alert {
    background-color: #f8d7da;
    /* Light red/pink */
    color: #721c24;
    /* Dark red */
    border: 1px solid #f5c6cb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.legal-alert h3 {
    color: #721c24;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-alert i {
    font-size: 1.5rem;
}

.legal-alert p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-alert strong {
    color: #491217;
}

.legal-alert ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.legal-alert li {
    margin-bottom: 0.5rem;
}

.statistics-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 850px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 15px 10px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.95rem;
    color: #555;
}

.stat-label {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-block.bg-light {
    background: #f7f9fc;
    padding: 60px 20px;
}

p.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #003262;
    font-size: 1rem;
}

.visibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.visibility-item {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: all 0.25s ease;
    border-top: 6px solid #FEC107;
}

.visibility-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.visibility-item i {
    font-size: 2.2rem;
    color: #2B67A7;
    margin-bottom: 12px;
    display: inline-block;
}

.visibility-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2B3648;
    margin-bottom: 10px;
}

.visibility-item p {
    font-size: 0.95rem;
    color: #4f5a63;
    line-height: 1.45;
}

.ri-Loader-4-line {
    display: inline-block;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.commune-filter {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.filter-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.filter-letter {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-letter:hover,
.filter-letter.active {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.visibility-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.visibility-high {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.visibility-medium {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.visibility-low {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.location-item {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.location-item:hover {
    background: #f8f9fa;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.location-info {
    flex: 1;
}

.location-info h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.location-info {
    flex: 1;
}

.location-info h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

/* Badge visibilité */
.visibility-indicator {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

.visibility-high {
    background: #e6f4ea;
    color: #1e7e34;
}

/* META */
.location-meta {
    display: flex;
    gap: 18px;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.location-meta i {
    margin-right: 6px;
    color: #adb5bd;
}

/* DESCRIPTION */
.location-desc {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

/* STATS */
.location-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 180px;
    text-align: right;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #343a40;
}

.stat-item i {
    color: #0d6efd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .location-item {
        flex-direction: column;
    }

    .location-stats {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        margin-top: 12px;
    }
}

.expert-note p {
    margin: 0;
    color: #92400e;
    line-height: 1.5;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.legal-grid,
.alternatives-grid,
.calendar-grid,
.visibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.legal-category-card,
.alternative-card {
    background: var(--section-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.legal-category-card:hover,
.alternative-card:hover {
    transform: translateY(-5px);
}

.legal-category-card {
    border-top: 4px solid var(--primary-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* ── ILLEGAL GRID ── */
.illegal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* ── ILLEGAL ITEM ── */
.illegal-item {
    background: var(--section-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #ffcdd2;
    transition: transform 0.3s ease;
}

.illegal-item:hover {
    transform: translateY(-3px);
}

.illegal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.illegal-icon i {
    font-size: 1.3rem;
    color: red;
}

.illegal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}



.fine-badge {
    background: #ffebee;
    color: #c62828;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #003262 0%, #0056b3 100%);
    color: white;
    padding: 4rem 1rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ville {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.insight-locality-badge {
    font-size: 0.85rem;
    background-color: #eef3ff;
    color: #3b5bdb;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 500;
}

.category-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-top: 4px;
}

/* Style pour la section Soutien / QR Code */
.support-section {
    background-color: transparent;
    margin-top: 30px;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    gap: 15px;
}

.qr-image {
    width: 180px;
    height: auto;
    border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
    /* Petit effet au survol */
}

.qr-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.qr-text a {
    color: #4f46e5;
    /* Couleur de votre thème */
    text-decoration: underline;
    font-weight: 700;
}

/* Adaptabilité mobile */
@media (max-width: 480px) {
    .qr-image {
        width: 150px;
    }
}

/*   Nettoyons et valorisons */
.widget-partenariat {
    padding: 0;
    overflow: hidden;
    border: 1px solid #b5d4b8;
}

.partenariat-header {
    background: var(--dark-color);
    padding: 16px 18px 14px;
}

.partenariat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #a8e6c3;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 6px;
}

.partenariat-header h4 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
}

.partenariat-body {
    padding: 14px 18px 18px;
}

.partenariat-body p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 12px;
}

.partenariat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.partenariat-list li {
    font-size: 0.8rem;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.partenariat-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a6b3e;
    font-weight: 700;
}

.widget-cta {
    padding: 0;
    overflow: hidden;
    border: 1px solid #a3bce0;
}

.cta-header {
    background: #1a3a6b;
    padding: 16px 18px 14px;
}

.cta-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #a3c0f0;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 6px;
}

.cta-header h4 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
}

.cta-body {
    padding: 14px 18px 18px;
}

.cta-body p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 12px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-list li {
    font-size: 0.8rem;
    color: var(--text-color);
    padding-left: 10px;
    position: relative;
}

.cta-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/*  amende-collage-affiche */
.notice-box {
    border: 0.5px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    background: var(--light-color);
    padding: 1.25rem 1.5rem;
}

.notice-body {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.notice-divider {
    border: none;
    border-top: 0.5px solid var(--border-color);
    margin: 1rem 0;
}

.notice-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.notice-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

/*  */
.calculator-container {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 2rem auto;
}

.calc-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calc-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.input-group {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#posterValue {
    color: #b91c1c;
    font-size: 1.5rem;
    background: #fee2e2;
    padding: 2px 10px;
    border-radius: 6px;
}

/* Style du curseur */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #cbd5e1;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.result-card {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.result-card.risk {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.result-card.danger {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.result-card.solution {
    background: #f0fdf4;
    border: 2px solid #22c55e;
    transform: scale(1.05);
}

.result-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.result-amount {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.risk .result-amount {
    color: #b91c1c;
}

.danger .result-amount {
    color: #ea580c;
}

.solution .result-amount {
    color: #15803d;
}

.result-detail {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.calc-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1.5rem;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .result-card.solution {
        transform: scale(1);
    }
}

/*  infraction */
.infractions-hero {
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    ;
    color: white;
    padding: 4rem 2rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    text-align: center;
}

.infractions-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.infractions-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.infraction-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #dc2626;
}

.infraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.infraction-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1e1b4b;
}

.infraction-badge {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fine-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    margin: 1rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.article-preview {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.article-preview:hover {
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.article-preview h3 {
    color: #1e1b4b;
    margin-bottom: 0.75rem;
}

.article-preview h3 a {
    text-decoration: none;
    color: inherit;
}

.article-preview h3 a:hover {
    color: #dc2626;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    gap: 0.75rem;
}

.warning-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
}

.warning-banner {
    background: #fffbeb;
    border-left: 6px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-list li::before {
    content: "⚖️";
}

@media (max-width: 768px) {
    .infractions-hero h1 {
        font-size: 1.75rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/*  infraction-detail */
/* ── LEGAL COMMITMENT ── */
.legal-commitment {
    margin: 60px auto;
}

.legal-commitment-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: white;
    border-left: 5px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-commitment-inner .emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.legal-commitment-inner h2 {
    font-size: 1.35rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.legal-commitment-inner p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .legal-commitment-inner {
        flex-direction: column;
    }
}

/* =========================================
   INTRO HEADER page ou-coller-affiches
   ========================================= */

.intro-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px 45px;
    text-align: center;
}

/* Petit badge département */
.badge-section-departement {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    padding: 7px 16px;
    border-radius: 50px;
     border-color: var(--accent-border);
    background: rgba(14, 165, 164, 0.08);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Petit point décoratif */
.badge-section-departement::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
}


/* =========================================
   TITRE PRINCIPAL
   ========================================= */

.section-title {
    margin: 0 auto 22px;
    max-width: 850px;
    color: #172033;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

/* Texte en gras */
.section-title strong {
    color: #0f172a;
    font-weight: 800;
}

/* Mise en valeur "Vienne 86" */
.section-title .highlight-departement {
    color: var(--accent);
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================
   TEXTE INTRODUCTIF
   ========================================= */

.lead-text {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.08rem;
    line-height: 1.75;
    font-weight: 400;
}

.lead-text strong {
    color: #334155;
    font-weight: 650;
}


/* =========================================
   VERSION MOBILE
   ========================================= */

@media (max-width: 640px) {

    .intro-header {
        padding: 35px 20px 30px;
    }

    .badge-section-departement {
        margin-bottom: 16px;
        font-size: 0.72rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.15;
        letter-spacing: -0.025em;
    }

    .lead-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .section-title .highlight-departement {
        white-space: normal;
    }
}

/* =========================================
   SOMMAIRE / TABLE DES MATIÈRES
   ========================================= */

.page-toc {
    max-width: 850px;
    margin: 35px auto 45px;
    padding: 26px 30px 28px;

    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;

    /* Petite séparation visuelle avec l'intro */
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

/* Titre du sommaire */

.page-toc h2 {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 0 0 18px;

    color: #172033;
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: -0.01em;
}

/* Petit élément décoratif devant "Sommaire" */

.page-toc h2::before {
    content: "";
    display: inline-block;

    width: 4px;
    height: 22px;

    border-radius: 4px;
    background: #10b981;
}


/* =========================================
   LISTE
   ========================================= */

.page-toc ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 14px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.page-toc li {
    margin: 0;
    padding: 0;
}


/* =========================================
   LIENS
   ========================================= */

.page-toc a {
    display: flex;
    align-items: center;

    min-height: 46px;
    padding: 10px 14px;

    border: 1px solid transparent;
    border-radius: 10px;

    color: #475569;
    background: transparent;

    font-size: 0.92rem;
    font-weight: 550;
    line-height: 1.35;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


/* Petit effet au survol */

.page-toc a:hover {
    color: #047857;
    background: #ecfdf5;
    border-color: rgba(16, 185, 129, 0.18);

    transform: translateX(3px);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 640px) {

    .page-toc {
        margin: 25px 15px 35px;
        padding: 22px 18px 20px;
        border-radius: 14px;
    }

    .page-toc ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .page-toc a {
        min-height: 44px;
        padding: 9px 12px;
        font-size: 0.9rem;
    }
}