/* ============================================================
   ERE DÉVELOPPEMENT — Premium Stylesheet v2.0
   ============================================================ */

/* Fonts : chargées exclusivement via <link> dans main.twig (évite le double chargement) */

/* ── Design Tokens ───────────────────────────────────────── */
[x-cloak] { display: none !important; }
:root {
    --green-900:  #061a08;
    --green-800:  #0a2e0d;
    --green-700:  #0d3b13;
    --green-600:  #145218;
    --green-500:  #1B5E20;
    --green-400:  #2E7D32;
    --green-300:  #388E3C;
    --green-200:  #a5d6a7;
    --green-100:  #e8f5e9;
    --green-50:   #f1f8f1;

    --teal-500:   #00897B;
    --teal-400:   #26a69a;

    --orange-700: #BF360C;
    --orange-600: #E65100;
    --orange-500: #F57C00;
    --orange-400: #FF8F00;
    --orange-300: #FFB300;
    --orange-100: #FFF3E0;
    --orange-50:  #fff8f0;

    --blue-900:   #1e3a8a;
    --blue-800:   #1e40af;
    --blue-700:   #1d4ed8;
    --blue-600:   #2563eb;
    --blue-500:   #3b82f6;
    --blue-400:   #60a5fa;
    --blue-100:   #dbeafe;
    --blue-50:    #eff6ff;

    --white:      #FFFFFF;
    --gray-50:    #F8F9FA;
    --gray-100:   #F0F2F5;
    --gray-200:   #E5E7EB;
    --gray-300:   #D1D5DB;
    --gray-400:   #9CA3AF;
    --gray-500:   #6B7280;
    --gray-600:   #4B5563;
    --gray-700:   #374151;
    --gray-800:   #1F2937;
    --gray-900:   #111827;

    --primary:    var(--green-500);
    --secondary:  var(--orange-500);
    --dark-green: var(--green-900);

    --shadow-xs:  0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:  0 10px 40px rgba(0,0,0,0.13);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.17);
    --shadow-2xl: 0 30px 80px rgba(0,0,0,0.22);
    --shadow-glow-green: 0 0 40px rgba(27,94,32,0.25);
    --shadow-glow-orange: 0 0 30px rgba(245,124,0,0.30);

    --radius-xs:  4px;
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    --glass-bg:   rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.16);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:  1200px;
    --header-h:   80px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
button:focus, a:focus { outline: none; }
button:focus-visible, a:focus-visible { 
    outline: 2px solid var(--secondary); 
    outline-offset: 4px;
    border-radius: 4px;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.18;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title { margin-bottom: 18px; }
.section-title span { color: var(--primary); }

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--orange-300));
    border-radius: 4px;
    margin-bottom: 20px;
}

.text-center { text-align: center; }
.text-orange { color: var(--secondary); }
.text-green  { color: var(--primary); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(27,94,32,0.35), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27,94,32,0.45), 0 2px 6px rgba(0,0,0,0.12);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(245,124,0,0.35), 0 1px 3px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,124,0,0.45), 0 2px 6px rgba(0,0,0,0.12);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--green-200);
}

.btn-ghost:hover {
    background: var(--green-50);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ── Header / Navigation ─────────────────────────────────── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-md);
}

header:not(.scrolled) { 
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%); 
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
    letter-spacing: -0.03em;
}

.brand-logo {
    height: 64px;
    width: 64px;
    object-fit: contain;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--shadow-sm), 0 0 20px rgba(255,255,255,0.2);
    transition: var(--transition);
}

header.scrolled .logo { color: var(--green-800); }
header.scrolled .brand-logo { 
    height: 48px; 
    width: 48px;
    padding: 6px;
}

/* Keep original colors as requested */
header:not(.scrolled) .brand-logo {
    filter: none;
}

.logo span { color: var(--secondary); }

nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}

nav > ul > li { position: relative; }

nav > ul > li > a {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 7px;
    color: rgba(255,255,255,0.90);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

header.scrolled nav > ul > li > a { color: var(--gray-700); }

/* Animated Underline */
nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

header.scrolled nav > ul > li > a::after { background: var(--primary); }

nav > ul > li > a:hover {
    color: var(--white);
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

header.scrolled nav > ul > li > a:hover {
    color: var(--primary);
}

/* Active nav indicator */
nav > ul > li > a.active {
    color: var(--secondary) !important;
}

nav ul li a.active::after {
    transform: scaleX(1);
}

header.scrolled nav > ul > li > a.active {
    color: var(--primary) !important;
}

nav > ul > li > a.btn { padding: 10px 24px; }

.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 4px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s, background 0.2s;
}

.nav-social-icon:hover {
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.08);
}

header.scrolled .nav-social-icon { color: rgba(0,0,0,0.4); }
header.scrolled .nav-social-icon:hover { color: var(--primary); background: rgba(0,0,0,0.05); }
nav ul li a.btn::after { display: none; }

/* Dropdown & Mega Menu */
.dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 230px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
}

nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--gray-100);
    border-top: 1px solid var(--gray-100);
}

.dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.dropdown li a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    padding: 12px 20px !important;
    color: var(--gray-700) !important;
    border-radius: var(--radius-sm);
    font-size: 0.875rem !important;
    background: none !important;
    font-weight: 500 !important;
    line-height: 1.4;
}

.dropdown li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-200);
    flex-shrink: 0;
    transition: var(--transition);
}

.dropdown li a::after { display: none !important; }

.dropdown li a:hover {
    background: var(--green-50) !important;
    color: var(--primary) !important;
    padding-left: 24px !important;
}

