/* assets/css/style.css - VERSION COMPLÈTE CONSOLIDÉE */

/* =========================================
   1. VARIABLES & COULEURS (Charte Client)
   ========================================= */
:root {
    /* Palette client issue du fichier COULEUR_COLORIMETRIE.jpg */
    --primary-color: #2c3e50;   /* Bleu nuit (Texte, Titres, Navbar) */
    --secondary-color: #f2c6d0; /* Bleu Ciel (Fonds, Déco) */
    --accent-color: #c65a66;    /* Rouge Terracotta (Boutons, Liens importants) */
    
    /* Neutres */
    --text-color: #2c3e50;      /* Bleu nuit pour le texte */
    --light-bg: #f2c6d0;        /* Blanc bleuté très doux */
    --white: #ffffff;
    
    /* Configuration Layout */
    --container-width: 1200px;
    --border-radius: 8px;
    --spacing-unit: 1rem;
    
    /* Typographie */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
}

/* =========================================
   2. RESET & BASE (Indispensable pour le look)
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased; /* Rendu plus net sur Mac */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- GESTION DES ICÔNES SVG DYNAMIQUES --- */

.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    /* Important : cela permet à l'icône de prendre la couleur définie par le CSS */
    fill: currentColor; 
    /* Si vos icônes sont en contours (outline), utilisez stroke: currentColor; et fill: none; */
}

/* Tailles */
.icon-md { width: 32px; height: 32px; }
.icon-lg { width: 48px; height: 48px; }
.icon-xl { width: 64px; height: 64px; }

/* Couleurs liées au Thème */
.text-accent .icon { color: var(--accent); }
.text-primary .icon { color: var(--primary); }
.text-white .icon { color: white; }

/* Cas particulier : Icône dans le cercle des services */
.icon-circle .icon {
    width: 40px;
    height: 40px;
    color: var(--accent); /* Par défaut en couleur accent */
}

/* Cas particulier : Listes à puces */
.check-list-g46 li svg, 
.check-list-simple li svg,
.check-list li svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    color: var(--accent);
    position: relative;
    top: -2px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none; /* Enlève les puces moches partout */
}

/* =========================================
   3. LAYOUT & UTILITAIRES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-padding { padding: 4rem 0; }
.bg-light { background-color: var(--light-bg); }
.mb-5 { margin-bottom: 3rem; }

/* =========================================
   HEADER MODERNE & NAVIGATION
   ========================================= */

/* Le Header Fixe */
.header-modern {
    position: fixed; /* Reste toujours en haut */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white; /* Transparent au début */
    transition: all 0.4s ease; /* Transition douce lors du scroll */
    padding: 1.2rem 0;
}

/* État "Scrolled" (ajouté par JS) */
.header-modern.scrolled {
    background: rgba(255, 255, 255, 0.95); /* Blanc presque opaque */
    backdrop-filter: blur(10px); /* Effet flou "Apple" derrière */
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0.8rem 0; /* Le menu se compacte légèrement */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
}

.logo .dot {
    color: var(--accent);
    font-size: 1.8rem;
    line-height: 0;
}

.sub-logo {
    font-size:12px;
}

/* Wrapper pour aligner Liens + Bouton */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Liens de navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

/* Animation de soulignement moderne */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary); /* La couleur reste, le soulignement fait le job */
}

.nav-links a:hover::after {
    width: 100%;
}

/* Bouton intégré au menu (Petit et élégant) */
.btn-nav {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
    letter-spacing: 0.5px;
}

.btn-nav:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* =========================================
   MENU MOBILE (HAMBURGER ANIMÉ)
   ========================================= */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary);
    border-radius: 3px;
}

