:root {
    --primary-dark: #002868;
    --primary-red: #D21034;
    --primary-light: #EBF4FF;
    --gray-bg: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #475569;
    --border-light: #E2E8F0;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08);
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--white);
}

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

.skip-link {
    position: absolute; top:-40px; left:0;
    background: var(--primary-dark); color:white;
    padding:8px 16px; z-index:100; text-decoration:none;
}
.skip-link:focus { top:0; }

.site-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
    position: sticky; top:0; z-index:50;
}
.nav-container {
    display: flex; justify-content: space-between;
    align-items: center; height: 70px;
}
.logo { display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.2rem; }
.logo-icon { color:var(--primary-red); font-size:1.5rem; }
.logo-year { font-weight:400; color:var(--primary-dark); }
.main-nav ul { display:flex; gap:28px; list-style:none; }
.nav-link { text-decoration:none; font-weight:500; color:var(--text-dark); transition:var(--transition); }
.nav-link:hover { color:var(--primary-red); }
.menu-toggle { display:none; background:none; border:none; font-size:1.8rem; cursor:pointer; color:var(--primary-dark); }

.hero {
    background: linear-gradient(135deg, #001a4d 0%, #002868 100%);
    color:white; padding:60px 0 80px;
}
.hero-content { text-align:center; }
.hero-badge {
    background:rgba(255,255,255,0.2); display:inline-block;
    padding:6px 16px; border-radius:40px; font-size:0.85rem; margin-bottom:20px;
}
.hero h1 { font-size:2.5rem; margin-bottom:16px; max-width:800px; margin-left:auto; margin-right:auto; }
.hero-sub { font-size:1.2rem; opacity:0.9; max-width:700px; margin:0 auto 40px; }
.hero-stats { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; }
.hero-stat .stat-number { font-size:2.2rem; font-weight:800; display:block; }
.hero-stat .stat-label { font-size:0.9rem; opacity:0.8; }

.section { padding:70px 0; }
.section.bg-light { background: var(--gray-bg); }
.section.bg-dark { background: var(--primary-dark); color:white; }
.section.bg-dark .section-header.light h2,
.section.bg-dark .section-header.light .section-tag { color:white; }
.section-header { text-align:center; margin-bottom:48px; }
.section-tag {
    font-size:0.85rem; text-transform:uppercase; letter-spacing:2px;
    background: var(--primary-light); color: var(--primary-dark);
    display:inline-block; padding:4px 16px; border-radius:30px;
    font-weight:600; margin-bottom:12px;
}
.section.bg-dark .section-tag { background:rgba(255,255,255,0.2); color:white; }
.section-header h2 { font-size:2rem; }

.intro-grid { display:grid; grid-template-columns:2fr 1fr; gap:40px; align-items:start; }
.intro-quote { background:var(--primary-light); padding:24px; border-radius:20px; border-left:4px solid var(--primary-red); }
.intro-quote i { color:var(--primary-red); font-size:2rem; margin-bottom:12px; display:block; }
.intro-quote p { font-style:italic; font-size:1.1rem; margin-bottom:12px; }
.intro-quote cite { font-size:0.9rem; color:var(--text-muted); }

.stats-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(200px,1fr)); gap:30px; }
.stat-card {
    background:white; padding:24px; border-radius:24px; text-align:center;
    box-shadow:var(--shadow-sm); transition:var(--transition);
}
.stat-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.stat-card i { font-size:2.2rem; color:var(--primary-red); margin-bottom:16px; }
.stat-value { font-size:2rem; font-weight:800; color:var(--primary-dark); margin-bottom:8px; }
.stat-desc { font-size:0.9rem; color:var(--text-muted); }

.insight-note { margin-top:40px; background:var(--primary-light); padding:16px 24px; border-radius:60px; text-align:center; }

.def-table-responsive { overflow-x:auto; margin-bottom:20px; }
.def-table { width:100%; border-collapse:collapse; background:white; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm); }
.def-table th, .def-table td { padding:16px; text-align:left; border-bottom:1px solid var(--border-light); }
.def-table th { background:var(--primary-dark); color:white; font-weight:600; }
.def-note { font-size:0.9rem; text-align:center; margin-top:16px; }

