﻿*,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --night: #0b0f2a;
        --night-light: #111640;
        --night-card: #161b4a;
        --green: #2a7d4f;
        --green-light: #34a063;
        --green-pale: rgba(42, 125, 79, 0.12);
        --orange: #e8622a;
        --orange-light: #f0844e;
        --cyan: #3ecfcf;
        --pink: #e86acc;
        --purple: #8b5cf6;
        --grey-900: #1a1a2e;
        --grey-700: #3d3d56;
        --grey-500: #6b7080;
        --grey-300: #b0b5c0;
        --grey-100: #f2f3f6;
        --white: #ffffff;
        --font: "Manrope", sans-serif;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--font);
        background: var(--night);
        color: #e0e2f0;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        max-width: 100%;
        display: block;
      }

      .dark {
        background: var(--night);
        color: #e0e2f0;
      }
      .light {
        background: var(--white);
        color: var(--grey-900);
      }
      .light .section-label {
        color: var(--green);
      }
      .light .section-title {
        color: var(--grey-900);
      }
      .light .section-desc {
        color: var(--grey-500);
      }

      /* NAV */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 60px;
        height: 80px;
        background: rgba(11, 15, 42, 0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        text-decoration: none;
        line-height: 1;
      }
      .nav-logo-img {
        height: 56px;
        width: auto;
        display: block;
        flex-shrink: 0;
        position: relative;
      }
      .nav-logo-text {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-top: 10px;
      }
      .nav-logo-title{
        margin-top: 15px;
        color: var(--green-light);
      }
      .nav-logo-strategy {
        color: var(--orange);
      }
      .nav-logo-congo{
        var(--green)
      }
      .nav-links {
        display: flex;
        gap: 36px;
        align-items: center;
      }
      .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.5);
        position: relative;
        transition: color 0.3s;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--green);
        transition: width 0.3s;
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: #fff;
      }
      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }
      .nav-cta {
        font-size: 13px;
        font-weight: 600;
        padding: 10px 24px;
        border-radius: 6px;
        background: var(--green);
        color: #fff;
        transition: background 0.3s;
      }
      .nav-cta:hover {
        background: var(--green-light);
      }

      /* ===================== HERO ===================== */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 140px 60px 80px;
        position: relative;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: url("../images/hero/map-congo.webp") center right / 100% auto no-repeat;
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(11, 15, 42, 0.94) 0%,
          rgba(11, 15, 42, 0.88) 40%,
          rgba(11, 15, 42, 0.78) 70%,
          rgba(11, 15, 42, 0.92) 100%
        );
      }
      .hero-inner {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 50px;
        align-items: center;
      }
      .hero-date {
        font-size: 13px;
        font-weight: 600;
        color: var(--green-light);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .hero h1 {
        font-size: clamp(36px, 4.2vw, 60px);
        font-weight: 800;
        line-height: 1.14;
        margin-bottom: 22px;
        color: #fff;
      }
      .hero h1 .hl {
        color: var(--orange);
      }
      .hero-sub {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.5);
        max-width: 500px;
        line-height: 1.75;
        margin-bottom: 36px;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 28px;
        border-radius: 8px;
        background: var(--green);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        transition:
          background 0.3s,
          transform 0.2s;
      }
      .btn-primary:hover {
        background: var(--green-light);
        transform: translateY(-1px);
      }
      .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 28px;
        border-radius: 8px;
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        font-weight: 700;
        transition:
          border-color 0.3s,
          color 0.3s;
      }
      .btn-outline:hover {
        border-color: var(--green);
        color: var(--green-light);
      }

      /* ===================== DASHBOARD ===================== */
      .dash-wrap {
        position: relative;
      }
      .dash {
        background: var(--night-light);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      }
      .dash-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 18px;
        background: rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .dash-topbar-left {
        display: flex;
        gap: 6px;
      }
      .dash-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
      }
      .dash-dot.r {
        background: #ff5f57;
      }
      .dash-dot.y {
        background: #febc2e;
      }
      .dash-dot.g {
        background: #28c840;
      }
      .dash-topbar-title {
        font-size: 10px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 1.5px;
        text-transform: uppercase;
      }
      .dash-body {
        display: grid;
        grid-template-columns: 40px 1fr;
      }
      .dash-sidebar {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 14px 0;
        background: rgba(0, 0, 0, 0.18);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
      }
      .dash-si {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
      }
      .dash-si.active {
        color: var(--green-light);
        background: rgba(42, 125, 79, 0.15);
      }
      .dash-main {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .dash-row {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 12px;
      }
      .dash-panel {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 14px;
      }
      .dash-panel-title {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 10px;
      }
      .chart-bars {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        height: 85px;
        position: relative;
      }
      .chart-bars::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.05);
      }
      .cbar {
        flex: 1;
        border-radius: 3px 3px 0 0;
        animation: gBar 1s ease-out forwards;
        opacity: 0;
      }
      @keyframes gBar {
        from {
          height: 0 !important;
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      .cbar:nth-child(1) {
        height: 35%;
        background: var(--green-light);
        animation-delay: 0.2s;
      }
      .cbar:nth-child(2) {
        height: 50%;
        background: var(--green-light);
        animation-delay: 0.25s;
      }
      .cbar:nth-child(3) {
        height: 42%;
        background: rgba(42, 125, 79, 0.6);
        animation-delay: 0.3s;
      }
      .cbar:nth-child(4) {
        height: 68%;
        background: var(--green-light);
        animation-delay: 0.35s;
      }
      .cbar:nth-child(5) {
        height: 55%;
        background: rgba(42, 125, 79, 0.7);
        animation-delay: 0.4s;
      }
      .cbar:nth-child(6) {
        height: 75%;
        background: var(--green-light);
        animation-delay: 0.45s;
      }
      .cbar:nth-child(7) {
        height: 60%;
        background: var(--green-light);
        animation-delay: 0.5s;
      }
      .cbar:nth-child(8) {
        height: 88%;
        background: var(--green-light);
        animation-delay: 0.55s;
      }
      .cbar:nth-child(9) {
        height: 70%;
        background: rgba(42, 125, 79, 0.8);
        animation-delay: 0.6s;
      }
      .cbar:nth-child(10) {
        height: 92%;
        background: var(--green-light);
        animation-delay: 0.65s;
      }
      .cbar:nth-child(11) {
        height: 78%;
        background: rgba(42, 125, 79, 0.7);
        animation-delay: 0.7s;
      }
      .cbar:nth-child(12) {
        height: 45%;
        background: rgba(42, 125, 79, 0.5);
        animation-delay: 0.75s;
      }
      .chart-line-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
      }
      .donut-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
      }
      .donut-svg {
        width: 90px;
        height: 90px;
      }
      .donut-legend {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .donut-legend-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 9px;
        color: rgba(255, 255, 255, 0.35);
      }
      .donut-legend-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .donut-center {
        font-size: 14px;
        font-weight: 800;
        fill: #fff;
      }
      .dash-stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
      }
      .dash-stat-mini {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 10px;
        text-align: center;
      }
      .dash-stat-val {
        font-size: 16px;
        font-weight: 800;
        color: #fff;
      }
      .dash-stat-val.or {
        color: var(--orange);
      }
      .dash-stat-val.gr {
        color: var(--green-light);
      }
      .dash-stat-val.cy {
        color: var(--green-light);
      }
      .dash-stat-lbl {
        font-size: 8px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.25);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 2px;
      }
      .dash-float-btns {
        position: absolute;
        right: -16px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 7px;
        z-index: 2;
      }
      .dash-float-btn {
        background: var(--night-card);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 9px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.55);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition:
          border-color 0.3s,
          color 0.3s;
        animation: floatY 4s ease-in-out infinite;
      }
      .dash-float-btn:nth-child(1) {
        animation-delay: 0s;
      }
      .dash-float-btn:nth-child(2) {
        animation-delay: 0.8s;
      }
      .dash-float-btn:nth-child(3) {
        animation-delay: 1.6s;
      }
      .dash-float-btn:nth-child(4) {
        animation-delay: 2.4s;
      }
      @keyframes floatY {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-8px);
        }
      }
      .dash-float-btn:hover {
        border-color: var(--green);
        color: var(--green-light);
      }
      .dfb-icon {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
      }
      .dfb-icon.i1 {
        background: rgba(42, 125, 79, 0.15);
        color: var(--green-light);
      }
      .dfb-icon.i2 {
        background: rgba(232, 106, 204, 0.12);
        color: var(--pink);
      }
      .dfb-icon.i3 {
        background: rgba(139, 92, 246, 0.12);
        color: var(--purple);
      }
      .dfb-icon.i4 {
        background: rgba(232, 98, 42, 0.12);
        color: var(--orange);
      }

      /* ===================== DASHBOARD V2 ANIMATED ===================== */
      .dash-v2 {
        background: #0d1230;
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0,0,0,0.4);
      }
      .dash-titlebar {
        background: #000;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      .dash-titlebar-title { font-size: 11px; font-weight: 600; color: #fff; }
      .dash-titlebar-menu { color: rgba(255,255,255,0.5); font-size: 13px; }
      .dash-kpi-row {
        display: grid;
        grid-template-columns: repeat(6,1fr);
        background: rgba(255,255,255,0.05);
        gap: 1px;
      }
      .dash-kpi {
        background: #0d1230;
        padding: 10px 8px;
        min-height: 70px;
        animation: kpiFadeIn 0.6s ease-out both;
      }
      .dash-kpi:nth-child(1) { animation-delay: 0.1s; }
      .dash-kpi:nth-child(2) { animation-delay: 0.2s; }
      .dash-kpi:nth-child(3) { animation-delay: 0.3s; }
      .dash-kpi:nth-child(4) { animation-delay: 0.4s; }
      .dash-kpi:nth-child(5) { animation-delay: 0.5s; }
      .dash-kpi:nth-child(6) { animation-delay: 0.6s; }
      @keyframes kpiFadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
      .dash-kpi-label { font-size: 9px; font-weight: 700; color: #fff; margin-bottom: 1px; line-height: 1.2; }
      .dash-kpi-sub { font-size: 6.5px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
      .dash-kpi-value { font-size: 18px; font-weight: 300; color: #fff; letter-spacing: -0.5px; font-variant-numeric: tabular-nums; }
      .dash-kpi-value .counter-glow { animation: pulseGlow 3s ease-in-out infinite; }
      @keyframes pulseGlow { 0%,100% { text-shadow: none; } 50% { text-shadow: 0 0 8px rgba(42,125,79,0.5); } }
      .dash-grid-row { display: grid; background: rgba(255,255,255,0.05); gap: 1px; }
      .dash-grid-row.r2 { grid-template-columns: 1.9fr 1.4fr 0.8fr; }
      .dash-grid-row.r3 { grid-template-columns: 1fr 1.3fr 1fr; }
      .dash-panel-v2 { background: #0d1230; padding: 10px 12px 12px; }
      .dash-panel-v2-title { font-size: 9px; font-weight: 700; color: #fff; }
      .dash-panel-v2-sub { font-size: 6.5px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; }
      .area-chart { width: 100%; height: 120px; }
      .area-chart .area-fill { animation: areaReveal 1.5s ease-out 0.5s both; }
      .area-chart .area-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: drawLine 2s ease-out 0.5s forwards; }
      .area-chart .area-fill2 { animation: areaReveal 1.5s ease-out 0.8s both; }
      .area-chart .area-line2 { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: drawLine 2s ease-out 0.8s forwards; }
      @keyframes areaReveal { from { opacity: 0; } to { opacity: 1; } }
      @keyframes drawLine { to { stroke-dashoffset: 0; } }
      .area-chart .data-label { opacity: 0; animation: labelPop 0.3s ease-out forwards; }
      .area-chart .data-label:nth-of-type(1) { animation-delay: 1.2s; }
      .area-chart .data-label:nth-of-type(2) { animation-delay: 1.4s; }
      .area-chart .data-label:nth-of-type(3) { animation-delay: 1.6s; }
      .area-chart .data-label:nth-of-type(4) { animation-delay: 1.8s; }
      .area-chart .data-label:nth-of-type(5) { animation-delay: 2.0s; }
      @keyframes labelPop { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
      .hbar-list { display: flex; flex-direction: column; gap: 3px; }
      .hbar-item { display: grid; grid-template-columns: 44px 1fr; gap: 6px; align-items: center; font-size: 8px; color: rgba(255,255,255,0.7); }
      .hbar-name { text-align: right; }
      .hbar-track {
        height: 7px; background: var(--green-light); border-radius: 1px;
        transform-origin: left;
        animation: hbarGrow 1s ease-out both, hbarPulse 6s ease-in-out 2s infinite;
      }
      .hbar-item:nth-child(1) .hbar-track { animation-delay: 0.3s, 2.3s; }
      .hbar-item:nth-child(2) .hbar-track { animation-delay: 0.4s, 2.4s; }
      .hbar-item:nth-child(3) .hbar-track { animation-delay: 0.5s, 2.5s; }
      .hbar-item:nth-child(4) .hbar-track { animation-delay: 0.55s, 2.6s; }
      .hbar-item:nth-child(5) .hbar-track { animation-delay: 0.6s, 2.7s; }
      .hbar-item:nth-child(6) .hbar-track { animation-delay: 0.65s, 2.8s; }
      .hbar-item:nth-child(7) .hbar-track { animation-delay: 0.7s, 2.9s; }
      .hbar-item:nth-child(8) .hbar-track { animation-delay: 0.75s, 3.0s; }
      .hbar-item:nth-child(9) .hbar-track { animation-delay: 0.8s, 3.1s; }
      .hbar-item:nth-child(10) .hbar-track { animation-delay: 0.85s, 3.2s; }
      .hbar-item:nth-child(11) .hbar-track { animation-delay: 0.9s, 3.3s; }
      @keyframes hbarGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
      @keyframes hbarPulse { 0%,100% { transform: scaleX(1); } 15% { transform: scaleX(1.06); } 30% { transform: scaleX(0.97); } 45% { transform: scaleX(1); } }
      .big-number {
        font-size: 36px; font-weight: 300; color: #fff;
        letter-spacing: -1px; text-align: center; padding: 20px 0 10px;
        font-variant-numeric: tabular-nums;
        animation: bigNumFloat 5s ease-in-out infinite;
      }
      @keyframes bigNumFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
      .vbar-chart {
        display: flex; align-items: flex-end; gap: 6px;
        height: 100px; padding: 0 0 18px; position: relative;
      }
      .vbar-chart::before {
        content: ""; position: absolute; left: 0; bottom: 18px; right: 0;
        height: 1px; background: rgba(255,255,255,0.1);
      }
      .vbar {
        flex: 1; background: var(--green-light); border-radius: 1px 1px 0 0;
        position: relative;
        transform-origin: bottom;
        animation: vbarGrow 0.8s ease-out both, vbarBreathe 5s ease-in-out 2s infinite;
      }
      .vbar:nth-child(1) { animation-delay: 0.2s, 2.5s; }
      .vbar:nth-child(2) { animation-delay: 0.35s, 2.7s; }
      .vbar:nth-child(3) { animation-delay: 0.5s, 2.9s; }
      .vbar:nth-child(4) { animation-delay: 0.65s, 3.1s; }
      .vbar:nth-child(5) { animation-delay: 0.8s, 3.3s; }
      @keyframes vbarGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
      @keyframes vbarBreathe { 0%,100% { transform: scaleY(1); } 20% { transform: scaleY(1.08); } 40% { transform: scaleY(0.95); } 60% { transform: scaleY(1); } }
      .vbar-label {
        position: absolute; bottom: -16px; left: 0; right: 0;
        text-align: center; font-size: 8px; color: rgba(255,255,255,0.55);
      }
      .lev-list { display: flex; flex-direction: column; gap: 7px; }
      .lev-item {
        display: grid; grid-template-columns: 82px 1fr 28px;
        gap: 6px; align-items: center; font-size: 8px; color: rgba(255,255,255,0.7);
      }
      .lev-track {
        height: 9px; border-radius: 1px;
        transform-origin: left;
        animation: levGrow 1s ease-out both, levPulse 7s ease-in-out 2s infinite;
      }
      .lev-item:nth-child(1) .lev-track { animation-delay: 0.3s, 2.5s; }
      .lev-item:nth-child(2) .lev-track { animation-delay: 0.45s, 2.7s; }
      .lev-item:nth-child(3) .lev-track { animation-delay: 0.6s, 2.9s; }
      .lev-item:nth-child(4) .lev-track { animation-delay: 0.75s, 3.1s; }
      .lev-item:nth-child(5) .lev-track { animation-delay: 0.9s, 3.3s; }
      @keyframes levGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
      @keyframes levPulse { 0%,100% { transform: scaleX(1); } 12% { transform: scaleX(1.04); } 24% { transform: scaleX(0.96); } 36% { transform: scaleX(1); } }
      .lev-pct { font-size: 8.5px; color: #fff; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
      .syn-list { display: flex; flex-direction: column; }
      .syn-item {
        display: flex; justify-content: space-between;
        padding: 7px 0; font-size: 9px; color: rgba(255,255,255,0.75);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        opacity: 0; animation: synFade 0.5s ease-out forwards;
      }
      .syn-item:last-child { border-bottom: 0; }
      .syn-item:nth-child(1) { animation-delay: 0.6s; }
      .syn-item:nth-child(2) { animation-delay: 0.8s; }
      .syn-item:nth-child(3) { animation-delay: 1.0s; }
      .syn-item:nth-child(4) { animation-delay: 1.2s; }
      @keyframes synFade { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
      .syn-val { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }


      /* ===================== SECTIONS ===================== */
      .section {
        padding: 110px 60px;
        max-width: 1400px;
        margin: 0 auto;
      }
      .section-label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 14px;
        color: var(--green-light);
      }
      .section-title {
        font-size: clamp(28px, 3.2vw, 46px);
        font-weight: 800;
        line-height: 1.18;
        margin-bottom: 18px;
        color: #fff;
      }
      .section-desc {
        font-size: 16px;
        line-height: 1.8;
        max-width: 560px;
        color: rgba(255, 255, 255, 0.5);
      }

      /* ===================== SECTEURS (dark, right after hero) ===================== */
      .secteurs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-top: 50px;
      }
      .secteur-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4/5;
        cursor: pointer;
      }
      .secteur-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s;
      }
      .secteur-card:hover img {
        transform: scale(1.06);
      }
      .secteur-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          0deg,
          rgba(11, 15, 42, 0.92) 0%,
          rgba(11, 15, 42, 0.1) 55%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px;
      }
      .secteur-overlay h3 {
        font-size: 19px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 5px;
      }
      .secteur-overlay p {
        font-size: 12px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.55);
      }
      .secteur-overlay .plus {
        margin-top: 14px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        transition:
          background 0.3s,
          border-color 0.3s;
      }
      .secteur-card:hover .plus {
        background: var(--green);
        border-color: var(--green);
      }
      /* Icon inside secteur overlay */
      .secteur-overlay .s-icon {
        font-size: 20px;
        margin-bottom: 10px;
        background: linear-gradient(135deg, var(--green-light), var(--green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* ===================== APPROCHE (light, 4 image+text) ===================== */
      /* Fond crème identique à la page secteurs */
      .approche-section-wrap {
        background: #f5f4f0;
        color: #1a1c2e;
      }
      .approche-section-wrap .section-label { color: var(--green); }
      .approche-section-wrap .section-title { color: #0d1230; }
      .approche-section-wrap .section-desc  { color: #4a4f6a; }

      .approche-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 50px;
      }
      .approche-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: center;
        min-height: 500px;
        max-width: 1300px;
        margin: 0 auto;
        padding: 50px 60px;
      }
      .approche-item:nth-child(even) .approche-img {
        order: 2;
        padding: 0 0 0 16px;
      }
      .approche-item:nth-child(even) .approche-text {
        order: 1;
        padding: 0 16px 0 0;
      }
      .approche-img {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        overflow: visible;
        border: none;
        position: relative;
      }

      /* Fond de scène : plateau légèrement décalé */
      .approche-img::before {
        content: "";
        position: absolute;
        inset: 14px -10px -14px 10px;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(42,125,79,0.13) 0%, rgba(42,125,79,0.04) 100%);
        pointer-events: none;
        z-index: 0;
        transition: opacity 0.35s;
      }
      .approche-item:nth-child(even) .approche-img::before {
        inset: 14px 10px -14px -10px;
      }
      .approche-item:hover .approche-img::before {
        opacity: 0.7;
      }

      /* Styles de l'ancien lien cliquable (maintenu pour rétrocompat) */
      .approche-img-link {
        display: block;
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
        transition: box-shadow 0.35s;
      }

      .approche-img img {
        width: 100%;
        max-width: 620px;
        height: 360px;
        display: block;
        object-fit: cover;
        object-position: center center;
        border-radius: 18px;
        box-shadow:
          0 1px 3px rgba(26, 28, 46, 0.05),
          0 8px 24px rgba(26, 28, 46, 0.09),
          0 24px 56px rgba(26, 28, 46, 0.08);
        transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
        position: relative;
        z-index: 1;
      }
      .approche-item:hover .approche-img img {
        transform: translate(-4px, -4px);
        box-shadow:
          0 4px 12px rgba(26, 28, 46, 0.08),
          0 16px 48px rgba(26, 28, 46, 0.14),
          0 32px 72px rgba(26, 28, 46, 0.1);
      }
      .approche-item:nth-child(even):hover .approche-img img {
        transform: translate(4px, -4px);
      }

      /* ── LIGHTBOX ── */
      .lightbox {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(5, 7, 20, 0.92);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }
      .lightbox.open {
        opacity: 1;
        pointer-events: all;
      }
      .lightbox-img-wrap {
        position: relative;
        max-width: 90vw;
        max-height: 88vh;
        transform: scale(0.92);
        transition: transform 0.35s ease;
      }
      .lightbox.open .lightbox-img-wrap {
        transform: scale(1);
      }
      .lightbox-img-wrap img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 14px;
        box-shadow: 0 40px 100px rgba(0,0,0,0.6);
        display: block;
      }
      .lightbox-close {
        position: absolute;
        top: -14px;
        right: -14px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--night-card);
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, border-color 0.2s;
        line-height: 1;
      }
      .lightbox-close:hover {
        background: var(--green);
        border-color: var(--green);
      }
      .lightbox-caption {
        position: absolute;
        bottom: -38px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 13px;
        color: rgba(255,255,255,0.45);
        font-weight: 600;
      }
      .approche-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 0 0 75px;
      }
      .approche-heading {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
      }
      .approche-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        background: linear-gradient(
          135deg,
          rgba(42, 125, 79, 0.13),
          rgba(42, 125, 79, 0.05)
        );
        border: 1px solid rgba(42, 125, 79, 0.18);
      }
      .approche-icon i {
        background: linear-gradient(135deg, var(--green), var(--green-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .approche-text h3 {
        font-size: 28px;
        font-weight: 800;
        color: #0d1230;
        line-height: 1.25;
        letter-spacing: -0.5px;
      }
      .approche-text p {
        font-size: 16px;
        line-height: 1.85;
        color: #4a4f6a;
        max-width: 480px;
      }

      /* ===================== POURQUOI (dark) ===================== */
      .pourquoi-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
      }
      .pourquoi-card {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
        aspect-ratio: 3/4;
        transition: border-color 0.3s, transform 0.3s;
      }
      .pourquoi-card:hover {
        border-color: var(--green);
        transform: translateY(-6px);
      }
      .pourquoi-card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
      }
      .pourquoi-card:hover .pourquoi-card-img {
        transform: scale(1.06);
      }
      .pourquoi-card-img-wrap { display: none; }
      .pourquoi-card-body { display: none; }
      .pourquoi-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(9, 13, 40, 0.05) 0%,
          rgba(9, 13, 40, 0.35) 42%,
          rgba(9, 13, 40, 0.88) 68%,
          rgba(9, 13, 40, 0.98) 100%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 28px 24px 26px;
        gap: 10px;
      }
      .pourquoi-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 20px;
        background: rgba(42, 125, 79, 0.25);
        backdrop-filter: blur(8px);
        flex-shrink: 0;
      }
      .pourquoi-icon i {
        background: linear-gradient(135deg, var(--green-light), var(--green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .pourquoi-card h3 {
        font-size: 19px;
        font-weight: 800;
        color: #fff;
        line-height: 1.3;
        margin: 0;
      }
      .pourquoi-card p {
        font-size: 13px;
        line-height: 1.72;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
      }
      .pourquoi-card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 700;
        color: var(--green-light);
        margin-top: 4px;
        transition: gap 0.3s, color 0.3s;
        text-decoration: none;
      }
      .pourquoi-card-link:hover {
        gap: 10px;
        color: #fff;
      }

      /* LOGOS (dark) */
      .logos-bar {
        padding: 50px 60px;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }
      .logos-track {
        display: flex;
        align-items: center;
        gap: 64px;
        animation: scrollLogos 30s linear infinite;
      }
      .logos-track img {
        height: 32px;
        opacity: 0.2;
        filter: grayscale(1) brightness(2.5);
        transition: opacity 0.3s;
      }
      .logos-track img:hover {
        opacity: 0.5;
      }
      @keyframes scrollLogos {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* TESTIMONIAL (light) */
      .testimonial-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 420px;
      }
      .testimonial-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .testimonial-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 60px;
      }
      .testimonial-quote {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.65;
        font-style: italic;
        color: var(--grey-700);
        margin-bottom: 20px;
      }
      .testimonial-author {
        font-size: 14px;
        color: var(--grey-500);
      }
      .testimonial-link {
        margin-top: 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        color: var(--green);
        transition: gap 0.3s;
      }
      .testimonial-link:hover {
        gap: 12px;
      }

      /* ACTU (dark) */
      .actu-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 50px;
      }
      .actu-card {
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition:
          border-color 0.3s,
          transform 0.3s;
      }
      .actu-card:hover {
        border-color: rgba(42, 125, 79, 0.5);
        transform: translateY(-4px);
      }
      .actu-card img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
      }
      .actu-body {
        padding: 22px;
      }
      .actu-tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 8px;
      }
      .actu-card h3 {
        font-size: 15px;
        font-weight: 800;
        line-height: 1.4;
        margin-bottom: 8px;
        color: #fff;
      }
      .actu-card p {
        font-size: 13px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 12px;
      }
      .actu-read {
        font-size: 13px;
        font-weight: 700;
        color: var(--green-light);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: gap 0.3s;
      }
      .actu-read:hover {
        gap: 10px;
      }

      /* Card "à venir" */
      .actu-card--soon {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.03);
        border: 1.5px dashed rgba(255,255,255,0.1);
        min-height: 380px;
      }
      .actu-card--soon:hover {
        border-color: rgba(42,125,79,0.4);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.2);
      }
      .actu-soon-body {
        text-align: center;
        padding: 40px 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
      }
      .actu-soon-icon {
        font-size: 32px;
        color: var(--green-light);
        opacity: 0.5;
        line-height: 1;
        margin-bottom: 4px;
      }
      .actu-card--soon h3 {
        font-size: 17px;
        font-weight: 700;
        color: rgba(255,255,255,0.7);
        line-height: 1.4;
      }
      .actu-card--soon p {
        font-size: 13px;
        color: rgba(255,255,255,0.3);
        line-height: 1.7;
        max-width: 260px;
      }
      .cta-section {
        text-align: center;
        padding: 100px 60px;
      }
      .cta-section .section-title {
        max-width: 600px;
        margin: 0 auto 16px;
      }
      .cta-section .section-desc {
        max-width: 500px;
        margin: 0 auto 36px;
      }
      .cta-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* FOOTER */
      .footer {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 70px 60px 36px;
      }
      .footer-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 50px;
      }
      .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.7;
        margin-top: 14px;
        max-width: 300px;
      }
      .footer-col h4 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
        color: rgba(255, 255, 255, 0.6);
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 10px;
        transition: color 0.3s;
      }
      .footer-col a:hover {
        color: var(--green-light);
      }
      .footer-bottom {
        max-width: 1400px;
        margin: 36px auto 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: space-between;
      }

      /* ANIM */
      .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* RESPONSIVE */
      @media (max-width: 1024px) {
        .nav {
          padding: 0 30px;
        }
        .hero {
          padding: 110px 30px 60px;
        }
        .hero-inner {
          grid-template-columns: 1fr;
        }
        .dash-float-btns {
          display: none;
        }
        .secteurs-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .approche-item {
          grid-template-columns: 1fr;
          min-height: auto;
          padding: 40px 30px;
          gap: 24px;
        }
        .approche-item:nth-child(even) .approche-img {
          order: 1;
          padding: 0;
        }
        .approche-item:nth-child(even) .approche-text {
          order: 2;
          padding: 0;
        }
        .approche-img {
          padding: 16px 0;
          overflow: visible;
        }
        .approche-img::before,
        .approche-img::after { display: none; }
        .approche-img img {
          max-width: 100%;
          height: 220px;
        }
        .approche-text {
          padding: 0;
        }
        .pourquoi-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .actu-grid {
          grid-template-columns: 1fr;
        }
        .testimonial-section {
          grid-template-columns: 1fr;
        }
        .testimonial-img {
          max-height: 280px;
          overflow: hidden;
        }
        .footer-inner {
          grid-template-columns: 1fr 1fr;
        }
        .section {
          padding: 80px 30px;
        }
      }
      @media (max-width: 640px) {
        .nav-links {
          display: none;
        }
        .pourquoi-grid {
          grid-template-columns: 1fr;
        }
        .secteurs-grid {
          grid-template-columns: 1fr;
        }
        .footer-inner {
          grid-template-columns: 1fr;
        }
        .dash-row {
          grid-template-columns: 1fr;
        }
        .dash-stats-row {
          grid-template-columns: repeat(2, 1fr);
        }
      }