.dropdown li a:hover::before { background: var(--primary); transform: scale(1.3); }

/* Mega Menu specific */
.mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: clamp(600px, 80vw, 900px);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.mega-menu-info {
    border-right: 1px solid var(--gray-100);
    padding-right: 30px;
}

.mega-menu-info h4 {
    margin-bottom: 12px;
    color: var(--primary);
}

.mega-menu-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Sections for Ecosystème */
.dropdown-header {
    padding: 12px 20px 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-50);
    margin-bottom: 4px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 26, 8, 0.95);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    z-index: 1001;
    overflow-y: auto;
    padding-top: var(--header-h);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245,124,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-menu-inner {
    padding: 40px 24px;
}

.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-links li {
    margin-bottom: 8px;
}

.mobile-links li a, .mobile-link-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: left;
}

.mobile-links li a:hover, .mobile-link-dropdown:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary);
}

.mobile-sublinks {
    list-style: none;
    padding: 8px 0 8px 24px;
    margin: 0;
}

.mobile-sublinks li {
    margin-bottom: 4px;
}

.mobile-sublinks li a {
    display: inline-block !important;
    width: 100%;
    text-align: left !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-sublinks li a:hover {
    color: var(--secondary) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: rgba(255,255,255,0.15);
    transition: var(--transition);
}

header.scrolled .mobile-toggle { color: var(--primary); background: var(--green-50); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION — Premium Cinematic Design
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Multi-layer overlay for depth */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(6, 26, 8, 0.92) 0%,
            rgba(10, 46, 13, 0.78) 55%,
            rgba(13, 59, 19, 0.50) 100%
        );
    z-index: 1;
}

/* Noise/grain texture for depth */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to top, var(--white) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

/* Decorative mesh gradient */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(27,94,32,0.40) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 100% 80%, rgba(245,124,0,0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: floatParticle var(--dur, 12s) ease-in-out infinite var(--delay, 0s);
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
    33%       { transform: translateY(-40px) translateX(20px) scale(1.1); opacity: 0.7; }
    66%       { transform: translateY(-20px) translateX(-15px) scale(0.9); opacity: 0.3; }
}

/* Hero grid line decoration */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    padding-top: var(--header-h);
    padding-bottom: 80px;
}

/* Animated accent line */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
    border-radius: 2px;
    animation: expandLine 1s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes expandLine {
    to { width: 48px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,124,0,0.15);
    border: 1px solid rgba(245,124,0,0.35);
    border-radius: var(--radius-full);
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: heroFadeUp 0.8s 0.1s ease both;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-400);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.6; }
}

/* Animated H1 — words appear in cascade */
.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 em {
    font-style: normal;
    color: var(--orange-400);
    position: relative;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-300));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.8s 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes underlineReveal {
    to { transform: scaleX(1); }
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.8;
    animation: heroFadeUp 0.8s 0.8s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s 1.0s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero inline stats */
.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    animation: heroFadeUp 0.8s 1.2s ease both;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-number .stat-accent {
    color: var(--orange-400);
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 50px;
    right: 60px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-track {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.hero-scroll-thumb {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, var(--orange-400), transparent);
    animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
    0%   { top: -50%; }
    100% { top: 150%; }
}

.hero-scroll-label {
    writing-mode: vertical-rl;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 100px) 0 100px;
    background: var(--green-900);
    color: var(--white);
    overflow: hidden;

}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,124,0,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
    font-weight: 500;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero-breadcrumb a:hover { color: var(--orange-300); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.35); }

.page-hero h1 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-hero p {
    color: rgba(255,255,255,0.72);
    font-size: 1.12rem;
    max-width: 640px;
    line-height: 1.75;
}

/* ── Section Base ────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-alt {
    background: var(--gray-50);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%231B5E20' fill-opacity='0.025'%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/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-header { margin-bottom: 64px; }

/* Section with green background */
.section-dark {
    background: linear-gradient(150deg, var(--green-900) 0%, var(--green-800) 100%);
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/dna-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-label { color: var(--orange-300); }
.section-dark .section-divider { background: linear-gradient(90deg, var(--orange-500), var(--orange-300)); }

/* ── Expertise Cards ─────────────────────────────────────── */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.expertise-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 42px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.expertise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--expertise-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
    transform: scale(1.1);
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 26, 8, 0.4) 0%, rgba(6, 26, 8, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.expertise-card:hover h3, 
.expertise-card:hover p, 
.expertise-card:hover .expertise-link {
    color: var(--white);
}

.expertise-card:hover .expertise-link {
    color: var(--secondary);
}

.expertise-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.expertise-card:hover::after {
    opacity: 1;
}

/* Ghost number decoration */
.expertise-card::before {
    content: attr(data-number);
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--green-500);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-slow);
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.expertise-card:hover::after { transform: scaleX(1); }

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
    border-color: rgba(27,94,32,0.12);
}

.expertise-card:hover::before { opacity: 0.07; }

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-100), var(--green-50));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid rgba(27,94,32,0.10);
    position: relative;
}

.expertise-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--teal-500));
    opacity: 0;
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon { border-color: transparent; }
.expertise-card:hover .expertise-icon::after { opacity: 1; }

.expertise-icon i { position: relative; z-index: 1; transition: var(--transition); }
.expertise-card:hover .expertise-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.expertise-card h3 { margin-bottom: 12px; font-size: 1.15rem; }

.expertise-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 22px;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.expertise-link:hover { gap: 10px; color: var(--secondary); }

/* ── Tender Cards ────────────────────────────────────────── */
.tenders-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.tenders-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--orange-100);
    transition: var(--transition);
}

