:root {
    /* === Couleurs principales === */
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --primary-hover: #1e3a8a;
    --accent-color: #d97706;
    --danger-color: #dc2626;
    --dark-color: #003262;
    --light-color: #f1f5f9;
    --white-color: #ffffff;

    /* Couleurs extraites de votre image */
    --agenda-dark: #1a0b2ee3;
    /* Violet très sombre pour le fond */
    --agenda-pink: #ff00ab;
    /* Le rose vif du mot "OFFERT" */
    --agenda-gold: #d4af37;
    /* Rappel du logo AP doré */

    /* === Couleurs de la barre supérieure === */
    --tp-bg: #0f172a;
    --tp-accent: #38bdf8;
    --tp-text: #f1f5f9;

    /* === Couleurs de fond === */
    --section-bg: #f1f5f9;
    --card-bg: #ffffff;

    /* === Couleurs de texte === */
    --text-color: #334155;
    --text-color-dark: #1e293b;
    --text-color-light: #64748b;
    --text-light: #cbd5e1;

    /* === Bordures === */
    --border-color: #cbd5e1;
    --border-radius: 8px;

    /* === Ombres === */
    --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);

    /* === Typographie === */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-topbar: 'Inter', sans-serif;

    /* === Layout === */
    --max-width: 1400px;
    --header-height: 80px;

    /* === Transitions === */
    --transition-base: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: #f7f9fc;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Classes utilitaires */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background: #0f172a !important;
    color: #f1f5f9 !important;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

.container-top-bar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: #f1f5f9 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-link:hover {
    color: #38bdf8 !important;
}

.icon-topbar,
.trust-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    color: #38bdf8;
    display: block;
    max-width: 100%;
}

.separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.top-bar-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-badge {
    background: #38bdf8;
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.promo-msg {
    margin: 0;
    color: #f1f5f9;
}

.promo-details {
    color: #38bdf8;
    text-decoration: underline;
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-text {
    font-weight: 600;
    font-size: 0.8rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 1rem;
    max-width: var(--max-width);
    margin: auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container picture,
.logo-container img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: transform var(--transition-base);
    padding: 3px;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #003262;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-items .nav-link.active,
.nav-items .nav-link:hover {
    color: #003262;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
}

.nav-cta {
    white-space: nowrap;
    margin-left: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color var(--transition-base);
}

.mobile-menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   TOP BAR - RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .trust-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .container-top-bar {
        justify-content: center;
        gap: 15px;
        padding: 0 10px;
    }

    .mail-link,
    .separator,
    .top-bar-right {
        display: none !important;
    }

    .top-bar-contact {
        gap: 0;
    }

    .top-link {
        font-size: 0.9rem;
    }

    .top-bar-promo {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container-top-bar {
        flex-direction: column;
        gap: 5px;
    }

    .promo-badge {
        display: none;
    }

    .top-bar {
        padding: 5px 0;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    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;
    text-align: center;
}

.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);

    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-size: inherit;
}

.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(1.1rem, 1.6vw, 1.5rem);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.65;
    color: #003262;
}

/* SVG */
.info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #003262;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info svg {
    width: 1.2em;
    height: 1.2em;
    color: #22c55e;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .info {
        font-size: 0.85rem;
    }

    .info svg {
        width: 1.1em;
        height: 1.1em;
    }
}



/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    max-width: 1350px;
    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: 450px;
    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;
}

@media (max-width: 1200px) {
    .about-content {
        gap: 50px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        text-align: center;
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
        order: -1;
    }

    .about-image img {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        gap: 30px;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .badge-section {
        display: inline-block;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

.icon-svg {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    color: #ef4444;
}

/* ==========================================================================
   SECTION 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-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.why-choose .section-lead {
    font-size: 1.3rem;
    color: var(--dark-color);
    max-width: 700px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
    font-weight: 400;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-item {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow), 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.05), transparent);
    transition: left 0.6s ease;
}

.why-choose-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--card-hover-shadow), 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-item:hover::before {
    left: 100%;
}

.why-choose-item .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-base);
}

.why-choose-item:hover .icon {
    transform: scale(1.1);
}

.why-choose-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.why-choose-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dark-color);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.why-choose-item:hover h3::after {
    width: 100%;
}

.why-choose-item p {
    font-size: 1.05rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
    transition: color var(--transition-base);
}

@media (max-width: 768px) {
    .why-choose {
        padding: 3rem 1rem;
    }

    .why-choose-item .icon {
        width: 50px;
        height: 50px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICES SECTION (Page d'accueil)
   ========================================================================== */
.services-section {
    padding: 60px 0;
    background-color: transparent;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   AGENDA PROMO SECTION
   ========================================================================== */
.agenda-promo {
    padding: 80px 0;
    position: relative;
    /* Dégradé rappelant le ciel de l'image */
    background: linear-gradient(135deg, var(--agenda-dark) 0%, #2d1b4e 100%);
    text-align: center;
    color: white;
    overflow: hidden;
}

.agenda-promo-header {
    max-width: 800px;
    margin: 0 auto 30px auto;
}



/* Style pour l'image pour la rendre "propre" */
.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);
}

/* La carte CTA */
.agenda-promo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    /* Effet de verre moderne */
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bouton façon "Or" pour rappeler le logo AP */
.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);
}

/* Responsivité mobile */
@media (max-width: 768px) {
    .blog-hero-title-pro {
        font-size: 1.8rem;
    }

    .agenda-promo {
        padding: 50px 0;
    }
}

/* ==========================================================================
   ILLEGAL SECTION OU COLLER
   ========================================================================== */
.illegal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 10px;
}

