:root {
    --primary-green: #00A651;
    --dark-green: #006B3C;
    --lime-accent: #B4D500;
    --light-bg: #F8FAF8;
    --dark-text: #111827;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: #FFFFFF;
    /* High-End Subtly Embedded Clean Architecture Texture Grid */
    background-image: linear-gradient(rgba(0, 166, 81, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

h1,
h2,
h3,
h4,
h5,
.font-heading {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.bg-brand-gradient {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.bg-light-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F7F4 100%);
}

/* Premium Glassmorphism & High-Scale Navigation Architecture Rules */
.glass-header {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Sticky Navigation Elevated Rule State */
.glass-header-sticky {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* Professional Grade Product Card Interactive Lift Systems */
.card-hover-premium {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow, border-color;
}

/* 3. Elevated Hover States & Smooth System Responses */
.card-hover-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12),
        0 0 1px rgba(0, 166, 81, 0.1) inset;
    border-color: #00A651 !important;
}

/* Glassmorphism styling accents for data tracking states */
.card-hover-premium bg-white {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 100%);
}

/* Timeline Custom Structural Enhancements */
.timeline-box-left {
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-box-left:hover {
    border-left-color: var(--dark-green);
    box-shadow: 0 15px 35px rgba(0, 107, 60, 0.06);
}

/* modern inputs structural polish details */
input:focus,
textarea:focus {
    background-color: #FFFFFF !important;
}

@media (max-width: 576px) {
    .glass-header {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .bg-light-gradient {
        padding: 8rem 0 6rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .footer-section {
        padding: 2rem 0;
    }
}