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

        :root {
            --primary-green: #4CAF50;
            --darker-green: #43A047;
            --accent-cyan: #00D9B5;
            --light-bg: #F8F9FA;
            --card-bg: #FFFFFF;
            --text-primary: #2C3E50;
            --text-secondary: #6C757D;
        }

        html {
            width: 100%;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--light-bg);
            color: var(--text-primary);
            width: 100%;
            max-width: 100vw;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .nav-logo a {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 80px;
            width: auto;
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--primary-green);
            border: none;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        .nav-cta:hover {
            background: var(--darker-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        /* Hero Section - FULL WIDTH */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            /* Background (gradient + image) is set inline by the Hero block for editability. */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.5) 0%, rgba(0, 217, 181, 0.4) 100%);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            color: white;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .hero-subtitle {
            font-size: 28px;
            color: white;
            max-width: 800px;
            margin: 0 auto 48px;
            line-height: 1.5;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 42px;
            background: white;
            color: var(--primary-green);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            background: var(--accent-cyan);
            color: white;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-in.delay-1 { animation-delay: 0.2s; }
        .fade-in.delay-2 { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section animations */
        section {
            padding: 120px 0;
            position: relative;
            width: 100%;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        section.hero {
            opacity: 1;
            transform: none;
            transition: none;
            padding: 0;
        }

        section:last-of-type {
            padding-bottom: 80px;
        }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .section-title {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 32px;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }
        
        .section-title .gradient {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 900px;
            line-height: 1.8;
        }
        
        .text-center {
            text-align: center;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* Problem Section with Split Layout */
        .problem-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 60px;
        }

        .problem-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            max-height: 500px;
        }

        .problem-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            display: block;
        }

        .problem-text h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .problem-text p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify; /* Justify Text */
        }

        .stat-highlight {
            background: var(--accent-cyan);
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 700;
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
        }

        /* Mission Section */
        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .mission-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .mission-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            border: 2px solid var(--primary-green);
            z-index: 2;
        }

        .mission-badge-text {
            font-size: 14px;
            line-height: 1.4;
            font-weight: 600;
            color: var(--primary-green);
            text-transform: uppercase;
        }

        .mission-text h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .mission-text p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
            text-align: justify; /* Justify Text */
        }

        /* Products Section - EXPANDABLE */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 80px;
        }

        .product-card {
            background: var(--card-bg);
            border: 2px solid rgba(76, 175, 80, 0.1);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-green);
            box-shadow: 0 30px 60px rgba(76, 175, 80, 0.2);
        }

        .product-header {
            padding: 48px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-icon {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            padding: 20px; 
            background: var(--light-bg);
            border-radius: 16px;
            overflow: hidden;
        }

        .product-icon img {
            max-width: 100%;
            height: 120px;
            object-fit: contain;
        }
        
        .product-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .product-card ul {
            list-style: none;
            margin-bottom: 32px;
        }

        .product-card li {
            padding: 12px 0 12px 32px;
            position: relative;
            color: var(--text-secondary);
            font-size: 16px;
        }

        .product-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
            font-size: 18px;
        }

        .product-toggle {
            width: 100%;
            padding: 16px 48px;
            background: var(--primary-green);
            color: white;
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .product-toggle.expanded,
        .product-toggle:hover {
            background: var(--accent-cyan);
        }

        .product-toggle-icon {
            transition: transform 0.3s ease;
        }

        .product-toggle-icon.expanded {
            transform: rotate(180deg);
        }

        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(76, 175, 80, 0.05);
        }

        .product-details.expanded {
            max-height: 2000px;
        }

        .product-details-content {
            padding: 48px;
        }

        .product-details h4 {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--primary-green);
        }

        .product-details p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        /* Case Study Section */
        .case-study-grid {
            display: block;
            margin-top: 80px;
            background: var(--card-bg);
            border-radius: 24px;
            padding: 60px;
            border: 2px solid rgba(76, 175, 80, 0.2);
        }

        .case-study-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 40px;
        }

        .case-study-content h3 {
            font-size: 32px;
            color: var(--text-primary);
            margin: 0;
        }
        
        .case-study-logo {
            flex-shrink: 0;
        }

        .case-study-logo img {
            width: 100%;
            max-width: 200px;
        }
        
        .case-study-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .highlight-box h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-green);
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .highlight-box ul {
            list-style: none;
        }

        .highlight-box li {
            padding: 8px 0 8px 24px;
            position: relative;
            color: var(--text-secondary);
            font-size: 15px;
        }

        .highlight-box li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
        }

        /* Partners Section - FULL WIDTH */
        .partners-section {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-green) 100%);
            color: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-top: 60px;
            align-items: center;
        }

        .partner-logo {
            background: white;
            padding: 32px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .partner-logo:hover {
            transform: scale(1.05);
        }

        .partner-logo img {
            max-width: 100%;
            height: auto;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 80px;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 2px solid rgba(76, 175, 80, 0.2);
            border-radius: 24px;
            padding: 48px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-12px);
            border-color: var(--primary-green);
            box-shadow: 0 30px 60px rgba(76, 175, 80, 0.2);
        }

        .pricing-card.featured {
            border-color: var(--accent-cyan);
            background: linear-gradient(135deg, rgba(0, 217, 181, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
        }

        .pricing-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-green);
            text-transform: uppercase;
            margin-bottom: 16px;
            letter-spacing: 0.1em;
        }

        .pricing-card h3 {
            font-size: 28px;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .pricing-amount {
            font-size: 48px;
            font-weight: 800;
            color: var(--accent-cyan);
            margin-bottom: 8px;
        }

        .pricing-period {
            color: var(--text-secondary);
            margin-bottom: 32px;
            font-size: 16px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            padding: 12px 0 12px 32px;
            position: relative;
            color: var(--text-secondary);
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }

        /* Revenue Diversification Section */
        .revenue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-top: 80px;
        }

        .revenue-card {
            background: var(--card-bg);
            border: 2px solid rgba(76, 175, 80, 0.1);
            border-radius: 24px;
            padding: 48px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .revenue-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-cyan);
            box-shadow: 0 30px 60px rgba(0, 217, 181, 0.2);
        }

        .revenue-card h3 {
            font-size: 28px;
            margin-bottom: 24px;
            color: var(--primary-green);
        }

        .revenue-card h4 {
            font-size: 20px;
            margin: 24px 0 16px;
            color: var(--text-primary);
        }

        .revenue-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .revenue-logos {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .revenue-logo {
            background: white;
            padding: 24px 32px;
            border-radius: 16px;
            border: 2px solid rgba(76, 175, 80, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px;
            overflow: hidden;
        }

        .revenue-logo img {
            max-width: 120px;
            max-height: 60px;
            object-fit: contain;
        }
        
        /* Essence Section - Refactored to use classes */
        .tech-essence-container {
            margin-top: 48px;
            text-align: center;
        }
        .tech-essence-container h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--primary-green);
        }
        .tech-essence-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
        }
        .tech-essence-card {
            padding: 32px;
            background: var(--card-bg);
            border-radius: 16px;
            border: 2px solid rgba(76, 175, 80, 0.2);
        }
        .tech-essence-card h4 {
            color: var(--accent-cyan);
            margin-bottom: 16px;
        }
        .tech-essence-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Trust Section - FULL WIDTH */
        .trust-section {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-green) 100%);
            color: white;
            text-align: center;
        }

        .trust-section h2 {
            color: white;
            font-size: 48px;
            margin-bottom: 24px;
        }

        .trust-section p {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- NEW CONTACT SECTION --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 7fr 3fr;
            gap: 48px;
            align-items: flex-start;
            margin-top: 80px;
        }
        
        .contact-details {
            background: var(--card-bg);
            border: 2px solid rgba(76, 175, 80, 0.2);
            border-radius: 24px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            justify-content: center;
        }

        .contact-ceo-photo {
            width: 180px !important;
            height: 180px !important;
            border-radius: 50% !important; 
            border: 3px solid var(--primary-green) !important; 
            object-fit: cover !important; 
            display: block !important;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
        }

        .contact-ceo-name {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-green);
            margin: 0;
            line-height: 1.2;
        }

        .contact-ceo-title {
            font-size: 16px;
            font-weight: 500;
            color: var(--accent-cyan);
            margin-bottom: 32px;
        }
        
        .contact-info-box {
             width: 100%;
             padding: 24px; 
             background: rgba(76, 175, 80, 0.05); 
             border-radius: 16px; 
             border: 1px solid rgba(76, 175, 80, 0.2);
        }
        .contact-info-box p {
            color: var(--text-secondary); 
            font-size: 14px; 
            line-height: 1.6; 
            margin: 0;
        }
        .contact-info-box strong {
            color: var(--primary-green); 
            display: block; 
            margin-bottom: 8px;
        }

        .contact-form-wrapper {
            background: var(--card-bg);
            border: 2px solid rgba(76, 175, 80, 0.2);
            border-radius: 24px;
            padding: 48px;
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 32px;
            color: var(--text-primary);
            font-weight: 600;
        }
        
        /* WPCF7 Form Styles */
        .wpcf7-form p {
            margin: 0 0 24px 0 !important; 
            display: block !important;
            width: 100% !important;
        }
        
        .wpcf7-form label {
            display: block !important; 
            font-size: 14px !important;
            color: var(--text-primary) !important;
            font-weight: 500 !important;
            margin-bottom: 8px !important;
            line-height: 1.5 !important; 
            padding: 0 !important;
        }
        
        .wpcf7-form input[type="text"],
        .wpcf7-form input[type="email"],
        .wpcf7-form input[type="tel"],
        .wpcf7-form textarea {
            width: 100% !important; 
            padding: 16px 20px !important;
            background: var(--light-bg) !important;
            border: 2px solid rgba(76, 175, 80, 0.2) !important;
            border-radius: 12px !important;
            color: var(--text-primary) !important;
            font-size: 16px !important;
            font-family: inherit !important;
            transition: all 0.3s ease !important;
            outline: none !important;
            -webkit-appearance: none !important; 
            -moz-appearance: none !important;
            appearance: none !important;
        }

        .wpcf7-form input:focus,
        .wpcf7-form textarea:focus {
            border-color: var(--primary-green) !important;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1) !important;
        }

        .wpcf7-form textarea {
            min-height: 140px !important;
            resize: vertical !important;
        }

        .wpcf7-form input[type="submit"] {
            width: 100% !important;
            margin-top: 16px !important;
            padding: 18px 32px !important;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-cyan) 100%) !important;
            border: none !important;
            border-radius: 12px !important;
            color: white !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            cursor: pointer !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3) !important;
            transform: translateY(0);
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
            appearance: none !important;
        }

        .wpcf7-form input[type="submit"]:hover {
            box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4) !important;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 56px; }
            .section-title { font-size: 42px; }
            .products-grid, .pricing-grid { grid-template-columns: 1fr; }
            .mission-content, .problem-split, .revenue-grid { grid-template-columns: 1fr; }
            .case-study-highlights { grid-template-columns: 1fr; }
            .partners-grid { grid-template-columns: repeat(3, 1fr); }
            .contact-grid { 
                grid-template-columns: 1fr; 
                gap: 40px; 
            }
            .tech-essence-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            section { padding: 60px 0; }
            .hero {
                background-attachment: scroll;
            }
            .hero h1 { font-size: 36px; }
            .hero-subtitle { font-size: 20px; }
            .section-title { font-size: 32px; }
            .nav-logo img { height: 50px; }
            .nav-container, .container, .hero-content { padding: 0 24px; }
            
            .mission-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .mission-text { order: 1; }
            .mission-image { order: 2; margin-bottom: 40px; }
            .mission-badge {
                position: relative;
                bottom: auto;
                right: auto;
                transform: none;
                margin: 24px auto 0;
                display: inline-block;
            }

            .case-study-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .partners-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-details, .contact-form-wrapper { padding: 32px 24px; }
            .contact-ceo-photo { width: 150px !important; height: 150px !important; }
            
            .problem-split, .mission-content, .products-grid, .case-study-grid, .partners-grid, .pricing-grid, .revenue-grid, .contact-grid, .tech-essence-grid {
                margin-top: 40px;
            }
            
            .product-icon { padding: 10px; }
            .product-icon img { height: 80px; }
            .partner-logo { padding: 20px; }
        }