.tenders-link:hover {
    gap: 10px;
    background: var(--orange-50);
}

.tenders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tender-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tender-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--orange-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.tender-card:hover::before { transform: scaleX(1); }

/* Live indicator */
.tender-live {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tender-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
    50%       { box-shadow: 0 0 0 5px rgba(22,163,74,0); }
}

.tender-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245,124,0,0.12);
}

.tender-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange-600);
    background: var(--orange-50);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(245,124,0,0.15);
}

.tender-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    flex: 1;
    line-height: 1.4;
}

.tender-client {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tender-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.tag-green  { background: var(--green-100); color: var(--green-500); }
.tag-orange { background: var(--orange-100); color: var(--orange-600); }

/* ── Generic Card ────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ── Partner Logos ───────────────────────────────────────── */
.partner-logos {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo-item {
    background: var(--white);
    padding: 18px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    min-width: 140px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.partner-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow-green);
    border-color: var(--green-200);
}

/* ── Contact Info Items ──────────────────────────────────── */
.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-sm), var(--shadow-glow-green);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-100), var(--green-50));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(27,94,32,0.10);
}

/* ── Form Controls ───────────────────────────────────────── */
.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
    outline: none;
    line-height: 1.5;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27,94,32,0.10);
    background: var(--green-50);
}

select.form-control { cursor: pointer; }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-control-upload {
    width: 100%;
    padding: 24px;
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.form-control-upload:hover {
    border-color: var(--primary);
    background: var(--green-50);
    color: var(--primary);
}

.form-error {
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Tabs ────────────────────────────────────────────────── */
.tab-pills {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 32px;
    gap: 4px;
}

.tab-pill {
    flex: 1;
    padding: 10px 20px;
    border-radius: calc(var(--radius-sm) - 2px);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-500);
    border: none;
    background: none;
    font-family: inherit;
}

.tab-pill.active, .tab-pill[data-active="true"] {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.tab-pill:hover:not(.active) { color: var(--gray-700); }

/* ── Step Indicator ──────────────────────────────────────── */
.step-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    transition: var(--transition);
}

.step-item.active:not(:last-child)::after,
.step-item.done:not(:last-child)::after { background: var(--primary); }

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-400);
    background: var(--white);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-item.active .step-circle {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(27,94,32,0.15);
}

.step-item.done .step-circle {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
}

.step-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-top: 8px;
    text-align: center;
}

.step-item.active .step-label { color: var(--primary); }

/* ── Filter Buttons ──────────────────────────────────────── */
.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--green-50);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(27,94,32,0.30);
}

/* ── Project Card ────────────────────────────────────────── */
.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(6, 26, 8, 0.12);
    border-color: rgba(27, 94, 32, 0.15);
}

.project-card-image {
    height: 240px; /* Légèrement augmenté pour un meilleur aspect ratio */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-image img {
    transform: scale(1.06);
}

/* Badge de secteur positionné plus loin du bord avec effet glassmorphic */
.project-card-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.project-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Placeholder abstrait dynamique */
.project-card-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at top left, var(--sector-color), var(--green-900));
    transition: var(--transition-slow);
}

.placeholder-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    color: var(--white);
    pointer-events: none;
}

.placeholder-icon-bg {
    position: absolute;
    width: 160px;
    height: 160px;
    right: -20px;
    bottom: -20px;
    opacity: 0.06;
    color: var(--white);
    transform: rotate(-15deg);
    transition: var(--transition-slow);
}

.placeholder-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.placeholder-icon {
    width: 24px;
    height: 24px;
}

/* Hover effects placeholder */
.project-card:hover .project-card-placeholder {
    filter: saturate(1.1) brightness(1.05);
}

.project-card:hover .placeholder-icon-bg {
    transform: scale(1.12) rotate(-25deg);
    opacity: 0.09;
}

.project-card:hover .placeholder-icon-circle {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Contenu textuel de la carte très aéré */
.project-card-content {
    padding: 32px; /* Augmenté significativement pour éviter le collage aux bordures */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-meta-top {
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    display: block;
}

.project-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 16px;
    
    /* Clamp des titres à 3 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.2em; /* Hauteur harmonisée */
}

.project-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    
    /* Clamp de la description à 3 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card-hidden-meta {
    margin-top: auto;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.project-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.project-card-stats strong {
    color: var(--gray-700);
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.project-card-link i {
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-link {
    color: var(--secondary);
}

.project-card:hover .project-card-link i {
    transform: translateX(4px);
}


/* ── Values / Why Us ─────────────────────────────────────── */
.value-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
}

.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    border-color: transparent;
    box-shadow: var(--shadow-glow-orange);
}

.value-card h4 { color: var(--white); margin-bottom: 12px; }
.value-card p  { font-size: 0.9rem; opacity: 0.70; line-height: 1.7; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--teal-500));
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow-green);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.cta-banner h2, .cta-banner h3 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.80);
    margin-bottom: 32px;
    font-size: 1.1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.75;
}

.cta-banner .btn-outline {
    border-color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}

/* ── Why Join / Features List ────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 22px; }

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-sm);
    transform: translateX(6px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-green { background: var(--green-100); color: var(--primary); }
.feature-icon-orange { background: var(--orange-100); color: var(--orange-600); }
.feature-icon-blue { background: #eff6ff; color: #1d4ed8; }

.feature-item h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-item p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Opportunity Cards (Tender Show) ─────────────────────── */
.opportunity-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary), var(--orange-300));
    border-radius: 4px 0 0 4px;
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245,124,0,0.15);
}

