        :root {
            --color-emerald: #008060;
            --color-emerald-dark: #005A45;
            --color-emerald-light: #00A87B;
            --color-gold: #FFD700;
            --color-gold-dark: #DAB600;
            --color-white: #FFFFFF;
            --color-off-white: #F8F9FA;
            --color-bg-subtle: #FAFBFC;
            --color-text: #0A0E12;
            --color-text-muted: #6B7280;
            --color-border: #E5E7EB;
            --color-border-light: #F3F4F6;

            --font-display: 'Outfit', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;

            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-white);
            color: var(--color-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-feature-settings: 'kern' 1, 'liga' 1;
        }

        /* Selection styling */
        ::selection {
            background: var(--color-emerald);
            color: var(--color-white);
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: 1000;
            border-bottom: 1px solid transparent;
            transition: all 0.4s var(--ease-out);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            border-bottom-color: var(--color-border-light);
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.125rem;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text);
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: all 0.3s var(--ease-out);
            position: relative;
            text-transform: uppercase;
        }

        .logo-img {
            height: 42px;
            width: auto;
            object-fit: contain;
        }

        .logo-img {
            height: 42px;
            width: auto;
            object-fit: contain;
        }

        .logo:hover {
            color: var(--color-emerald);
            transform: translateY(-1px);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text-muted);
            text-decoration: none;
            transition: all 0.3s var(--ease-out);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
            transform: translateX(-50%);
            transition: width 0.4s var(--ease-out);
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--color-emerald);
        }

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

        .btn-primary {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            color: var(--color-text);
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--ease-out);
            text-decoration: none;
            display: inline-block;
            border-radius: 12px;
            box-shadow: 0 4px 14px 0 rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px 0 rgba(255, 215, 0, 0.4);
        }

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

        .btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            color: var(--color-emerald);
            border: 2px solid var(--color-emerald);
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s var(--ease-out);
            text-decoration: none;
            display: inline-block;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--color-emerald);
            transition: width 0.4s var(--ease-out);
            z-index: -1;
        }

        .btn-secondary:hover::before {
            width: 100%;
        }

        .btn-secondary:hover {
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px 0 rgba(0, 128, 96, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 3rem 6rem;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 20% 50%, rgba(0, 128, 96, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 128, 96, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 25s ease-in-out infinite;
            filter: blur(60px);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite reverse;
            filter: blur(60px);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 0.8s var(--ease-out);
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: linear-gradient(135deg, rgba(0, 128, 96, 0.1), rgba(0, 128, 96, 0.05));
            color: var(--color-emerald);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 100px;
            margin-bottom: 2rem;
            letter-spacing: 0.02em;
            border: 1px solid rgba(0, 128, 96, 0.1);
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s var(--ease-out), pulse 3s ease-in-out infinite;
        }

        .hero-label::before {
            content: '✦';
            font-size: 0.75rem;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.75rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.04em;
            color: var(--color-text);
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s var(--ease-out) 0.2s backwards;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            padding: 3rem;
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.02),
                0 20px 40px -10px rgba(0, 0, 0, 0.08),
                0 10px 20px -5px rgba(0, 0, 0, 0.04);
            position: relative;
            transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
        }

        .hero-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 0 0 1px rgba(0, 0, 0, 0.02),
                0 30px 60px -15px rgba(0, 0, 0, 0.12),
                0 15px 30px -10px rgba(0, 0, 0, 0.08);
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
            border-radius: 24px 24px 0 0;
        }

        .hero-card-label {
            font-size: 0.875rem;
            color: var(--color-emerald);
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--color-text);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stat {
            text-align: center;
            padding: 1rem;
            background: var(--color-off-white);
            border-radius: 8px;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-emerald);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--color-text-muted);
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            background: var(--color-white);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            width: 100%;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 800;
            box-shadow:
                0 0 0 1px rgba(0, 128, 96, 0.1),
                0 30px 60px -15px rgba(0, 128, 96, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 70%);
            animation: shimmer 3s infinite;
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
            color: var(--color-text);
            padding: 1.75rem 2.25rem;
            border-radius: 20px;
            box-shadow:
                0 0 0 1px rgba(255, 215, 0, 0.2),
                0 20px 40px -10px rgba(255, 215, 0, 0.4);
            backdrop-filter: blur(10px);
        }

        .about-badge-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .about-badge-label {
            font-size: 0.875rem;
            font-weight: 600;
        }

        .about-content {
            animation: fadeInUp 0.8s var(--ease-out);
        }

        .section-label {
            font-size: 0.8125rem;
            color: var(--color-emerald);
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            display: inline-block;
            position: relative;
            padding-left: 2rem;
        }

        .section-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1.25rem;
            height: 2px;
            background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
        }

        .about h2,
        .services h2,
        .impact h2,
        .thought-leadership h2,
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .about p {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            padding: 8rem 3rem;
            background: var(--color-off-white);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .services h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .services-description {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--color-white);
            border: 1px solid var(--color-border-light);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.5s var(--ease-out);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 128, 96, 0.03), rgba(255, 215, 0, 0.02));
            opacity: 0;
            transition: opacity 0.5s var(--ease-out);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s var(--ease-out);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow:
                0 0 0 1px rgba(0, 128, 96, 0.1),
                0 30px 60px -15px rgba(0, 128, 96, 0.2),
                0 15px 30px -10px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 128, 96, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

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

        .service-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--color-emerald), var(--color-emerald-light));
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border-radius: 18px;
            box-shadow: 0 8px 16px -4px rgba(0, 128, 96, 0.3);
            transition: all 0.4s var(--ease-out);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 24px -6px rgba(0, 128, 96, 0.4);
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-text);
            transition: color 0.3s var(--ease-out);
        }

        .service-card:hover h3 {
            color: var(--color-emerald);
        }

        .service-card p {
            font-size: 1rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Impact Section */
        .impact {
            padding: 8rem 3rem;
            background: var(--color-white);
        }

        .impact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .impact-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .impact h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .impact-card {
            background: var(--color-off-white);
            border-radius: 12px;
            padding: 3rem;
            border-left: 4px solid var(--color-emerald);
        }

        .impact-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .impact-card p {
            font-size: 1rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .impact-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            background: linear-gradient(135deg, rgba(0, 128, 96, 0.03), rgba(255, 215, 0, 0.02));
            padding: 3rem;
            border-radius: 24px;
            border: 2px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .impact-metrics::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, var(--color-emerald), var(--color-gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .metric {
            text-align: center;
            position: relative;
        }

        .metric-value {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-emerald), var(--color-emerald-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .metric-label {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* Company Section */
        .company {
            padding: 8rem 3rem;
            background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
            color: var(--color-white);
            position: relative;
            overflow: hidden;
        }

        .company::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(45deg,
                    transparent,
                    transparent 40px,
                    rgba(255, 255, 255, 0.02) 40px,
                    rgba(255, 255, 255, 0.02) 80px);
        }

        .company-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .company-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .company-content p {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .company-logo {
            background: var(--color-white);
            color: var(--color-emerald);
            padding: 4rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .company-logo h3 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .company-logo p {
            font-size: 1rem;
            color: var(--color-text-muted);
        }

        .btn-white {
            padding: 0.875rem 1.75rem;
            background: var(--color-white);
            color: var(--color-emerald);
            font-family: var(--font-body);
            font-size: 0.9375rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s var(--ease-out);
            text-decoration: none;
            display: inline-block;
            border-radius: 4px;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
        }

        /* Thought Leadership */
        .thought-leadership {
            padding: 8rem 3rem;
            background: var(--color-off-white);
        }

        .thought-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .thought-leadership h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .thought-leadership p {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .thought-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .topic-tag {
            padding: 0.875rem 1.75rem;
            background: var(--color-white);
            border: 1px solid var(--color-border-light);
            border-radius: 100px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text-muted);
            transition: all 0.3s var(--ease-out);
            cursor: pointer;
        }

        .topic-tag:hover {
            border-color: var(--color-emerald);
            background: linear-gradient(135deg, rgba(0, 128, 96, 0.05), rgba(0, 128, 96, 0.02));
            color: var(--color-emerald);
            transform: translateY(-4px);
            box-shadow: 0 8px 16px -4px rgba(0, 128, 96, 0.2);
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 3rem;
            background: var(--color-white);
            text-align: center;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 5rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 32px;
            padding: 3px;
            background: linear-gradient(135deg, var(--color-emerald), var(--color-gold), var(--color-emerald));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: rotate 8s linear infinite;
        }

        .cta-container::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 128, 96, 0.08) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        /* Footer */
        footer {
            background: var(--color-text);
            color: var(--color-white);
            padding: 4rem 3rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            font-size: 0.9375rem;
            opacity: 0.7;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-gold);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            font-size: 0.9375rem;
            color: var(--color-white);
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            opacity: 0.5;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

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

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.05);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.95);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.9;
                transform: scale(1.02);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .company-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

        @media (max-width: 768px) {
            .nav-container {
                padding: 1.5rem 2rem;
            }

            .nav-links {
                display: none;
            }

            .hero,
            .about,
            .services,
            .impact,
            .company,
            .thought-leadership,
            .cta-section {
                padding: 5rem 2rem;
            }

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

            .impact-metrics {
                grid-template-columns: 1fr 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

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

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1002;
            padding: 0;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 2px;
            background-color: var(--color-text);
            transition: all 0.3s var(--ease-out);
            border-radius: 2px;
        }

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

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

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

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s var(--ease-out);
            transform: translateY(-20px);
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .mobile-link {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-link:hover {
            color: var(--color-emerald);
        }

        .mobile-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            color: var(--color-text);
            font-family: var(--font-body);
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            margin-top: 1rem;
            box-shadow: 0 4px 14px 0 rgba(255, 215, 0, 0.3);
        }

        /* Updated Responsive Design */
        @media (max-width: 900px) {

            .nav-links,
            .desktop-only {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-container,
            .about-container,
            .company-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 3.5rem);
            }

            .hero-label {
                margin-left: auto;
                margin-right: auto;
            }

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

            .services-header,
            .impact-header,
            .company-content,
            .thought-leadership p {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .section-label {
                padding-left: 0;
                text-align: center;
                display: block;
                margin-bottom: 1rem;
            }

            .section-label::before {
                display: none;
            }

            .impact-metrics {
                grid-template-columns: 1fr 1fr;
            }

            .company-logo {
                order: -1;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }
        }

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

            .impact-metrics {
                grid-template-columns: 1fr;
            }

            .impact-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero,
            .about,
            .services,
            .impact,
            .cta-section {
                padding: 4rem 1.5rem;
            }
        }

        @media (max-width: 900px) {
            .hero {
                padding-top: 10rem;
            }
        }

        .company-logo img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            max-height: 200px;
            /* Adjust as needed */
        }

        /* Restore white card background for visibility */
        .company-logo {
            background: var(--color-white) !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
            padding: 3rem !important;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: block;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--color-white);
            margin: 10% auto;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

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

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            color: var(--color-text-muted);
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--color-emerald);
        }

        .modal h2 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            color: var(--color-text);
            margin-bottom: 0.5rem;
        }

        .modal p {
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.9375rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--color-text);
            font-size: 0.9375rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-emerald);
            box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.1);
        }

        .form-group textarea {
            resize: vertical;
        }

        .modal .btn-primary {
            width: 100%;
            margin-top: 1rem;
        }