/* ============================================================
   YEJ ENERGIE - Feuille de styles principale
   Modifiable facilement : changer --green pour changer la couleur
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #2E7D52;
  --green-dark:   #1A5C3A;
  --green-light:  #E8F5EE;
  --green-mid:    #3D9965;
  --green-text:   #7fe0a0;
  --accent:       #F59E0B;
  --text:         #1F2937;
  --text-light:   #6B7280;
  --bg:           #FFFFFF;
  --bg-gray:      #F9FAFB;
  --border:       #E5E7EB;
  --radius:       8px;
  --shadow:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --max-width:    1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ── */
.topbar { background: var(--green-dark); color: #fff; font-size: 0.82rem; padding: 7px 0; }
.topbar-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #c8e6d4; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── HEADER ── */
header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; color: var(--green-dark); letter-spacing: -0.5px; }
.logo-icon { width: 42px; height: 42px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 24px; height: 24px; color: #fff; }
.logo .accent { color: var(--green); }

/* Navigation */
nav { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 8px 12px; border-radius: 6px; font-size: 0.91rem; font-weight: 500; color: var(--text); transition: all 0.2s; white-space: nowrap; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-light); }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 240px; z-index: 999; overflow: hidden; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.875rem; color: var(--text); border-bottom: 1px solid var(--border); transition: all 0.15s; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--green-light); color: var(--green); padding-left: 22px; }
.btn-devis { background: var(--green); color: #fff !important; padding: 9px 18px; border-radius: 6px; font-size: 0.88rem; font-weight: 600; transition: all 0.2s; white-space: nowrap; margin-left: 6px; }
.btn-devis:hover { background: var(--green-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,125,82,0.35); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; }
.hamburger svg { width: 24px; height: 24px; color: var(--text); }
.hamburger:hover { background: var(--bg-gray); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1100; }
.mobile-nav.open { display: block; }
.mobile-nav-panel { position: absolute; top: 0; left: 0; bottom: 0; width: 300px; background: #fff; overflow-y: auto; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
.mobile-nav-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--text-light); }
.mobile-nav-body { padding: 10px 0; }
.mobile-nav-body a, .mobile-nav-section-title { display: block; padding: 12px 20px; font-size: 0.93rem; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav-body a:hover { background: var(--green-light); color: var(--green); }
.mobile-nav-section-title { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); background: var(--bg-gray); }
.mobile-nav-body .btn-devis-mobile { margin: 16px 20px; display: block; background: var(--green); color: #fff; text-align: center; padding: 12px; border-radius: 8px; font-weight: 600; }

/* ── PAGE HERO ── */
.hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #4caf7a 100%); color: #fff; padding: 90px 20px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 5px 16px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.hero p { font-size: 1.1rem; opacity: 0.92; max-width: 580px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges { margin-top: 36px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: 0.87rem; opacity: 0.9; }

/* Page inner hero (service pages) */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); color: #fff; padding: 60px 20px 50px; }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; opacity: 0.8; margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.6; margin: 0 6px; }
.page-hero h1 { font-size: 2.2rem; font-weight: 800; line-height: 1.25; margin-bottom: 12px; }
.page-hero .subtitle { font-size: 1.05rem; opacity: 0.88; margin-bottom: 28px; max-width: 620px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.page-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-pill { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }

/* ── BUTTONS ── */
.btn-white { background: #fff; color: var(--green-dark); padding: 12px 26px; border-radius: 8px; font-size: 0.95rem; font-weight: 700; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); padding: 12px 26px; border-radius: 8px; font-size: 0.95rem; font-weight: 700; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; padding: 12px 26px; border-radius: 8px; font-size: 0.95rem; font-weight: 700; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,82,0.35); }

/* ── STATS BAR ── */
.statsbar { background: var(--green-dark); color: #fff; }
.statsbar-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-item { padding: 22px 10px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.45rem; font-weight: 800; color: var(--green-text); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.82rem; opacity: 0.82; }

/* ── SECTIONS ── */
.section { padding: 72px 20px; }
.section-gray { background: var(--bg-gray); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-tag { display: inline-block; background: var(--green-light); color: var(--green); padding: 4px 14px; border-radius: 20px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.section-sub { color: var(--text-light); font-size: 1.03rem; max-width: 560px; margin-bottom: 40px; line-height: 1.7; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; transition: all 0.25s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 50px; height: 50px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; color: var(--green); }
.card h3 { font-size: 1.03rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.card-link { color: var(--green); font-size: 0.875rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.card:hover .card-link { gap: 8px; }

/* ── FEATURE CARDS (3-column pillars) ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pillar { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; box-shadow: var(--shadow-sm); }
.pillar-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pillar-icon svg { width: 22px; height: 22px; color: var(--green); }
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.pillar .pillar-sub { font-size: 0.8rem; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.pillar ul { list-style: none; }
.pillar ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border); }
.pillar ul li:last-child { border-bottom: none; }
.pillar ul li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 26px 22px; box-shadow: var(--shadow-sm); }
.step-num { width: 34px; height: 34px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; margin-bottom: 14px; }
.step-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* ── FINANCEMENT ── */
.aid-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.aid-card { background: #fff; border-radius: 12px; padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.aid-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.aid-card .aid-sub { color: var(--green); font-size: 0.83rem; font-weight: 600; margin-bottom: 18px; }
.aid-card ul { list-style: none; }
.aid-card ul li { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text-light); }
.aid-card ul li:last-child { border-bottom: none; }
.aid-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.aid-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin-top: 24px; }
.data-table th { background: var(--green-dark); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.83rem; }
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--bg-gray); }
.data-table tr:hover td { background: var(--green-light); }

/* ── AVIS ── */
.avis-section { background: var(--green-dark); color: #fff; }
.avis-section .section-tag { background: rgba(255,255,255,0.15); color: var(--green-text); }
.avis-section .section-title { color: #fff; }
.avis-section .section-sub { color: rgba(255,255,255,0.75); }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.avis-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 24px 20px; }
.stars { color: #F59E0B; font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.avis-text { font-size: 0.875rem; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.avis-author { font-size: 0.82rem; font-weight: 700; color: var(--green-text); }

/* ── CTA SECTION ── */
.cta-section { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; text-align: center; padding: 72px 20px; }
.cta-section h2 { font-size: 1.85rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: 0.88; margin-bottom: 36px; }
.cta-contacts { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; }
.cta-contact-item svg { width: 20px; height: 20px; color: var(--green-text); }
.cta-contact-text { text-align: left; }
.cta-contact-label { font-size: 0.74rem; opacity: 0.75; }
.cta-contact-value { font-weight: 700; font-size: 1.03rem; }
.cta-contact-value a { color: #fff; }

/* ── ARTICLES ── */
.articles-filters { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn { padding: 7px 18px; border-radius: 20px; border: 2px solid var(--border); background: #fff; color: var(--text-light); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.25s; }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.article-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--green-light); }
.article-card-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--green-light), #c8f0d8); display: flex; align-items: center; justify-content: center; }
.article-card-img-placeholder svg { width: 48px; height: 48px; color: var(--green); opacity: 0.5; }
.article-card-body { padding: 20px; }
.article-badge { display: inline-block; background: var(--green-light); color: var(--green); padding: 3px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; margin-bottom: 10px; }
.article-badge.pro { background: #FEF3C7; color: #92400E; }
.article-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.article-card p { font-size: 0.855rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.article-link { color: var(--green); font-size: 0.855rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.article-card:hover .article-link { gap: 8px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group label span { color: var(--green); }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s; background: #fff; }
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,82,0.12); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-light); cursor: pointer; }
.form-checkbox input { margin-top: 3px; accent-color: var(--green); flex-shrink: 0; }
.btn-submit { background: var(--green); color: #fff; border: none; padding: 13px 30px; border-radius: 8px; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center; margin-top: 6px; }
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(46,125,82,0.35); }

.contact-info { background: var(--green-dark); color: #fff; border-radius: 14px; padding: 32px 28px; }
.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 22px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item svg { width: 20px; height: 20px; color: var(--green-text); margin-top: 2px; flex-shrink: 0; }
.contact-info-item .ci-label { font-size: 0.77rem; opacity: 0.7; margin-bottom: 3px; }
.contact-info-item .ci-value { font-weight: 600; font-size: 0.95rem; }
.contact-info-item a { color: #fff; }
.hours-table { width: 100%; font-size: 0.87rem; margin-top: 20px; }
.hours-table td { padding: 6px 0; }
.hours-table td:last-child { text-align: right; opacity: 0.8; }

/* ── FOOTER ── */
footer { background: #111827; color: #9CA3AF; padding: 52px 20px 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-logo .accent { color: var(--green-text); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }
.footer-contact-links a { display: flex; align-items: center; gap: 8px; color: #9CA3AF; font-size: 0.855rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-contact-links a:hover { color: var(--green-text); }
.footer-contact-links svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #9CA3AF; font-size: 0.855rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-text); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; border-top: 1px solid #1F2937; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }
.footer-bottom a { color: #6B7280; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ── BACK TO TOP ── */
.back-top { position: fixed; bottom: 80px; right: 24px; width: 44px; height: 44px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(46,125,82,0.45); cursor: pointer; transition: all 0.2s; z-index: 500; border: none; font-size: 1.1rem; opacity: 0; pointer-events: none; }
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1F2937; color: #fff; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.25); font-size: 0.86rem; }
.cookie-banner a { color: var(--green-text); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept { background: var(--green); color: #fff; padding: 7px 18px; border-radius: 6px; border: none; cursor: pointer; font-weight: 600; font-size: 0.86rem; }
.btn-refuse { background: transparent; color: #9CA3AF; padding: 7px 18px; border-radius: 6px; border: 1px solid #374151; cursor: pointer; font-size: 0.86rem; transition: all 0.2s; }
.btn-refuse:hover { border-color: #6B7280; color: #fff; }

/* ── MENTIONS LÉGALES ── */
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.legal-content p, .legal-content ul { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--green); }

/* ── QUI SOMMES-NOUS ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.75; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-stat { background: var(--green-light); border-radius: 10px; padding: 20px; text-align: center; }
.about-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--green); line-height: 1; }
.about-stat .lbl { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.about-visual { background: linear-gradient(135deg, var(--green-dark), var(--green)); border-radius: 16px; padding: 40px 32px; color: #fff; }
.about-visual h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.about-visual ul { list-style: none; }
.about-visual ul li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.about-visual ul li:last-child { border-bottom: none; }
.about-visual ul li::before { content: '✓'; color: var(--green-text); font-weight: 700; }

/* ── BRANDS GRID ── */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.brand-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px 16px; text-align: center; transition: all 0.2s; }
.brand-card:hover { box-shadow: var(--shadow-sm); border-color: var(--green); }
.brand-card .brand-name { font-weight: 700; font-size: 1rem; color: var(--green-dark); margin-bottom: 6px; }
.brand-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 1.85rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.6rem; }
  .statsbar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .aid-grid { grid-template-columns: 1fr; }
  .aid-grid-3 { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; }
}
@media (max-width: 540px) {
  .cards-grid, .steps-grid, .avis-grid, .articles-grid, .pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns, .page-hero-btns { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