.opportunity-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* ── Action Cards (Sidebar) ──────────────────────────────── */
.action-card {
    padding: 0;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.action-card-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.action-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-md);
}

.action-card h5 {
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--gray-900);
    flex: 1;
}

.action-card-chevron {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card.is-active .action-card-chevron {
    transform: rotate(180deg);
}

.action-card-body {
    padding: 0 24px 24px;
}

.action-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.action-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-card-icon i {
    width: 22px;
    height: 22px;
}

/* Variants */
.action-card-green {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.action-card-green .action-card-icon {
    background: var(--green-500);
    color: var(--white);
}

.action-card-orange {
    background: #fffaf0;
    border-color: #ffedd5;
}

.action-card-orange .action-card-icon {
    background: var(--orange-500);
    color: var(--white);
}

.action-card-dark {
    background: var(--green-900);
    border-color: var(--green-800);
    color: var(--white);
}

.action-card-dark h5, .action-card-dark .action-card-chevron { color: var(--white); }
.action-card-dark p { color: rgba(255,255,255,0.7); }

.action-card-dark .action-card-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.action-card-blue {
    background: var(--blue-50);
    border-color: var(--blue-100);
}

.action-card-blue h5 { color: var(--blue-900); }
.action-card-blue p { color: var(--blue-700); }
.action-card-blue .action-card-chevron { color: var(--blue-400); }

.action-card-blue .action-card-icon {
    background: var(--blue-600);
    color: var(--white);
}

/* Animations UX Premium */
@keyframes pulse-danger {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.badge-urgent {
    background: #e74c3c !important;
    color: white !important;
    animation: pulse-danger 2s infinite;
}

.text-danger-pulse {
    color: #e74c3c !important;
    font-weight: 700;
}

.btn-success-animated {
    background: var(--green-600) !important;
    color: white !important;
    border-color: var(--green-600) !important;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* ── Key Info Sidebar ────────────────────────────────────── */
.info-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    gap: 16px;
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row strong { color: var(--gray-700); font-weight: 600; }
.info-row span { color: var(--gray-500); text-align: right; }

/* ── Sidebar Filter Card ─────────────────────────────────── */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 0.95rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-50);
}

.sidebar-links li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    line-height: 1.4;
}

.sidebar-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.sidebar-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* ── Alert / Status Banners ──────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: var(--green-100); color: var(--green-500); border: 1px solid #bbf7d0; }
.alert-warning { background: var(--orange-100); color: var(--orange-600); border: 1px solid #fed7aa; }
.alert-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-2xl);
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.modal-close:hover { background: var(--gray-200); color: var(--gray-900); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
    background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
    color: rgba(255,255,255,0.80);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,124,0,0.07), transparent 70%);
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27,94,32,0.15), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-logo:hover { opacity: 0.8; }
.footer-logo .brand-logo { 
    height: 44px; 
    width: 44px; 
    background: var(--white);
    border-radius: 50%;
    padding: 6px;
    object-fit: contain;
    filter: none; 
    opacity: 1; 
}
.footer-logo span { color: var(--secondary); }

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 20px;
    display: block;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.80;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.55);
}

.footer-col p a { color: rgba(255,255,255,0.65); }
.footer-col p a:hover { color: var(--orange-300); }

.footer-col h4 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--orange-300));
    border-radius: 2px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--orange-300); gap: 12px; }

.newsletter-form {
    display: flex;
    margin-top: 8px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
    padding: 12px 18px;
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.newsletter-form button:hover { background: var(--orange-400); }

.footer-social-icons {
    display: flex;
    gap: 8px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-icon:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 26px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ── Auth Pages ──────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
    padding: 40px 20px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-2xl);
}

.auth-logo { text-align: center; margin-bottom: 32px; }

/* ── Layout Utilities ────────────────────────────────────── */
.grid-main-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-sidebar-main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Scroll-triggered Animations ────────────────────────── */
/* 
 * Progressive enhancement approach:
 * - Elements are VISIBLE by default (no JS = accessible content)
 * - When JS is ready, 'js-ready' class is added to <html>
 * - Then reveal animations are enabled
 */

/* Default state: always visible */
[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* JS is loaded: hide elements to animate them in */
html.js-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

html.js-ready [data-reveal="left"]  { transform: translateX(-28px); }
html.js-ready [data-reveal="right"] { transform: translateX(28px); }
html.js-ready [data-reveal="scale"] { transform: scale(0.94); }

/* When visible class is added by JS */
html.js-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--primary), var(--green-400)); border-radius: 4px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
    .grid-main-sidebar { gap: 30px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .grid-sidebar-main { grid-template-columns: 1fr; }
    .grid-main-sidebar { grid-template-columns: 1fr; }
    .grid-tablet-2 { grid-template-columns: repeat(2, 1fr) !important; }
    
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .tenders-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-grid    { grid-template-columns: repeat(2, 1fr); }
    .cta-banner     { padding: 48px 36px; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }

    nav          { display: none; }
    .mobile-toggle { display: flex; }

    .grid-3, .grid-2 { grid-template-columns: 1fr; }

    .expertise-grid  { grid-template-columns: 1fr; }
    .tenders-grid    { grid-template-columns: 1fr; }
    .footer-grid     { grid-template-columns: 1fr; gap: 36px; }
    .tenders-header  { flex-direction: column; align-items: flex-start; gap: 16px; }
    .filter-group    { justify-content: flex-start; }

    .hero p          { font-size: 1.05rem; }
    .hero-actions    { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats-row  { gap: 24px; }
    .hero-scroll     { display: none; }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 44px; }

    .page-hero { padding: calc(var(--header-h) + 40px) 0 60px; }

    .auth-card { padding: 32px 24px; }
    .cta-banner { padding: 40px 24px; }
    .info-sidebar { position: static; }
    
    /* Specific map sizing */
    #map { height: 400px; }
    .project-sidebar { height: 400px; }
}

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats-row { flex-wrap: wrap; gap: 20px; }
    .hero-stat-number { font-size: 2rem; }
    .partner-logos { gap: 14px; }
    .partner-logo-item { min-width: 110px; padding: 14px 20px; font-size: 0.9rem; }
}

