/**
 * AQUA LOWTECH - CSS Principal
 * Design naturel, épuré et performant
 * Mobile-First & SEO-Optimized
 */

/* ====================================
   1. VARIABLES CSS (Palette de couleurs)
   ==================================== */
:root {
    /* Couleurs principales */
    --color-primary: #2d6a4f;      /* Vert forêt profond */
    --color-secondary: #52b788;    /* Vert aquatique */
    --color-accent: #74c69d;       /* Vert clair */
    
    /* Couleurs neutres */
    --color-dark: #1b4332;         /* Vert très foncé */
    --color-text: #2c3e50;         /* Gris anthracite */
    --color-text-light: #5a6c7d;   /* Gris moyen */
    --color-bg: #f8faf9;           /* Blanc cassé nature */
    --color-white: #ffffff;
    
    /* Typographie */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', Georgia, serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   2. RESET & BASE
   ==================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-secondary);
}

/* ====================================
   3. TYPOGRAPHIE
   ==================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* ====================================
   4. CONTENEUR PRINCIPAL
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}




/* ====================================
   LOGO - TAILLE RÉDUITE
   ==================================== */

.site-logo img,
.site-logo svg {
    max-height: 50px !important;
    width: auto;
    height: auto;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    max-height: 50px !important;
    width: auto;
    height: auto;
}



/* ====================================
   HEADER & NAVIGATION
   ==================================== */

.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

.site-title a {
    color: #2d6a4f;
    text-decoration: none;
}