/* ==========================================================================
   RESPONSIVE - PAGE D'ACCUEIL
   ========================================================================== */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle,
    .hero-lead {
        text-align: center;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-text {
        text-align: center;
        max-width: 600px;
        padding: 0 1rem;
    }

    .about-image img {
        max-width: 400px;
    }

    .why-choose {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 1.20rem;
    }

    .about-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .process-step {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .why-choose .section-lead {
        font-size: 1.1rem;
        margin: 1.5rem auto 3rem auto;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    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-color: var(--primary-color);
    color: var(--tp-text);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--tp-text);
}

.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-whatsapp {
    background-color: var(--primary-color);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--secondary-color);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-pro {
    background: #101c2d;
    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-description {
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    max-width: 350px;
}

/* Social Buttons */
.social-wrapper {
    display: flex;
    flex-direction: column;
    /* Label au dessus sur mobile, aligné sur desktop */
    gap: 15px;
    padding: 20px 0;
}

/* Alignement horizontal sur desktop */
@media (min-width: 600px) {
    .social-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.social-label {
    font-size: 0.80rem;
    font-weight: 700;
    color: #94a3b8;
    /* Gris bleuté pour ton fond sombre */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    /* Fond blanc du bouton */
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

/* Couleur forcée de l'icône SVG par défaut */
.social-btn svg {
    width: 22px;
    height: 22px;
    fill: #1e293b !important;
    /* Couleur gris très foncé pour être visible sur blanc */
    transition: fill 0.3s ease, transform 0.3s ease;
}

/* --- EFFETS AU SURVOL (HOVER) --- */

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn:hover svg {
    fill: #ffffff !important;
    /* L'icône devient blanche sur le fond de couleur */
    transform: scale(1.1);
}

/* Couleurs spécifiques au hover */
.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;
    /* Bleu officiel de LinkedIn */
}

/* Liens */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: #ef4444;
    font-size: 1.1rem;
}

.contact-info a {
    color: inherit;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffffff;
}

/*  Page contact */
.section-contact {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.5rem 1.5rem;

    color: var(--light-color);
    background-color: #003262;
    border-radius: 999px;
    /* effet pill */

    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    box-shadow: 0 6px 20px rgba(0, 50, 98, 0.25);
}


.icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    color: #1d4ed8;
}

.icon:hover {
    transform: scale(1.05);
}

.icon-top-bar {
    width: 20px;
    height: 20px;
    margin-top: 10px;
    color: white;
}

.button-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    color: #1e40af;
}

/* Sitemap SEO */
.sitemap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sitemap-grid a {
    font-size: 0.85rem;
    color: #94a3b8;
}

.sitemap-grid a:hover {
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    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: #ffffff;
}

.legal-nav a:hover {
    color: #64748b;
}

/* Footer Mobile */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Correction des SVG dans le footer */
    .footer-icon {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px;
    }

    .contact-info li {
        font-size: 0.9rem;
        gap: 10px;
    }

    /* Correction des étoiles Google Review */
    .icon-footer-star {
        width: 0.9rem !important;
        height: 0.9rem !important;
    }

    .rating-stars svg {
        width: 0.9rem !important;
        height: 0.9rem !important;
    }

    /* Correction générale pour tous les SVG trop grands */
    .footer-column svg {
        max-width: 16px;
        max-height: 16px;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .footer-icon {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px;
    }

    .contact-info li {
        font-size: 0.85rem;
        gap: 8px;
    }

    .icon-footer-star,
    .rating-stars svg {
        width: 0.8rem !important;
        height: 0.8rem !important;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links,
    .rating {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-description {
        margin: 1.5rem auto;
    }

    .footer-logo {
        margin: 0 auto 1rem auto;
        justify-content: center;
        display: flex;
    }

    .sitemap-grid a {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .footer-icon {
        font-size: 0.85rem;
    }

    .footer-icon svg {
        width: 1.1rem;
        height: 1.1rem;
    }
}

/* == Breadcrumbs  == */
.breadcrumbs-container {
    background: var(--card-bg);
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-family: "Poppins", sans-serif;
}

.breadcrumbs-container ol {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs-container li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-weight: 500;
}

.breadcrumbs-container a:hover {

    color: #003262;
    background-color: rgba(0, 0, 0, 0.05);
}

.breadcrumbs-container .separator {
    display: flex;
    align-items: center;
    color: #9ca3af;
    width: 14px;
    height: 14px;
    margin: 0 8px;
}

.breadcrumbs-container .separator svg {
    pointer-events: none;
    display: block;
}

.breadcrumbs-container:hover .separator {
    color: #6b7280;
}

#breadcrumb-current span {
    color: var(--text-color-dark);
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.05);
}

/* ✅ Correction : ciblage du span via l'ID qui existe maintenant */
#breadcrumb-current span {
    color: var(--text-color-dark);
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.05);
    /* ✅ Bonus mobile : évite les débordements sur les longs titres */
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    #breadcrumb-current span {
        max-width: 140px;
    }
}


[aria-current="page"] {
    cursor: default;
}

@media (max-width: 768px) {
    .breadcrumbs-container ol {
        font-size: 0.85rem;
        gap: 0.35rem;
    }

    .breadcrumbs-container a,
    #breadcrumb-current span {
        padding: 0.2rem 0.4rem;
    }

    .breadcrumbs-container .separator svg {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================================================
   SECTIONS DE CONTENU Qui sommes nous
   ========================================================================== */
.content-block {
    padding: 4rem 0;
    background-color: transparent;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Grille 2 colonnes page affichage libre */
.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);
}

/* Key takeaways / Benefits list page affichage libre */
.key-takeaways,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-takeaways li,
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: white;
    border-radius: 8px;
    border-left: 1px solid #003262;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.key-takeaways li:hover,
.benefits-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.key-takeaways li i,
.benefits-list li i {
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.key-takeaways li strong,
.benefits-list li strong {
    color: #003262;
    font-weight: 600;
}

/* Notice box page affichage libre */
.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid var(--secondary-color);
}

.notice-box p {
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   MENTIONS LÉGALES
   ========================================================================== */
.legal-content {
    background-color: var(--light-color);
    padding: 4rem 1rem;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content .last-updated {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 4rem;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-color-dark);
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
}

.legal-content li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1.2em;
    margin-left: -1.2em;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted var(--secondary-color);
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    background-color: rgba(0, 123, 255, 0.05);
}

