/* ================================================
   SOLAIRGREEN - Premium Institutional Design
   Inspired by PFO Africa structure, adapted for solar energy
   ================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Solar Green */
    --color-primary: #0D5C3D;
    --color-primary-dark: #094530;
    --color-primary-light: #14794F;
    --color-primary-pale: #E8F5F0;

    /* Secondary Colors */
    --color-secondary: #1A1A2E;
    --color-secondary-light: #2D2D44;

    /* Accent - Solar Gold */
    --color-accent: #D4A84B;
    --color-accent-light: #E8C888;
    --color-accent-pale: #FDF8EC;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    --color-bg-alt: #F4F4F4;
    --color-text: #1A1A2E;
    --color-text-secondary: #5A5A72;
    --color-text-muted: #8A8A9A;
    --color-border: #E5E5EC;
    --color-border-light: #F0F0F5;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Layout */
    --max-width: 1280px;
    --header-height: 90px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: var(--text-5xl); font-weight: 700; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.section {
    padding: var(--space-24) 0;
}

.section-alt {
    background-color: var(--color-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===== COOKIE CONSENT - PREMIUM GLASSMORPHISM ===== */
.cookie-banner {
    position: fixed;
    bottom: -120%;
    left: var(--space-6);
    right: var(--space-6);
    z-index: 9999;
    border-radius: 20px;
    overflow: hidden;
    transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
}

.cookie-banner.visible {
    bottom: var(--space-6);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    padding: var(--space-5) var(--space-6);
    background: rgba(15, 23, 20, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

/* Subtle glass reflection effect */
.cookie-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex: 1;
}

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.2), rgba(212, 168, 75, 0.05));
    border: 1px solid rgba(212, 168, 75, 0.25);
    border-radius: 12px;
    color: var(--color-accent);
    transition: all var(--transition-fast);
}

.cookie-icon-wrap svg {
    width: 20px;
    height: 20px;
}

.cookie-text-group {
    flex: 1;
    min-width: 0;
}

.cookie-text-group h3 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.cookie-text-group p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.cookie-btn-secondary {
    position: relative;
    padding: var(--space-2) var(--space-4);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
}

.cookie-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.cookie-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 168, 75, 0.3);
}

.cookie-btn-primary {
    position: relative;
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(135deg, var(--color-accent), #b8933f);
    border: none;
    border-radius: 10px;
    color: #0a1512;
    font-size: var(--text-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(212, 168, 75, 0.25);
}

.cookie-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 10px 10px 0 0;
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4);
    background: linear-gradient(135deg, #d4a84b, #c9a043);
}

.cookie-btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.3), 0 4px 20px rgba(212, 168, 75, 0.4);
}

.cookie-close {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-close svg {
    width: 14px;
    height: 14px;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 168, 75, 0.3);
}

/* Cookie Settings Panel */
.cookie-settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 12, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.cookie-settings-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-panel {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 23, 20, 0.85);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.95) translateY(16px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings-overlay.active .cookie-settings-panel {
    transform: scale(1) translateY(0);
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-settings-header h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-settings-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.cookie-settings-close svg {
    width: 16px;
    height: 16px;
}

.cookie-settings-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.cookie-settings-body {
    padding: var(--space-5);
    max-height: 55vh;
    overflow-y: auto;
}

.cookie-settings-body::-webkit-scrollbar {
    width: 6px;
}

.cookie-settings-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}

.cookie-settings-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.cookie-settings-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-category {
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    margin-bottom: var(--space-3);
    transition: all var(--transition-fast);
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.cookie-category-info p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    flex-shrink: 0;
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle label {
    display: block;
    width: 44px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.cookie-toggle label::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + label {
    background: var(--color-accent);
}

.cookie-toggle input[type="checkbox"]:checked + label::before {
    transform: translateX(18px);
    background: #0a1512;
}

.cookie-toggle input[type="checkbox"]:disabled + label {
    opacity: 0.4;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.cookie-settings-footer .cookie-btn-primary {
    width: 100%;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        left: var(--space-4);
        right: var(--space-4);
        bottom: -130%;
    }

    .cookie-banner.visible {
        bottom: var(--space-4);
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-6);
        padding-right: var(--space-10);
        gap: var(--space-4);
    }

    .cookie-banner-content {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .cookie-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .cookie-text-group {
        width: 100%;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
        gap: var(--space-3);
    }

    .cookie-btn-secondary,
    .cookie-btn-primary {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        left: var(--space-3);
        right: var(--space-3);
    }

    .cookie-banner.visible {
        bottom: var(--space-3);
    }

    .cookie-banner-inner {
        padding: var(--space-5);
        padding-right: var(--space-8);
        border-radius: 16px;
    }

    .cookie-actions {
        flex-direction: column-reverse;
        width: 100%;
    }

    .cookie-btn-secondary,
    .cookie-btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-base);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 var(--space-8);
}

.logo {
    height: 52px;
    width: auto;
    transition: all var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
    letter-spacing: 0.02em;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--color-white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header.scrolled .desktop-nav a {
    color: var(--color-text-secondary);
}

.header.scrolled .desktop-nav a:hover,
.header.scrolled .desktop-nav a.active {
    color: var(--color-primary);
}

.header.scrolled .desktop-nav a::after {
    background: var(--color-primary);
}

.language-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all var(--transition-fast);
    letter-spacing: 0.05em;
}

.header.scrolled .language-btn {
    color: var(--color-text-secondary);
    background: var(--color-bg);
    border-color: var(--color-border);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.header.scrolled .language-btn:hover {
    background: var(--color-primary-pale);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Mobile Controls */
.mobile-controls {
    display: none;
    align-items: center;
    gap: var(--space-4);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.header:not(.scrolled) .hamburger {
    background: var(--color-white);
}

.header.scrolled .hamburger {
    background: var(--color-text);
}

.hamburger {
    width: 22px;
    height: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-white);
    padding: var(--space-6);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

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

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    padding: var(--space-2);
    margin-bottom: var(--space-4);
    color: var(--color-text-secondary);
    cursor: pointer;
}

.mobile-nav-close:hover {
    color: var(--color-primary);
}

.mobile-nav a {
    display: block;
    padding: var(--space-4) 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
    transition: all 0.2s ease;
}

.mobile-nav a:active {
    color: var(--color-primary);
    transform: translateX(4px);
}
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-primary);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 92, 61, 0.92) 0%,
        rgba(26, 26, 46, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-24) 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-6);
}

