/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Theme colors */
    --brand-green: #86be41;
    --brand-gray: #737474;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted-foreground: #64748b;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--brand-green), var(--brand-gray));
    --shadow-brand: 0 10px 30px -10px rgba(134, 190, 65, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

.containerNew {
    min-height: 15vh;
}

/* Feature Banner Styles */
.feature-bannerNew {
    width: 100%;
    background: var(--gradient-brand);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.bg-decorationsNew {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.decorationNew {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.decoration-1New {
    top: 1rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

.decoration-2New {
    bottom: 1.5rem;
    right: 4rem;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.15);
}

.decoration-3New {
    top: 50%;
    left: 25%;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
}

.features-gridNew {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .features-gridNew {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-gridNew {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-cardNew {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

.feature-cardNew:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: var(--shadow-brand);
}

.feature-iconNew {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: white;
}

.feature-cardNew:hover .feature-iconNew {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.feature-contentNew {
    flex: 1;
    min-width: 0;
}

.feature-titleNew {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25;
    transition: var(--transition-smooth);
}

@media (min-width: 1024px) {
    .feature-titleNew {
        font-size: 1rem;
    }
}

.feature-cardNew:hover .feature-titleNew {
    opacity: 0.9;
}

.feature-descriptionNew {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    transition: var(--transition-smooth);
}

@media (min-width: 1024px) {
    .feature-descriptionNew {
        font-size: 0.875rem;
    }
}

.feature-cardNew:hover .feature-descriptionNew {
    color: rgba(255, 255, 255, 0.9);
}

.hover-indicatorNew {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition-smooth);
}

.feature-cardNew:hover .hover-indicatorNew {
    background: rgba(255, 255, 255, 0.6);
}

.bottom-glowNew {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Main Content Styles */


.hero-titleNew {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-titleNew {
        font-size: 3.75rem;
    }
}

.hero-descriptionNew {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility */
.feature-cardNew:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .feature-cardNew,
    .feature-iconNew,
    .decoration-1New {
        animation: none;
        transition: none;
    }
}