/**
 * AI Showcase + Footer - Aiero Complete Styling
 * Date: October 2, 2025
 */

/* ============================================
   AI SHOWCASE SECTION - AIERO
   ============================================ */

.mm-ai {
    background: linear-gradient(135deg, rgba(91,81,255,0.03) 0%, rgba(0,212,255,0.03) 100%);
    position: relative;
    overflow: hidden;
}

.mm-ai__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

/* AI Mockup - Glassmorphic Chat Interface */
.mm-ai__mock {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(91, 81, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(91, 81, 255, 0.1);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Animated Gradient Border */
.mm-ai__mock::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 50%, #B24BFF 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.5;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* AI Details - Feature Cards */
.mm-ai__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.mm-ai__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(91, 81, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-ai__card:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 32px rgba(91, 81, 255, 0.12);
    border-color: rgba(91, 81, 255, 0.3);
}

/* AI Card Content */
.mm-ai__card .mm-chip {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mm-ai__card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--mm-text);
    margin: 0 0 12px 0;
}

.mm-ai__card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--mm-text-muted);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* AI CTA Bottom */
.mm-ai__cta {
    background: linear-gradient(135deg, #5B51FF 0%, #B24BFF 100%);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(91, 81, 255, 0.2);
}

.mm-ai__cta h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.mm-ai__cta p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mm-ai__cta .btn {
    background: white;
    color: #5B51FF;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    white-space: nowrap;
}

.mm-ai__cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive - AI Showcase */
@media (max-width: 960px) {
    .mm-ai__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mm-ai__cta {
        flex-direction: column;
        text-align: center;
    }
    
    .mm-ai__cta .btn {
        width: 100%;
    }
}

/* ============================================
   FOOTER - DARK AIERO THEME
   ============================================ */

footer.mm-footer {
    background: #0A0E27;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Gradient Orb Background */
footer.mm-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 81, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

footer.mm-footer .mm-container {
    position: relative;
    z-index: 1;
}

/* Footer Grid */
.mm-footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.mm-footer__col h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mm-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mm-footer__col ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mm-footer__col ul li a:hover {
    color: white;
    transform: translateX(4px);
    display: inline-block;
}

/* Footer Brand */
.mm-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mm-footer__logo {
    font-family: 'Archivo', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mm-footer__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Social Icons - 40px with Hover Scale */
.mm-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.mm-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-footer__social a:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%);
    box-shadow: 0 8px 20px rgba(91, 81, 255, 0.3);
}

/* Footer Bottom */
.mm-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.mm-footer__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.mm-footer__links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mm-footer__links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mm-footer__links a:hover {
    color: white;
}

/* Responsive - Footer */
@media (max-width: 960px) {
    footer.mm-footer {
        padding: 60px 0 32px;
    }
    
    .mm-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mm-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}