.hero-eyebrow svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-title span {
    color: var(--color-accent);
}

.hero-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-10);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-2);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-text);
}

.btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-base);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--color-white);
}

/* ===== HERO PREMIUM 2-COLUMN ===== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0 var(--space-16);
    overflow: hidden;
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 92, 61, 0.95) 0%,
        rgba(10, 45, 30, 0.92) 50%,
        rgba(26, 26, 46, 0.88) 100%
    );
}

.hero-split {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    padding: var(--space-12) 0;
}

.hero-solar-content {
    width: 100%;
}

.hero-with-map {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    justify-content: space-between;
}

.hero-text-content {
    flex: 0 0 auto;
    max-width: 480px;
}

.hero-map-inline {
    flex: 0 0 auto;
    width: 500px;
    margin-left: auto;
}

.hero-map-inline img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-map-wrapper {
    position: relative;
    display: inline-block;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.map-marker-hq {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3), 0 0 15px rgba(255,255,255,0.5);
    top: 58%;
    left: 52%;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-map-inline .hero-map-legend {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    justify-content: center;
    padding: 12px 20px;
}

.hero-map-legend {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.legend-dot {
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent);
}

.legend-dot.legend-hq {
    background: #fff;
    box-shadow: 0 0 12px #fff;
}

/* Hide map on tablet and below */
@media (max-width: 1300px) {
    .hero-map-inline {
        display: none;
    }

    .hero-with-map {
        flex-direction: column;
        gap: 0;
    }
}

/* Left Column */
.hero-left {
    max-width: 600px;
}

.hero-brand {
    margin-bottom: var(--space-10);
}

.hero-region-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 100px;
    margin-bottom: var(--space-6);
}

.hero-region-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-accent);
}

.hero-headline {
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.08;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    color: var(--color-accent);
    position: relative;
}

.hero-headline .highlight::after {
    display: none;
}

.hero-subheadline {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 520px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* Credibility Proofs */
.hero-proofs {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.proof-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
}

/* Right Column - Map */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 750px;
}

.map-svg-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.15) 0%, rgba(26, 26, 46, 0.15) 100%);
    border: 1px solid rgba(212, 168, 75, 0.25);
    border-radius: 16px;
    padding: var(--space-6);
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 60px rgba(13, 92, 61, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.15);
}

.map-svg-wrapper.map-with-image {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: brightness(0.9) saturate(0.8);
}

.africa-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Country paths styling */
.country-path {
    fill: rgba(255, 255, 255, 0.08);
    stroke: rgba(212, 168, 75, 0.3);
    stroke-width: 1;
    transition: fill var(--transition-fast);
}

.country-path:hover {
    fill: rgba(255, 255, 255, 0.15);
}

.ocean-path {
    fill: none;
    stroke: rgba(212, 168, 75, 0.15);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

/* Map Points - Animated Dots */
.map-point {
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.map-point:hover {
    transform: scale(1.3);
}

.dot-core {
    fill: var(--color-accent);
    filter: url(#glow);
}

.dot-ring {
    /* Ring animation around dots - disabled */
    display: none;
}

.dot-pulse {
    /* Pulse animation around dots - disabled */
    display: none;
}

.map-point.active .dot-core {
    fill: var(--color-accent);
}

.map-point.active .dot-ring {
    /* Active ring animation - disabled */
    display: none;
}

.map-point.active .dot-pulse {
    /* Active pulse animation - disabled */
    display: none;
}

@keyframes ring-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes dot-pulse {
    0% { opacity: 0.7; stroke-width: 2; }
    100% { opacity: 0; stroke-width: 0.5; }
}

/* Map Stats overlay */
.map-stats {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-8);
    padding: var(--space-3) var(--space-6);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.map-stat-num {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
}

.map-stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 8px;
    padding: var(--space-3) var(--space-5);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
    white-space: nowrap;
    z-index: 10;
}

.map-tooltip.visible {
    opacity: 1;
}

.tooltip-country {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent);
}

.tooltip-project {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.tooltip-region {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Map Markers */
.map-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--color-accent);
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: marker-pulse 2s ease-out infinite;
    z-index: 1;
}

.map-marker.active .marker-dot {
    box-shadow: 0 0 12px var(--color-accent);
}

.map-marker.active .marker-pulse {
    width: 24px;
    height: 24px;
}

.marker-label {
    position: absolute;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    letter-spacing: 0.3px;
    pointer-events: none;
    z-index: 10;
}

.label-right {
    left: calc(100% + 3px);
    top: 50%;
}

.label-left {
    right: calc(100% + 3px);
    top: 50%;
    text-align: right;
}

@keyframes marker-pulse {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.5); }
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-6);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
}

.legend-dot.active {
    opacity: 1;
    box-shadow: 0 0 8px var(--color-accent);
}

.legend-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subheadline {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-proofs {
        justify-content: center;
    }

    .hero-right {
        order: 1;
    }

    .hero-left {
        order: 2;
    }
}

@media (max-width: 640px) {
    .hero-premium {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-8));
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subheadline {
        font-size: var(--text-lg);
    }

    .hero-proofs {
        flex-direction: column;
        gap: var(--space-4);
    }

    .proof-divider {
        width: 48px;
        height: 1px;
    }

    .map-svg-wrapper {
        padding: var(--space-4);
    }

    .map-legend {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }
}