.legal-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* ==========================================================================
   SECTION PROCESSUS (NOTRE MÉTHODE)
   ========================================================================== */
.process-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.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;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30, 64, 175, 0.05);
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* --- SECTION LÉGALITÉ & ECO --- */
.legal-eco-section {
    padding: 60px 0;
    background-color: transparent;
}

.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;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.05);
}

.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;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {

    .legal-eco-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SIMULATEUR DE TARIFS
   ========================================================================== */



.quantity-display {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
}

.quantity-display .unit-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

/* Checkbox Première Commande */
.first-order-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border: 1px solid #bae6fd;
    margin: 1.5rem 0;
}

.first-order-container input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
    accent-color: var(--primary-color);
}

.first-order-container label {
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 0.75rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.875rem;
    font-weight: 400;
    box-shadow: var(--shadow-md);
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.price-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-estimation,
.price-promo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-estimation:last-child,
.price-promo {
    border-bottom: none;
}

.price-estimation.striked .price-value {
    text-decoration: line-through;
    opacity: 0.7;
}

.price-label {
    font-weight: 500;
}

.price-promo {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-value-final {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
}

.additional-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.detail-item span:last-child {
    font-weight: 600;
}

.savings-value {
    color: #4ade80;
    font-weight: 700 !important;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: auto;
    padding-top: 1rem;
}

.simulator-result .btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
    margin-top: 1rem;
}

.simulator-result .btn-primary:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/* ==========================================================================
   PRICING / TARIFS
   ========================================================================== */
.pricing-section {
    padding: 4rem 1rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-card .price-tag {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-card .ideal-for {
    font-style: italic;
    min-height: 40px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.features-list li i {
    color: #28a745;
    margin-top: 4px;
}

.pricing-card.recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.recommended .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-color-light);
}

/* ==========================================================================
   FAQ SECTION (Page d'accueil)
   ========================================================================== */
.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-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    font-size: 1.1rem;
    position: relative;
    padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\ea13';
    font-family: 'remixicon';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    margin-top: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* ==========================================================================
   GARANTIES
   ========================================================================== */
.guarantee-section {
    background-color: var(--section-bg);
    padding: 4rem 1rem;
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.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;
}

/* ==========================================================================
   COOKIES BANNER
   ========================================================================== */
.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;
    width: 100%;
    box-sizing: border-box;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner h3 {
    margin: 0;
    color: #2c5aa0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.cookie-banner p {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0 0 0.5rem 0;
}


.cookie-banner-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-links a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.cookie-banner-links a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.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-primary:hover {
    background: #1e3d6f;
}

.cookie-btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.cookie-btn-secondary:hover {
    background: #f0f4ff;
}

.cookie-btn-outline {
    background: transparent;
    color: #666;
    border: 1px solid #ccc;
}

.cookie-btn-outline:hover {
    background: #f5f5f5;
}

/* Cookie Modal */
.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, visibility 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;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    color: #2c5aa0;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.cookie-modal-close:hover {
    background: #f5f5f5;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.cookie-category-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.cookie-toggle-slider {
    background-color: #2c5aa0;
}

input:checked+.cookie-toggle-slider:before {
    transform: translateX(28px);
}

.cookie-category-essential .cookie-toggle {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: #f9f9f9;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* ==========================================================================
   COOKIES BANNER - AMÉLIORATIONS RESPONSIVE MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
        border-top: 2px solid #e0e0e0;
        max-height: 70vh;
        overflow-y: auto;
    }

    .cookie-banner-container {
        gap: 1rem;
    }

    .cookie-banner-content {
        gap: 0.75rem;
    }

    .cookie-banner h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .cookie-banner p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #555;
    }

    .cookie-banner-links {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .cookie-banner-links a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        justify-content: flex-start;
    }

    .cookie-banner-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .cookie-btn {
        width: 100%;
        min-width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
        margin: 0;
        flex: none;
    }

    .cookie-btn-primary {
        order: 1;
        background: #2c5aa0;
        font-weight: 600;
    }

    .cookie-btn-secondary {
        order: 2;
        background: white;
        border: 2px solid #2c5aa0;
        color: #2c5aa0;
    }

    .cookie-btn-outline {
        order: 3;
        background: transparent;
        color: #666;
        border: 1px solid #ccc;
    }

    .cookie-modal {
        padding: 0.5rem;
    }

    .cookie-modal-content {
        max-width: 95%;
        margin: 0.5rem;
        max-height: 85vh;
        border-radius: 10px;
    }

    .cookie-modal-header {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.2rem;
    }

    .cookie-modal-body {
        padding: 1.25rem;
    }

    .cookie-category {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-toggle {
        align-self: flex-start;
    }

    .cookie-modal-footer {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem 1rem;
        max-height: 65vh;
    }

    .cookie-banner h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .cookie-banner p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .cookie-btn {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

}

/* Version ultra compacte pour mobile */
@media (max-width: 360px) {
    .cookie-banner {
        padding: 0.5rem 0.75rem 0.75rem;
    }

    .cookie-banner h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .cookie-banner p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .cookie-btn {
        padding: 0.7rem 0.85rem;
        font-size: 0.85rem;
    }
}

/* Animation pour l'apparition sur mobile */
@media (max-width: 768px) {
    .cookie-banner.active {
        transform: translateY(0);
        animation: slideUpMobile 0.3s ease-out;
    }

    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }
}