/* Adaptation Mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* Caché à droite */
        width: 80%; /* Prend pas tout l'écran, plus élégant */
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 2rem;
    }

    .nav-wrapper.active {
        right: 0; /* Apparaît */
    }

    .nav-links {
        flex-direction: column;
        margin-bottom: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Animation Burger en Croix */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
/* =========================================
   5. COMPOSANTS (Boutons)
   ========================================= */
.btn-cta {
    background-color: var(--accent-color);
    color: var(--white) !important; /* Force le blanc */
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #a8424e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 90, 102, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* =========================================
   6. SECTIONS PAGE D'ACCUEIL
   ========================================= */

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    /* Fond subtil dégradé */
    background: linear-gradient(135deg, #fff 0%, #f0f4f8 100%); 
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap; /* Pour mobile */
}

.hero-trust span {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.85rem;
    color: #666;
    background: white;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.hero-img {
    border-radius: var(--border-radius);
    box-shadow: 20px 20px 0px var(--secondary-color);
    object-fit: cover;
    width: 100%;
}

/* Services / Offres */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.check-list {
    margin: 1.5rem 0;
}

.check-list li {
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--accent-color);
}

/* Section "Qui suis-je" */
.grid-2-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rounded-img {
    border-radius: var(--border-radius);
    width: 100%;
    box-shadow: -15px 15px 0 rgba(44, 62, 80, 0.1);
}

.tag {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: bold;
    display: block;
    margin-bottom: 1rem;
}

.quote-simple {
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin: 1.5rem 0;
}

/* Blog WP (Style simple) */
/* --- BLOG SECTION (Style G46) --- */

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

/* Grille des articles (venant de wp_mod.php) */
.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Carte Article */
.news-card {
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Image de l'article */
.news-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Contenu de l'article */
.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--primary);
    text-decoration: none;
}

.news-content h3 a:hover {
    color: var(--accent);
}

.news-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    align-self: flex-start; /* Aligne le lien à gauche */
}

.btn-read-more:hover {
    color: var(--accent);
}

/* Responsive pour l'entête du blog */
@media (max-width: 768px) {
    .section-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
}

/* =========================================
   7. RESPONSIVE (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .hero-grid, .grid-2-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .hero-img, .rounded-img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Menu Mobile */
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none; /* Caché par défaut */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
}
/* --- DESIGN MARKETING & HIGH TICKET --- */

/* Fonds et Contrastes */
.bg-dark {
    background-color: var(--primary-color); /* Bleu Nuit */
    color: white;
}
.text-white { color: white !important; }
.text-white-dimmed { color: rgba(255,255,255,0.85); }
.text-accent { color: var(--accent-color); }

/* Hero Tag */
.tag-hero {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Douleur (Grille) */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: rgba(255,255,255,0.05); /* Transparence subtile */
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Section Vision */
.shadow-strong {
    box-shadow: 20px 20px 0 var(--primary-color); /* Ombre dure graphique */
}

.highlight-box {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    background: linear-gradient(90deg, #f8f9fa 0%, rgba(255,255,255,0) 100%);
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
}

/* Offres (Pricing Style) */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 950px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
}

.offer-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.offer-header {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.offer-header h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }

.offer-target {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.9rem;
}

.offer-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-desc {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 500;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: auto;
}

/* Boutons larges */
.btn-large {
    padding: 16px 45px;
    font-size: 1.1rem;
}

/* assets/css/style.css - STYLE TEMPLATE G46 */

:root {
    /* Couleurs Client */
    --primary: #2c3e50;   /* Bleu Nuit */
    --accent: #c65a66;    /* Terracotta */
    --secondary: #a3c1d9; /* Bleu Ciel */
    --light: #f5edef;     /* Fond très clair */
    --white: #ffffff;
    --dark: #1a252f;
    
    /* Variables Design */
    --radius: 50px;       /* Boutons très arrondis comme le template */
    --card-radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* BASE */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--primary);
    line-height: 1.7;
    background-color: var(--white);
    margin: 0;
}

h1, h2, h3 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
img { max-width: 100%; height: auto; display: block; border-radius:15px;}
a { text-decoration: none; transition: 0.3s; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white { color: white; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }

/* HEADER (Simplifié) */
header { padding: 1.5rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--primary); font-weight: 500; }