/* ===== METRICS SECTION ===== */
.metrics-section {
    padding: var(--space-16) 0;
    background: var(--color-primary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.metric-card {
    text-align: center;
    padding: var(--space-8);
}

.metric-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-accent);
}

.metric-icon svg {
    width: 24px;
    height: 24px;
}

.metric-number {
    display: block;
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.metric-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.expertise-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.expertise-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.expertise-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    margin: -28px var(--space-6) var(--space-4);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(13, 92, 61, 0.3);
    transition: all var(--transition-fast);
}

.expertise-card:hover .expertise-icon {
    background: var(--color-accent);
    color: var(--color-text);
    transform: scale(1.1);
}

.expertise-icon svg {
    width: 28px;
    height: 28px;
}

.expertise-card h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    padding: 0 var(--space-6);
    color: var(--color-text);
}

.expertise-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: 0 var(--space-6) var(--space-6);
}

/* ===== SECTEURS D'ACTIVITÉS ===== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.sector-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.sector-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.sector-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: 50%;
    color: var(--color-white);
    margin: -28px var(--space-6) var(--space-4);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 168, 75, 0.3);
    transition: all var(--transition-fast);
}

.sector-card:hover .sector-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.sector-icon svg {
    width: 28px;
    height: 28px;
}

.sector-card h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    padding: 0 var(--space-6);
    color: var(--color-text);
}

.sector-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: 0 var(--space-6) var(--space-6);
}

/* Responsive Sectors */
@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .sector-card {
        padding: var(--space-6);
    }

    .sector-image {
        height: 150px;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-secondary);
}

.project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all var(--transition-slow);
}

.project-card:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--color-white);
}

.project-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.project-content p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.project-tag {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent);
    color: var(--color-text);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: 2px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-pale);
    border-radius: 8px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-content h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.benefit-content p {
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ===== ABOUT/PARALLAX SECTION ===== */
.about-section {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--color-secondary);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.about-text h2 span {
    color: var(--color-accent);
}

.about-text p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
}

.about-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    right: var(--space-6);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.about-image-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.about-image-overlay span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-24) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
}

.contact-info {
    padding: var(--space-8) 0;
}

.contact-info h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.contact-info > p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-pale);
    border-radius: 8px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-1);
}

.contact-item-value {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
}

.contact-item-value a:hover {
    color: var(--color-primary);
}

/* Form */
.contact-form {
    background: var(--color-bg);
    border-radius: 12px;
    padding: var(--space-10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-group .required {
    color: #DC2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 92, 61, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5A72' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

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

.file-drop-zone {
    position: relative;
    border: 2px dashed var(--color-border);
    border-radius: 12px;
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    background: var(--color-bg-alt);
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
    border-color: var(--color-accent);
    background: rgba(212, 168, 75, 0.05);
}

.file-drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-drop-content {
    pointer-events: none;
}

.file-drop-content svg {
    color: var(--color-text-light);
    margin-bottom: var(--space-2);
}

.file-drop-content p {
    color: var(--color-text);
    margin: 0;
}

.file-browse {
    color: var(--color-accent);
    font-weight: 600;
}

.file-hint {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: var(--space-1);
}

.file-preview {
    margin-top: var(--space-3);
    padding: var(--space-3);
    background: var(--color-bg);
    border-radius: 8px;
    font-size: 14px;
}

.file-preview .file-name {
    font-weight: 500;
    color: var(--color-text);
}

.file-preview .file-remove {
    margin-left: var(--space-3);
    color: var(--color-error);
    cursor: pointer;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--space-6);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text);
    margin: var(--space-10) 0 var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    margin: var(--space-6) 0 var(--space-3);
}

.legal-text {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-24) 0;
    background: var(--color-primary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-brand .logo {
    height: 56px;
    width: auto;
    transition: transform var(--transition-fast);
}

.footer-brand .logo:hover {
    transform: scale(1.03);
}

.footer-brand h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-white);
}

.footer-brand > p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-stats {
    display: flex;
    gap: var(--space-8);
}

.footer-stat .stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-accent);
}

.footer-stat .stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

.footer-section h5 {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-fill-mode: forwards;
}

.animate-fadeInUp.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInLeft.animated {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight.animated {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scaleIn.animated {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-slideInDown.animated {
    animation: slideInDown 0.5s ease-out forwards;
}

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* ===== BUTTON ANIMATIONS ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 92, 61, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(13, 92, 61, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-text);
    transition: all var(--transition-base);
}

.btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 75, 0.4);
}

.btn-accent:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 92, 61, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-base);
}

/* Button ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.btn-ripple:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* ===== CARD HOVER ANIMATIONS ===== */
.expertise-card,
.project-card,
.benefit-card,
.value-card,
.team-card,
.cert-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px) rotateY(2deg);
}

.team-card:hover {
    transform: translateY(-8px);
}

.cert-item:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ===== EXPERTISE ICON ANIMATIONS ===== */
.expertise-icon {
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ===== SOCIAL LINK ANIMATIONS ===== */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    width: 50px;
    height: 50px;
}

