/* style.css – même contenu que précédemment, avec ajustement des chemins d'images si nécessaire */
:root { --primary: #0B2F5C; --secondary: #F39C12; --light-bg: #F8F9FA; --white: #ffffff; --text: #212529; }
[data-theme="dark"] { --primary: #1e4a76; --light-bg: #1e1e2f; --white: #2a2a3a; --text: #e0e0e0; }
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; background:var(--white); color:var(--text); line-height:1.6; }
.container { max-width:1280px; margin:0 auto; padding:0 24px; }
/* ... tout le reste identique au style fourni précédemment ... */
/* css/style.css */
:root {
    --primary: #0B2F5C;
    --primary-dark: #071f3d;
    --secondary: #F39C12;
    --secondary-dark: #e67e22;
    --light-bg: #F8F9FA;
    --dark-bg: #121212;
    --text: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary: #1e4a76;
    --light-bg: #1e1e2f;
    --white: #2a2a3a;
    --text: #e0e0e0;
    --text-light: #adb5bd;
    --gray-200: #3a3a4a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 100;
}
.skip-link:focus { top: 0; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    backdrop-filter: blur(5px);
    background-color: rgba(255,255,255,0.95);
}
[data-theme="dark"] .site-header {
    background-color: rgba(30,30,47,0.95);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}
.logo i { color: var(--secondary); margin-right: 8px; }
.logo small { font-size: 0.75rem; font-weight: normal; color: var(--text-light); display: block; }
.main-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}
.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.main-nav a:hover { color: var(--secondary); }
#darkModeToggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    margin-left: 20px;
    color: var(--text);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.mobile-nav {
    display: none;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 12px 0; }
.mobile-nav a { text-decoration: none; color: var(--text); }

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1b4a72 100%);
    color: white;
}
.hero-grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: 2.8rem; font-family: 'Poppins', sans-serif; line-height: 1.2; }
.accent { color: var(--secondary); }
.subtitle { font-size: 1.3rem; margin: 16px 0; opacity: 0.9; }
.hero-buttons { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}
.btn-primary:hover { background: #e67e22; transform: translateY(-2px); }
.btn-outline {
    border: 2px solid white;
    color: white;
}
.btn-outline:hover { background: white; color: var(--primary); }
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.symbol-flower {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #F39C12 20%, #e67e22 80%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
.symbol-flower::before {
    content: "🌺";
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Sections */
.section {
    padding: 80px 0;
}
.bg-light {
    background-color: var(--light-bg);
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-family: 'Poppins', sans-serif;
}
.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}
.stat-card {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.stat-card i { font-size: 2.5rem; color: var(--secondary); }
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 12px 0;
}
/* Charts */
.charts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    margin-top: 32px;
}
.chart-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
/* Table */
.table-responsive {
    overflow-x: auto;
    margin: 24px 0;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
}
.styled-table th, .styled-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}
.styled-table th { background: var(--primary); color: white; }
/* Two columns */
.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 24px 0;
}
.two-columns > * { flex: 1; }
.stat-highlight {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.circle-stat {
    text-align: center;
}
.circle-stat span {
    font-size: 3rem;
    font-weight: 800;
    background: var(--secondary);
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    color: var(--primary);
}
.impact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}
.impact-card {
    flex: 1;
    padding: 20px;
    background: var(--white);
    border-left: 6px solid var(--secondary);
    border-radius: 12px;
}
/* Inclusion pie */
.financial-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}
.pie-container {
    flex: 1;
    max-width: 320px;
}
.financial-details { flex: 1; }
.financial-details ul { list-style: none; }
.financial-details li { margin: 16px 0; font-size: 1.1rem; }
/* Recommendations grid */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.rec-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    transition: transform 0.2s;
}
.rec-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.rec-card i { font-size: 2rem; color: var(--secondary); margin-bottom: 16px; display: inline-block; }
/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}
.footer-logos span {
    display: inline-block;
    margin: 0 16px;
    font-weight: 500;
    opacity: 0.8;
}
/* Responsive */
@media (max-width: 768px) {
    .main-nav ul { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-text h1 { font-size: 1.9rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .two-columns { flex-direction: column; }
    .financial-stats { flex-direction: column; }
}