.overflow-hidden { overflow: hidden !important; }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 26, 8, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    position: relative;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

@media (max-width: 1024px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}


/* ── Toasts ──────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: white;
    color: var(--gray-800);
    box-shadow: var(--shadow-xl);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 300px;
    border-left: 5px solid var(--primary);
    display: flex;
    align-items: center;
}

.toast-success { border-left-color: var(--primary); }
.toast-error { border-left-color: #e53935; }

@media (max-width: 480px) {
    .toast-container {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    .toast { min-width: auto; }
}

.loader-inline {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-inline 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin-inline {
    to { transform: rotate(360deg); }
}

/* ── Split Hub (Expertise) ─────────────────────────────────── */
.split-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.split-hub-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.split-hub-sidebar {
    padding: 0 0 0 40px;
    border-left: 1px solid var(--gray-100);
}

@media (max-width: 992px) {
    .split-hub {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split-hub-sidebar {
        padding: 40px 0 0 0;
        border-left: none;
        border-top: 1px solid var(--gray-100);
    }
}

/* ── Sidebar Links (Premium Minimalist) ────────────────────── */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-links li {
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-links li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.sidebar-links li a.active {
    color: var(--primary);
    font-weight: 700;
}

.sidebar-links li a i {
    width: 16px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.sidebar-links li a:hover i,
.sidebar-links li a.active i {
    opacity: 1;
    transform: translateX(0);
}

/* ── Bento Grid (Modern Flat Tiles) ────────────────────────── */
.metro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .metro-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .metro-grid { grid-template-columns: 1fr; }
}

.metro-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 16px;
    border-radius: 0; /* Anguleux */
    text-decoration: none;
    height: 140px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid transparent;
}

/* Couleurs Bento Premium (Fonds clairs, textes forts) */
/* 1. Vert pastel */
.metro-grid li:nth-child(4n+1) .metro-tile { 
    background: var(--green-50); 
    border-color: rgba(22, 163, 74, 0.2);
    color: var(--primary) !important;
}
/* 2. Orange pastel */
.metro-grid li:nth-child(4n+2) .metro-tile { 
    background: #fff7ed; /* orange-50 */
    border-color: rgba(249, 115, 22, 0.2);
    color: var(--orange-600) !important; 
}
/* 3. Gris neutre clair */
.metro-grid li:nth-child(4n+3) .metro-tile { 
    background: var(--gray-100); 
    border-color: var(--gray-200);
    color: var(--gray-900) !important; 
}
/* 4. Blanc pur */
.metro-grid li:nth-child(4n+4) .metro-tile { 
    background: white; 
    border-color: var(--gray-200);
    color: var(--gray-900) !important; 
}

/* Effets Hover (Assombrissement subtil) */
.metro-grid li:nth-child(4n+1) .metro-tile:hover { background: #dcfce7; /* green-100 */ }
.metro-grid li:nth-child(4n+2) .metro-tile:hover { background: #ffedd5; /* orange-100 */ }
.metro-grid li:nth-child(4n+3) .metro-tile:hover { background: var(--gray-200); }
.metro-grid li:nth-child(4n+4) .metro-tile:hover { background: var(--gray-50); }

/* Tile Active */
.metro-tile.active {
    border-width: 2px;
}
.metro-grid li:nth-child(4n+1) .metro-tile.active { border-color: var(--primary); }
.metro-grid li:nth-child(4n+2) .metro-tile.active { border-color: var(--orange-500); }
.metro-grid li:nth-child(4n+3) .metro-tile.active { border-color: var(--gray-900); }
.metro-grid li:nth-child(4n+4) .metro-tile.active { border-color: var(--gray-400); }

.metro-tile-icon {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.3s;
}

.metro-tile-title {
    font-size: 0.85rem;
    font-weight: 500; /* Font plus fine, pas de gras */
    line-height: 1.3;
    margin: 0;
}

.metro-tile:hover {
    transform: translateY(-2px); /* Très léger flottement */
}

.metro-tile:hover .metro-tile-icon {
    transform: translateY(-4px) scale(1.1);
    opacity: 1;
}

/* ── Intervention Cards (Premium) ──────────────────────────── */
.intervention-card {
    padding: 32px;
    display: flex;
    gap: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.intervention-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* ── Timeline (Presentation) ─────────────────────────────── */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 9px;
    width: 2px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--green-100);
    z-index: 2;
}

.timeline-date {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* ── Tabs (Presentation) ─────────────────────────────────── */
.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 10px;
    overflow-x: auto;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tabs-nav button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.tabs-nav button:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.tabs-nav button.active {
    color: var(--white);
    background: var(--primary);
}

/* ── Tenders (Dashboard B2B) ─────────────────────────────── */
.tender-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tender-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--gray-100);
    transition: transform 0.5s ease;
}

.tender-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.tender-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.tender-card:hover .tender-card-image {
    transform: scale(1.05);
}

.tender-live {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.tender-live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.tender-date {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tender-client {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tender-tags .tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag-green { background: var(--green-100); color: var(--primary); }
.tag-orange { background: rgba(230, 126, 34, 0.1); color: var(--orange); }
.tag-blue { background: rgba(41, 128, 185, 0.1); color: #2980b9; }

/* ── Print / PDF Generation ─────────────────────────────────── */
@media print {
    header, footer, .btn, .tab-pills, .step-indicator, .lightbox-overlay, .toast-container, 
    .hero-particles, .hero-scroll, .hero-actions, .mobile-toggle, .mobile-menu,
    .project-detail-sidebar .btn, #mini-map, .sidebar-card, .sidebar-filters, .project-card-link,
    .cta-banner, .section-label, .page-hero-breadcrumb {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .grid-main-sidebar {
        display: block;
    }

    .project-detail-main {
        width: 100%;
    }

    .card {
        box-shadow: none;
        border: 1px solid #eee;
        padding: 20px;
    }

    h1 { font-size: 24pt; }

    h1, h2, h3 {
        color: #1a4d2e !important;
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .project-featured-image {
        margin-bottom: 30px;
    }

    .project-detail-sidebar {
        margin-top: 30px;
        page-break-inside: avoid;
    }

    .rich-text-content {
        margin-bottom: 40px;
    }

    body::before {
        content: "ERE DÉVELOPPEMENT - DOCUMENT OFFICIEL";
        display: block;
        text-align: center;
        font-weight: 800;
        margin-bottom: 40px;
        border-bottom: 2px solid #1a4d2e;
        padding-bottom: 10px;
        font-family: 'Outfit', sans-serif;
    }
}

/* ── Blog Grid — Responsive ──────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ── Hero Panel — Split Desktop ────────────────────────────── */
.hero--split {
    display: flex;
    align-items: stretch; /* Pour que la sidebar prenne toute la hauteur */
    padding: 0;
}

.hero--split .hero-main {
    padding: 60px 0; /* Réduire le padding pour éviter que le héro ne soit trop haut */
}

.hero--split > picture,
.hero--split > .hero-mesh,
.hero--split > .hero-grid-lines,
.hero--split > .hero-particles {
    width: 100%;
}

@media (max-width: 1024px) {
    .hero--split > picture,
    .hero--split > .hero-mesh,
    .hero--split > .hero-grid-lines,
    .hero--split > .hero-particles {
        width: 100%;
    }
}

.hero-main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

/* ── Hero Panel — ASIDE ────────────────────────────────────── */
.hero-panel {
    width: 340px;
    background: #ffffff;
    max-height: calc(100vh - var(--header-h) - 40px);
    display: flex;
    flex-direction: column;
    align-self: flex-start; /* Empêche l'étirement vertical */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin: 20px;
    margin-top: calc(var(--header-h) + 20px);
    overflow: hidden;
}

.hero-panel-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
}

.hero-panel-live {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 rgba(27,94,32,0.4);
    animation: breathe 2s infinite;
}

@keyframes breathe {
    0%   { box-shadow: 0 0 0 0 rgba(27,94,32,0.4); }
    70%  { box-shadow: 0 0 0 10px rgba(27,94,32,0); }
    100% { box-shadow: 0 0 0 0 rgba(27,94,32,0); }
}

.hero-panel-label {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.hero-panel-see-all {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 700;
}

.hero-panel-filters {
    display: flex;
    padding: 15px 25px;
    gap: 8px;
    overflow-x: auto;
    border-bottom: 1px solid var(--gray-100);
    scrollbar-width: none;
}
.hero-panel-filters::-webkit-scrollbar { display: none; }

.hero-panel-filter {
    padding: 5px 0;
    margin-right: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.hero-panel-filter.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.hero-panel-filter:hover:not(.is-active) {
    color: var(--gray-700);
}

.hero-panel-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-panel-item {
    position: relative;
    padding-left: 20px;
}

.hero-panel-item-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.hero-panel-item--recruitment .hero-panel-item-dot { background: var(--blue-500); }
.hero-panel-item--training .hero-panel-item-dot { background: var(--green-500); }
.hero-panel-item--news .hero-panel-item-dot { background: var(--orange-500); }

.hero-panel-item-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.hero-panel .hero-panel-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.3;
    margin-bottom: 8px;
    animation: none;
}

.hero-panel-item-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.hero-panel-item-cta {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-panel-item-cta:hover { color: var(--secondary); }

.hero-panel-empty {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 20px 0;
}

.hero-panel-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray-100);
    text-align: center;
}

.hero-panel-footer a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-600);
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hero-panel-footer a:hover {
    background: var(--primary);
    color: white;
}

/* ── Mobile Panel ──────────────────────────────────────────── */
.hero-panel-mobile {
    display: none;
    background: #0a0f0b;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-panel-mobile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-panel-mobile-header span:nth-child(2) {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    flex: 1;
}

.hero-panel-mobile-header a {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-panel-mobile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.hero-panel-mobile-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
    .hero-panel { display: none; }
    .hero-panel-mobile { display: block; }
}

/* ============================================================
   REFONTE BLOG / ACTUALITÉS — Styles Premium
   ============================================================ */

/* 1. Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
    min-height: 380px;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: stretch;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(245,124,0,0.12) 0%, transparent 60%),
                      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    pointer-events: none;
}

.blog-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    width: 100%;
    align-items: stretch;
}

.blog-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
}

.blog-hero-label {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
}

.blog-hero-title {
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 15px;
}

.blog-hero-title span.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.blog-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.6;
}

.blog-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.blog-category-filters .chip {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
}

.blog-category-filters .chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.blog-category-filters .chip.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

.blog-hero-right {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.blog-hero-card {
    background: var(--white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.15);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    border-bottom: none;
    z-index: 10;
}

.blog-hero-card:hover {
    transform: translateY(-5px);
}

.blog-hero-card-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-hero-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-hero-card:hover .blog-hero-card-img-wrapper img {
    transform: scale(1.05);
}

.badge-latest {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    color: var(--green-900);
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-hero-card-content {
    padding: 24px;
    color: var(--gray-800);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-cat {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-hero-card-title {
    font-family: 'Outfit', sans-serif;
    color: var(--green-800);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-hero-card-meta {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-hero-card-date {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-hero-card-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-hero-card-link:hover {
    gap: 8px;
}

/* 2. Stats Bar */
.blog-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-xs);
}

.blog-stats-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-stats-metrics {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.blog-stat-item {
    display: flex;
    flex-direction: column;
}

.blog-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.blog-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-600);
    line-height: 1;
    margin-bottom: 4px;
}

.blog-stat-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-rss-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: var(--orange-50);
    border: 1px solid rgba(245, 124, 0, 0.15);
    transition: var(--transition);
}

.blog-rss-link:hover {
    background: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-glow-orange);
}