/* ===== FOOTER LINK ANIMATIONS ===== */
.footer-nav a {
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* ===== NAV LINK ANIMATIONS ===== */
.desktop-nav a {
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* ===== MOBILE MENU ANIMATION ===== */
.mobile-menu-btn {
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* ===== LOGO ANIMATION ===== */
.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ===== HERO ELEMENTS ANIMATION ===== */
.hero-brand {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-proofs {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-right {
    animation: fadeInRight 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* ===== METRIC COUNTER ANIMATION ===== */
.metric-card {
    transition: all 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== MAP DOT PULSE ANIMATION ===== */
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 168, 75, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 75, 0);
    }
}

.map-dot-pulse {
    /* Pulsing ring animation - disabled */
    display: none;
}

/* ===== TEXT HIGHLIGHT ANIMATION ===== */
.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightGrow 0.8s ease-out 0.5s forwards;
}

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

/* ===== LANGUAGE BUTTON ANIMATION ===== */
.language-btn {
    transition: all 0.3s ease;
}

.language-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.header.scrolled .language-btn:hover {
    transform: scale(1.05);
    background: var(--color-primary-pale);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 92, 61, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 92, 61, 0.4);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Scroll Top Button Mobile */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== LOADING SPINNER ===== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ===== SUCCESS MESSAGE ANIMATION ===== */
.success-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: slideInRight 0.4s ease-out;
}

.success-message-inner {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-message-inner svg {
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .desktop-nav {
        display: none;
    }

    .mobile-controls {
        display: flex;
    }

    .section {
        padding: var(--space-16) 0;
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
    }

    .hero-stat {
        text-align: left;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .metric-card {
        padding: var(--space-4);
    }

    .metric-number {
        font-size: var(--text-3xl);
    }

    .expertise-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h5 {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact-item {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Mobile Menu */
    .mobile-nav-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-12);
    }

    .hero-content {
        max-width: 100%;
        padding: 0 var(--space-4);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-description {
        font-size: var(--text-base);
    }

    /* Mobile Grid Fixes */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .contact-info {
        padding: var(--space-6) 0;
    }

    .contact-form {
        padding: var(--space-6);
    }

    /* Card Grid Fixes */
    .expertise-grid,
    .projects-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-contact-list {
        align-items: center;
    }

    /* Metrics Mobile */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .metric-card {
        padding: var(--space-4);
    }

    /* Values & Certs Mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-4);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-description {
        font-size: var(--text-base);
    }

    .hero-eyebrow {
        font-size: var(--text-xs);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .section-subtitle {
        font-size: var(--text-base);
    }

    .cta-content h2 {
        font-size: var(--text-2xl);
    }

    .contact-form {
        padding: var(--space-5);
    }

    .form-group {
        margin-bottom: var(--space-4);
    }

    .contact-info {
        padding: var(--space-6) 0;
    }

    .contact-item {
        margin-bottom: var(--space-4);
    }

    .contact-item-icon {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-2);
    }

    .mobile-nav {
        width: 100%;
    }

    .mobile-nav a {
        padding: var(--space-4) 0;
        font-size: var(--text-lg);
    }

    .country-label {
        transform: scale(0.7);
    }

    .map-labels {
        transform: scale(0.8);
    }

    .metric-card {
        padding: var(--space-4);
    }

    .metric-number {
        font-size: var(--text-2xl);
    }

    .metric-label {
        font-size: var(--text-xs);
    }

    .timeline-item {
        padding-left: var(--space-6);
    }

    .timeline-content {
        padding: var(--space-4);
    }

    .timeline-date {
        font-size: var(--text-sm);
    }

    .timeline-content h4 {
        font-size: var(--text-base);
    }

    .expertise-card,
    .project-card,
    .benefit-card {
        padding: var(--space-5);
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .cert-item {
        padding: var(--space-4);
    }
}

/* ===== HERO PREMIUM REDESIGN ===== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0 var(--space-16);
    overflow: hidden;
}

.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 92, 61, 0.96) 0%,
        rgba(8, 40, 25, 0.94) 50%,
        rgba(15, 60, 40, 0.92) 100%
    );
}

.hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50fr 50fr;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-8) 0;
}

/* Left Column - Text Content */
.hero-left {
    max-width: 540px;
}

.hero-brand {
    margin-bottom: var(--space-8);
}

.hero-region-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    background: rgba(212, 168, 75, 0.12);
    border: 1px solid rgba(212, 168, 75, 0.25);
    border-radius: 100px;
    margin-bottom: var(--space-5);
}

.hero-region-badge svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-accent);
}

.hero-headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-5);
    letter-spacing: -0.025em;
}

.hero-headline .highlight {
    color: var(--color-accent);
    display: block;
}

.hero-subheadline {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 480px;
}

/* CTA Buttons - Redesigned */
.hero-cta {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero-cta .btn {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.hero-cta .btn-accent {
    background: var(--color-accent);
    color: var(--color-text);
}

.hero-cta .btn-accent:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
}

.hero-cta .btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-cta .btn svg {
    width: 16px;
    height: 16px;
}

/* Credibility Proofs - Redesigned */
.hero-proofs {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.proof-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.proof-divider-v {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.proof-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-top: var(--space-2);
}

/* Right Column - Map */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container {
    width: 100%;
    max-width: 520px;
}

.map-frame {
    position: relative;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Map Connectors SVG */
.map-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connector-line {
    stroke: transparent;
    stroke-width: 0;
}

.connector-line.hq-line {
    stroke: var(--color-accent);
    stroke-width: 0.5;
    animation: line-pulse 2s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.map-dot {
    fill: var(--color-accent);
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(212, 168, 75, 0.8)) drop-shadow(0 0 8px rgba(212, 168, 75, 0.4));
}

.map-dot.hq-dot {
    fill: var(--color-accent);
    opacity: 1;
    r: 1.8;
    filter: drop-shadow(0 0 6px rgba(212, 168, 75, 1)) drop-shadow(0 0 14px rgba(212, 168, 75, 0.8));
}

/* Map Dot Pulse Animation - Disabled */
/*
.map-dot-wrapper {
    animation: dot-glow 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.map-dot-pulse {
    fill: var(--color-primary);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

.map-dot-wrapper.hq .map-dot-pulse {
    fill: var(--color-accent);
    opacity: 0;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { opacity: 0.6; r: 3; }
    100% { opacity: 0; r: 12; }
}

@keyframes pulse-ring-hq {
    0% {
        transform: scale(0.5);
        opacity: 0.9;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes dot-glow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(212, 168, 75, 0.6)) drop-shadow(0 0 8px rgba(212, 168, 75, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(212, 168, 75, 0.9)) drop-shadow(0 0 12px rgba(212, 168, 75, 0.5));
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .map-dot-wrapper,
    .map-dot-pulse {
        animation: none !important;
    }

    .map-dot {
        animation: none !important;
        filter: drop-shadow(0 0 5px rgba(212, 168, 75, 0.8)) drop-shadow(0 0 10px rgba(212, 168, 75, 0.4));
    }
}

/* Country Labels */
.map-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.country-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 1;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    animation: label-vivid 3s ease-in-out infinite;
}

.country-label:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes label-vivid {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.country-label.hq {
    animation: label-vivid-hq 2s ease-in-out infinite;
}

@keyframes label-vivid-hq {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.cl-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 0 8px rgba(0,0,0,0.8), 0 0 20px rgba(212, 168, 75, 0.3);
    letter-spacing: 0.3px;
}

.cl-project {
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 6px rgba(0,0,0,0.9);
}

.cl-hq-badge {
    display: inline-block;
    font-size: 7px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(212, 168, 75, 0.5);
}

/* HQ special styling */
.country-label.hq .cl-name {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(212, 168, 75, 0.5);
}

.country-label.hq .cl-hq-badge {
    background: rgba(212, 168, 75, 0.25);
    padding: 1px 5px;
    border-radius: 2px;
    border: 1px solid rgba(212, 168, 75, 0.5);
    width: fit-content;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 4px rgba(212, 168, 75, 0.3); }
    50% { box-shadow: 0 0 10px rgba(212, 168, 75, 0.6); }
}

/* Smart label positioning */
.cl-senegal { left: 2%; top: 28%; align-items: flex-start; }
.cl-mali { left: 34%; top: 24%; align-items: flex-start; }
.cl-burkina { left: 34%; top: 34%; align-items: flex-start; }
.cl-guinea { left: 4%; top: 42%; align-items: flex-start; }
.cl-cote-ivoire { left: 8%; top: 52%; align-items: flex-start; }
.cl-ghana { left: 34%; top: 42%; align-items: flex-start; }

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-4);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
}

.legend-dot.hq {
    opacity: 1;
    box-shadow: 0 0 6px var(--color-accent);
}

.legend-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subheadline {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-proofs {
        justify-content: center;
    }

    .hero-right {
        order: 2;
    }

    .map-container {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .hero-premium {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-6));
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-proofs {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4);
    }

    .proof-divider-v {
        display: none;
    }

    .proof-item {
        text-align: center;
    }

    .map-container {
        max-width: 100%;
    }

    .country-label {
        transform: scale(0.85);
    }
}