.site-description {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.main-nav {
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #2d6a4f;
}

/* Écrans moyens */
@media (max-width: 1024px) {
    .site-header .container {
        padding: 0 1.5rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
}


/* ====================================
   6. CONTENU PRINCIPAL
   ==================================== */
.site-content {
    min-height: 60vh;
    padding: var(--spacing-lg) 0;
}

/* ====================================
   7. GRILLE D'ARTICLES (Page d'accueil)
   ==================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.article-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.15);
}

.article-thumbnail {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-body {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.article-title a {
    color: var(--color-dark);
}

.article-title a:hover {
    color: var(--color-primary);
}

.article-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.article-excerpt {
    color: var(--color-text);
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: var(--spacing-xs);
}

.read-more:hover {
    color: var(--color-secondary);
}

/* ====================================
   8. ARTICLE INDIVIDUEL (single.php)
   ==================================== */
.article-single {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

/* Fil d'Ariane */
.breadcrumbs {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--color-primary);
}

.breadcrumbs .separator {
    color: var(--color-text-light);
}

.breadcrumbs .current {
    color: var(--color-text);
}

/* En-tête de l'article */
.article-header {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.article-single .article-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.article-single .article-meta {
    justify-content: center;
    font-size: 0.95rem;
}

/* Image mise en avant */
.article-featured-image {
    margin: var(--spacing-md) 0;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

/* Contenu de l'article */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-content h2 {
    margin-top: var(--spacing-lg);
    padding-bottom: var(--spacing-xs);
    border-bottom: 3px solid var(--color-accent);
}

.article-content h3 {
    margin-top: var(--spacing-md);
    color: var(--color-primary);
}

.article-content img {
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

.article-content ul,
.article-content ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    background-color: rgba(82, 183, 136, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-md) 0;
    font-style: italic;
    color: var(--color-text);
}

/* Footer de l'article (tags) */
.article-footer {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-bg);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.article-tags a {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.article-tags a:hover {
    background-color: var(--color-primary);
}

/* Navigation entre articles */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.post-navigation a {
    background-color: var(--color-bg);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.post-navigation a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}


/* ====================================
   9. ARTICLES SIMILAIRES
   ==================================== */
.related-posts {
    max-width: 1200px;
    margin: var(--spacing-xl) auto var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: rgba(82, 183, 136, 0.05);
    border-radius: 16px;
}

.related-posts h2 {
    text-align: center;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.related-post-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.related-post-card h3 {
    padding: var(--spacing-sm);
    font-size: 1.1rem;
}

.related-post-card a {
    color: var(--color-dark);
}

/* ====================================
   10. PAGE (page.php)
   ==================================== */
.page-single {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.page-title {
    font-size: 2.8rem;
    color: var(--color-dark);
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ====================================
   11. ARCHIVES (archive.php)
   ==================================== */
.archive-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    color: var(--color-white);
}

.archive-title {
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.archive-description {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.pagination a,
.pagination .current {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.pagination a:hover,
.pagination .current {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ====================================
   12. PAGE 404
   ==================================== */
.error-404 {
    text-align: center;
    max-width: 600px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
}

.error-header h1 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.error-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 600;
    margin-top: var(--spacing-md);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.error-search,
.error-categories {
    margin-top: var(--spacing-lg);
}

/* ====================================
   13. FOOTER
   ==================================== */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info p {
    margin: 0.5rem 0;
}



/* ====================================
   15. UTILITAIRES
   ==================================== */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.hidden {
    display: none;
}

/* Amélioration de l'accessibilité */
:focus {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


/* ====================================
   TEMPLATE GUIDES DÉBUTANTS - MODERNE
   ==================================== */

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    padding: var(--spacing-xl) 0;
    margin-top: 0;
}


/* IMAGE HERO - STYLES POUR VRAIE PHOTO */
.hero-image img,
.hero-image .hero-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Effet hover sur l'image */
.hero-image img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .hero-image img {
        aspect-ratio: 16/9;
        max-height: 300px;
    }
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.hero-title .highlight {
    color: var(--color-primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background-color: rgba(82, 183, 136, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.stat span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.hero-image .image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    aspect-ratio: 4/3;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image .image-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* SECTIONS */
.why-section,
.steps-section,
.budget-section,
.errors-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.benefit-card {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.15);
}

.benefit-card.highlight-card {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
}

.benefit-card.highlight-card h3,
.benefit-card.highlight-card p {
    color: white;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-accent);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
    z-index: 2;
}

.timeline-content {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.timeline-content h3 {
    margin-bottom: var(--spacing-sm);
}

.checklist {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.checklist li {
    padding: 0.5rem 0;
}

.soil-layers {
    margin-top: var(--spacing-sm);
}

.layer {
    background-color: var(--color-bg);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--color-accent);
}

.plants-quick {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.plant-tag {
    background-color: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    display: inline-block;
}

/* COMPARISON TABLE */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.column-header {
    padding: var(--spacing-md);
    text-align: center;
}

.comparison-column.green .column-header {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
}

.comparison-column.red .column-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.column-header h3 {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.comparison-column ul {
    list-style: none;
    padding: var(--spacing-md);
    margin: 0;
}

.comparison-column ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-bg);
}

/* ERRORS GRID */
.errors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.error-card {
    background-color: #fff5f5;
    border: 2px solid #fecaca;
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
}

.error-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.error-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.error-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-primary-large {
    background-color: white;
    color: var(--color-primary);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary-large {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background-color: white;
    color: var(--color-primary);
}



/* Smartphones et très petits écrans */
@media (max-width: 768px) {
    /* RESET DES ESPACEMENTS */
    :root {
        --spacing-xs: 0.5rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }
    
    /* CONTAINER */
    .container {
        padding: 0 1rem;
    }
    
    /* HERO SECTION */
    .hero-section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat strong {
        font-size: 1.5rem;
    }
    
    .hero-image .image-placeholder {
        aspect-ratio: 16/9;
        font-size: 3rem;
    }
    
    .hero-image .image-placeholder span {
        font-size: 0.9rem;
    }
    
    /* SECTIONS */
    .why-section,
    .steps-section,
    .budget-section,
    .errors-section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* BENEFITS GRID */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .benefit-card {
        padding: var(--spacing-sm);
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    /* TIMELINE */
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        gap: var(--spacing-sm);
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-left: 0;
    }
    
    .timeline-content {
        padding: var(--spacing-sm);
        margin-left: 0;
        width: 100%;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .plants-quick {
        gap: 0.4rem;
    }
    
    .plant-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* COMPARISON TABLE */
    .comparison-table {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .comparison-column ul {
        padding: var(--spacing-sm);
    }
    
    .comparison-column ul li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    /* ERRORS GRID */
    .errors-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .error-card {
        padding: var(--spacing-sm);
    }
    
    .error-card h4 {
        font-size: 0.95rem;
    }
    
    .error-card p {
        font-size: 0.85rem;
    }
    
    /* CTA FINAL */
    .cta-final {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Très petits smartphones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
}



/* ====================================
   TEMPLATE MÉTHODE LOW-TECH
   ==================================== */

/* HERO MÉTHODE */
.methode-hero {
    background: linear-gradient(135deg, #e0f7e9 0%, #c8e6c9 100%);
    padding: 4rem 0 3rem;
}

.methode-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.methode-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-highlight {
    color: var(--color-primary);
    position: relative;
}

.methode-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--color-dark);
}

.methode-hero-image {
    position: relative;
}

.methode-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* INTRO */
.methode-intro {
    padding: 4rem 0;
    background-color: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.intro-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.intro-problem .intro-label {
    color: #e53e3e;
}

.intro-solution .intro-label {
    color: #38a169;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-size: 1.5rem;
}

.methode-quote {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: none;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* DEFINITION */
.methode-definition {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.definition-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.definition-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.concept-item {
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.concept-item.highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: white;
    border: none;
}

/* COMPARISON */
.methode-comparison {
    padding: 4rem 0;
    background-color: white;
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-side {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
}

.comparison-side.low-tech {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(116, 198, 157, 0.1));
}

.comparison-image {
    margin-bottom: 1.5rem;
}

.comparison-image img {
    width: 100%;
    border-radius: 12px;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: bold;
    text-align: center;
}

/* PILLARS */
.methode-pillars {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pillar-card.highlight {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
}

.pillar-card.highlight h3,
.pillar-card.highlight p,
.pillar-card.highlight strong {
    color: white;
}

.pillar-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pillar-image {
    margin-bottom: 1.5rem;
}

.pillar-image img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.pillar-detail {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-bg);
}

/* NO FILTER SECTION */
.methode-no-filter {
    padding: 4rem 0;
    background-color: white;
}

.no-filter-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.myth-buster {
    background-color: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.science-box {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(116, 198, 157, 0.1));
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.science-box ol {
    margin-left: 1.5rem;
}

.advantages-list {
    margin-top: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.advantage-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* PLANTS SECTION */
.methode-plants {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.plants-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.golden-rule {
    background-color: #fef6e7;
    border-left: 4px solid #f6ad55;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.plants-species {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.species-card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* WHY SECTION */
.methode-why {
    padding: 4rem 0;
    background-color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CTA */
.methode-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-cta-primary {
    background-color: white;
    color: var(--color-primary);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .methode-hero-content,
    .intro-grid,
    .definition-content,
    .no-filter-content,
    .plants-content {
        grid-template-columns: 1fr;
    }
    
    /* CORRECTION FLÈCHE MOBILE */
    .comparison-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-arrow {
        display: none; /* Masquer la flèche sur mobile */
    }
    
    /* Alternative : Afficher une flèche vers le bas */
    .comparison-side.high-tech::after {
        content: '↓';
        display: block;
        text-align: center;
        font-size: 2.5rem;
        color: var(--color-primary);
        margin-top: 1rem;
        font-weight: bold;
    }
    
    .pillars-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .methode-hero-title {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .plants-species {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ====================================
   TEMPLATE À PROPOS - AQUA LOW-TECH
   ==================================== */

/* HERO IMMERSIF */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
}

.about-hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.text-glow {
    color: #d4fc79;
    text-shadow: 0 0 20px rgba(212, 252, 121, 0.5);
}

.about-hero-quote {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.95;
    font-weight: 300;
}

/* INTRO */
.about-intro {
    padding: 4rem 0;
    background-color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.intro-first-letter::first-letter {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.intro-visual {
    text-align: center;
}

.visual-circle {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid var(--color-accent);
}

.visual-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-caption {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--color-text-light);
}

.about-quote-large {
    background: linear-gradient(135deg, rgba(212, 252, 121, 0.2), rgba(150, 230, 161, 0.2));
    border-left: 6px solid var(--color-secondary);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
    margin: 3rem 0;
}

/* MISSION */
.about-mission {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.mission-fears {
    background-color: #fff5f5;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #e53e3e;
}

.fears-list {
    list-style: none;
    padding: 0;
}

.fears-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
}

.mission-solution {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.solution-highlight {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--color-accent);
}

.mission-quote {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* LES 4 PILIERS */
.about-pillars {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-color: var(--color-dark); /* Fallback si pas d'image */
}

.pillars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pillars-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.91; /* Augmenté de 0.15 à 0.3 pour voir l'image */
}

.pillars-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    z-index: 2; /* Important : l'overlay doit être au-dessus de l'image */
}

.about-pillars .container {
    position: relative;
    z-index: 3; /* Le contenu doit être au-dessus de tout */
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label-white {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillars-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.pillars-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.pillars-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.pillar-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pillar-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pillar-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.pillar-item .subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.pillar-detail {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-bg);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-light);
}

/* QUE SIGNIFIE LOW-TECH */
.about-lowtech-meaning {
    padding: 4rem 0;
    background-color: white;
}

.lowtech-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.lowtech-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.myth-box {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.substitution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.substitution-card {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.sub-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.substitution-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.lowtech-conclusion {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(116, 198, 157, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

/* QUI SOMMES-NOUS */
.about-team {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.team-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-values {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.team-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.team-image img {
    width: 100%;
    height: auto;
}

/* CTA */
.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.about-cta .cta-content {
    text-align: center;
    color: white;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-hero {
    display: inline-block;
    background-color: white;
    color: var(--color-primary);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .intro-content,
    .mission-grid,
    .lowtech-content,
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .pillars-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .substitution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .pillars-cards {
        grid-template-columns: 1fr;
    }
    
    .visual-circle {
        width: 250px;
        height: 250px;
    }
}

/* ====================================
   TEMPLATE CONTACT
   ==================================== */

/* HERO CONTACT */
.contact-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.contact-success-message,
.contact-error-message {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-success-message {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.contact-error-message {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}


.contact-badge {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight-green {
    color: var(--color-primary);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* POURQUOI NOUS ÉCRIRE */
.contact-why {
    padding: 4rem 0;
    background-color: white;
}

.contact-why h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

/* SECTION SOCIALE */
.contact-social {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-benefits {
    margin: 2rem 0;
}

.benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.benefit-check {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #1877f2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.facebook-mockup {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.facebook-mockup img {
    width: 100%;
    height: auto;
}

/* AVANT DE NOUS ÉCRIRE */
.contact-before {
    padding: 4rem 0;
    background-color: white;
}

.before-box {
    background-color: #fffbeb;
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.before-box h2 {
    margin-bottom: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    text-align: left;
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.resource-link strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.resource-link p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* FORMULAIRE */
.contact-form-section {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.slow-response-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--color-accent);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
}

/* ====================================
   NEWSLETTER CTA PAGE CONTACT
   ==================================== */

.contact-newsletter {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 4rem 0;
}

.contact-newsletter .newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.contact-newsletter p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.contact-newsletter .newsletter-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Adapter le formulaire pour cette section */
.contact-newsletter .newsletter-form-container {
    max-width: 100%;
}

.contact-newsletter .form-input {
    text-align: center;
}

.contact-newsletter .newsletter-privacy {
    display: none; /* Cacher car on a déjà la note en dessous */
}

/* Mobile */
@media (max-width: 768px) {
    .contact-newsletter {
        padding: 3rem 0;
    }
    
    .contact-newsletter .newsletter-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-newsletter h2 {
        font-size: 1.5rem;
    }
    
    .contact-newsletter p {
        font-size: 1rem;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .social-content {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}



/* ====================================
   TEMPLATE ARCHIVE BLOG
   ==================================== */

/* HERO BLOG */
.blog-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.blog-badge {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-intro-box {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-intro-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.blog-highlight {
    background-color: rgba(82, 183, 136, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
    font-weight: 500;
}

/* LAYOUT BLOG + SIDEBAR */
.blog-content-section {
    padding: 4rem 0;
    background-color: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.blog-main {
    min-width: 0; /* Fix overflow */
}

/* GRILLE D'ARTICLES */
.articles-grid-blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.blog-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(45, 106, 79, 0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.meta-category {
    color: var(--color-primary);
    font-weight: 600;
}

.meta-separator {
    color: var(--color-text-light);
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--color-dark);
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-card-excerpt {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--color-bg);
}

.btn-read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.blog-card-date {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* SIDEBAR */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-accent);
}

.widget-content {
    font-size: 1rem;
    line-height: 1.7;
}

/* À PROPOS WIDGET */
.about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-accent);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-widget p {
    text-align: center;
    margin-bottom: 1rem;
}

/* CATÉGORIES WIDGET */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.75rem;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: white;
    border-radius: 8px;
    transition: var(--transition-smooth);
    color: var(--color-dark);
    font-weight: 500;
}

.category-item a:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateX(5px);
}

.category-icon {
    font-size: 1.5rem;
}

.category-name {
    flex-grow: 1;
}

.category-count {
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-item a:hover .category-count {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ARTICLES POPULAIRES */
.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-item {
    margin-bottom: 1rem;
}

.popular-item a {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background-color: white;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.popular-item a:hover {
    background-color: var(--color-accent);
    color: white;
}

.popular-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--color-dark);
    line-height: 1.4;
}

.popular-item a:hover h4 {
    color: white;
}

.popular-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.popular-item a:hover .popular-date {
    color: rgba(255, 255, 255, 0.8);
}

/* TAGS */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    background-color: white;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.tag-item:hover {
    background-color: var(--color-accent);
    color: white;
}

/* PAGINATION */
.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    padding: 0.75rem 1.25rem;
    background-color: white;
    color: var(--color-primary);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--color-primary);
    color: white;
}

/* PAS D'ARTICLES */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* LEAD MAGNET */
.blog-lead-magnet {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.lead-magnet-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lead-magnet-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.lead-magnet-box h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.lead-magnet-box > p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.lead-magnet-offer {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.lead-magnet-offer h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lead-magnet-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lead-magnet-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
}

.lead-magnet-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-lead-magnet {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-lead-magnet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: relative;
        top: 0;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-intro-box {
        padding: 1.5rem;
    }
    
    .blog-intro-box p {
        font-size: 1rem;
    }
    
    .blog-card-body {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.25rem;
    }
    
    .lead-magnet-box {
        padding: 2rem 1.5rem;
    }
    
    .lead-magnet-box h2 {
        font-size: 1.75rem;
    }
    
    .lead-magnet-form {
        flex-direction: column;
    }
}

/* ====================================
   TEMPLATE SINGLE ARTICLE
   ==================================== */

/* BREADCRUMBS */
.breadcrumbs-section {
    background-color: var(--color-bg);
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs .separator {
    color: var(--color-text-light);
}

.breadcrumbs .current {
    color: var(--color-dark);
    font-weight: 600;
}

/* CONTAINER NARROW */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER ARTICLE */
.article-header {
    padding: 3rem 0 2rem;
    text-align: center;
    background-color: var(--color-bg);
}

.article-category-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.article-meta-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--color-text-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    color: var(--color-accent);
}

/* IMAGE MISE EN AVANT */
.article-featured-image {
    background-color: var(--color-bg);
    padding: 0 0 3rem;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* LAYOUT ARTICLE */
.article-content-section {
    padding: 3rem 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* CONTENU PRINCIPAL */
.article-main {
    min-width: 0;
}

.article-excerpt {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    padding: 2rem;
    background-color: rgba(82, 183, 136, 0.1);
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-body h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--color-dark);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.article-body h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-primary);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.article-body blockquote {
    background-color: var(--color-bg);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.article-body a {
    color: var(--color-primary);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--color-secondary);
}

.article-body strong {
    font-weight: 700;
    color: var(--color-dark);
}

/* TAGS */
.article-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: 12px;
}

.tags-label {
    font-weight: 600;
    color: var(--color-dark);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tags .tag-item {
    background-color: white;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.article-tags .tag-item:hover {
    background-color: var(--color-accent);
    color: white;
}

/* PARTAGE SOCIAL */
.article-share {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 16px;
}

.article-share h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    color: white;
}

.share-facebook {
    background-color: #1877f2;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-pinterest {
    background-color: #e60023;
}

.share-email {
    background-color: #6b7280;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* NAVIGATION PREV/NEXT */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.nav-prev,
.nav-next {
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: 12px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-prev:hover,
.nav-next:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.nav-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.nav-prev:hover .nav-label,
.nav-next:hover .nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
    color: white;
}

.nav-next {
    text-align: right;
}

/* SIDEBAR ARTICLE */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.toc-widget {
    background-color: #fffbeb;
    border: 2px solid #fbbf24;
}

#table-of-contents {
    list-style: none;
    padding: 0;
}

#table-of-contents a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

#table-of-contents a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.95);
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sidebar-newsletter-form input[type="email"] {
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.sidebar-newsletter-form button {
    background-color: white;
    color: var(--color-primary);
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ARTICLES SIMILAIRES */
.related-articles {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.related-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.related-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(45, 106, 79, 0.15);
}

.related-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.related-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.related-card-title a {
    color: var(--color-dark);
}

.related-card-title a:hover {
    color: var(--color-primary);
}

.related-meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.related-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

/* ====================================
   NEWSLETTER CTA SINGLE PAGE
   ==================================== */

.article-newsletter-cta {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 4rem 0;
    margin: 4rem 0;
}

.newsletter-cta-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: 1rem !important;
    color: var(--color-text-light) !important;
    margin-bottom: 2rem !important;
}

/* Adapter le formulaire pour cette section */
.article-newsletter-cta .newsletter-form-container {
    max-width: 100%;
    margin-top: 2rem;
}

.article-newsletter-cta .form-input {
    text-align: center;
    border-color: #fbbf24;
}

.article-newsletter-cta .form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.article-newsletter-cta .btn-newsletter-submit {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.article-newsletter-cta .btn-newsletter-submit:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.article-newsletter-cta .newsletter-privacy {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
    .article-newsletter-cta {
        padding: 3rem 0;
        margin: 3rem 0;
    }
    
    .newsletter-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
    
    .cta-description {
        font-size: 0.95rem !important;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: relative;
        top: 0;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .share-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .cta-newsletter-form {
        flex-direction: column;
    }
    
    .breadcrumbs {
        font-size: 0.8rem;
    }
}


/* TABLE DES MATIÈRES */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--color-text);
    border-radius: 6px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.toc-list a:hover {
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding-left: 1rem;
}

.toc-h2 a {
    font-weight: 600;
}

.toc-h3 a {
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.toc-h3 a:hover {
    padding-left: 1.75rem;
}


/* ====================================
   HERO PRINCIPAL SIMPLIFIÉ
   ==================================== */

.home-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.home-hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-title-simple {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-accent {
    display: block;
    font-size: 2.25rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

.btn-hero-main {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-hero-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .home-hero {
        min-height: 70vh;
    }
    
    .hero-title-simple {
        font-size: 2.25rem;
    }
    
    .hero-accent {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
    }
    
    .btn-hero-main {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}

/* INTRODUCTION */
.home-intro {
    padding: 6rem 0;
    background-color: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    max-width: 550px;
}

.section-label {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.intro-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.link-arrow:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.badge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.4;
}

/* POURQUOI LOW-TECH */
.home-why {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.15);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.why-card p {
    line-height: 1.7;
    color: var(--color-text);
}

/* GUIDES */
.home-guides {
    padding: 6rem 0;
    background-color: white;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.guide-card {
    background-color: var(--color-bg);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.guide-icon {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
}

.guide-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.guide-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.guides-cta {
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.4);
}

/* BLOG HOME */
.home-blog {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card-home {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.blog-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(45, 106, 79, 0.15);
}

.blog-card-image-home {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card-home:hover .blog-card-image-home img {
    transform: scale(1.05);
}

.blog-card-content-home {
    padding: 2rem;
}

.blog-category-home {
    display: inline-block;
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-title-home {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-title-home a {
    color: var(--color-dark);
}

.blog-title-home a:hover {
    color: var(--color-primary);
}

.blog-excerpt-home {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-meta-home {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.blog-cta-home {
    text-align: center;
}

.btn-secondary-large {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.btn-secondary-large:hover {
    background-color: var(--color-primary);
    color: white;
}

/* NEWSLETTER HOME */
.home-newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.newsletter-box-home {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.newsletter-offer {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.newsletter-form-home {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form-home input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
}

.btn-newsletter-submit {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* TÉMOIGNAGES */
.home-testimonials {
    padding: 6rem 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--color-bg);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .why-grid,
    .guides-grid,
    .blog-grid-home,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-form-home {
        flex-direction: column;
    }
}

/* ====================================
   PAGE MENTIONS LÉGALES
   ==================================== */

/* HERO */
.legal-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* CONTENU */
.legal-content {
    padding: 4rem 0;
    background-color: white;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-secondary);
}

.legal-info-box {
    background-color: var(--color-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    margin: 1.5rem 0;
}

.legal-info-box p {
    margin-bottom: 0.5rem;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #fffbeb;
    border-radius: 12px;
    border: 2px solid #fbbf24;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 0.75rem;
}

.legal-footer p:last-child {
    margin-bottom: 0;
}

/* RETOUR */
.legal-back {
    padding: 3rem 0;
    background-color: var(--color-bg);
    text-align: center;
}

.btn-back {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.btn-back:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

/* ====================================
   MENTIONS LÉGALES - Info reCAPTCHA
   ==================================== */

.info-recaptcha {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #22c55e;
    margin-top: 2rem;
}

.info-recaptcha p {
    margin: 0;
    color: #166534;
}

.info-recaptcha strong {
    color: #15803d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section p {
        font-size: 1rem;
    }
    
    .legal-info-box {
        padding: 1rem;
    }
}

/* ====================================
   POLITIQUE DE CONFIDENTIALITÉ (en plus du CSS legal existant)
   ==================================== */

.legal-intro {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(116, 198, 157, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    margin-bottom: 3rem;
}

.intro-highlight {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.legal-highlight-box {
    background-color: #f0fdf4;
    border: 2px solid var(--color-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.legal-highlight-box p {
    margin: 0;
    font-weight: 600;
    color: var(--color-primary);
}

/* GRILLE DES DROITS */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.right-item {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.right-item h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.right-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* BOX ACTION */
.legal-action-box {
    background-color: #fffbeb;
    border: 2px solid #fbbf24;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.legal-action-box h3 {
    color: var(--color-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.legal-action-box p {
    margin-bottom: 1rem;
}

.legal-action-box .legal-list {
    margin: 1rem 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .right-item {
        padding: 1.5rem;
    }
    
    .legal-intro {
        padding: 1.5rem;
    }
}

/* ====================================
   CGU - ÉLÉMENTS SUPPLÉMENTAIRES
   ==================================== */

.legal-warning-box {
    background-color: #fff5f5;
    border: 2px solid #ef4444;
    border-left-width: 6px;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
}

.warning-icon {
    font-size: 3rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.legal-warning-box h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-warning-box p {
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.legal-warning-box p:last-child {
    margin-bottom: 0;
}

/* Box highlight (utilisé aussi dans les autres pages) */
.legal-highlight-box {
    background-color: #f0fdf4;
    border: 2px solid var(--color-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.legal-highlight-box p {
    margin-bottom: 0.75rem;
}

.legal-highlight-box p:last-child {
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .warning-icon {
        position: static;
        display: block;
        margin-bottom: 1rem;
    }
    
    .legal-warning-box {
        padding: 1.5rem;
    }
}


/* ====================================
   PAGE GESTION DES COOKIES
   ==================================== */

/* Bouton principal */
.cookies-panel-trigger {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.1), rgba(116, 198, 157, 0.1));
    border-radius: 16px;
    border: 2px solid var(--color-accent);
}

.btn-open-cookies {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.btn-open-cookies:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.4);
}

/* Cartes services */
.service-card {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-accent);
}

.service-card h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-card p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: var(--color-dark);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .btn-open-cookies {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* ====================================
   FORMULAIRE NEWSLETTER BREVO
   ==================================== */

.newsletter-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.btn-newsletter-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.btn-newsletter-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.btn-newsletter-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    margin-left: 0.5rem;
}

/* Messages */
.newsletter-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.newsletter-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.newsletter-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.newsletter-privacy a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .form-input {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-newsletter-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ====================================
   LEAD MAGNET - FORMULAIRE VERTICAL
   ==================================== */

.lead-magnet-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-magnet-form .form-group {
    width: 100%;
}

.lead-magnet-form .form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.lead-magnet-form .form-input:focus {
    border-color: #22c55e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.lead-magnet-form .form-input::placeholder {
    color: #94a3b8;
}

.lead-magnet-form .btn-lead-magnet-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lead-magnet-form .btn-lead-magnet-submit:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.lead-magnet-form .btn-lead-magnet-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lead-magnet-form .btn-loader {
    font-size: 1.2rem;
}

.form-privacy {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

/* Messages */
.lead-magnet-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

.lead-magnet-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.lead-magnet-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Mobile */
@media (max-width: 768px) {
    .lead-magnet-form-container {
        max-width: 100%;
    }
    
    .lead-magnet-form .form-input {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .lead-magnet-form .btn-lead-magnet-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}


/* ====================================
   RECAPTCHA - Cacher le badge
   ==================================== */

.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}




/* ====================================
   MENU MOBILE (< 768px)
   ==================================== */

@media (max-width: 768px) {
    
    /* Afficher le bouton hamburger */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 10001;
        background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
        color: white;
        border: none;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
    }
    
    .menu-toggle:active {
        transform: scale(0.95);
        background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    }
    
    /* Logo plus petit */
    .site-logo img,
    .site-logo svg,
    .custom-logo {
        max-height: 40px !important;
    }
    
    /* Header */
    .header-content {
        padding-right: 70px;
    }
    
    /* Navigation mobile fullscreen */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(27, 67, 50, 0.97) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 10000 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 2rem !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Menu ouvert */
    .main-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Liste des liens */
    .main-nav ul {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 320px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .main-nav li {
        width: 100% !important;
        border: none !important;
        margin: 0 !important;
    }
    
    /* Liens du menu */
    .main-nav a {
        display: block !important;
        width: 100% !important;
        padding: 1.1rem 1.5rem !important;
        text-align: center !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: white !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        transition: all 0.2s ease !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .main-nav a:hover,
    .main-nav a:focus,
    .main-nav a:active {
        background: rgba(116, 198, 157, 0.9) !important;
        color: white !important;
        transform: scale(1.02);
    }
    
    /* Bloquer le scroll du body */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* ====================================
   FOOTER MOBILE - TOUS LES LIENS
   ==================================== */

@media (max-width: 768px) {
    
    .site-footer {
        padding: 2.5rem 1rem 2rem !important;
        text-align: center !important;
    }
    
    .footer-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 0 1.5rem 0 !important;
        list-style: none !important;
    }
    
    .footer-nav li {
        width: 100% !important;
        max-width: 280px !important;
    }
    
    /* TOUS les liens du footer - incluant Tarteaucitron */
    .site-footer a,
    .footer-nav a,
    .footer-nav li a,
    #tarteaucitronManager,
    [onclick*="tarteaucitron"] {
        display: block !important;
        padding: 1rem 1.5rem !important;
        margin: 0.35rem auto !important;
        max-width: 280px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 10px !important;
        text-align: center !important;
        font-size: 1rem !important;
        color: white !important;
        opacity: 1 !important;
        text-decoration: none !important;
        cursor: pointer !important;
        
        /* Touch mobile obligatoire */
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
        user-select: none;
    }
    
    .site-footer a:hover,
    .site-footer a:focus,
    .site-footer a:active,
    .footer-nav a:hover,
    .footer-nav a:focus,
    .footer-nav a:active {
        background: rgba(116, 198, 157, 0.5) !important;
        color: white !important;
    }
    
    .footer-info {
        margin-top: 1.5rem !important;
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }
    
    .footer-info p {
        margin: 0.5rem 0 !important;
    }
}

/* ====================================
   TRÈS PETITS ÉCRANS (< 480px)
   ==================================== */

@media (max-width: 480px) {
    .menu-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .site-logo img,
    .site-logo svg,
    .custom-logo {
        max-height: 35px !important;
    }
    
    .main-nav a {
        padding: 1rem 1.25rem !important;
        font-size: 1.1rem !important;
    }
}



/* ====================================
   PAGE À PROPOS - RESPONSIVE
   ==================================== */

@media (max-width: 1024px) {
    .intro-content,
    .mission-grid,
    .lowtech-content,
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .pillars-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .substitution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .about-hero-content {
        padding: 1.5rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .text-glow {
        display: block;
        margin-top: 0.5rem;
    }
    
    .about-hero-quote {
        font-size: 1rem;
    }
    
    .about-intro,
    .about-mission,
    .about-pillars,
    .about-lowtech-meaning,
    .about-team,
    .about-cta {
        padding: 2.5rem 0;
    }
    
    .visual-circle {
        width: 200px;
        height: 200px;
        border-width: 5px;
    }
    
    .pillars-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pillar-item {
        padding: 1.5rem;
    }
    
    .pillar-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .pillars-title {
        font-size: 1.75rem;
    }
    
    .about-cta h2 {
        font-size: 1.75rem;
    }
    
    .btn-cta-hero {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .visual-circle {
        width: 180px;
        height: 180px;
    }
    
    .btn-cta-hero {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ====================================
   PAGE CONTACT - RESPONSIVE
   ==================================== */

@media (max-width: 1024px) {
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 2.5rem 0 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-why {
        padding: 2.5rem 0;
    }
    
    .contact-why h2 {
        font-size: 1.75rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .contact-social {
        padding: 2.5rem 0;
    }
    
    .btn-facebook {
        width: 100%;
        justify-content: center;
    }
    
    .contact-before {
        padding: 2.5rem 0;
    }
    
    .before-box {
        padding: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 2.5rem 0;
    }
    
    .form-intro h2 {
        font-size: 1.75rem;
    }
    
    .slow-response-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .contact-newsletter {
        padding: 2.5rem 0;
    }
    
    .contact-newsletter .newsletter-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-newsletter h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-why h2,
    .form-intro h2 {
        font-size: 1.5rem;
    }
}

/* ====================================
   FOOTER MOBILE - PROPRE & FONCTIONNEL
   ==================================== */
@media (max-width: 768px) {
    .site-footer {
        position: relative;
        z-index: 50;
        padding-bottom: 4rem; /* Juste un espace normal */
        background-color: #1b4332;
    }

    /* On garde ça pour être sûr que les liens soient bien cliquables */
    .footer-nav a {
        position: relative;
        z-index: 51;
        pointer-events: auto;
    }
}

/* ====================================
   FOOTER MOBILE - CORRECTIF LEAD DEV
   (À coller à la fin de main.css)
   ==================================== */
@media (max-width: 768px) {
    
    /* 1. SÉCURITÉ : On s'assure que le footer est bien positionné */
    .site-footer {
        position: relative !important;
        z-index: 100 !important; /* Au-dessus des éléments standards */
        padding-bottom: 100px;   /* Espace de confort en bas */
        background-color: #1b4332; /* Ton vert foncé */
    }

    /* 2. NAVIGATION : On force l'affichage en colonne */
    .footer-nav ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* 3. CLIC : On force les liens à être cliquables */
    .site-footer a,
    .footer-nav a {
        display: block !important;
        position: relative !important;
        z-index: 101 !important; /* Au-dessus du footer */
        pointer-events: auto !important; /* Réactive le clic */
        cursor: pointer !important;
        
        /* Zone de clic confortable */
        padding: 10px !important;
        background-color: rgba(255,255,255,0.05);
        border-radius: 8px;
    }

/* === TARTEAUCITRON MOBILE === */
    #tarteaucitronAlertBig {
        /* 1. POSITIONNEMENT ABSOLU */
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        
        /* 2. FORCE BRUTE SUR LA LARGEUR (Le secret est ici) */
        width: 100% !important;
        min-width: 100% !important;  /* Interdit d'être plus petit que l'écran */
        max-width: none !important;  /* Saute la limite de largeur du plugin */
        margin: 0 !important;        /* Tue toutes les marges externes */
        transform: none !important;  /* Empêche le plugin de le centrer artificiellement */
        
        /* 3. ESTHÉTIQUE & PADDING */
        box-sizing: border-box !important; /* Le padding est INCLUS dans la largeur */
        padding: 20px 20px 30px 20px !important; /* Un peu plus d'espace en bas pour le scroll */
        
        max-height: 85vh !important;
        overflow-y: auto !important;
        
        background-color: #1b4332 !important; 
        border: none !important;       /* Supprime les bordures parasites */
        border-radius: 20px 20px 0 0 !important; 
        box-shadow: 0 -5px 20px rgba(0,0,0,0.3) !important;
        z-index: 2147483647 !important; /* Toujours au-dessus */
    }

    /* Le texte d'explication - CENTRÉ */
    #tarteaucitronDisclaimerAlert {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        text-align: center !important; 
        display: block !important;
        width: 100% !important;
    }

    /* Les Boutons (Accepter / Refuser / Personnaliser) */
    #tarteaucitronAlertBig button {
        display: flex !important;      /* Flexbox pour centrer le texte PARFAITEMENT */
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 0 12px 0 !important; /* Un peu plus d'espace entre les boutons */
        padding: 14px !important;      /* Boutons plus hauts = plus facile à cliquer */
        font-size: 15px !important;
        font-weight: 600 !important;   /* Texte un peu plus gras */
        border-radius: 12px !important; /* Boutons bien arrondis */
        text-align: center !important;
    }

    /* Spécifique : Bouton "Tout accepter" (Vert) */
    #tarteaucitronPersonalization {
        margin-bottom: 12px !important;
    }

    /* Spécifique : Bouton "Tout refuser" (Bordure) */
    #tarteaucitronAllDenied2 {
        background-color: transparent !important;
        border: 2px solid rgba(255,255,255,0.3) !important; /* Bordure subtile mais visible */
        margin-top: 5px !important;
        color: #fff !important;
    }

}




/* ====================================
   SOMMAIRE MOBILE - VISIBILITÉ
   ==================================== */

/* Caché par défaut sur desktop */
.toc-mobile {
    display: none;
}

/* Visible uniquement sur mobile */
@media (max-width: 1024px) {
    
    /* Afficher le sommaire mobile */
    .toc-mobile {
        display: block;
        margin-bottom: 2rem;
    }
    
    /* Bouton toggle */
    .toc-mobile-toggle {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        padding: 1rem 1.25rem;
        background-color: #fffbeb;
        border: 2px solid #fbbf24;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-dark);
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    
    .toc-mobile-toggle:hover,
    .toc-mobile-toggle:active {
        background-color: #fef3c7;
    }
    
    .toc-mobile-toggle .chevron {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .toc-mobile-toggle.active .chevron {
        transform: rotate(180deg);
    }
    
    /* Contenu déroulant */
    .toc-mobile-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        background-color: #fffbeb;
        border: 2px solid #fbbf24;
        border-top: none;
        border-radius: 0 0 12px 12px;
        margin-top: -2px;
    }
    
    .toc-mobile-content.active {
        max-height: 500px;
        opacity: 1;
        padding: 1rem 1.25rem;
    }
    
    /* Cacher le widget sidebar sur mobile */
    .toc-widget {
        display: none !important;
    }
}


/* ══════════════════════════════════════════════════════════════════════════════
   TEMPLATE CASTING AQUA LOWTECH - STYLES CSS
   Mobile-First Responsive Design + Optimisations SEO
   ══════════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────────────
   VARIABLES CSS AQUA LOWTECH
   ────────────────────────────────────────────────────────────────────────────── */
:root {
    --vert-principal: #27ae60;
    --vert-fonce: #1a4d2e;
    --vert-clair: #e8f5e9;
    --vert-ultra-clair: #f0f9f4;
    --gris-texte: #2c3e50;
    --gris-clair: #ecf0f1;
    --blanc: #ffffff;
    --ombre-douce: 0 4px 15px rgba(39, 174, 96, 0.1);
    --ombre-forte: 0 8px 25px rgba(39, 174, 96, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ──────────────────────────────────────────────────────────────────────────────
   HERO SECTION CASTING
   ────────────────────────────────────────────────────────────────────────────── */

.casting-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-background-casting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background-casting img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-casting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(26, 77, 46, 0.85) 0%, 
        rgba(39, 174, 96, 0.75) 100%
    );
    z-index: -1;
}

.hero-content-casting {
    position: relative;
    z-index: 1;
    color: var(--blanc);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}

.casting-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.casting-breadcrumb a {
    color: var(--blanc);
    text-decoration: none;
    transition: var(--transition);
}

.casting-breadcrumb a:hover {
    color: #a8e6cf;
}

.casting-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.casting-h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--blanc);
}

.casting-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Featured Snippet Hero */
.featured-snippet-casting {
    background: rgba(255, 255, 255, 0.95);
    border-left: 5px solid var(--vert-principal);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
    box-shadow: var(--ombre-forte);
    backdrop-filter: blur(10px);
}

.snippet-title {
    color: var(--vert-fonce);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.snippet-list-casting {
    list-style: none;
    padding: 0;
    margin: 0;
}

.snippet-list-casting li {
    color: var(--gris-texte);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(26, 77, 46, 0.1);
}

.snippet-list-casting li:last-child {
    border-bottom: none;
}

.snippet-list-casting strong {
    color: var(--vert-principal);
    font-weight: 600;
}

/* ──────────────────────────────────────────────────────────────────────────────
   NAVIGATION PAR VOLUME
   ────────────────────────────────────────────────────────────────────────────── */

.volume-navigation {
    padding: 3rem 0;
    background: var(--vert-ultra-clair);
}

.volume-nav-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.volume-nav-header h2 {
    color: var(--vert-fonce);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.volume-nav-header p {
    color: var(--gris-texte);
    font-size: 1rem;
    opacity: 0.8;
}

.volume-nav-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.volume-nav-card {
    background: var(--blanc);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--gris-texte);
    box-shadow: var(--ombre-douce);
    transition: var(--transition);
    border: 2px solid transparent;
}

.volume-nav-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ombre-forte);
    border-color: var(--vert-principal);
}

.volume-nav-card.volume-nav-soon {
    opacity: 0.7;
    background: var(--gris-clair);
    cursor: not-allowed;
}

.volume-nav-card.volume-nav-soon:hover {
    transform: none;
    border-color: transparent;
}

.volume-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.volume-nav-card h3 {
    color: var(--vert-fonce);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.volume-nav-card p {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.volume-count {
    background: var(--vert-principal);
    color: var(--blanc);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.volume-nav-soon .volume-count {
    background: #95a5a6;
}

/* ──────────────────────────────────────────────────────────────────────────────
   INTRODUCTION SECTION
   ────────────────────────────────────────────────────────────────────────────── */

.casting-intro {
    padding: 3rem 0;
    background: var(--blanc);
}

.intro-content-casting {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label-casting {
    display: inline-block;
    background: var(--vert-clair);
    color: var(--vert-fonce);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-content-casting h2 {
    color: var(--vert-fonce);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.intro-text-casting {
    text-align: left;
}

.intro-lead {
    font-size: 1.1rem;
    color: var(--vert-principal);
    font-weight: 500;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.intro-text-casting p {
    color: var(--gris-texte);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.intro-text-casting strong {
    color: var(--vert-fonce);
    font-weight: 600;
}

.link-arrow {
    color: var(--vert-principal);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: var(--vert-fonce);
    transform: translateX(3px);
}

/* ──────────────────────────────────────────────────────────────────────────────
   SECTIONS CATÉGORIES DE POISSONS
   ────────────────────────────────────────────────────────────────────────────── */

.casting-category {
    padding: 3rem 0;
    scroll-margin-top: 100px; /* Pour les ancres */
}

.casting-category:nth-child(even) {
    background: var(--vert-ultra-clair);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    color: var(--vert-fonce);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.category-subtitle {
    color: var(--gris-texte);
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────────────
   GRILLE DES POISSONS
   ────────────────────────────────────────────────────────────────────────────── */

.poissons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.poisson-card {
    background: var(--blanc);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--ombre-douce);
    transition: var(--transition);
}

.poisson-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ombre-forte);
}

.poisson-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.poisson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.poisson-card:hover .poisson-image img {
    transform: scale(1.05);
}

.poisson-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--vert-principal);
    color: var(--blanc);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.poisson-content {
    padding: 1.5rem;
}

.poisson-content h3 {
    color: var(--vert-fonce);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Spécifications techniques */
.poisson-specs {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--vert-clair);
    border-radius: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.spec-label {
    font-weight: 600;
    color: var(--vert-fonce);
}

.spec-value {
    font-weight: 500;
    color: var(--gris-texte);
}

/* Avis du biologiste */
.biologiste-avis {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9f9 0%, #e8f5e9 100%);
    border-left: 4px solid var(--vert-principal);
    border-radius: 8px;
}

.biologiste-avis h4 {
    color: var(--vert-fonce);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.biologiste-avis p {
    color: var(--gris-texte);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.biologiste-avis strong {
    color: var(--vert-principal);
    font-weight: 600;
}

/* Conseils Maker */
.poisson-tips {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #856404;
}

.poisson-tips strong {
    color: #b45309;
    font-weight: 600;
}

/* ──────────────────────────────────────────────────────────────────────────────
   BLACKLIST SECTION
   ────────────────────────────────────────────────────────────────────────────── */

.casting-blacklist {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fdeaea 0%, #f8d7d7 100%);
}

.blacklist-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.blacklist-header h2 {
    color: #c0392b;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.blacklist-header p {
    color: #7f8c8d;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.blacklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.blacklist-item {
    background: var(--blanc);
    border-left: 5px solid #e74c3c;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.1);
}

.blacklist-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blacklist-item h3 {
    color: #c0392b;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blacklist-item p {
    color: var(--gris-texte);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.blacklist-item strong {
    color: #e74c3c;
    font-weight: 600;
}

/* ──────────────────────────────────────────────────────────────────────────────
   COMMANDEMENTS SECTION
   ────────────────────────────────────────────────────────────────────────────── */

.casting-commandements {
    padding: 3rem 0;
    background: var(--blanc);
}

.commandements-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.commandements-header h2 {
    color: var(--vert-fonce);
    font-size: 1.75rem;
}

.commandements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.commandement-card {
    background: linear-gradient(135deg, var(--vert-ultra-clair) 0%, var(--vert-clair) 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--vert-principal);
    position: relative;
}

.commandement-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vert-principal);
    color: var(--blanc);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.commandement-card h3 {
    color: var(--vert-fonce);
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem 0;
    font-weight: 600;
}

.commandement-card p {
    color: var(--gris-texte);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.commandement-card strong {
    color: var(--vert-principal);
    font-weight: 600;
}

/* ──────────────────────────────────────────────────────────────────────────────
   CTA SECTIONS
   ────────────────────────────────────────────────────────────────────────────── */

.casting-ctas {
    padding: 3rem 0;
    background: var(--vert-ultra-clair);
}

.casting-ctas .cta-internal {
    margin-bottom: 2rem;
}

/* ──────────────────────────────────────────────────────────────────────────────
   SECTION FINALE
   ────────────────────────────────────────────────────────────────────────────── */

.casting-final {
    padding: 3rem 0;
    background: var(--blanc);
}

.casting-update {
    padding: 2rem 0;
    background: var(--vert-ultra-clair);
    border-top: 1px solid rgba(26, 77, 46, 0.1);
}

.update-notice {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.update-notice p {
    color: var(--gris-texte);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--vert-principal);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - PROGRESSIVE ENHANCEMENT
   ══════════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────────────
   TABLET (768px+)
   ────────────────────────────────────────────────────────────────────────────── */

@media (min-width: 768px) {
    .casting-h1 {
        font-size: 2.5rem;
    }
    
    .casting-tagline {
        font-size: 1.2rem;
    }
    
    .featured-snippet-casting {
        padding: 2rem;
    }
    
    .volume-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .poissons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 1000px;
    }
    
    .blacklist-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .commandements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .poisson-image {
        height: 250px;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .intro-content-casting h2 {
        font-size: 2rem;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   DESKTOP (1024px+)
   ────────────────────────────────────────────────────────────────────────────── */

@media (min-width: 1024px) {
    .casting-h1 {
        font-size: 3rem;
    }
    
    .casting-tagline {
        font-size: 1.3rem;
    }
    
    .volume-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
    
    .poissons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .blacklist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .commandements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .poisson-card {
        max-width: 500px;
    }
    
    .hero-content-casting {
        padding: 3rem 1rem;
    }
    
    .casting-intro,
    .casting-category,
    .casting-blacklist,
    .casting-commandements,
    .casting-ctas,
    .casting-final {
        padding: 4rem 0;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   LARGE DESKTOP (1200px+)
   ────────────────────────────────────────────────────────────────────────────── */

@media (min-width: 1200px) {
    .casting-h1 {
        font-size: 3.5rem;
    }
    
    .poissons-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
    
    .poisson-card {
        max-width: none;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   ANIMATIONS ET MICRO-INTERACTIONS
   ────────────────────────────────────────────────────────────────────────────── */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.poisson-card,
.volume-nav-card,
.blacklist-item,
.commandement-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Délais d'animation décalés */
.poisson-card:nth-child(1) { animation-delay: 0.1s; }
.poisson-card:nth-child(2) { animation-delay: 0.2s; }
.poisson-card:nth-child(3) { animation-delay: 0.3s; }

/* ──────────────────────────────────────────────────────────────────────────────
   PRINT STYLES (bonus SEO)
   ────────────────────────────────────────────────────────────────────────────── */

@media print {
    .casting-hero,
    .volume-navigation,
    .casting-ctas,
    .casting-final {
        display: none;
    }
    
    .poisson-card {
        break-inside: avoid;
        margin-bottom: 1rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .poisson-image {
        height: auto;
        max-height: 150px;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        color: #000 !important;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   ACCESSIBILITY IMPROVEMENTS
   ────────────────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .poisson-card,
    .volume-nav-card,
    .blacklist-item,
    .commandement-card {
        animation: none;
    }
    
    .poisson-card:hover,
    .volume-nav-card:hover {
        transform: none;
    }
    
    .poisson-card:hover .poisson-image img {
        transform: none;
    }
}

/* Focus visible pour navigation clavier */
.volume-nav-card:focus-visible,
.poisson-card:focus-visible {
    outline: 3px solid var(--vert-principal);
    outline-offset: 2px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   CSS SUPPLÉMENTAIRE - À AJOUTER À LA FIN DE TON main.css EXISTANT
   Boutons poissons + Centrage CTAs pour template Casting
   ══════════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────────────
   BOUTONS SOUS FICHES POISSONS - VERSION CTA VOYANT
   ────────────────────────────────────────────────────────────────────────────── */

.poisson-action {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
    border-radius: 12px;
    border: 2px solid #27ae60;
    position: relative;
    overflow: hidden;
}

.poisson-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s;
}

.poisson-action:hover::before {
    left: 100%;
}

.btn-poisson {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    
    /* Couleurs plus vibrantes */
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #27ae60 100%);
    color: #ffffff;
    text-decoration: none;
    
    /* Taille plus imposante */
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    
    /* Effets visuels */
    box-shadow: 
        0 4px 15px rgba(39, 174, 96, 0.3),
        0 0 0 0 rgba(39, 174, 96, 0.5);
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Animation de pulsation */
    animation: pulse-btn 3s infinite;
    
    /* Taille mobile-friendly */
    min-height: 52px;
    min-width: 280px;
    
    /* Effet de relief */
    border: 3px solid rgba(255, 255, 255, 0.3);
    
    /* Texte en majuscules pour plus d'impact */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    position: relative;
    z-index: 2;
}

.btn-poisson::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #27ae60 100%);
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-poisson:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(39, 174, 96, 0.4),
        0 0 0 8px rgba(39, 174, 96, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.btn-poisson:hover::before {
    background: linear-gradient(135deg, #229954 0%, #27ae60 50%, #2ecc71 100%);
    transform: scale(1.1);
}

.btn-poisson:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-poisson:focus {
    outline: none;
    box-shadow: 
        0 4px 15px rgba(39, 174, 96, 0.3),
        0 0 0 4px rgba(39, 174, 96, 0.4);
}

/* Animation de pulsation subtile */
@keyframes pulse-btn {
    0% {
        box-shadow: 
            0 4px 15px rgba(39, 174, 96, 0.3),
            0 0 0 0 rgba(39, 174, 96, 0.5);
    }
    50% {
        box-shadow: 
            0 4px 15px rgba(39, 174, 96, 0.3),
            0 0 0 8px rgba(39, 174, 96, 0.2);
    }
    100% {
        box-shadow: 
            0 4px 15px rgba(39, 174, 96, 0.3),
            0 0 0 0 rgba(39, 174, 96, 0.5);
    }
}

/* Version mobile encore plus voyante */
@media (max-width: 768px) {
    .poisson-action {
        margin: 1.5rem -1rem;
        border-radius: 0;
        padding: 2rem 1rem;
    }
    
    .btn-poisson {
        font-size: 0.95rem;
        padding: 1.2rem 2rem;
        min-width: 300px;
        /* Animation plus visible sur mobile */
        animation: pulse-btn 2s infinite;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   CENTRAGE DES BOUTONS CTA
   ────────────────────────────────────────────────────────────────────────────── */

.cta-button-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
}

.cta-button-center .btn-lowtech {
    margin: 0; /* Reset margins pour centrage parfait */
}

/* ──────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN POUR LES NOUVEAUX ÉLÉMENTS
   ────────────────────────────────────────────────────────────────────────────── */

/* Mobile (par défaut) */
.btn-poisson {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
    min-width: 180px;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .btn-poisson {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        min-width: 200px;
    }
    
    .poisson-action {
        margin-top: 1.75rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .btn-poisson {
        font-size: 0.95rem;
        padding: 0.8rem 1.75rem;
        min-width: 220px;
    }
    
    .poisson-action {
        margin-top: 2rem;
    }
    
    /* Effet hover plus subtil sur desktop */
    .poisson-card:hover .btn-poisson {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.25);
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .btn-poisson {
        min-width: 240px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────────
   ÉTATS D'ACCESSIBILITÉ
   ────────────────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .btn-poisson:hover {
        transform: none;
    }
    
    .poisson-card:hover .btn-poisson {
        transform: none;
    }
}

/* Focus visible pour navigation clavier */
.btn-poisson:focus-visible {
    outline: 3px solid var(--vert-principal);
    outline-offset: 3px;
}

/* ──────────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ────────────────────────────────────────────────────────────────────────────── */

@media print {
    .btn-poisson {
        background: white !important;
        color: #333 !important;
        border: 2px solid #333;
        box-shadow: none !important;
    }
    
    .cta-button-center .btn-lowtech {
        background: white !important;
        color: #333 !important;
        border: 2px solid #333;
    }
    
    .poisson-action {
        break-inside: avoid;
    }
}

/* ============================================================
   AQUA LOWTECH — Section Commentaires
   À ajouter à la FIN de main.css
   Mobile-First | Variables CSS existantes du thème
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   CONTENEUR PRINCIPAL
   ────────────────────────────────────────────────────────── */

.comments-section {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    padding: 0 var(--spacing-sm);
}

.comments-inner {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

/* ──────────────────────────────────────────────────────────
   TITRE DE LA SECTION COMMENTAIRES
   ────────────────────────────────────────────────────────── */

.comments-title,
.comment-reply-title {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 3px solid var(--color-accent);
}

/* ──────────────────────────────────────────────────────────
   LISTE DES COMMENTAIRES
   ────────────────────────────────────────────────────────── */

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

/* Un commentaire */
.comment {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-left: 4px solid var(--color-accent);
    transition: var(--transition-smooth);
}

.comment:hover {
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.1);
}

/* En-tête du commentaire : avatar + nom + date */
.comment-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.comment-author-avatar img {
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    display: block;
}

.comment-author-name {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.comment-author-name a {
    color: var(--color-primary);
    text-decoration: none;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: block;
}

/* Corps du commentaire */
.comment-content p {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

/* Lien Répondre */
.comment-reply-link {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-primary);
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    margin-top: 0.5rem;
    transition: var(--transition-smooth);
}

.comment-reply-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Commentaires en attente de modération */
.comment-awaiting-moderation {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    background-color: #fffbeb;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* Réponses imbriquées */
.comment-list .children {
    list-style: none;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-accent);
    margin-top: var(--spacing-sm);
    opacity: 0.95;
}

/* ──────────────────────────────────────────────────────────
   FORMULAIRE DE COMMENTAIRE
   ────────────────────────────────────────────────────────── */

#commentform {
    margin-top: var(--spacing-lg);
}

/* Note obligatoire */
.comment-notes {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.comment-notes .required {
    color: var(--color-primary);
    font-weight: 700;
}

/* Ligne nom + email côte à côte sur desktop */
.comment-form-row {
    display: grid;
    grid-template-columns: 1fr;   /* Mobile : 1 colonne */
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 600px) {
    .comment-form-row {
        grid-template-columns: 1fr 1fr;  /* Desktop : 2 colonnes */
    }
}

/* Groupe label + input */
.comment-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: var(--spacing-sm);
}

.comment-field-message {
    margin-bottom: var(--spacing-sm);
}

/* Labels */
#commentform label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.01em;
}

#commentform label .required {
    color: var(--color-primary);
    margin-left: 2px;
}

/* Inputs & textarea */
#commentform input[type="text"],
#commentform input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-accent);
    border-radius: 10px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
    box-sizing: border-box;
    -webkit-appearance: none;
}

#commentform textarea#comment {
    width: 100%;
    min-height: 150px;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--color-accent);
    border-radius: 10px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: var(--font-main);
    line-height: 1.7;
    resize: vertical;
    transition: var(--transition-smooth);
    box-sizing: border-box;
    -webkit-appearance: none;
}

/* Focus */
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform textarea#comment:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

/* Bouton soumettre */
.btn-comment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
    margin-top: var(--spacing-xs);
}

.btn-comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.35);
}

.btn-comment-submit:active {
    transform: translateY(0);
}

/* Message "commentaires fermés" */
.comments-closed {
    text-align: center;
    font-style: italic;
    color: var(--color-text-light);
    padding: var(--spacing-sm);
    background-color: var(--color-bg);
    border-radius: 8px;
    margin-top: var(--spacing-md);
}

.comment-confirmation {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 600;
}

.comment-confirmation--success {
  background: #e8f5e9;
  color: #1f5c38;
  border: 1px solid #a5d6a7;
}

.comment-confirmation--pending {
  background: #fff8e1;
  color: #8d6e00;
  border: 1px solid #ffe082;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE SUPPLÉMENTAIRE (< 480px)
   ────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .comments-inner {
        padding: var(--spacing-sm);
    }

    .comment {
        padding: var(--spacing-sm);
    }

    .comments-title,
    .comment-reply-title {
        font-size: 1.25rem;
    }

    .comment-list .children {
        padding-left: 0.75rem;
    }
}

/* ══════════════════════════════════════
   BLOC COUPON BREVO
══════════════════════════════════════ */
.coupon-brevo {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08), rgba(116, 198, 157, 0.12));
    border: 2px dashed var(--color-accent);
    border-radius: 12px;
    padding: 28px 24px;
    margin: 36px 0;
    text-align: center;
}
.coupon-brevo__titre {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 8px 0;
}
.coupon-brevo__desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0 0 20px 0;
}
.coupon-brevo input[type="text"],
.coupon-brevo input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    border: 1.5px solid var(--color-accent);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}
.coupon-brevo input[type="text"]:focus,
.coupon-brevo input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

/* ══════════════════════════════════════
   BOUTONS BREVO
══════════════════════════════════════ */
.btn-brevo {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    padding: 13px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}
.btn-brevo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.35);
}
.btn-brevo--sidebar {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
    border-radius: 8px;
}
.btn-brevo--footer {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
    border-radius: 8px;
}

/* ══════════════════════════════════════
   NEWSLETTER SIDEBAR
══════════════════════════════════════ */
.newsletter-widget__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
}
.newsletter-widget input[type="text"],
.newsletter-widget input[type="email"] {
    width: 100%;
    padding: 9px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-main);
    margin-bottom: 8px;
    box-sizing: border-box;
}

/* ══════════════════════════════════════
   CTA BAS DE PAGE
══════════════════════════════════════ */
.newsletter-cta-box {
    text-align: center;
    padding: 48px 24px;
}
.newsletter-cta__form-wrapper {
    margin-top: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-cta__form-wrapper input[type="text"],
.newsletter-cta__form-wrapper input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-accent);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}
.newsletter-cta__form-wrapper input[type="text"]:focus,
.newsletter-cta__form-wrapper input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

/* ══════════════════════════════════════
   RESPONSIVE MOBILE — BREVO
══════════════════════════════════════ */
@media (max-width: 768px) {

    /* Bloc coupon */
    .coupon-brevo {
        padding: 20px 16px;
        margin: 24px 0;
        border-radius: 10px;
    }
    .coupon-brevo__titre {
        font-size: 1.15rem;
    }
    .coupon-brevo__desc {
        font-size: 0.9rem;
    }
    .coupon-brevo input[type="text"],
    .coupon-brevo input[type="email"] {
        max-width: 100%;  /* pleine largeur sur mobile */
        font-size: 0.95rem;
        padding: 12px 14px; /* zone de tap confortable */
    }

    /* Boutons */
    .btn-brevo {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
        /* touch-action pour éviter le double-tap zoom iOS */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .btn-brevo:hover {
        /* Désactiver le hover sur mobile (pas de survol) */
        transform: none;
        box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
    }
    .btn-brevo:active {
        transform: scale(0.98);
    }

    /* CTA bas de page */
    .newsletter-cta-box {
        padding: 32px 16px;
    }
    .newsletter-cta__form-wrapper {
        max-width: 100%;
        margin-top: 20px;
    }
    .newsletter-cta__form-wrapper input[type="text"],
    .newsletter-cta__form-wrapper input[type="email"] {
        font-size: 0.95rem;
        padding: 12px 14px;
    }

    /* Sidebar newsletter */
    .newsletter-widget input[type="text"],
    .newsletter-widget input[type="email"] {
        font-size: 0.95rem;
        padding: 11px 12px;
    }
}

@media (max-width: 480px) {

    .coupon-brevo {
        padding: 16px 12px;
        margin: 20px 0;
    }
    .coupon-brevo__titre {
        font-size: 1.05rem;
    }
    .btn-brevo {
        font-size: 0.9rem;
        padding: 13px 16px;
    }
}

/* SEO - Contenu caché pour Rank Math */
.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ====================================
   TEMPLATE GUIDES DÉBUTANTS - SECTION ÉCONOMIES ÉLECTRICITÉ
   ==================================== */

.savings-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.savings-intro {
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
}

.savings-insight {
    max-width: 700px;
    margin: var(--spacing-md) auto;
    background-color: rgba(82, 183, 136, 0.1);
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.savings-insight p:last-child {
    margin-bottom: 0;
}

/* Table aqua-table centrée dans la section */
.savings-section .aqua-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    border-collapse: collapse;
    font-size: 1rem;
}

.savings-section .aqua-table thead th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
}

.savings-section .aqua-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.savings-section .aqua-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.savings-section .aqua-table tbody td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--color-bg);
    color: var(--color-text);
    background-color: var(--color-white);
}

.savings-section .aqua-table tbody tr:last-child td {
    border-bottom: none;
    background-color: rgba(82, 183, 136, 0.08);
    font-weight: 600;
}

.savings-section .aqua-table tbody tr:hover td {
    background-color: rgba(116, 198, 157, 0.1);
}

/* CTA */
.savings-section .cta-button-center {
    margin-top: var(--spacing-md);
}

.savings-section .cta-bonus {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: var(--spacing-xs);
}

/* Mobile */
@media (max-width: 600px) {
    .savings-section {
        padding: var(--spacing-lg) 0;
    }

    .savings-intro {
        font-size: 1rem;
        text-align: left;
    }

    .savings-insight {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }
}

/* ============================================================
   PAGE À PROPOS NELSON — Nouvelles classes
   À coller à la fin de main.css, après .snippet-article
   ============================================================ */

/* ── CERTIFICATION BLOCK ─────────────────────────────────── */
.about-certification {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
}

.certification-block {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(45, 106, 79, 0.1);
    border-left: 5px solid var(--color-primary);
}

.certification-text h2 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.certification-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.certification-details {
    background: var(--color-bg);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.certification-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.certification-details p:last-child {
    margin-bottom: 0;
}

.btn-certification {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}

.btn-certification:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.35);
    color: var(--color-white);
}

.certification-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
}

.certification-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* ── HUBS GRID ───────────────────────────────────────────── */
.about-hubs {
    padding: 4rem 0;
    background: var(--color-white);
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hubs-grid .hub-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    width: 100%;
}

.hubs-grid .hub-card:nth-child(5) {
    grid-column: 2 / 3;
    width: 100%;
}

.hub-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hub-card:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.15);
}

.hub-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hub-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.hub-card__desc {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.hub-card__cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
}

.hub-card:hover .hub-card__cta {
    text-decoration: underline;
}

/* ── PARTENARIATS ────────────────────────────────────────── */
.about-partnership {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.partnership-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.partnership-block h2 {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.partnership-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.partnership-block .btn-lowtech {
    background: var(--color-white);
    color: var(--color-primary) !important;
    font-weight: 700;
}

.partnership-block .btn-lowtech:hover {
    background: var(--color-bg);
    color: var(--color-dark) !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .certification-block {
        grid-template-columns: 1fr;
    }

    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hubs-grid .hub-card:nth-child(4),
    .hubs-grid .hub-card:nth-child(5) {
        grid-column: auto;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .about-certification {
        padding: 2.5rem 0;
    }

    .certification-block {
        padding: 1.5rem;
    }

    .hubs-grid {
        grid-template-columns: 1fr;
    }

    .hub-card {
        padding: 1.25rem;
    }

    .partnership-block h2 {
        font-size: 1.4rem;
    }
}

/* ── SECTION CALCULATEUR ─────────────────────────────────── */
.about-tools {
    padding: 4rem 0;
    background: #f4f7f6;
}

.about-tools__header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-tools__header h2 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin: 1rem 0;
}

.about-tools__header p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
}

.tool-featured-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e1e8e5;
    max-width: 900px;
    margin: 0 auto;
}

.tool-featured-card__icon {
    background: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    padding: 3rem;
    height: 100%;
}

.tool-featured-card__body {
    padding: 2.5rem;
}

.tool-featured-card__body h3 {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.tool-featured-card__body p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.tool-featured-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
}

.tool-featured-card__list li {
    padding: 0.4rem 0;
    color: var(--color-text);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .tool-featured-card {
        grid-template-columns: 1fr;
    }

    .tool-featured-card__icon {
        padding: 2rem;
        font-size: 3.5rem;
    }

    .tool-featured-card__body {
        padding: 1.5rem;
    }
}



/* ====================================
   SINGLE.PHP — NOUVEAUX ÉLÉMENTS
  
   ==================================== */

/* --- BARRE DE PROGRESSION --- */
#reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-primary);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* --- ENCART ARTICLE VÉRIFIÉ (E-E-A-T) --- */
.article-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(82, 183, 136, 0.12);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 1rem;
}

.article-verified-badge svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* --- PARTAGE SOCIAL --- */
.article-share {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: 12px;
}

.share-label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    color: white;
}

.share-btn--facebook {
    background-color: #1877f2;
}

.share-btn--pinterest {
    background-color: #e60023;
}

/* --- NOTATION ÉTOILES --- */
.article-rating {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border-radius: 12px;
    text-align: center;
}

.rating-label {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    transition: transform 0.15s ease;
    color: var(--color-text-light);
}

.star-btn:hover {
    transform: scale(1.2);
}

.star-btn svg {
    display: block;
}

.rating-result {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
    margin: 0;
}

/* --- BLOC "ALLER PLUS LOIN" --- */
.also-read-box {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background-color: rgba(82, 183, 136, 0.08);
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
}

.also-read-label {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.also-read-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.also-read-list li {
    margin-bottom: 0.5rem;
}

.also-read-list li:last-child {
    margin-bottom: 0;
}

.also-read-list a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: underline;
    font-size: 0.95rem;
}

.also-read-list a:hover {
    color: var(--color-secondary);
}

/* --- WIDGET SOS SIDEBAR --- */
.sos-widget {
    background-color: #fff5f5;
    border: 2px solid #e53e3e;
    padding: 1rem !important;
}

.sos-link {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #c53030;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.sos-link:hover {
    color: #9b2c2c;
    text-decoration: underline;
}

/* --- WIDGET OUTIL SIDEBAR --- */
.tool-widget {
    background-color: var(--color-bg);
}

.tool-widget p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {

    .article-verified-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
        width: 100%;
    }

    .rating-stars {
        gap: 0.5rem;
    }

    .star-btn svg {
        width: 32px;
        height: 32px;
    }

    .also-read-box {
        padding: 1rem;
    }
}

/* ====================================
   HOMEPAGE REFONTE — hp-*.css
   À coller à la FIN de main.css
   ==================================== */

/* ── HERO ───────────────────────────── */
.hp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.82), rgba(45,106,79,0.65));
}

.hp-hero .container {
    position: relative;
    z-index: 1;
}

.hp-hero__content {
    max-width: 700px;
    color: white;
    padding: 3rem 0;
}

.hp-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.hp-hero__title {
    font-size: 2.75rem;
    line-height: 1.15;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hp-hero__sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Boutons paniques */
.hp-panic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hp-panic__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.hp-panic__btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.hp-panic__btn--cta {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    grid-column: 1 / -1;
    justify-content: center;
    font-size: 1.05rem;
}

.hp-panic__btn--cta:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* ── MOTEUR DE RECHERCHE ────────────── */
.hp-search {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hp-search__form {
    display: flex;
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hp-search__form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.hp-search__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--color-text);
    outline: none;
}

.hp-search__input::placeholder {
    color: var(--color-text-light);
}

.hp-search__btn {
    background: var(--color-primary);
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.hp-search__btn:hover {
    background: var(--color-dark);
}

@media (max-width: 768px) {
    .hp-search__input {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .hp-search__input::placeholder {
        font-size: 0.8rem;
    }
}

/* ── PONT MÉTHODE ───────────────────── */
.hp-bridge {
    background: var(--color-bg);
    border-top: 3px solid var(--color-accent);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
}

.hp-bridge__text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.hp-bridge__text a {
    color: var(--color-primary);
    font-weight: 600;
    white-space: nowrap;
}

/* ── SECTION GÉNÉRIQUE ──────────────── */
.hp-section-head {
    margin-bottom: 2.5rem;
}

.hp-label {
    display: inline-block;
    background: rgba(45,106,79,0.1);
    color: var(--color-primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hp-section-title {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin: 0;
}

/* ── ARTICLES ───────────────────────── */
.hp-articles {
    padding: 4rem 0;
    background: white;
}

.hp-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hp-card {
    background: var(--color-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.hp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(45,106,79,0.15);
}

.hp-card__img-link {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-accent);
}

.hp-card__img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hp-card:hover .hp-card__img-link img {
    transform: scale(1.05);
}

.hp-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

.hp-card__badge--up {
    background: #16a34a;
}

.hp-card__body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hp-card__cat {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.hp-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}

.hp-card__title a {
    color: var(--color-dark);
    text-decoration: none;
}

.hp-card__title a:hover {
    color: var(--color-primary);
}

.hp-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hp-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: auto;
}

.hp-card__link:hover {
    color: var(--color-secondary);
}

.hp-articles__more {
    text-align: center;
}

/* ── HUBS ───────────────────────────── */
.hp-hubs {
    padding: 4rem 0;
    background: var(--color-bg);
}

.hp-hubs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.hp-hub {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 14px;
    border: 2px solid transparent;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.hp-hub:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45,106,79,0.15);
}

.hp-hub--sos {
    border-color: #fca5a5;
    background: #fff5f5;
}

.hp-hub--sos:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220,38,38,0.15);
}

/* 5ème hub : pleine largeur, mis en avant */
.hp-hub--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(45,106,79,0.06), rgba(82,183,136,0.1));
    border-color: var(--color-accent);
}

.hp-hub--featured:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(45,106,79,0.2);
}

.hp-hub--featured .hp-hub__title {
    font-size: 1.1rem;
}

.hp-hub--featured .hp-hub__icon {
    font-size: 2.25rem;
}

.hp-hub__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hp-hub__body {
    flex-grow: 1;
}

.hp-hub__title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.hp-hub__desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.hp-hub__arrow {
    font-size: 1.25rem;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.hp-hub:hover .hp-hub__arrow {
    transform: translateX(4px);
}

/* ── PREUVE ─────────────────────────── */
.hp-proof {
    padding: 2.5rem 0;
    background: var(--color-dark);
}

.hp-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.hp-proof__stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hp-proof__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.hp-proof__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.hp-proof__label em {
    font-style: italic;
    color: rgba(255,255,255,0.6);
}

/* ── TÉMOIGNAGES ────────────────────── */
.hp-testimonials {
    padding: 4rem 0;
    background: white;
}

.hp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.hp-testi {
    background: var(--color-bg);
    border-radius: 14px;
    padding: 1.75rem;
    margin: 0;
    border-left: 4px solid var(--color-accent);
}

.hp-testi p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1rem;
}

.hp-testi footer {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.hp-testi footer strong {
    color: var(--color-primary);
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
    .hp-articles__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .hp-testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    .hp-hero {
        min-height: 75vh;
    }

    .hp-hero__content {
        padding: 2rem 0;
    }

    .hp-hero__title {
        font-size: 1.85rem;
    }

    .hp-hero__sub {
        font-size: 1rem;
    }

    .hp-panic {
        grid-template-columns: 1fr;
    }

    .hp-panic__btn--cta {
        grid-column: 1;
    }

    .hp-hubs__grid {
        grid-template-columns: 1fr;
    }

    .hp-proof__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hp-proof__number {
        font-size: 1.75rem;
    }

    .hp-section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hp-hero__title {
        font-size: 1.6rem;
    }
}

/* ====================================
   HUB BLOG — home.php
   
   ==================================== */

/* Compteur filtre small dans les boutons */
.hub-filtre-count-small {
    display: inline-block;
    background: rgba(45,106,79,0.12);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    margin-left: auto;
}

/* Sidebar popular */
.hub-sidebar-popular {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.hub-sidebar-cta__title {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Hubs list sidebar */
.sidebar-hubs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-hub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1.5px solid transparent;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.sidebar-hub-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateX(3px);
}

.sidebar-hub-link--sos {
    background: #fff5f5;
    border-color: #fca5a5;
    color: #c53030;
}

.sidebar-hub-link--sos:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.sidebar-hub-arrow {
    margin-left: auto;
    color: var(--color-accent);
    font-size: 1rem;
}

/* Articles populaires sidebar */
.sidebar-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-popular-list li a {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.sidebar-popular-list li:last-child a {
    border-bottom: none;
}

.sidebar-popular-list li a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

/* ── GRILLE CARDS BLOG ────────────── */
.hub-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Card blog — style horizontal */
.hub-blog-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1.5px solid transparent;
}

.hub-blog-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,106,79,0.12);
}

.hub-blog-card__img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hub-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hub-blog-card:hover .hub-blog-card__img img {
    transform: scale(1.05);
}

/* Placeholder si pas d'image */
.hub-blog-card__img--placeholder {
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.hub-blog-card__body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hub-blog-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    margin: 0;
}

.hub-blog-card:hover .hub-blog-card__title {
    color: var(--color-primary);
}

.hub-blog-card__excerpt {
    font-size: 0.825rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.hub-blog-card__meta {
    font-size: 0.775rem;
    color: var(--color-text-light);
    margin-top: auto;
}

/* Pagination hub blog */
.hub-blog-pagination {
    margin-top: 2rem;
    text-align: center;
}

/* Intro hero blog simple */
.blog-intro-simple {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
    /* Sur tablette la sidebar hub passe en dessous */
    .hub-blog-grid {
        gap: 0.875rem;
    }
}

@media (max-width: 768px) {
    .hub-blog-card {
        grid-template-columns: 110px 1fr;
    }

    .hub-blog-card__title {
        font-size: 0.9rem;
    }

    .hub-blog-card__excerpt {
        display: none; /* Masque l'extrait sur mobile pour gagner de la place */
    }
}

@media (max-width: 480px) {
    .hub-blog-card {
        grid-template-columns: 90px 1fr;
    }

    .hub-blog-card__body {
        padding: 0.75rem;
    }
}

/* ====================================
   HUB BLOG — Style meilleurs blogs 2025
   À coller à la FIN de main.css
   ==================================== */

/* ── HERO ── */
.blog-hub-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.blog-hub-hero__badge {
    display: inline-block;
    background: rgba(45, 106, 79, 0.1);
    color: var(--color-primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-hub-hero__title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.blog-hub-hero__sub {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

/* ── BARRE CONTRÔLES ── */
.blog-hub-controls {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--color-bg);
    position: sticky;
    top: 60px; /* Hauteur du header sticky */
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Recherche */
.blog-hub-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 480px;
    background: var(--color-bg);
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.blog-hub-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.blog-hub-search svg {
    color: var(--color-text-light);
    flex-shrink: 0;
}

.blog-hub-search input {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-family: var(--font-main);
    color: var(--color-text);
    outline: none;
    width: 100%;
}

.blog-hub-search input::placeholder {
    color: var(--color-text-light);
}

/* Filtres horizontaux */
.blog-hub-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.blog-hub-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.blog-hub-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-hub-filter.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.blog-hub-filter.active .blog-hub-filter__count {
    background: rgba(255,255,255,0.25);
    color: white;
}

.blog-hub-filter__count {
    background: var(--color-bg);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 10px;
    line-height: 1.4;
}

/* Meta compteur */
.blog-hub-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.blog-hub-reset {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.blog-hub-reset:hover {
    color: var(--color-dark);
}

/* ── GRILLE 3 COLONNES ── */
.blog-hub-grid-section {
    padding: 3rem 0 4rem;
    background: var(--color-bg);
}

.blog-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ── CARD ── */
.blog-hub-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1.5px solid transparent;
    transition: var(--transition-smooth);
}

.blog-hub-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45,106,79,0.12);
}

.blog-hub-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-bg);
}

.blog-hub-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-hub-card:hover .blog-hub-card__img img {
    transform: scale(1.05);
}

.blog-hub-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.blog-hub-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

.blog-hub-card__cat {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-hub-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

.blog-hub-card:hover .blog-hub-card__title {
    color: var(--color-primary);
}

.blog-hub-card__excerpt {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.55;
    margin: 0;
}

.blog-hub-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.775rem;
    color: var(--color-text-light);
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-bg);
    margin-top: auto;
}

/* ── ÉTAT VIDE ── */
.blog-hub-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .blog-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hub-hero__title {
        font-size: 1.75rem;
    }

    .blog-hub-controls {
        top: 56px;
        padding: 1rem 0;
    }

    .blog-hub-filters {
        gap: 0.4rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        /* Scroll horizontal sur mobile */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .blog-hub-filters::-webkit-scrollbar {
        display: none;
    }

    .blog-hub-filter {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
        flex-shrink: 0;
    }

    .blog-hub-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-hub-card__excerpt {
        display: none;
    }

    .blog-hub-grid-section {
        padding: 1.5rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .blog-hub-hero {
        padding: 2rem 0 1.5rem;
    }

    .blog-hub-hero__title {
        font-size: 1.5rem;
    }

    .blog-hub-hero__sub {
        font-size: 0.95rem;
    }
}


.cmp-qty-hint {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-style: italic;
    margin-top: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(45, 106, 79, 0.08);
    border-radius: 6px;
}