/* 3. Article à la une (Featured) */
.blog-featured-section {
    padding: 60px 0 40px 0;
}

.blog-featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.blog-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-featured-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.blog-featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-featured-card:hover .blog-featured-img-wrapper img {
    transform: scale(1.03);
}

.badge-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-md);
}

.blog-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-family: 'Outfit', sans-serif;
    color: var(--green-900);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.blog-featured-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-featured-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.blog-featured-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-featured-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 4. Grille d'articles récents */
.blog-grid-section {
    padding: 40px 0 60px 0;
    background: var(--gray-50);
}

.blog-section-title {
    font-family: 'Outfit', sans-serif;
    color: var(--green-800);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: opacity 0.25s ease;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-card-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img-wrapper img {
    transform: scale(1.05);
}

.badge-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(6, 26, 8, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-family: 'Outfit', sans-serif;
    color: var(--green-900);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em; /* Force hauteur pour aligner les bas de cartes */
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 5. Bannière Newsletter */
.blog-newsletter-section {
    padding: 40px 0 80px 0;
    background: var(--gray-50);
}

.blog-newsletter-banner {
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-newsletter-banner::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,124,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.blog-newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.blog-newsletter-text h3 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.blog-newsletter-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-newsletter-right {
    flex: 1;
    max-width: 480px;
    width: 100%;
}

.blog-newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    position: relative;
}

.blog-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--white);
    font-size: 0.92rem;
    transition: var(--transition);
}