/* ===== PREMIUM FOOTER ===== */
.footer {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-main {
    background: var(--color-primary);
    padding: var(--space-16) 0 var(--space-10);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-brand-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 280px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
    transform: translateY(-2px);
}

/* Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-column-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-nav a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-accent);
}

/* Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent);
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-wave svg {
        height: 50px;
    }

    .footer-main {
        padding: var(--space-10) 0 var(--space-6);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
        align-items: center;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-nav a {
        text-align: center;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-bottom-links {
        gap: var(--space-4);
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: var(--space-12) auto 0;
    padding-left: var(--space-12);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-8);
    padding-left: var(--space-6);
}

.timeline-marker {
    position: absolute;
    left: -42px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-content {
    background: var(--color-white);
    padding: var(--space-5);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.timeline-date {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.timeline-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.mv-card {
    padding: var(--space-8);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.mv-card.vision {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.mv-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}

.mv-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.mv-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-5);
}

.mv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mv-list li {
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.mv-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.team-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: var(--space-5);
}

.team-info h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.team-role {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-info p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-top: var(--space-3);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.value-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.value-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary-pale);
    line-height: 1;
    margin-bottom: var(--space-3);
}

.value-card h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-10);
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-5);
    background: var(--color-bg-alt);
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.cert-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--color-accent);
}

.cert-badge {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--color-primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}

.cert-badge svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.cert-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.cert-desc {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Mobile Responsive - About Page */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left: var(--space-8);
    }

    .timeline::before {
        left: 0;
    }

    .timeline-marker {
        left: -36px;
        width: 14px;
        height: 14px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-card {
        padding: var(--space-6);
    }
}

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

/* ===== PAGE HERO (Legal Pages) ===== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-20) 0;
}

.page-hero-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: 20px;
    margin-bottom: var(--space-4);
}

.page-hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin: 0;
}

.page-hero-title .highlight {
    color: var(--color-accent);
}

/* ===== LEGAL SECTION ===== */
.legal-section {
    padding: var(--space-16) 0;
    background: var(--color-bg);
}

.legal-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-10);
    align-items: start;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: var(--space-8);
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.legal-toc h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.toc-nav a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.toc-nav a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

/* Legal Content */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.legal-block {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.legal-block h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-primary-pale);
}

.legal-card {
    margin-bottom: var(--space-6);
}

.legal-card:last-child {
    margin-bottom: 0;
}

.legal-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.legal-card p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.info-row {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 140px;
}

