/* Hero Features - Elegant Design */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-highlight:hover::before {
    left: 100%;
}

.feature-highlight:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    background: rgba(30, 41, 59, 0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #16a34a);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.feature-highlight:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    color: var(--text-light);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-highlight:hover .feature-content h4 {
    color: var(--primary-color);
}

.feature-content p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Animation on scroll */
.feature-highlight {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.feature-highlight:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-highlight:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-highlight:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-features {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature-highlight {
        padding: 1rem;
    }
    
    .feature-highlight:hover {
        transform: translateY(-3px);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
}