/* ==========================================================================
   BOUTON RETOUR EN 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);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#btnTop:active {
    transform: translateY(-1px);
}

#btnTop i {
    transition: transform 0.3s ease;
}

#btnTop:hover i {
    transform: scale(1.1);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@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 ripple {
    0% {
        transform: scale(0, 0) translate(-50%);
        opacity: 1;
    }

    100% {
        transform: scale(50, 50) translate(-50%);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .footer-links-col a,
    .contact-list a,
    .nav-link {
        padding: 12px 0;
        display: block;
    }

    .btn {
        min-height: 48px;
    }

    input,
    select,
    textarea,
    .form-control {
        font-size: 16px !important;
    }

    .container-top-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding: 8px 10px;
    }

    .top-bar-contact {
        width: 100%;
        justify-content: center;
    }

    .top-bar-promo {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

}

/* Ajustement supplémentaire pour très petits écrans */
@media (max-width: 480px) {
    .container-top-bar {
        gap: 8px;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-link span {
        font-size: 0.85rem;
    }

    .promo-msg {
        font-size: 0.8rem;
    }
}


.price-update {
    animation: pulse 0.4s ease-out;
}

.poster {
    background-color: #2B3648;
    color: #cbd5e1;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 10px;
    margin-top: 300px;
}

/* ==========================================================================
   RESPONSIVE - REGROUPÉ PAR BREAKPOINT
   ========================================================================== */

@media (max-width: 1200px) {
    html {
        font-size: 17px;
    }

    .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) {
    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .simulator-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        padding: calc(var(--header-height) + 2rem) 2rem;
        overflow-y: auto;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-items.active {
        right: 0;
    }

    .nav-items .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-items .btn,
    .nav-items .nav-cta {
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-item-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    html {
        font-size: 16px;
    }

    .top-bar {
        display: block;
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .contopbar {
        justify-content: center;
    }

    .top-bar-left {
        gap: 1rem;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .top-bar-right {
        justify-content: center;
    }

    .promo-text {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }

    .logo-container picture,
    .logo-container img {
        height: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .simulator-form,
    .simulator-result {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons,
    .social-links,
    .contact-info li {
        justify-content: center;
    }

    .zone-badge {
        justify-content: center;
    }

    .footer-bottom-container,
    .bottom-grid {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links,
    .legal-links {
        justify-content: center;
    }

    .legal-links a {
        margin: 0.5rem;
    }

    #btnTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        min-width: 100%;
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .key-takeaways li,
    .benefits-list li {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .simulateur-note {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .bottom-grid {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.75rem;
    }

    .promo-text {
        font-size: 0.8rem;
    }

    .navbar-container {
        padding: 0 0.5rem;
    }

    .container {
        padding: 0 15px;
    }

    #btnTop {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
}

/* --- BANDEAU DISCRET vCARD --- */
.vcard-banner-section {
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.vcard-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.vcard-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #ffffff 0%, #fefefe 100%);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 30px;
}

.vcard-banner-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.06),
        0 20px 25px -5px rgba(0, 0, 0, 0.04);
}

.vcard-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary-color, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.15);
}

.vcard-text h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.vcard-text p {
    margin: 6px 0 0;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

.vcard-text strong {
    color: var(--primary-color, #2563eb);
    font-weight: 700;
}

.vcard-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.btn-banner {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-banner.primary {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    border: none;
    background: linear-gradient(135deg, var(--primary-color, #2563eb) 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-banner.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-banner.primary:hover::before {
    left: 100%;
}

.btn-banner.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-banner.primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.qr-trigger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    transition: transform 0.3s ease;
}

.qr-trigger-wrapper:hover {
    transform: translateY(-2px);
}

.qr-hint {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
    white-space: nowrap;
}

.mini-qr {
    padding: 6px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mini-qr:hover {
    border-color: var(--primary-color, #2563eb);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.1);
}

.mini-qr img {
    display: block;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .vcard-banner-section {
        padding: 1.5rem 1rem;
    }

    .vcard-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
        gap: 24px;
        border-radius: 12px;
    }

    .vcard-text {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .icon-circle {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

    .vcard-text h3 {
        font-size: 1.3rem;
    }

    .vcard-text p {
        font-size: 1.05rem;
        max-width: 90%;
        margin: 8px auto 0;
    }

    .vcard-actions {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: stretch;
    }

    .btn-banner.primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1.05rem;
    }

    .qr-trigger-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-top: 1px solid #f1f5f9;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vcard-banner-content {
        padding: 1.5rem;
    }

    .vcard-text h3 {
        font-size: 1.2rem;
    }

    .vcard-text p {
        font-size: 0.95rem;
    }

    .btn-banner.primary {
        padding: 12px 16px;
    }

    .qr-trigger-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ==========================================================================
   PAGE OÙ COLLER AFFICHES GRAND ANGOULEME - STYLES SPÉCIFIQUES
   ========================================================================== */

.legal-grid,
.illegal-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,
.illegal-item,
.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);
}

.illegal-item {
    border: 2px solid #ffcdd2;
}

.alternative-card {
    border-top: 5px solid var(--secondary-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    background: #e3f2fd;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.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;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.2rem;
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pro-tip {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    border-left: 5px solid #7e57c2;
}



.final-recommendation {
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    text-align: center;
}

@media (max-width: 768px) {

    .legal-grid,
    .illegal-grid,
    .alternatives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}

/* ==========================================================================
   INTRO SEO AMÉLIORÉE
   ========================================================================== */
.intro-lead {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color-dark);
}

.lead-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lead-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.expert-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.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;
}

.expert-note p {
    margin: 0;
    color: #92400e;
    line-height: 1.5;
}

/* SECTION FONDATRICE & VALEURS */
.founder-values-section {
    padding: 100px 0;
    background: var(--light-gray-color);
    position: relative;
    overflow: hidden;
}

.founder-values-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 111, 187, 0.05) 0%, rgba(44, 111, 187, 0) 70%);
    z-index: 0;
}

.founder-values-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, rgba(231, 76, 60, 0) 70%);
    z-index: 0;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.founder-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    border-top: 4px solid var(--primary-color);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-photo-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white-color);
}

.founder-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.founder-title {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 25px;
    font-size: 1.1rem;
}

.founder-quote {
    font-style: italic;
    color: var(--text-color);
    background: #f8f9ff;
    padding: 20px 25px 20px 45px;
    border-radius: 10px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.founder-quote::before {
    content: '“';
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    line-height: 1;
}

.values-container {
    flex: 1.5;
    min-width: 320px;
}

.values-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: #fffffe;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    border-bottom: 3px solid transparent;
}

.value-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #003262;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.value-icon i {
    font-size: 1.8rem;
    color: #f8f9ff;
    transition: var(--transition-base);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #003262;
    margin: 0;
}

.value-card p {
    color: #003262;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .founder-card {
        margin: 0 auto;
    }

    .values-container {
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-lead {
        padding: 1.5rem;
    }

    .lead-cta {
        flex-direction: column;
    }

    .lead-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .value-proposition-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Tableau page service 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;
}

.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;
}

@media (max-width: 1024px) {

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .comparison-table thead th {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 30px 0 20px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .comparison-table {
        display: block;
        min-width: 0;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
        text-align: left;
    }

    .comparison-table tr {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background-color: var(--white-color);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        border-left: 4px solid var(--primary-color);
        position: relative;
    }

    .comparison-table td {
        padding: 0.75rem 0;
        border-bottom: none;
    }

    .comparison-table td:first-child {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark-color);
        padding-bottom: 0.5rem;
        margin-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        background-color: transparent;
    }

    .comparison-table td:nth-child(2)::before {
        content: "Collage d'Affiches: ";
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.25rem;
    }

    .comparison-table td:nth-child(3)::before {
        content: "Affichage Commerces: ";
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.25rem;
    }

    .comparison-table td:nth-child(4)::before {
        content: "Tractage / Flyers: ";
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.25rem;
    }

    .comparison-table td:not(:first-child) {
        font-size: 0.95rem;
        color: var(--text-color);
        padding-left: 0;
    }
}

/* ==========================================================================
   ENCADRÉS "LOCAL INSIGHT" POUR ou-coller-grand-angouleme.html
   ========================================================================== */
.local-insight {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 1.75rem;
    border-radius: 14px;
    border-left: 5px solid var(--primary-color, #3b82f6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    max-width: 900px;
    margin: 2rem auto;
}

.local-insight:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}

.local-insight h4 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.local-insight h4 i {
    color: var(--primary-color, #3b82f6);
    font-size: 1.35rem;
}

.local-insight p {
    color: #334155;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.local-insight p strong {
    color: #1e293b;
    font-weight: 600;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .local-insight {
        padding: 1.25rem;
        margin: 1.5rem;
    }

    .local-insight h4 {
        font-size: 1.15rem;
    }

    .local-insight p {
        font-size: 0.95rem;
    }
}

/* COMPARAISON : AUTORISÉ vs INTERDIT */
.comparison-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.comparison-card {
    padding: 2rem;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.comparison-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 0.7rem;
    padding-left: 1.6rem;
    position: relative;
}

.comparison-card.legal {
    border-left: 6px solid #16a34a;
}

.comparison-card.legal .card-icon {
    color: #16a34a;
}

.comparison-card.illegal {
    border-left: 6px solid #dc2626;
}

.comparison-card.illegal .card-icon {
    color: #dc2626;
}

.legal-reminder {
    margin-top: 3rem;
    padding: 1.8rem;
    background: #fff7e6;
    border-left: 6px solid #FEC107;
    border-radius: 14px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.legal-reminder h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #B45309;
}

.legal-reminder h3 i {
    font-size: 1.5rem;
    color: #D97706;
}

.legal-reminder p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-reminder strong {
    font-weight: 700;
    color: #111827;
}

@media (max-width: 900px) {
    .comparison-section {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        padding: 1.6rem;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.7rem;
    }

    .legal-reminder {
        padding: 1.4rem;
    }
}

/* SECTION CALENDRIER D'AFFICHAGE OPTIMAL */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.calendar-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.calendar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.calendar-item:hover::before {
    transform: scaleX(1);
}

.calendar-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.calendar-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calendar-item h3 i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.calendar-item:nth-child(1) h3 i {
    color: #f59e0b;
}

.calendar-item:nth-child(2) h3 i {
    color: #10b981;
}

.calendar-item:nth-child(3) h3 i {
    color: #3b82f6;
}

.calendar-item:nth-child(4) h3 i {
    color: #ec4899;
}

.calendar-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.98rem;
    margin: 0;
}

.calendar-item p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.planning-tip {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 2rem;
    border-radius: 14px;
    margin-top: 3rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    position: relative;
}

.planning-tip::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.planning-tip h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.planning-tip h3 i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.planning-tip p {
    color: #334155;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.planning-tip p strong {
    color: #1e40af;
    font-weight: 600;
}

.calendar-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.calendar-item:nth-child(1) {
    animation-delay: 0.1s;
}

.calendar-item:nth-child(2) {
    animation-delay: 0.2s;
}

.calendar-item:nth-child(3) {
    animation-delay: 0.3s;
}

.calendar-item:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 992px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calendar-item {
        padding: 1.5rem;
    }

    .calendar-item h3 {
        font-size: 1.15rem;
    }

    .planning-tip {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .planning-tip h3 {
        font-size: 1.15rem;
    }

    .planning-tip p {
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .calendar-item h3 {
        flex-direction: row;
        gap: 0.5rem;
    }

    .calendar-item h3 i {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   SECTION EXEMPLES DE CAMPAGNES RÉUSSIES
   ========================================================================== */
.campaign-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.campaign-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.campaign-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(37, 99, 235, 0.04));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.campaign-item:hover::before {
    opacity: 1;
}

.campaign-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.campaign-item>i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.campaign-item:nth-child(1)>i {
    color: #8b5cf6;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.campaign-item:nth-child(2)>i {
    color: #ef4444;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.campaign-item:nth-child(3)>i {
    color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.campaign-item:nth-child(4)>i {
    color: #2563eb;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.campaign-item:hover>i {
    transform: scale(1.15) rotate(5deg);
}

.campaign-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.campaign-item:hover h3 {
    color: var(--primary-color);
}

.campaign-item p {
    color: var(--text-color-light);
    line-height: 1.6;
    font-size: 0.98rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.campaign-item {
    animation: fadeInScale 0.6s ease-out backwards;
}

.campaign-item:nth-child(1) {
    animation-delay: 0.1s;
}

.campaign-item:nth-child(2) {
    animation-delay: 0.2s;
}

.campaign-item:nth-child(3) {
    animation-delay: 0.3s;
}

.campaign-item:nth-child(4) {
    animation-delay: 0.4s;
}

@media (max-width: 992px) {
    .campaign-examples {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .campaign-examples {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .campaign-item {
        padding: 2rem 1.5rem;
    }

    .campaign-item>i {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }

    .campaign-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .campaign-item {
        padding: 1.75rem 1.25rem;
    }

    .campaign-item>i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .campaign-item h3 {
        font-size: 1.1rem;
    }

    .campaign-item p {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   SECTION NAVIGATION PRO (PAGE NAV PRO)
   ========================================================================== */
.page-nav-pro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-color-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.nav-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.event-card {
    border-top: 4px solid #4f46e5;
}

.political-card {
    border-top: 4px solid #dc2626;
}

.calculator-card {
    border-top: 4px solid #059669;
}

.contact-card {
    border-top: 4px solid #f59e0b;
    cursor: default;
}

.nav-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.nav-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.event-card .nav-card-icon {
    background: linear-gradient(135deg, #ede9fe, #e0e7ff);
    color: #4f46e5;
}

.political-card .nav-card-icon {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
}

.calculator-card .nav-card-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.contact-card .nav-card-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #f59e0b;
}

.nav-card-badge {
    background: var(--light-color);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.event-card .nav-card-badge {
    background: #e0e7ff;
    color: #4f46e5;
}

.political-card .nav-card-badge {
    background: #fee2e2;
    color: #dc2626;
}

.calculator-card .nav-card-badge {
    background: #d1fae5;
    color: #059669;
}

.contact-card .nav-card-badge {
    background: #fef3c7;
    color: #d97706;
}

.nav-card h3 {
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    color: var(--text-color-dark);
    line-height: 1.3;
}

.nav-card p {
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.nav-card-footer {
    margin-top: auto;
}

.nav-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.nav-card:hover .nav-card-cta {
    gap: 0.75rem;
}

.contact-card .btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

.service-note {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-note-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-note-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color-dark);
    font-size: 1.1rem;
}

.service-note-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.service-note-content strong {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-nav-pro {
        padding: 3rem 0;
    }

    .nav-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-card {
        padding: 1.5rem;
    }

    .service-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-note-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1rem;
    }

    .nav-card h3 {
        font-size: 1.2rem;
    }
}

/* ============================
   PLAN DU SITE
============================ */
.footer-sitemap {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-sitemap h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-sitemap .highlight {
    color: #ef4444;
}

.sitemap-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.sitemap-links a {
    color: #003262;
    text-decoration: none;
    transition: color .3s ease;
}

.sitemap-links a:hover {
    color: #1e293b;
}

/* SECTION : GRID DES EMPLACEMENTS */
.locations-grid {
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1200px;
    font-family: 'Montserrat', sans-serif;
}

.locations-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2B3648;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.locations-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #FEC107;
    margin: 12px auto 0;
    border-radius: 4px;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.location-category {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    border-left: 6px solid #2B67A7;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.location-category h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2B3648;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-category h4 i {
    font-size: 1.3rem;
    color: #2B67A7;
}

.location-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-category li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.45;
}

.location-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #FEC107;
    font-size: 1.2rem;
    line-height: 1;
}

.location-category li strong {
    color: #2B67A7;
    font-weight: 600;
}

@media (max-width: 600px) {
    .locations-title {
        font-size: 1.6rem;
    }

    .location-category {
        padding: 20px;
    }

    .location-category h4 {
        font-size: 1.15rem;
    }
}

/* SECTION : ZONES À FORTE VISIBILITÉ */
.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;
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.6rem;
    }

    .visibility-item {
        padding: 25px 18px;
    }

    .visibility-item i {
        font-size: 1.9rem;
    }
}

.ri-Loader-4-line {
    display: inline-block;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.presentation-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 6rem 0 5rem;
}

.preview-card img {
    filter: grayscale(0.5) contrast(1.2);
    transition: all 0.5s ease;
}

.preview-card:hover img {
    filter: grayscale(0);
}

.launch-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px dashed rgba(255, 255, 255, 0.5) !important;
}

.faq-article-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Styles généraux des pages cgv et cookies menu  */
.page-navigation {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5aa0;
}

.page-navigation h3 {
    margin-top: 0;
    color: #2c5aa0;
}

.page-navigation ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-navigation li {
    margin-bottom: 0.5rem;
}

.page-navigation a {
    text-decoration: none;
    color: #2c5aa0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: inline-block;
}

.page-navigation a:hover {
    background-color: #2c5aa0;
    color: white;
}

/* ==========================================================================
   SECTION LOCAL INSIGHTS (CONTENU UNIQUE PAR DÉPARTEMENT)
   ========================================================================== */
.local-insights {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.local-insights .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.local-insights h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.local-insights h2 .highlight {
    color: var(--primary-color);
    display: inline-block;
}

.local-insights .hero-subtitle-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.insight-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    transition: all 0.3s ease;
}

.insight-card:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.insight-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.insight-card p strong {
    color: #1e293b;
    font-weight: 600;
}

.insight-locality-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-label.promo-label {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 10px 20px;
    border-radius: 1rem;
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insight-card {
    animation: fadeInUpCard 0.6s ease-out backwards;
}

.insight-card:nth-child(1) {
    animation-delay: 0.1s;
}

.insight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.insight-card:nth-child(3) {
    animation-delay: 0.3s;
}

@media (max-width: 992px) {
    .local-insights h2 {
        font-size: 2rem;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .local-insights {
        padding: 3rem 0;
        margin: 3rem 0;
    }

    .local-insights h2 {
        font-size: 1.8rem;
    }

    .local-insights .hero-subtitle-section {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insight-card {
        padding: 2rem 1.5rem;
    }

    .insight-card i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .insight-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .local-insights h2 {
        font-size: 1.6rem;
    }

    .insight-card {
        padding: 1.75rem 1.25rem;
    }

    .insight-card i {
        font-size: 2.2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .insight-card p {
        font-size: 0.95rem;
    }
}

.testimonial {
    position: relative;
    max-width: 720px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: #f8f9fb;
    border-left: 6px solid #FEC107;
    border-radius: 6px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.testimonial::before {
    content: "“";
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(43, 103, 167, 0.15);
    font-family: serif;
}

.testimonial p {
    margin: 0 0 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2B3648;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2B67A7;
    text-align: right;
}

@media (max-width: 600px) {
    .testimonial {
        padding: 1.5rem;
    }

    .testimonial p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SECTION CALENDRIER ÉLECTORAL
   ========================================================================== */
.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: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.expertise-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Google Review */
.icon-footer-star {
    width: 1.1rem;
    height: 1.1rem;
    color: #fbbf24;
    fill: currentColor;
    stroke: currentColor;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.rating-stars svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #fbbf24;
    fill: currentColor;
}

.rating-text {
    margin-left: 0.5rem;
    color: white;
    font-weight: 600;
}

/* == Google Review Section == */
.google-review-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 12px);
    /* Gap responsive */
    background: white;
    color: #1f2937;
    padding: clamp(10px, 2vw, 12px) clamp(16px, 4vw, 24px);
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 3vw, 1rem);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: fit-content;
    max-width: 100%;
}

.google-review-btn svg {
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
    flex-shrink: 0;
}

.google-review-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Mobile : pleine largeur si nécessaire */
@media screen and (max-width: 480px) {
    .google-review-btn {
        width: 100%;
    }
}


/* Google Trust Box */
.google-trust-box {
    margin-top: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-val {
    color: white;
    font-weight: 700;
    margin-left: 8px;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1e293b;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: box-shadow 0.3s;
}

.btn-google:hover {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.google-review-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Effet au survol */
.google-review-btn:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    background-color: #f9fafb;
}


.bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-gralon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-gralon__label {
    font-size: 0.9em;
    color: #888;
}

.footer-gralon img {
    width: auto;
    height: 40px;
    transition: opacity 0.3s;
}

.footer-gralon img:hover {
    opacity: 0.9;
}

.footer-bottom-right {
    text-align: right;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .bottom-grid {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        width: 100%;
    }

    .footer-gralon {
        justify-content: center;
    }

    .legal-links {
        justify-content: center;
    }

    .google-review-container {
        text-align: center;
    }

    .rating-stars {
        justify-content: center;
    }

    .footer-sitemap {
        text-align: center;
    }
}

/* SECTION CTA - Grand-Angoulême */
.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;
}




/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* TABLE DES MATIÈRES - PAGE TOC */
.page-toc {
    background: #f8f9fa;
    border-left: 4px solid #003262;
    padding: 1.5rem;
    margin: 2rem 0 3rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-toc h3 {
    color: #003262;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 50, 98, 0.1);
    font-weight: 700;
}

.page-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-toc li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.2s ease;
}

.page-toc li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-toc li:hover:before {
    transform: translateX(3px);
    color: #003262;
}

.page-toc a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px dashed transparent;
}

.page-toc a:hover {
    color: #003262;
    border-bottom-color: #003262;
    transform: translateX(5px);
}

.page-toc a:active {
    color: #ff6b35;
}

/* Indicateur visuel pour la section active */
.page-toc li.active a {
    color: #003262;
    font-weight: 600;
    background: rgba(0, 50, 98, 0.05);
    padding-left: 0.5rem;
    border-radius: 4px;
}

.page-toc li.active:before {
    content: "⇒";
    color: #003262;
}

/* Version fixe/sticky pour navigation longue */
.page-toc.sticky-toc {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 100;
}

/* Responsive */
@media (max-width: 768px) {
    .page-toc {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .page-toc h3 {
        font-size: 1.2rem;
    }

    .page-toc li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .page-toc {
        border-left: 3px solid #003262;
        padding: 1rem;
    }
}

/* stat-pub =*/
.stats-pub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
    margin: 0 auto;
    /* Centre le bloc horizontalement */
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Optionnel : pour un effet de couleur sur les chiffres */
.stat-card:nth-child(1) .stat-number {
    color: #3498db;
}

.stat-card:nth-child(2) .stat-number {
    color: #2ecc71;
}

.stat-card:nth-child(3) .stat-number {
    color: #e74c3c;
}

.stat-card:nth-child(4) .stat-number {
    color: #f39c12;
}

/* Conteneur du tampon entre les sections */
.section-divider-stamp {
    position: absolute;
    top: 8%;
    left: 5%;
    z-index: 30;
    pointer-events: none;
    /* évite que l'image bloque les clics */
}

.stamp-icon {
    width: clamp(120px, 20vw, 300px);
    /* responsive automatique */
    height: auto;
    transform: translateY(-50%) rotate(-5deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* Adaptation mobile */
@media (max-width: 768px) {

    .section-divider-stamp {
        top: 2.3%;
        left: 50%;
        transform: translateX(-50%);
    }

    .stamp-icon {
        width: 120px;
        /* Plus petit sur mobile */
    }
}



/* == */
.trust-bar {
    background: #f7f9fb;
    padding: 30px 20px;
}

.trust-bar-title{
text-align:center;
font-size:26px;
font-weight:700;

color:#1c1c1c;
margin-bottom:10px;
}

.trust-bar-subtitle{
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    max-width: 720px;
    margin: 10px auto 40px auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.trust-stat {
    text-align: center;
}

.trust-stat-number {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.trust-stat-label {
    font-size: 14px;
}

.trust-gift {
    color: #1a7f37;
    border: 1px solid #1a7f37;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f2fff5;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

/* == */

/* Séparateur vertical */
.trust-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 2rem;
    flex-shrink: 0;
}

/* Avis client */
.trust-review {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0 2rem 3rem;
}

.trust-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94f2e, #c73e22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(233, 79, 46, 0.25);
}

.trust-review-content {
    flex: 1;
}

.trust-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.4rem;
}

.trust-review-stars svg {
    width: 15px;
    height: 15px;
    fill: #fbbf24;
}

.trust-review-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 0.5rem 0;
}

.trust-review-author {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.trust-google-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.trust-google-badge svg {
    width: 14px;
    height: 14px;
}

/* Icônes réassurance */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    grid-column: 1 / -1;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.trust-badge-item svg {
    width: 16px;
    height: 16px;
    color: #e94f2e;
    flex-shrink: 0;
}

.trust-badge-item strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

@media (max-width: 900px) {
    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .trust-divider {
        display: none;
    }

    .trust-stats {
        padding: 2rem 0 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .trust-review {
        padding: 1.5rem 0;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .trust-stat-number {
        font-size: 1.7rem;
    }

    .trust-review {
        flex-direction: column;
        text-align: center;
    }

    .trust-review-stars {
        justify-content: center;
    }

    .trust-google-badge {
        display: none;
    }
}

/* == stat carente-maritime == */
/* En-tête de section */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 20px;
}



.section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Grille des formats */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 20px;
}

.format-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 119, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.format-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 119, 255, 0.15);
    border-color: rgba(0, 119, 255, 0.3);
}

.format-card-featured {
    border: 2px solid #0077ff;
    transform: scale(1.02);
}

.format-card-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.format-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.format-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 0.25rem 0;
    color: #1a1a2e;
}

.format-dimensions {
    font-size: 1rem;
    color: #0077ff;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 119, 255, 0.1);
}

.format-stats {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    padding: 0.5rem 0;
    background: #f5f5f5;
    border-radius: 12px;
}

.format-stat {
    text-align: center;
}

.format-stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c73e22;
}

.format-stat-label {
    font-size: 0.8rem;
    color: #003262;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.format-tag-popular {
    background: rgba(255, 106, 0, 0.1);
    color: #ff6a00;
}

.format-tag-premium {
    background: rgba(0, 119, 255, 0.1);
    color: #0077ff;
}

.format-tag-urban {
    background: rgba(0, 176, 155, 0.1);
    color: #00b09b;
}

.format-tag-strategic {
    background: rgba(142, 45, 226, 0.1);
    color: #8e2de2;
}

.format-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-top: 1rem;
    flex-grow: 1;
}

/* Container des statistiques */
.stats-container {
    max-width: 1400px;
    margin: 5rem auto 2rem auto;
    padding: 0 20px;
}

.stats-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

/* Vos statistiques existantes avec améliorations */
.stats-charente-maritime {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 2.5rem auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(4) .stat-number {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.stat-detail {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .format-card-featured {
        transform: scale(1);
    }

    .format-card-featured:hover {
        transform: translateY(-10px);
    }

    .section-description {
        font-size: 1rem;
    }

    .stats-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .stat-number {
        font-size: 2.4rem;
    }

    .format-icon {
        font-size: 2.5rem;
    }
}

/* ===== STYLES MODERNES POUR TRUST BAR SUR FOND BLANC ===== */
.trust-bar {
    background: transparent;
    padding: 3rem 1.5rem;
    position: relative;
    margin: 2rem 0 4rem;
    border-radius: 2rem;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* --- STATISTIQUES : Design épuré avec accent doré --- */
.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;
}

/* --- BADGES DE RÉASSURANCE : Design card moderne --- */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 1rem 1.5rem 1rem 1.25rem;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 260px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.02),
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 0 0 1px rgba(200, 168, 75, 0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
}

.trust-badge-item:hover {
    box-shadow:
        0 12px 24px -8px rgba(200, 168, 75, 0.15),
        0 0 0 1px rgba(200, 168, 75, 0.3);
    transform: translateY(-3px);
    background: #ffffff;
}

.trust-badge-item.badge-highlight {
    background: linear-gradient(145deg, #ffffff, #fefcf8);
    box-shadow:
        0 12px 24px -8px rgba(200, 168, 75, 0.2),
        0 0 0 2px rgba(200, 168, 75, 0.3);
}

.badge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(200, 168, 75, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 168, 75, 0.15);
}

.trust-badge-item:hover .badge-icon {
    background: rgba(200, 168, 75, 0.12);
    border-color: rgba(200, 168, 75, 0.3);
    transform: scale(1.05);
}

.badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: #c8a84b;
    stroke-width: 1.8;
    fill: none;
    transition: stroke 0.3s ease;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;

}

.badge-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.badge-text span {
    font-size: 0.70rem;
    font-weight: 500;
    color: #c8a84b;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- ÉLÉMENTS DÉCORATIFS SUBTILS --- */
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 168, 75, 0.2) 20%,
            rgba(200, 168, 75, 0.4) 50%,
            rgba(200, 168, 75, 0.2) 80%,
            transparent 100%);
}

.trust-bar::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 168, 75, 0.1) 50%,
            transparent 100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .trust-bar {
        padding: 2rem 1rem;
        margin: 1rem 0 2rem;
    }

    .trust-stats {
        padding: 1rem;
        gap: 0.5rem;
        border-radius: 24px;
    }

    .trust-stat {
        min-width: 120px;
        padding: 1rem 0.5rem;
    }

    .trust-stat::after {
        right: -0.25rem;
    }

    .trust-stat-number {
        font-size: 2rem;
    }

    .trust-stat-label {
        font-size: 0.7rem;
        max-width: 100px;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge-item {
        min-width: 160px;
        padding: 0.9rem 1rem;
    }

    .badge-icon {
        width: 38px;
        height: 38px;
    }

    .badge-icon svg {
        width: 18px;
        height: 18px;
    }

    .badge-text strong {
        font-size: 0.85rem;
    }

    .badge-text span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .trust-stats {
        flex-direction: row;
        gap: 0.25rem;
    }

    .trust-stat {
        min-width: calc(50% - 0.5rem);
    }

    .trust-stat:nth-child(even)::after {
        display: none;
    }

    .trust-badge-item {
        min-width: 100%;
        max-width: 100%;
    }

    .trust-stat::after {
        display: none;
    }

    .trust-stat {
        border-bottom: 1px solid rgba(200, 168, 75, 0.1);
        padding-bottom: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .trust-stat:last-child {
        border-bottom: none;
    }
}