.info-value {
    font-size: var(--text-sm);
    color: var(--color-text);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.legal-list li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding-left: var(--space-5);
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.highlight-text {
    background: var(--color-primary-pale);
    padding: var(--space-4);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    margin-top: var(--space-4);
}

.text-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin: var(--space-4) 0;
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--space-4);
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border-light);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row.header {
    background: var(--color-bg-alt);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.cookie-row span {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Contact Card */
.contact-card {
    background: var(--color-bg-alt);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.contact-item span,
.contact-item a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Legal Update */
.legal-update {
    text-align: center;
    padding: var(--space-4);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

/* Mobile Responsive - Legal */
@media (max-width: 1024px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }

    .toc-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-2);
    }

    .toc-nav a {
        background: var(--color-bg-alt);
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: var(--text-3xl);
    }

    .legal-block {
        padding: var(--space-6);
    }

    .info-row {
        flex-direction: column;
        gap: var(--space-1);
    }

    .info-label {
        min-width: auto;
    }

    .cookie-row {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }
}

/* Info Cards - Legal page */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.info-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

.info-card h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.info-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.info-card a {
    color: var(--color-primary);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

.legal-text-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

@media (max-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .legal-text-card {
        padding: var(--space-5);
    }

    .legal-text-card h3 {
        font-size: var(--text-base);
    }
}

/* ===== SERVICES SHOWCASE (Homepage) ===== */
.services-showcase {
    background: var(--color-white);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-4);
}

.service-showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-secondary);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-showcase-card.main-service {
    grid-row: span 2;
    min-height: 564px;
}

.service-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-showcase-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.9) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: var(--space-6);
    color: var(--color-white);
}

.main-service .service-content {
    padding: var(--space-8);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-bottom: var(--space-4);
    backdrop-filter: blur(10px);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.main-service .service-icon {
    width: 56px;
    height: 56px;
}

.main-service .service-icon svg {
    width: 28px;
    height: 28px;
}

.service-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.main-service .service-content h3 {
    font-size: var(--text-2xl);
}

.service-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.service-content p {
    font-size: var(--text-sm);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: var(--space-3);
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* Animate on scroll */
.service-showcase-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-showcase-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-showcase-card:nth-child(1) { transition-delay: 0s; }
.service-showcase-card:nth-child(2) { transition-delay: 0.1s; }
.service-showcase-card:nth-child(3) { transition-delay: 0.2s; }
.service-showcase-card:nth-child(4) { transition-delay: 0.3s; }
.service-showcase-card:nth-child(5) { transition-delay: 0.4s; }
.service-showcase-card:nth-child(6) { transition-delay: 0.5s; }

/* ===== FULLWIDTH BANNER ===== */
.fullwidth-banner {
    position: relative;
    height: 500px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(13, 92, 61, 0.7) 100%);
}

.fullwidth-banner .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-white);
}

.banner-content h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.banner-content p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

/* ===== SECTORS SHOWCASE (Homepage) ===== */
.sectors-showcase {
    background: var(--color-bg);
}

.sectors-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.sector-showcase-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

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

.sector-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

.sector-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sector-showcase-card:hover .sector-image-wrapper img {
    transform: scale(1.1);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
}

.sector-tag {
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent);
    color: var(--color-text);
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sector-content {
    padding: var(--space-5);
    position: relative;
    z-index: 3;
    background: var(--color-white);
}

.sector-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.sector-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.sectors-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* Animate on scroll */
.sector-showcase-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.sector-showcase-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sector-showcase-card:nth-child(1) { transition-delay: 0s; }
.sector-showcase-card:nth-child(2) { transition-delay: 0.15s; }
.sector-showcase-card:nth-child(3) { transition-delay: 0.3s; }
.sector-showcase-card:nth-child(4) { transition-delay: 0.45s; }

/* ===== PROJECTS SHOWCASE (Homepage) ===== */
.projects-showcase {
    background: var(--color-white);
}

.projects-showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-6);
}

.project-showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-secondary);
    transition: transform 0.4s ease;
}

.project-showcase-card.large-project {
    grid-row: span 2;
}

.project-showcase-card:hover {
    transform: translateY(-6px);
}

.project-image-wrapper {
    position: relative;
    height: 250px;
    z-index: 1;
}

.large-project .project-image-wrapper {
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.project-showcase-card:hover .project-image-wrapper img {
    transform: scale(1.05);
}

.project-showcase-card .project-tag {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 2;
}

.project-content {
    padding: var(--space-5);
    background: var(--color-white);
}

.large-project .project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.95));
    color: var(--color-white);
    padding: var(--space-6);
}

.large-project .project-content h4,
.large-project .project-content p {
    color: var(--color-white);
}

.project-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.project-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    color: var(--color-accent);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: var(--space-3);
}

.project-link svg {
    width: 16px;
    height: 16px;
}

.projects-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* Animate on scroll */
.project-showcase-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.4s ease;
}

.project-showcase-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.project-showcase-card:nth-child(1) { transition-delay: 0s; }
.project-showcase-card:nth-child(2) { transition-delay: 0.15s; }
.project-showcase-card:nth-child(3) { transition-delay: 0.3s; }
.project-showcase-card:nth-child(4) { transition-delay: 0.45s; }
.project-showcase-card:nth-child(5) { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-showcase-card.main-service {
        grid-row: span 1;
    }

    .sectors-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-showcase-card.large-project {
        grid-row: span 1;
    }

    .fullwidth-banner {
        height: 400px;
    }

    .banner-content h2 {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 768px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .service-showcase-card,
    .main-service {
        min-height: 250px;
    }

    .sectors-showcase-grid {
        grid-template-columns: 1fr;
    }

    .projects-showcase-grid {
        grid-template-columns: 1fr;
    }

    .project-image-wrapper {
        height: 200px;
    }

    .fullwidth-banner {
        height: 350px;
    }

    .banner-content h2 {
        font-size: var(--text-2xl);
    }

    .banner-content p {
        font-size: var(--text-base);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .about-image {
        order: -1;
    }
}

/* ===== SOLAR LIGHT DESIGN - HOME ===== */

/* Ambient Light Effects */
.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sun-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.sun-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.sun-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 92, 61, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

.sun-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Light Rays */
.light-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    opacity: 0.15;
}

.ray {
    position: absolute;
    top: -50%;
    width: 2px;
    height: 200%;
    background: linear-gradient(180deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    animation: rayRotate 20s linear infinite;
}

.ray-1 { left: 10%; transform: rotate(15deg); animation-duration: 25s; }
.ray-2 { left: 25%; transform: rotate(25deg); animation-duration: 20s; animation-delay: -5s; }
.ray-3 { left: 50%; transform: rotate(5deg); animation-duration: 30s; animation-delay: -10s; }
.ray-4 { left: 75%; transform: rotate(20deg); animation-duration: 22s; animation-delay: -15s; }
.ray-5 { left: 90%; transform: rotate(10deg); animation-duration: 28s; animation-delay: -8s; }

@keyframes rayRotate {
    0% { transform: rotate(0deg) translateX(0); }
    100% { transform: rotate(360deg) translateX(100px); }
}

/* Hero Solar */
.hero-solar {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-solar-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-solar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-solar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 92, 61, 0.88) 0%,
        rgba(13, 92, 61, 0.7) 40%,
        rgba(26, 26, 46, 0.75) 100%
    );
    z-index: 1;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
    padding: var(--space-16) 0;
    max-width: 800px;
}