.blog-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.blog-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.15);
    outline: none;
}

/* 6. Pagination */
.blog-pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.blog-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-page-btn:hover {
    border-color: var(--green-700);
    color: var(--green-700);
}

.blog-page-btn.active {
    background: var(--green-900);
    border-color: var(--green-900);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.blog-page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-hero-left {
        padding-bottom: 20px;
    }
    
    .blog-hero-right {
        align-items: stretch;
    }
    
    .blog-hero-card {
        border-radius: var(--radius-md);
        border-bottom: 1px solid var(--gray-100);
    }
    
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-img-wrapper {
        aspect-ratio: 16/9;
        min-height: auto;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-newsletter-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-stats-metrics {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .blog-stat-divider {
        display: none;
    }
    
    .blog-stats-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blog-newsletter-form {
        flex-direction: column;
    }
}

/* ============================================================
   REFONTE PAGE PROJETS — Layout 2 Colonnes & Cartes Horizontales
   ============================================================ */

/* 1. Barre d'outils (Toolbar) */
.projects-toolbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    box-shadow: var(--shadow-xs);
}

.toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}
.toolbar-left::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.toolbar-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.toolbar-tab i {
    width: 16px;
    height: 16px;
}

.toolbar-tab:hover {
    color: var(--primary);
}

.toolbar-tab.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.tab-count {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 2px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-wrapper {
    position: relative;
    width: 260px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--gray-400);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: var(--transition);
}

.search-input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
    outline: none;
}

.sort-wrapper {
    position: relative;
}

.sort-select {
    padding: 10px 32px 10px 16px;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    color: var(--gray-800);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.sort-select:focus {
    background-color: var(--white);
    border-color: var(--primary);
    outline: none;
}

/* 2. Layout */
.projects-layout-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.projects-grid-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
    transition: var(--transition);
}

.projects-main-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* En-tête de la liste de projets */
.projects-list-header {
    margin-bottom: 24px;
}

.active-sector-title {
    font-size: 1.8rem;
    color: var(--green-900);
    font-weight: 700;
    margin-bottom: 6px;
}

.projects-results-count {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.projects-results-count strong {
    color: var(--gray-800);
}

/* 3. Sidebar Widgets (Desktop) */
.projects-sidebar-col {
    position: sticky;
    top: calc(var(--header-h) + 80px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.widget-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.widget-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.widget-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.widget-item.active {
    background: var(--green-50);
    color: var(--primary);
    font-weight: 600;
    border-left: 3px solid var(--primary);
}

.item-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.widget-item .badge {
    font-size: 0.75rem;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.widget-item:hover .badge {
    background: var(--green-100);
    color: var(--primary);
}

.widget-item.active .badge {
    background: var(--primary);
    color: var(--white);
}

/* Filtres Mobiles par défaut cachés en Desktop */
.mobile-filters-widgets {
    display: none;
}

/* 4. Cartes Horizontales */
.projects-cards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-horizontal-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 180px;
    height: auto;
}

.project-horizontal-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 94, 32, 0.2);
}

.project-card-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-horizontal-card:hover .project-image {
    transform: scale(1.05);
}

.image-dimmed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* Placeholder abstrait pour projet sans image */
.project-placeholder-wrapper {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--sector-color, var(--primary)), var(--green-900));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-grid-pattern {
    position: absolute;
    inset: 0;
    color: var(--white);
}