/* 1. HERO G46 */
.hero-g46 {
    padding: 6rem 0 8rem 0; /* Grand padding bas pour laisser place à la barre stats */
    background: linear-gradient(100deg, #fff 50%, var(--light) 50%); /* Effet split background */
}

.hero-g46 .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content { flex: 1; }
.hero-image { flex: 1; position: relative; }
.hero-image img { border-radius: var(--card-radius); box-shadow: var(--shadow); }

.hero-subtitle {
    display: inline-block;
    background: rgba(163, 193, 217, 0.2); /* Bleu ciel transparent */
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.hero-buttons { margin-top: 2rem; display: flex; gap: 1rem; }

/* BOUTONS STYLE TEMPLATE */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 15px 35px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--accent);
        display: block;
    max-width: 300px;
    margin: 15px auto;
}
.btn-primary:hover { background: transparent; color: var(--accent); }

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--primary);
        display: block;
    max-width: 300px;
    margin: 15px auto;
}
.btn-secondary:hover { background: var(--primary); color: white; }

/* 2. STATS STRIP (Chevauchement) */
.stats-strip {
    margin-top: -4rem; /* Remonte sur le Hero */
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.stats-grid {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 2rem;
}

.stat-box {
    text-align: center;
    border-right: 1px solid #eee;
}
.stat-box:last-child { border: none; }

.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.9rem; color: #666; font-weight: 500; }

.stat-call .label { display: block; font-size: 0.8rem; color: #888; }
.phone-link { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* 3. GRID SYSTEM & SECTIONS */
.grid-split, .grid-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper { position: relative; }
.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

/* 4. SERVICES */
.sub-title {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-g46 {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--card-radius);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}
.service-card-g46:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: transparent; }

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    color: var(--accent);
}

.link-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* 5. SOLUTIONS (Dark) */
.check-list-g46 { list-style: none; padding: 0; margin: 2rem 0; }
.check-list-g46 li { margin-bottom: 1rem; color: rgba(255,255,255,0.9); }
.btn-white { background: white; color: var(--primary); border: none; }
.btn-white:hover { background: #eee; }

/* 6. QUOTE */
.big-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}
.author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.avatar-small { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

/* 7. CTA FOOTER */
.btn-white-big {
    background: white;
    color: var(--accent);
    padding: 18px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
        display: block;
    max-width: 300px;
    margin: 15px auto;
}
.btn-white-big:hover { background: var(--primary); color: white; }

footer {
    padding-top:25px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-g46 .container, .grid-split, .grid-split-reverse, .stats-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .stats-strip { margin-top: 0; }
    .hero-buttons { justify-content: center; }
    .floating-card { display: none; } /* On cache ça sur mobile */
}

/* --- STYLE SECTION FORMATS (Conférences) --- */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.format-card {
    border: 1px solid #eee;
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.3s;
}

.format-card.featured {
    border: 2px solid var(--accent); /* Mise en avant de l'atelier */
    box-shadow: var(--shadow);
}

.format-header {
    background: var(--light);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.format-header h3 { margin: 0; font-size: 1.1rem; }

.format-time {
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.format-body { padding: 2rem; }

.check-list-simple { list-style: none; padding: 0; margin-top: 1.5rem; }
.check-list-simple li {
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}


/* --- HERO FULL BACKGROUND (Style Immersif) --- */
.hero-full-bg {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 8rem 0; /* Plus de hauteur */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    /* Optionnel : Effet Parallaxe fixe */
    background-attachment: fixed; 
}

/* Le filtre sombre pour que le texte blanc soit lisible */
.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.6) 100%);
    z-index: 1;
}

.relative-content {
    position: relative;
    z-index: 2; /* Pour passer au-dessus du filtre */
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content-center p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.opacity-90 { opacity: 0.9; }

.justify-center {
    justify-content: center;
}

/* Nouveau bouton blanc transparent */
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 15px 35px;
    border-radius: var(--radius);
    font-weight: 600;
    display: block;
    max-width: 300px;
    margin: 15px auto;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    display: block;
    max-width: 300px;
    margin: 15px auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-center h1 { font-size: 2.5rem; }
    .hero-full-bg { padding: 6rem 0; background-attachment: scroll; } /* Pas de parallaxe sur mobile */
}