  :root {
            --primary-green: #0a5c36;
            --primary-dark-green: #052e1b;
            --primary-light-green: #e6f4eb;
            --accent-gold: #b38b2d;
            --light-gray: #fafafa;
            --medium-gray: #e0e0e0;
            --dark-gray: #2d3748;
            --text-dark: #1a202c;
            --text-light: #718096;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
            background-color: var(--white);
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.25rem;
            color: var(--primary-dark-green);
            font-weight: 600;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .lead-text {
            font-size: 1.125rem;
            font-weight: 300;
            line-height: 1.8;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary-green);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(10, 92, 54, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(10, 92, 54, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .btn-secondary:hover {
            background-color: var(--primary-light-green);
            transform: translateY(-3px);
        }

        .btn-detail {
            background-color: transparent;
            color: var(--primary-green);
            border: none;
            padding: 0.5rem 1rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-detail:hover {
            color: var(--primary-dark-green);
            gap: 0.8rem;
        }

        /* Header & Navigation - Enhanced */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--medium-gray);
            padding: 1.25rem 0;
            transition: var(--transition);
        }

        .scrolled-header {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h2 {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 0;
            font-weight: 700;
        }

        .logo span {
            color: var(--accent-gold);
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 2.5rem;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--dark-gray);
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-green);
            cursor: pointer;
        }

        /* Hero Section - Enhanced */
        .hero {
            background: linear-gradient(135deg, rgba(10, 92, 54, 0.03) 0%, rgba(229, 244, 235, 0.1) 100%);
            color: var(--text-dark);
            padding: 12rem 0 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230a5c36' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero p {
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: var(--text-light);
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        /* Features Section - Enhanced */
        .features-section {
            background-color: var(--white);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-weight: 300;
            font-size: 1.125rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2rem;
            transition: var(--transition);
            text-align: left;
            border: 1px solid var(--medium-gray);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }
        .feature-card:nth-child(7) { animation-delay: 0.7s; }
        .feature-card:nth-child(8) { animation-delay: 0.8s; }
        .feature-card:nth-child(9) { animation-delay: 0.9s; }
        .feature-card:nth-child(10) { animation-delay: 1s; }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background-color: var(--primary-green);
            transition: height 0.4s ease;
        }

        .feature-card:hover {
            border-color: var(--primary-green);
            box-shadow: var(--shadow-lg);
            transform: translateY(-10px);
        }

        .feature-card:hover:before {
            height: 100%;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-light-green) 0%, rgba(10, 92, 54, 0.1) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark-green) 100%);
            color: var(--white);
        }

        .feature-card h3 {
            color: var(--primary-dark-green);
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
        }

        .feature-card p {
            font-weight: 400;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            min-height: 60px;
        }

        /* USP Section - Enhanced */
        .usp-section {
            background-color: var(--light-gray);
            position: relative;
        }

        .usp-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .usp-section h2 {
            margin-bottom: 1.5rem;
        }

        .usp-section p {
            font-size: 1.125rem;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .company-types {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .company-type {
            background-color: var(--white);
            padding: 1.5rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            color: var(--primary-dark-green);
            transition: var(--transition);
            font-size: 1rem;
            border: 2px solid transparent;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .company-type:nth-child(1) { animation-delay: 0.1s; }
        .company-type:nth-child(2) { animation-delay: 0.2s; }
        .company-type:nth-child(3) { animation-delay: 0.3s; }
        .company-type:nth-child(4) { animation-delay: 0.4s; }

        .company-type:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .company-type i {
            font-size: 1.2rem;
            color: var(--accent-gold);
        }

        /* CTA Section - Enhanced */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark-green) 0%, var(--primary-green) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            color: var(--white);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .cta-section .btn-primary {
            background-color: var(--accent-gold);
            color: var(--primary-dark-green);
            border: none;
        }

        .cta-section .btn-secondary {
            color: var(--white);
            border-color: var(--white);
        }

        /* Footer - Enhanced */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 4rem 0 2rem;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-gold);
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
            font-weight: 400;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            font-weight: 400;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            font-weight: 300;
        }

        /* Feature Modal */
        .feature-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
            overflow-y: auto;
        }

        .feature-modal.active {
            display: block;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--white);
            margin: 5% auto;
            width: 90%;
            max-width: 800px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.4s ease forwards;
            overflow: hidden;
            position: relative;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark-green) 100%);
            color: var(--white);
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            color: var(--white);
            margin: 0;
            font-size: 1.8rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .modal-body {
            padding: 2.5rem;
        }

        .feature-detail {
            margin-bottom: 2rem;
        }

        .feature-detail h4 {
            color: var(--primary-dark-green);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .feature-detail h4 i {
            color: var(--accent-gold);
        }

        .feature-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .benefit-item {
            background-color: var(--light-gray);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-green);
        }

        .benefit-item h5 {
            color: var(--primary-dark-green);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* Stats Counter */
        .stats-section {
            background-color: var(--white);
            padding: 3rem 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .lead-text {
                font-size: 1.05rem;
            }

            .modal-content {
                width: 95%;
                margin: 10% auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                border-top: 1px solid var(--medium-gray);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0;
                text-align: center;
                padding: 1rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 10rem 0 5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.05rem;
            }

            .hero-btns, .cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 1rem;
            }
            
            .company-types {
                flex-direction: column;
                align-items: center;
            }
            
            .company-type {
                width: 80%;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-benefits {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 4rem 0;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .company-type {
                width: 100%;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-header {
                padding: 1.5rem;
            }

            .modal-header h3 {
                font-size: 1.5rem;
            }
        }
        
        /* Logo color highlight in hero section */
.logo-highlight {
    color: var(--primary-green);
    font-weight: 700;
}

.logo-highlight span {
    color: var(--accent-gold);
}

/* Logo with AI-Powered badge */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1;
}

.logo span {
    color: var(--accent-gold);
}

/* AI-Powered badge - exactly as you requested */
.ai-badge {
    font-size: 0.5rem;
    color: white;
    background-color: var(--accent-gold);
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 3px;
    margin-top: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}


  