.hero-solar-content {
    max-width: 600px;
}

.hero-sun-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #b8933f);
    border-radius: 50%;
    margin-bottom: var(--space-8);
    animation: sunPulse 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(212, 168, 75, 0.5);
}

.hero-sun-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-text);
}

@keyframes sunPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(212, 168, 75, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(212, 168, 75, 0.7); }
}

.hero-solar-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--space-6);
}

.hero-solar-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-solar-title .highlight-gold {
    color: var(--color-accent);
    position: relative;
}

.hero-solar-title .highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.hero-solar-desc {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-10);
    max-width: 600px;
}

.hero-solar-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.btn-glow {
    position: relative;
    background: linear-gradient(135deg, var(--color-accent), #b8933f);
    color: var(--color-text);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4);
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 75, 0.5);
}

.btn-glow svg {
    width: 18px;
    height: 18px;
}

.hero-solar-stats {
    display: flex;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.hero-stat-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Map Container */
.hero-map-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-map-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.2), transparent 60%);
    filter: blur(30px);
    animation: mapGlow 4s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-map-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-map-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0.9;
    display: block;
}

.hero-map-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connector-line {
    stroke: var(--color-accent);
    stroke-width: 0.5;
    opacity: 0.8;
}

.map-dot-wrapper {
    animation: dotPulse 3s ease-in-out infinite;
}

.map-dot-pulse {
    fill: var(--color-accent);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.map-dot {
    fill: var(--color-white);
}

.map-dot-pulse.hq-pulse {
    fill: var(--color-accent);
    opacity: 0.5;
}

.map-dot.hq-dot {
    fill: var(--color-accent);
}

@keyframes pulse {
    0%, 100% { r: 4; opacity: 0.3; }
    50% { r: 6; opacity: 0; }
}

.hq-line {
    stroke-width: 0.8;
    stroke: var(--color-white);
}

.hq .map-dot-pulse {
    animation: hqPulse 2s ease-in-out infinite;
}

@keyframes hqPulse {
    0%, 100% { r: 4; opacity: 0.5; }
    50% { r: 8; opacity: 0; }
}

.map-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.country-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.country-label .cl-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.country-label .cl-project {
    color: var(--color-accent);
    font-size: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.country-label .cl-hq-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 7px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 2px;
}

.country-label.hq {
    background: rgba(13, 92, 61, 0.7);
    padding: 6px 10px;
    border-radius: 8px;
    border: 2px solid var(--color-accent);
}

.country-label:not(.hq) {
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 6px;
}

.cl-senegal { top: 35%; left: 60%; }
.cl-mali { top: 30%; left: 74%; }
.cl-burkina { top: 48%; left: 67%; }
.cl-guinea { top: 55%; left: 54%; }
.cl-cote-ivoire { top: 62%; left: 50%; }
.cl-ghana { top: 52%; left: 40%; }

/* Solar Metrics */
.solar-metrics {
    position: relative;
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    z-index: 2;
}

.solar-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.solar-metric-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.solar-metric-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(212, 168, 75, 0.15), transparent 60%);
    pointer-events: none;
}

.solar-metric-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #b8933f);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212, 168, 75, 0.3);
}

.solar-metric-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-text);
}

.solar-metric-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.solar-metric-number {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.solar-metric-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* Benefits Section */
.benefits-section {
    background: var(--color-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    position: relative;
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.benefit-card-featured {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    grid-column: span 2;
}

.benefit-card-featured .benefit-icon {
    background: var(--color-accent);
    color: var(--color-text);
}

.benefit-card-featured h4,
.benefit-card-featured p {
    color: var(--color-white);
}

.benefit-card-featured .benefit-tags {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.benefit-tag {
    padding: var(--space-1) var(--space-3);
    background: rgba(212, 168, 75, 0.2);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent);
}

.benefit-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.2), transparent 60%);
    pointer-events: none;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-pale);
    border-radius: 16px;
    margin-bottom: var(--space-6);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.benefit-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===== WHY SOLAIRGREEN - IMAGE CARDS ===== */
.why-section {
    background: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.why-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.why-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.why-card:hover .why-card-image img {
    transform: scale(1.08);
}

.why-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.why-card-content {
    position: relative;
    padding: var(--space-6);
}

.why-card-icon {
    position: absolute;
    top: -30px;
    left: var(--space-6);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(13, 92, 61, 0.4);
    z-index: 2;
    transition: all var(--transition-base);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-accent), #b8933f);
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
}

.why-card-content h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
    margin-top: var(--space-4);
}

.why-card-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.benefit-tags {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.benefit-tag {
    padding: var(--space-1) var(--space-3);
    background: rgba(212, 168, 75, 0.15);
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent);
}

