        /* ========== 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: rgba(27, 94, 32, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        nav.scrolled {
            background: rgba(27, 94, 32, 1);
            padding: 0.8rem 0;
        }
        
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: min(96vw, 1680px);
            width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 0;
            transform: translateX(-8px);
            min-width: 0;
        }

        /* Keep the logo block tight so the left side doesn't feel oversized */
        .logo-badge {
            margin: 0;
            width: 72px;
            height: 72px;
        }

        .logo-mark {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        
        .logo span {
            color: var(--accent-gold);
        }

        .logo-text {
            min-width: 0;
            flex: 1 1 auto;
        }
        
        .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;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .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%;
        }
        
        .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;
            margin-left: auto;
            position: relative;
            z-index: 1002;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            transition: var(--transition);
        }
        
        /* ========== 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;
        }

        
        @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: flex-end;
            height: 400px;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .chart-bar {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-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);
        }
        
        .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);
        }

        /* ========== EXECUTIVE TEAM GRID (GOVERNANCE) ========== */
        .executive-cards-grid {
            display: grid !important;
            grid-template-columns: repeat(4, minmax(260px, 1fr));
            align-items: stretch;
            overflow-x: auto;
            max-width: 1400px;
            margin: 0 auto;
            scrollbar-width: thin;
        }

        .executive-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }
        
        /* ========== 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;
        }
        
        /* ========== FOOTER ========== */
        footer {
            background: var(--primary-green);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
            align-items: start;
        }

        .footer-section:not(.footer-brand) {
            border-left: 1px solid rgba(255, 255, 255, 0.12);
            padding-left: 1.25rem;
        }
        
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 2;
        }
        
        .footer-section a:hover {
            color: var(--accent-gold);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .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) {
            .container {
                padding: 0 1.5rem;
            }

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

            .footer-section:not(.footer-brand) {
                border-left: 0;
                padding-left: 0;
            }
        }
        
        @media (max-width: 1180px) {
            body.nav-open {
                overflow: hidden;
            }

            nav .container {
                padding-left: 0.9rem;
                padding-right: 0.9rem;
                max-width: 100%;
                height: 82px;
                gap: 0.7rem;
            }

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

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

            .logo-main {
                font-size: 0.98rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .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;
                background: linear-gradient(180deg, rgba(7, 24, 12, 0.98), rgba(20, 83, 35, 0.98));
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                gap: 0.55rem;
                transition: right 0.25s ease;
                box-shadow: -14px 0 36px rgba(0, 0, 0, 0.28);
                overflow-y: auto;
                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 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::after {
                display: none;
            }

            .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;
                margin-right: 0;
                transform: none;
                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);
            }
        }

        @media (max-width: 768px) {
            /* Navigation mobile */
            nav .container {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
                height: 78px;
            }

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

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

            .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;
            }
            
            /* 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;
            }
            

        @media (max-width: 430px) {
            nav .container {
                padding-left: 0.65rem;
                padding-right: 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;
            }
        }
            /* Contact */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            /* 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;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .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;
        }
        
        /* ========== PRINT STYLES ========== */
        @media print {
            nav, footer, .btn, .contact-form {
                display: none;
            }
            
            .section {
                page-break-inside: avoid;
            }
        }
