.momi-features-layout {
    --momi-primary-emerald: #10b981;
    --momi-primary-teal: #14b8a6;
    --momi-primary-cyan: #06b6d4;
    --momi-accent-green: #22c55e;
}

.momi-feature-module {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.momi-feature-module:hover {
    transform: translateY(-8px) scale(1.05);
}

.momi-module-icon {
    transition: all 0.5s ease;
}

.momi-feature-module:hover .momi-module-icon {
    animation: momi-module-bounce 1.2s ease-in-out;
}

@keyframes momi-module-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.15) rotate(5deg); }
}

.momi-showcase-item {
    opacity: 0;
    transform: translateY(50px);
    animation: momi-showcase-fade-in 1s ease-out forwards;
}

.momi-showcase-item:nth-child(2) {
    animation-delay: 0.3s;
}

.momi-showcase-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes momi-showcase-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.momi-showcase-btn {
    position: relative;
    overflow: hidden;
}

.momi-showcase-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease;
}

.momi-showcase-btn:hover::before {
    left: 100%;
}

.momi-image-wrapper {
    transition: all 0.5s ease;
    overflow: hidden;
}

.momi-showcase-item:hover .momi-image-wrapper img {
    transform: scale(1.1);
    transition: transform 0.8s ease;
}

.momi-algorithm-stats {
    animation: momi-stats-pulse 3s ease-in-out infinite;
}

@keyframes momi-stats-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.momi-security-level {
    transition: all 0.4s ease;
}

.momi-security-level:hover {
    background: rgba(75, 85, 99, 0.7) !important;
    transform: translateX(10px);
}

.momi-stat-card {
    transition: all 0.6s ease;
    backdrop-filter: blur(18px);
}

.momi-stat-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.3);
}

.momi-stat-icon {
    animation: momi-stat-icon-float 4s ease-in-out infinite;
}

@keyframes momi-stat-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.momi-stat-number {
    animation: momi-count-up 3.5s ease-out;
}

@keyframes momi-count-up {
    0% { opacity: 0; transform: translateY(40px) scale(0.7); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.momi-features-hero {
    position: relative;
    overflow: hidden;
}

.momi-features-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: momi-hero-glow 8s ease-in-out infinite alternate;
}

@keyframes momi-hero-glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

.momi-feature-showcase {
    position: relative;
}

.momi-feature-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .momi-showcase-item {
        text-align: center;
    }
    
    .momi-showcase-content {
        order: 2;
    }
    
    .momi-showcase-image {
        order: 1;
    }
    
    .momi-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .momi-hero-title {
        font-size: 2.5rem;
    }
    
    .momi-module-wrapper {
        padding: 1.5rem;
    }
}