.why-card-featured {
    grid-column: span 1;
}

.why-card-featured .why-card-image {
    height: 280px;
}

/* Responsive Why Section */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .why-card-featured {
        grid-column: span 1;
    }

    .why-card-featured .why-card-image {
        height: 200px;
    }
}

/* CTA Solar */
.cta-solar {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.cta-solar-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-solar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-solar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.92) 0%, rgba(26, 26, 46, 0.88) 100%);
    z-index: 1;
}

.cta-solar-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-solar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.3), transparent 60%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-solar-content h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    position: relative;
}

.cta-solar-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    position: relative;
}

.cta-solar-content .cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Responsive Solar Home */
@media (max-width: 1024px) {
    .solar-metrics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-solar {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-8));
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .hero-map-container {
        order: -1;
    }

    .hero-map-frame {
        max-width: 350px;
    }

    .country-label {
        padding: var(--space-1) var(--space-2);
        font-size: 7px;
    }

    .country-label .cl-project {
        font-size: 6px;
    }

    .hero-sun-icon {
        width: 60px;
        height: 60px;
    }

    .hero-sun-icon svg {
        width: 30px;
        height: 30px;
    }

    .hero-solar-stats {
        flex-direction: column;
        gap: var(--space-4);
    }

    .hero-stat {
        flex-direction: row;
        align-items: baseline;
        gap: var(--space-3);
    }

    .solar-metric-card {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card-featured {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .hero-solar-title {
        font-size: var(--text-3xl);
    }

    .hero-solar-desc {
        font-size: var(--text-base);
    }

    .hero-solar-cta {
        flex-direction: column;
    }

    .hero-solar-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-solar-content h2 {
        font-size: var(--text-2xl);
    }

    .cta-solar-content p {
        font-size: var(--text-base);
    }

    .cta-solar-content .cta-buttons {
        flex-direction: column;
    }

    .cta-solar-content .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fullwidth-banner {
        height: 300px;
    }

    .banner-content h2 {
        font-size: var(--text-xl);
    }
}

/* ===== ABOUT PAGE - PREMIUM DESIGN ===== */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.85) 0%, rgba(26, 26, 46, 0.75) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-20) 0;
    max-width: 800px;
}

.about-hero-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: var(--space-6);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.about-hero-title .highlight {
    color: var(--color-accent);
}

.about-hero-desc {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-10);
    max-width: 600px;
}

.about-hero-stats {
    display: flex;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.about-stat-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.about-stat-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Timeline */
.about-story {
    background: var(--color-white);
}

.story-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.story-text {
    max-width: 700px;
    margin: 0 auto;
}

.story-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    padding-top: var(--space-10);
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

.story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.story-card-year {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(13, 92, 61, 0.3);
}

.story-card-content {
    padding: var(--space-4);
}

.story-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-pale);
    border-radius: 12px;
    margin: 0 auto var(--space-4);
    color: var(--color-primary);
}

.story-card-icon svg {
    width: 20px;
    height: 20px;
}

.story-card-content h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.story-card-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Mission & Vision */
.about-mission {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.mission-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.92) 0%, rgba(26, 26, 46, 0.88) 100%);
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.mission-block,
.vision-block {
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.mission-icon,
.vision-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #b8933f);
    border-radius: 16px;
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.mission-icon svg,
.vision-icon svg {
    width: 24px;
    height: 24px;
}

.mission-eyebrow,
.vision-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.mission-block h3,
.vision-block h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.mission-block p,
.vision-block p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.mission-list,
.vision-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.mission-list li,
.vision-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-white);
    font-size: var(--text-sm);
}

.mission-list li svg,
.vision-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Values Grid */
.about-values {
    background: var(--color-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.value-card {
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.value-number {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
    letter-spacing: 1px;
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-pale);
    border-radius: 14px;
    margin-bottom: var(--space-6);
    color: var(--color-primary);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Certifications Grid */
.about-certs {
    background: var(--color-bg-alt);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-6);
}

.cert-card {
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-base);
}

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

.cert-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-pale);
    border-radius: 16px;
    margin-bottom: var(--space-4);
    color: var(--color-primary);
}

.cert-logo svg {
    width: 32px;
    height: 32px;
}

.cert-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.cert-desc {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* About Metrics */
.about-metrics {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-20) 0;
}

.about-metrics .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.about-metrics .metric-card {
    text-align: center;
}

.about-metrics .metric-number {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    display: block;
    margin-bottom: var(--space-2);
}

.about-metrics .metric-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About CTA */
.about-cta {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 92, 61, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.about-cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

/* ===== RESPONSIVE - ABOUT PAGE ===== */
@media (max-width: 1200px) {
    .story-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-line {
        display: none;
    }

    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .mission-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }

    .about-hero-stats {
        gap: var(--space-6);
    }

    .story-timeline {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .story-card-year {
        width: 50px;
        height: 50px;
        font-size: var(--text-xs);
    }

    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-metrics .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 640px) {
    .about-hero-content {
        padding: var(--space-12) 0;
    }

    .about-hero-title {
        font-size: var(--text-3xl);
    }

    .about-hero-desc {
        font-size: var(--text-base);
    }

    .about-hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }

    .about-stat {
        flex-direction: row;
        align-items: baseline;
        gap: var(--space-3);
    }

    .about-stat-number {
        font-size: var(--text-2xl);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .cert-card {
        padding: var(--space-4);
    }

    .about-cta-content h2 {
        font-size: var(--text-2xl);
    }

    .about-cta-content p {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 60vh;
    }

    .about-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-stat {
        flex: 1 1 45%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-stat-number {
        font-size: var(--text-xl);
    }

    .about-metrics .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-metrics .metric-number {
        font-size: var(--text-2xl);
    }

    .certs-grid {
        grid-template-columns: 1fr 1fr;
    }
}