.placeholder-giant-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.05;
    color: var(--white);
    transform: translate(-10px, 10px) rotate(-15deg);
    pointer-events: none;
}

.no-image-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    top: 12px;
    right: 12px;
    backdrop-filter: blur(4px);
}

.no-image-tag i {
    width: 12px;
    height: 12px;
}

/* Badges sur vignette */
.project-sector-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.project-sector-badge i {
    width: 12px;
    height: 12px;
}

.project-year-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

/* Texte à droite */
.project-card-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 24px; /* Aération interne */
    background: var(--white);
    overflow: hidden;
}

.project-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-title-link {
    font-size: 0.95rem; /* ~13px comme requis */
    font-weight: 500;
    line-height: 1.35;
    color: var(--gray-900);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-title-link a:hover {
    color: var(--primary);
}

.project-card-metas {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.meta-icon {
    width: 14px;
    height: 14px;
    color: var(--teal-400); /* Vert émeraude clair */
    flex-shrink: 0;
    margin-top: 2px;
}

.meta-label {
    font-weight: 700;
    color: var(--gray-600);
    white-space: nowrap;
}

.meta-value {
    color: var(--gray-700);
}

.project-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 14px;
    margin-top: 2px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-calendar-icon {
    width: 14px;
    height: 14px;
}

.project-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary); /* Orange */
    transition: var(--transition);
}

.project-details-btn .arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.project-details-btn:hover {
    color: var(--orange-700);
}

.project-details-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Aucun projet trouvé */
.no-projects-found {
    text-align: center;
    color: var(--gray-400);
    padding: 60px 0;
}

.no-projects-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    stroke-width: 1.5;
}

/* 5. Pagination */
.projects-pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.projects-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    transition: var(--transition);
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--green-50);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-num {
    width: 40px;
    padding: 0;
}

.page-num.active {
    background: var(--green-900);
    border-color: var(--green-900);
    color: var(--white);
}

/* 6. CTA Banner sur la page Projets */
.projects-cta-banner {
    margin-top: 60px;
    background: var(--green-900) !important; /* Force la couleur vert foncé */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--secondary);
}

.cta-icon {
    width: 24px;
    height: 24px;
}

.cta-text-wrapper h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-text-wrapper p {
    font-size: 0.9rem;
    color: var(--green-200); /* Vert clair atténué */
    margin: 0;
}

/* 7. Styles de transition et de chargement */
.projects-grid-layout {
    position: relative;
}

/* ============================================================
   RESPONSIVE DESIGN (PROJETS)
   ============================================================ */
@media (max-width: 991px) {
    .projects-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projects-sidebar-col {
        position: static;
        order: -1; /* Sidebar passe en haut en version mobile/tablette */
    }
    
    .desktop-filters-widgets {
        display: none; /* Cache les widgets complexes */
    }
    
    .mobile-filters-widgets {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        padding: 20px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 10px;
    }
    
    .mobile-filter-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .mobile-filter-group label {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--gray-600);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .mobile-filter-group select {
        width: 100%;
        padding: 10px;
        font-size: 0.85rem;
        border: 1px solid var(--gray-300);
        border-radius: var(--radius-sm);
        background: var(--gray-50);
        color: var(--gray-800);
    }
    
    .projects-toolbar {
        position: static; /* Annule le sticky en mobile pour éviter les bugs visuels */
    }
    
    .toolbar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .toolbar-right {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }
    
    .search-wrapper {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .mobile-filters-widgets {
        grid-template-columns: 1fr; /* Passage sur une seule colonne */
    }
    
    .project-horizontal-card {
        grid-template-columns: 1fr; /* Passage de la carte en verticale */
        height: auto;
    }
    
    .project-card-image-wrapper {
        height: 180px; /* Hauteur fixe pour l'image en vertical */
    }
    
    .project-card-text-content {
        padding: 20px;
    }
    
    .cta-banner-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }
    
    .cta-banner-content {
        flex-direction: column;
    }
    
    .cta-action-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* ============================================================
   CONTENU RICHE (CKEditor) — restauration des styles de listes
   Le reset global "ul { list-style: none }" écrase les listes
   générées par CKEditor. Ces règles les restaurent dans toutes
   les zones d'affichage de contenu éditorial.
   ============================================================ */
.blog-rich-content ul,
.rich-text-content ul,
.content-rich ul,
.project-description-text ul {
    list-style-type: disc;
    padding-left: 2em;
    margin: 0.5em 0;
}
.blog-rich-content ol,
.rich-text-content ol,
.content-rich ol,
.project-description-text ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin: 0.5em 0;
}
.blog-rich-content li,
.rich-text-content li,
.content-rich li,
.project-description-text li {
    display: list-item;
}
.blog-rich-content ul ul,
.rich-text-content ul ul,
.content-rich ul ul,
.project-description-text ul ul { list-style-type: circle; }
.blog-rich-content ul ul ul,
.rich-text-content ul ul ul,
.content-rich ul ul ul,
.project-description-text ul ul ul { list-style-type: square; }