.cycle-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:40px; }
.cycle-item { background:white; padding:24px; border-radius:24px; box-shadow:var(--shadow-sm); }
.cycle-bars { margin-top:16px; }
.bar-label { display:flex; justify-content:space-between; margin:12px 0 4px; font-size:0.9rem; }
.progress-bar { background:#E2E8F0; border-radius:20px; overflow:hidden; height:10px; }
.progress-bar div { background:var(--primary-red); height:10px; width:0%; border-radius:20px; }
.small-note { margin-top:16px; font-size:0.85rem; color:var(--text-muted); }

.two-columns { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.stat-circle-wrapper { text-align:center; margin-bottom:32px; }
.stat-circle {
    width:140px; height:140px; border-radius:50%;
    background: conic-gradient(var(--primary-red) 0deg calc(var(--p,0)*3.6deg), #E2E8F0 calc(var(--p,0)*3.6deg) 360deg);
    display:flex; align-items:center; justify-content:center;
    font-size:2.2rem; font-weight:800; color:var(--primary-dark);
    margin:0 auto 16px; position:relative;
}
.stat-circle::before { content:''; position:absolute; width:110px; height:110px; background:white; border-radius:50%; }
.stat-circle { z-index:2; background-clip:padding-box; }
.stat-circle[data-value="89"] { --p:89; }
.stat-circle[data-value="11"] { --p:11; }
.financial-list { list-style:none; margin:20px 0; }
.financial-list li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border-light); }
.info-badge { background:#FFF3E0; padding:12px; border-radius:16px; margin:20px 0; }

.inclusion-chart { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:30px; margin-bottom:50px; }
.inclusion-card { background:white; border-radius:28px; padding:28px; box-shadow:var(--shadow-sm); }
.inclusion-card h3 { margin-bottom:20px; font-size:1.3rem; }
.donut-visual { width:120px; height:120px; margin:0 auto 20px; }
.donut-segment { display:flex; align-items:center; justify-content:center; width:100%; height:100%; border-radius:50%; background: radial-gradient(white 55%, transparent 56%), conic-gradient(var(--primary-red) 0% var(--p,0%), var(--primary-light) var(--p,0%) 100%); font-weight:800; font-size:1.4rem; }
.stats-simple { background:var(--gray-bg); border-radius:20px; padding:16px; margin:16px 0; }
.stats-simple div { margin-bottom:12px; }
.stat-num { font-weight:800; font-size:1.2rem; color:var(--primary-dark); display:inline-block; width:60px; }
.big-number { font-size:4rem; font-weight:800; color:var(--primary-red); text-align:center; margin:20px 0; }

.impact-section { background:var(--primary-light); border-radius:28px; padding:32px; margin-top:20px; }
.impact-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); gap:20px; margin-top:20px; }
.impact-grid div { background:white; padding:16px; border-radius:20px; box-shadow:var(--shadow-sm); }

.recs-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:30px; margin-top:20px; }
.rec-card { background:rgba(255,255,255,0.1); backdrop-filter:blur(4px); border-radius:24px; padding:28px; transition:var(--transition); }
.rec-card i { font-size:2rem; margin-bottom:16px; display:block; color:white; }
.rec-card h3 { font-size:1.3rem; margin-bottom:12px; }
.rec-card p { opacity:0.9; line-height:1.5; }

.site-footer { background:#0B1E33; color:#CBD5E1; padding:48px 0; text-align:center; }
.footer-logos { display:flex; justify-content:center; gap:32px; flex-wrap:wrap; margin-bottom:32px; font-weight:600; color:white; }
.btn-outline-light { display:inline-block; margin-top:20px; padding:10px 24px; border:1px solid #CBD5E1; border-radius:40px; color:#CBD5E1; text-decoration:none; transition:var(--transition); }
.btn-outline-light:hover { background:white; color:var(--primary-dark); border-color:white; }
.copyright { margin-top:24px; font-size:0.85rem; }
.note { font-size:0.75rem; margin-top:16px; }

@media (max-width: 768px) {
    .menu-toggle { display:block; }
    .main-nav {
        position: fixed; top:70px; left:-100%; width:70%; height:calc(100vh - 70px);
        background:white; transition:0.3s; box-shadow:var(--shadow-md); z-index:1000;
    }
    .main-nav.active { left:0; }
    .main-nav ul { flex-direction:column; padding:32px; gap:24px; }
    .hero h1 { font-size:1.8rem; }
    .intro-grid, .two-columns, .cycle-grid { grid-template-columns:1fr; }
    .stat-circle { width:100px; height:100px; font-size:1.5rem; }
    .stat-circle::before { width:75px; height:75px; }
    .section { padding:50px 0; }
}