/**
 * Outcomes + Testimonials + Final CTA - Aiero Complete Styling
 * Date: October 2, 2025
 */

/* ============================================
   OUTCOMES/STATS SECTION - AIERO GRADIENT
   ============================================ */

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

/* Gradient Orb Background */
.mm-outcomes::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 81, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.mm-outcomes::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.mm-card-grid--stats {
    position: relative;
    z-index: 1;
}

/* Stat Cards - Aiero Style */
.mm-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 32px;
    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;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mm-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(91, 81, 255, 0.15);
    border-color: rgba(91, 81, 255, 0.3);
}

/* Stat Icon - 64px Aiero */
.mm-stat-card__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(91, 81, 255, 0.2));
}

/* Stat Number - 48px Archivo 700 */
.mm-stat-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #5B51FF;
    margin: 0 0 12px 0;
    line-height: 1;
}

/* Stat Label */
.mm-stat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--mm-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Counter Animation (add data-count attribute to h3) */
.mm-stat-card h3[data-count] {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TESTIMONIALS SECTION - AIERO STYLE
   ============================================ */

.mm-testimonials {
    background: var(--mm-surface-1);
}

.mm-card-grid--testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

/* Testimonial Cards - Glassmorphic */
.mm-testimonial {
    position: relative;
    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: 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-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(91, 81, 255, 0.12);
    border-color: rgba(91, 81, 255, 0.2);
}

/* Quote Mark */
.mm-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 64px;
    font-weight: 700;
    color: rgba(91, 81, 255, 0.1);
    line-height: 1;
    font-family: 'Georgia', serif;
}

/* Testimonial Text */
.mm-testimonial p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--mm-text);
    line-height: 1.7;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

/* Testimonial Footer with Avatar */
.mm-testimonial footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(91, 81, 255, 0.1);
}

/* Avatar Circle - 56px */
.mm-testimonial footer::before {
    content: '';
    display: block;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(91, 81, 255, 0.2);
}

/* Author Name */
.mm-testimonial footer {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--mm-text);
}

/* 5-Star Rating */
.mm-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.mm-testimonial-stars::before {
    content: '★★★★★';
    color: #FFB800;
    font-size: 16px;
    letter-spacing: 4px;
}

/* Responsive - Testimonials */
@media (max-width: 960px) {
    .mm-card-grid--testimonials {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
    .mm-card-grid--testimonials {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FINAL CTA SECTION - AIERO GRADIENT + BLOBS
   ============================================ */

.mm-final {
    background: linear-gradient(135deg, #5B51FF 0%, #B24BFF 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Floating Blobs Background */
.mm-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.mm-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Final CTA Box */
.mm-final__box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* Final CTA Text */
.mm-final__title {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.mm-final__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Actions */
.mm-final__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.mm-final__actions .btn {
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.mm-final__actions .btn-primary {
    background: white;
    color: #5B51FF;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mm-final__actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.mm-final__actions .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.mm-final__actions .btn-outline-primary:hover {
    background: white;
    color: #5B51FF;
}

/* Responsive - Final CTA */
@media (max-width: 960px) {
    .mm-final {
        padding: 80px 0;
    }
    
    .mm-final__box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .mm-final__title {
        font-size: 32px;
    }
    
    .mm-final__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .mm-final__actions .btn {
        width: 100%;
    }
}

/* Responsive - Outcomes */
@media (max-width: 960px) {
    .mm-card-grid--stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .mm-card-grid--stats {
        grid-template-columns: 1fr;
    }
    
    .mm-stat-card h3 {
        font-size: 40px;
    }
}






