/* ========== VARIABLES & RESET ========== */
        :root {
            --primary-green: #1B5E20;
            --accent-gold: #FFA000;
            --white: #FFFFFF;
            --medium-green: #2E7D32;
            --light-green: #4CAF50;
            --dark-bg: #0D1F0E;
            --text-gray: #666666;
            --light-gray: #F5F5F5;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }
        
        /* ========== TYPOGRAPHY ========== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-green);
        }
        
        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }
        
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }
        
        p {
            font-size: 1.1rem;
            color: var(--text-gray);
        }
        
        /* ========== UTILITIES ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .section {
            padding: 6rem 0;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }
        
        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
        }
        
        .btn-primary {
            background: var(--accent-gold);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(255, 160, 0, 0.3);
        }
        
        .btn-primary:hover {
            background: #FF8F00;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 160, 0, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-green);
        }
        
        /* ========== NAVIGATION ========== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(19, 89, 29, 0.95) 0%, rgba(27, 94, 32, 0.97) 42%, rgba(21, 98, 35, 0.95) 100%);
            backdrop-filter: blur(10px);
            padding: 0;
            z-index: 1000;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
            transition: var(--transition);
        }

        nav::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 160, 0, 0) 0%, rgba(255, 160, 0, 0.5) 50%, rgba(255, 160, 0, 0) 100%);
            pointer-events: none;
        }
        
        nav.scrolled {
            background: rgba(27, 94, 32, 1);
            padding: 0;
        }
        
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.4rem;
            max-width: min(96vw, 1680px);
            padding: 0 1.05rem;
            height: 106px;
        }
        
        .logo {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.72rem;
            min-width: 0;
            margin-right: 0.95rem;
            flex-shrink: 0;
        }

        .logo-badge {
            width: 96px;
            height: 96px;
            border-radius: 0;
            background: transparent;
            border: none;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            flex-shrink: 0;
            transition: transform var(--transition);
        }
        
        .logo-mark {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: transparent;
            mix-blend-mode: normal;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.24));
            flex-shrink: 0;
            transform: none;
            transform-origin: center;
            transition: transform var(--transition), filter var(--transition);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: auto;
        }

        .logo:hover .logo-badge {
            transform: translateY(-1px);
        }

        .logo:hover .logo-mark {
            transform: scale(1.04);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.05;
            gap: 0.18rem;
            min-width: 0;
            flex: 1 1 auto;
        }

        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.2rem, 1.28vw, 1.62rem);
            font-weight: 800;
            letter-spacing: 0.005em;
            white-space: nowrap;
            text-shadow: 0 2px 6px rgba(0,0,0,0.22);
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .logo-main em {
            color: var(--white);
            font-style: normal;
        }

        .logo-sub {
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            flex: 1 1 auto;
            min-width: 0;
            gap: 1rem;
        }

        .nav-links__sections,
        .nav-links__actions {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            list-style: none;
            min-width: 0;
            margin: 0;
            padding: 0;
        }

        .nav-links__sections {
            flex: 1 1 auto;
            justify-content: center;
        }

        .nav-links__actions {
            flex: 0 0 auto;
            margin-left: auto;
        }

        .nav-links li {
            animation: navFadeIn 0.45s ease both;
        }

        .nav-links li:nth-child(1) { animation-delay: 0.05s; }
        .nav-links li:nth-child(2) { animation-delay: 0.1s; }
        .nav-links li:nth-child(3) { animation-delay: 0.15s; }
        .nav-links li:nth-child(4) { animation-delay: 0.2s; }
        .nav-links li:nth-child(5) { animation-delay: 0.25s; }
        .nav-links li:nth-child(6) { animation-delay: 0.3s; }
        .nav-links li:nth-child(7) { animation-delay: 0.35s; }
        .nav-links li:nth-child(8) { animation-delay: 0.4s; }

        @keyframes navFadeIn {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            display: inline-block;
            white-space: nowrap;
            padding: 0.26rem 0.12rem;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            left: -0.3rem;
            right: -0.3rem;
            top: -0.2rem;
            bottom: -0.2rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            opacity: 0;
            transform: scale(0.88);
            transition: var(--transition);
            z-index: -1;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            opacity: 1;
            transform: scale(1);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.58rem 1.18rem;
            margin-left: 0.35rem;
            font-size: 0.95rem;
            box-shadow: 0 8px 18px rgba(255, 160, 0, 0.32);
        }

        .nav-cta::after,
        .nav-cta::before {
            display: none;
        }

        .nav-cta.active {
            color: var(--white) !important;
            background: #FF8F00;
            box-shadow: 0 10px 24px rgba(255, 160, 0, 0.42);
        }

        @media (max-width: 1460px) {
            .logo-sub {
                display: none;
            }

            .logo {
                margin-right: 0.7rem;
            }

            .nav-links__sections,
            .nav-links__actions {
                gap: 0.9rem;
            }

            .nav-links a {
                font-size: 0.9rem;
            }

            .logo-mark {
                transform: none;
            }

            .logo-badge {
                width: 88px;
                height: 88px;
            }

            nav .container {
                height: 98px;
            }
        }
        
        .menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            width: 44px;
            height: 44px;
            padding: 0;
            border: 0;
            border-radius: 12px;
            background: transparent;
            flex-shrink: 0;
            margin-left: auto;
            position: relative;
            z-index: 1002;
            box-shadow: inset 0 0 0 1px rgba(255, 160, 0, 0.28);
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            transition: var(--transition);
        }

        .nav-overlay {
            display: none;
        }

        @media (max-width: 1380px) {
            .logo-main {
                font-size: 1.22rem;
            }

            .nav-links__sections,
            .nav-links__actions {
                gap: 0.7rem;
            }

            .nav-links a {
                font-size: 0.84rem;
            }

            .nav-cta {
                padding: 0.52rem 0.9rem;
                font-size: 0.84rem;
            }

            nav .container {
                height: 90px;
            }

            .logo-badge {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 1180px) {
            body.nav-open {
                overflow: hidden;
            }

            .nav-overlay {
                display: block;
                position: fixed;
                inset: 0;
                background: rgba(5, 16, 9, 0.48);
                backdrop-filter: blur(3px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.22s ease;
                z-index: 999;
            }

            .nav-overlay.active {
                opacity: 1;
                pointer-events: auto;
            }

            nav .container {
                height: 82px;
                padding: 0 0.9rem;
                gap: 0.7rem;
            }

            .logo {
                margin-right: 0;
                min-width: 0;
                flex: 1 1 auto;
                max-width: calc(100% - 56px);
            }

            .logo-badge {
                width: 58px;
                height: 58px;
            }

            .logo-main {
                font-size: clamp(0.94rem, 2.2vw, 1.12rem);
                line-height: 1;
            }

            .nav-links {
                position: fixed;
                top: 82px;
                right: -110%;
                bottom: 0;
                width: min(360px, calc(100vw - 1.5rem));
                max-width: 100%;
                height: calc(100dvh - 82px);
                padding: 1rem 1rem 1.25rem;
                margin: 0;
                background: linear-gradient(180deg, rgba(7, 24, 12, 0.98), rgba(20, 83, 35, 0.98));
                box-shadow: -14px 0 36px rgba(0, 0, 0, 0.28);
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0.55rem;
                overflow-y: auto;
                transition: right 0.25s ease;
                z-index: 1000;
                border-top-left-radius: 22px;
                align-items: stretch;
            }

            .nav-links::before {
                content: 'Navigation';
                display: block;
                margin-bottom: 0.55rem;
                padding: 0 0.2rem;
                color: rgba(255, 255, 255, 0.62);
                font-size: 0.72rem;
                font-weight: 700;
                letter-spacing: 0.18em;
                text-transform: uppercase;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links__sections,
            .nav-links__actions {
                flex-direction: column;
                align-items: stretch;
                gap: 0.55rem;
            }

            .nav-links__sections {
                justify-content: flex-start;
            }

            .nav-links__actions {
                margin-top: 0.4rem;
                padding-top: 0.7rem;
                border-top: 1px solid rgba(255, 255, 255, 0.12);
            }

            .nav-links li {
                animation: none;
            }

            .nav-links a,
            .storefront-cart-link,
            .nav-cta {
                display: flex;
                align-items: center;
                width: 100%;
                min-height: 48px;
                padding: 0.85rem 0.95rem;
                border-radius: 16px;
                transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            }

            .nav-item--section a {
                justify-content: flex-start;
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
            }

            .nav-item--section a:hover,
            .nav-item--section a.active {
                background: rgba(255, 255, 255, 0.08);
                transform: translateX(-2px);
            }

            .storefront-cart-link {
                justify-content: flex-start;
                gap: 0.65rem;
                background: rgba(255, 255, 255, 0.06);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links a::before {
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-cta {
                margin-left: 0;
                justify-content: center;
            }

            .nav-item--action a,
            .nav-item--action .storefront-cart-link {
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
            }

            .nav-links__actions .nav-item:first-child a {
                background: linear-gradient(135deg, rgba(255, 160, 0, 0.18), rgba(255, 160, 0, 0.08));
                border: 1px solid rgba(255, 160, 0, 0.34);
            }

            .nav-links__actions .nav-item:first-child a:hover,
            .nav-links__actions .nav-item:first-child a.active {
                background: linear-gradient(135deg, rgba(255, 160, 0, 0.24), rgba(255, 160, 0, 0.14));
            }

            .storefront-cart-link:hover,
            .nav-cta:hover {
                transform: translateX(-2px);
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
                width: 42px;
                height: 42px;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
        
        /* ========== HERO SECTION ========== */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
            overflow: hidden;
            padding: 0;
            opacity: 1;
            transform: none;
        }
        
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500 100 L700 400 L500 700 L300 400 Z" fill="rgba(255,160,0,0.05)" /></svg>') center/cover;
            opacity: 0.3;
        }
        
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background: var(--accent-gold);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
            opacity: 0.6;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            50% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0.3;
            }
            90% {
                opacity: 0.6;
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 2rem;
        }
        
        .hero-content h1 {
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            letter-spacing: 3px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }
        
        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s backwards;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .hero-kpis {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0.9rem;
            flex-wrap: wrap;
            margin: 0 auto 2rem;
            max-width: 780px;
            animation: fadeInUp 1s ease 0.55s backwards;
        }

        .hero-kpi {
            min-width: 155px;
            padding: 0.72rem 0.95rem;
            border-radius: 12px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(4px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-kpi strong {
            font-size: 1.12rem;
            color: var(--white);
            line-height: 1.2;
        }

        .hero-kpi span {
            font-size: 0.79rem;
            color: rgba(255, 255, 255, 0.84);
            letter-spacing: 0.02em;
        }

        .hero-scroll-indicator {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 54px;
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            margin-top: 1.6rem;
            transition: var(--transition);
        }

        .hero-scroll-indicator span {
            width: 5px;
            height: 12px;
            border-radius: 12px;
            background: var(--accent-gold);
            animation: scrollDot 1.6s ease-in-out infinite;
        }

        .hero-scroll-indicator:hover {
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(2px);
        }

        @keyframes scrollDot {
            0%, 100% {
                opacity: 0.4;
                transform: translateY(-7px);
            }
            50% {
                opacity: 1;
                transform: translateY(7px);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ========== ABOUT SECTION ========== */
        #about {
            background: var(--light-gray);
        }
        
        /* ========== STRUCTURE SECTION ========== */
        #structure {
            background: var(--white);
        }
        
        .structure-banner {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }
        
        .organigramme-container {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .organigramme-container img {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }
        
        .about-text h3 {
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            line-height: 1.8;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .value-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(27, 94, 32, 0.15);
        }
        
        .value-card i {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        .value-card h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            background: linear-gradient(135deg, var(--primary-green), var(--medium-green));
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            color: var(--white);
            transition: var(--transition);
        }
        
        .stat-card:hover {
            transform: scale(1.05);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
        }
        
        /* ========== SUBSIDIARIES SECTION ========== */
        .subsidiaries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .subsidiary-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .subsidiary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
        }
        
        .subsidiary-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(27, 94, 32, 0.2);
            border-color: var(--accent-gold);
        }
        
        .subsidiary-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-green), var(--medium-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        
        .subsidiary-card:hover .subsidiary-icon {
            background: linear-gradient(135deg, var(--accent-gold), #FF8F00);
            transform: rotate(360deg);
        }
        
        .subsidiary-icon i {
            font-size: 2.5rem;
            color: var(--white);
        }
        
        .subsidiary-card h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .subsidiary-card p {
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .subsidiary-meta {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
        }
        
        .subsidiary-meta span {
            font-size: 0.95rem;
            color: var(--text-gray);
        }
        
        .subsidiary-meta strong {
            color: var(--primary-green);
        }
        
        /* ========== FINANCIALS SECTION ========== */
        #financials {
            background: var(--light-gray);
        }
        
        .chart-container {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        
        .chart-bars {
            display: flex;
            justify-content: space-around;
            align-items: stretch;
            height: 400px;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .chart-bar {
            flex: 1;
            height: 100%;
            display: grid;
            grid-template-rows: minmax(0, 1fr) auto;
            align-items: end;
            justify-items: center;
            gap: 1rem;
        }
        
        .bar {
            width: 100%;
            background: linear-gradient(180deg, var(--accent-gold), var(--primary-green));
            border-radius: 10px 10px 0 0;
            position: relative;
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 1rem;
        }
        
        .bar:hover {
            opacity: 0.8;
        }
        
        .bar-value {
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .bar-label {
            font-weight: 600;
            color: var(--primary-green);
            font-size: 1.1rem;
        }
        
        .financial-indicators {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .indicator-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
        }
        
        .indicator-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .indicator-card h4 {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }
        
        .indicator-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            font-family: 'Playfair Display', serif;
        }
        
        /* ========== LEADERSHIP SECTION ========== */
        .leadership-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: start;
        }
        
        .leader-photo {
            position: relative;
        }
        
        .photo-placeholder {
            width: 100%;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--primary-green), var(--medium-green));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 5rem;
            box-shadow: 0 15px 50px rgba(27, 94, 32, 0.3);
        }
        
        .leader-info {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .leader-info h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .leader-title {
            font-size: 1.3rem;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 2rem;
        }
        
        .leader-bio {
            margin-bottom: 2rem;
        }
        
        .leader-bio p {
            margin-bottom: 1rem;
        }
        
        .certifications {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .cert-badge {
            background: var(--light-gray);
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .social-link:hover {
            color: var(--accent-gold);
        }
        
        .social-link i {
            font-size: 1.5rem;
        }
        
        /* ========== PARTNERS SECTION ========== */
        #partners {
            background: var(--light-gray);
        }

        #about,
        #structure,
        #subsidiaries,
        #financials,
        #leadership,
        #governance,
        #partners,
        #contact {
            scroll-margin-top: 126px;
        }
        
        .partners-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .partner-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .partner-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .partner-type {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .partner-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }
        
        .partner-details {
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        .compliance-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .compliance-badge {
            background: linear-gradient(135deg, var(--primary-green), var(--medium-green));
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
        }
        
        /* ========== CONTACT SECTION ========== */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            background: var(--light-gray);
            padding: 3rem;
            border-radius: 20px;
        }
        
        .contact-info h3 {
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            color: var(--white);
            font-size: 1.3rem;
        }
        
        .contact-details h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--primary-green);
        }
        
        .contact-details p {
            font-size: 1rem;
        }
        
        .contact-details a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-details a:hover {
            text-decoration: underline;
        }
        
        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-green);
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .map-container {
            margin-top: 3rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        .toast-notice {
            position: fixed;
            right: 1.2rem;
            bottom: 1.2rem;
            background: var(--primary-green);
            color: var(--white);
            padding: 0.9rem 1.1rem;
            border-radius: 12px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            max-width: 360px;
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            transition: var(--transition);
            z-index: 1200;
        }

        .toast-notice.show {
            opacity: 1;
            transform: translateY(0);
        }

        #structure [style*="background: linear-gradient(135deg, var(--primary-green)"] *,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green)"] *,
        #structure [style*="background: var(--primary-green)"] *,
        #governance [style*="background: var(--primary-green)"] *,
        #structure [style*="color: white"] *,
        #governance [style*="color: white"] * {
            color: #ffffff !important;
        }

        #structure [style*="background: linear-gradient(135deg, var(--primary-green)"] p,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green)"] p,
        #structure [style*="background: var(--primary-green)"] p,
        #governance [style*="background: var(--primary-green)"] p,
        #structure [style*="background: linear-gradient(135deg, var(--primary-green)"] span,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green)"] span,
        #structure [style*="background: var(--primary-green)"] span,
        #governance [style*="background: var(--primary-green)"] span,
        #structure [style*="color: white"] p,
        #governance [style*="color: white"] p,
        #structure [style*="color: white"] span,
        #governance [style*="color: white"] span {
            opacity: 0.96;
        }
        
        /* ========== FOOTER ========== */
        footer {
            background: linear-gradient(145deg, #104d1a 0%, #1b5e20 45%, #145c20 100%);
            color: var(--white);
            padding: 3.2rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 2.3rem;
            margin-bottom: 2.2rem;
            align-items: start;
        }

        .footer-section:not(.footer-brand) {
            border-left: 1px solid rgba(255, 255, 255, 0.12);
            padding-left: 1.25rem;
        }

        .footer-brand {
            padding: 1.1rem 1.1rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            box-shadow: 0 10px 24px rgba(5, 32, 10, 0.24);
        }

        .footer-brand-head {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            margin-bottom: 0.9rem;
        }

        .footer-brand-logo {
            width: 54px;
            height: 54px;
            object-fit: contain;
            flex-shrink: 0;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
        }

        .footer-brand-title {
            color: var(--white);
            font-size: 1.05rem;
            line-height: 1.2;
            margin-bottom: 0.15rem;
        }

        .footer-brand-subtitle {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.72rem;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
        }
        
        .footer-section a:hover {
            color: var(--accent-gold);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }

        .footer-links a {
            display: inline-flex;
            width: fit-content;
            border-bottom: 1px solid transparent;
            transition: var(--transition);
        }

        .footer-links a:hover {
            border-bottom-color: rgba(255, 160, 0, 0.55);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 0.85rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }
        
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {

        .footer-content {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .footer-section:not(.footer-brand) {
            border-left: 0;
            padding-left: 0;
        }

        .footer-heart {
            color: var(--accent-gold);
        }
            .container {
                padding: 0 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .logo {
                min-width: auto;
                margin-right: 0;
            }

            .logo-main {
                font-size: 0.96rem;
            }

            .logo-mark {
                transform: none;
            }

            .logo-badge {
                width: 54px;
                height: 54px;
            }

            nav .container {
                height: 78px;
            }

            .nav-links {
                top: 78px;
                height: calc(100dvh - 78px);
                width: min(320px, calc(100vw - 1rem));
                padding: 0.9rem 0.85rem 1rem;
            }

            .menu-toggle {
                width: 40px;
                height: 40px;
            }

            #about,
            #structure,
            #subsidiaries,
            #financials,
            #leadership,
            #governance,
            #partners,
            #contact {
                scroll-margin-top: 96px;
            }

            .footer-brand {
                padding: 1rem;
            }

            .footer-brand-logo {
                width: 46px;
                height: 46px;
            }

            .footer-brand-title {
                font-size: 0.98rem;
            }

            .footer-section:not(.footer-brand) {
                border-left: none;
                padding-left: 0;
            }

            .logo-sub {
                display: none;
            }
            
            /* Sections */
            .section {
                padding: 4rem 0;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            /* About */
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            /* Leadership */
            .leadership-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            /* Contact */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            

        @media (max-width: 430px) {
            nav .container {
                padding: 0 0.65rem;
                gap: 0.5rem;
            }

            .logo {
                max-width: calc(100% - 48px);
                gap: 0.4rem;
            }

            .logo-badge {
                width: 48px;
                height: 48px;
            }

            .logo-main {
                font-size: 0.88rem;
            }

            .menu-toggle {
                width: 38px;
                height: 38px;
            }

            .menu-toggle span {
                width: 21px;
            }
        }
            /* Hero */
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            /* Chart */
            .chart-bars {
                height: 300px;
                gap: 1rem;
            }
            
            .bar-value {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .logo {
                font-size: 1.4rem;
            }
            
            .subsidiaries-grid,
            .partners-grid,
            .financial-indicators {
                grid-template-columns: 1fr;
            }
            
            .stats-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ========== SCROLL ANIMATIONS ========== */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* ========== ACCESSIBILITY ========== */
        *:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ========== PREMIUM CONTENT REFRESH ========== */
        body {
            background:
                radial-gradient(circle at 8% 10%, rgba(76, 175, 80, 0.09), transparent 34%),
                radial-gradient(circle at 90% 20%, rgba(255, 160, 0, 0.08), transparent 28%),
                #f7faf7;
        }

        .section {
            opacity: 1;
            transform: none;
        }

        .section-title h2 {
            letter-spacing: -0.01em;
        }

        .section-title p {
            max-width: 760px;
            margin: 0.5rem auto 0;
            color: #4a5f4c;
            font-size: 1.06rem;
        }

        #about .about-content {
            gap: 1.35rem;
        }

        #about .about-text {
            background: linear-gradient(165deg, #ffffff 0%, #f8fbf8 100%);
            border: 1px solid rgba(27, 94, 32, 0.12);
            border-radius: 16px;
            padding: 1.35rem 1.4rem;
            box-shadow: 0 12px 28px rgba(13, 31, 14, 0.08);
        }

        #about .about-text h3 {
            font-size: 1.1rem;
            color: var(--primary-green);
            margin-bottom: 0.45rem;
        }

        .values-grid .value-card,
        .stats-grid .stat-card,
        .subsidiaries-grid .subsidiary-card,
        .financial-indicators .indicator-card,
        .partners-grid .partner-card,
        .contact-info,
        .contact-form {
            border-radius: 18px;
            border: 1px solid rgba(27, 94, 32, 0.1);
            box-shadow: 0 16px 35px rgba(13, 31, 14, 0.09);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
            will-change: transform;
        }

        .values-grid .value-card:hover,
        .stats-grid .stat-card:hover,
        .subsidiaries-grid .subsidiary-card:hover,
        .financial-indicators .indicator-card:hover,
        .partners-grid .partner-card:hover,
        .contact-info:hover,
        .contact-form:hover {
            transform: translateY(-7px);
            box-shadow: 0 24px 42px rgba(13, 31, 14, 0.14);
        }

        .chart-container {
            border-radius: 18px;
            border: 1px solid rgba(27, 94, 32, 0.13);
            box-shadow: 0 14px 32px rgba(13, 31, 14, 0.08);
            background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
        }

        .bar {
            box-shadow: 0 14px 28px rgba(27, 94, 32, 0.24);
        }

        .bar-value {
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
        }

        #structure .structure-banner {
            border-radius: 20px;
            box-shadow: 0 18px 40px rgba(13, 31, 14, 0.2);
            border: 1px solid rgba(27, 94, 32, 0.13);
        }

        .org-sub-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.35rem;
            max-width: 1500px;
            width: 100%;
            margin: 0 auto;
        }

        #structure .container {
            max-width: 1500px;
            width: min(96vw, 1500px);
        }

        #subsidiaries .subsidiaries-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.35rem;
        }

        #subsidiaries .container {
            max-width: 1500px;
            width: min(96vw, 1500px);
        }

        #structure .fa-crown[style*="var(--accent-gold)"] {
            color: var(--accent-gold) !important;
            text-shadow: none !important;
        }

        #governance .governance-directors-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
            gap: 1.5rem !important;
        }

        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"],
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] {
            box-shadow: 0 20px 40px rgba(9, 43, 17, 0.36) !important;
        }

        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"],
        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] h3,
        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] h4,
        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] p,
        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] span,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"],
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] h3,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] h4,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] p,
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] span {
            color: #ffffff !important;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
        }

        #structure [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] [style*="opacity"],
        #governance [style*="background: linear-gradient(135deg, var(--primary-green) 0%, var(--medium-green) 100%)"] [style*="opacity"] {
            opacity: 0.98 !important;
        }

        .section-title,
        .leadership-container,
        .partners-grid,
        .contact-container,
        .financial-indicators,
        .values-grid,
        .stats-grid,
        .subsidiaries-grid {
            opacity: 0;
            transform: translateY(20px);
        }

        .is-ready .section-title,
        .is-ready .leadership-container,
        .is-ready .partners-grid,
        .is-ready .contact-container,
        .is-ready .financial-indicators,
        .is-ready .values-grid,
        .is-ready .stats-grid,
        .is-ready .subsidiaries-grid {
            opacity: 1;
            transform: none;
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        @media (max-width: 900px) {
            .section-title p {
                font-size: 1rem;
            }

            #about .about-text {
                padding: 1.15rem;
            }

            .org-sub-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #governance .governance-directors-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            }

            #subsidiaries .subsidiaries-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #subsidiaries .container {
                width: min(94vw, 1500px);
            }

            #structure .container {
                width: min(94vw, 1500px);
            }
        }

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

            #governance .governance-directors-grid {
                grid-template-columns: 1fr !important;
            }

            #subsidiaries .subsidiaries-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ========== PRINT STYLES ========== */
        @media print {
            nav, footer, .btn, .contact-form {
                display: none;
            }
            
            .section {
                page-break-inside: avoid;
            }
        }