/**
 * Pricing Cards - Aiero Complete Styling
 * Date: October 2, 2025
 */

/* Pricing Section */
.mm-pricing {
    background: var(--mm-surface-2);
    padding: 120px 0;
}

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

/* Pricing Cards - Aiero Style */
.mm-pricing-card {
    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: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Pro Plan - Featured */
.mm-pricing-card--pro {
    border: 2px solid #5B51FF;
    box-shadow: 0 10px 40px rgba(91, 81, 255, 0.15);
    transform: scale(1.05);
}

.mm-pricing-card--pro:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(91, 81, 255, 0.25);
}

/* POPULAR Badge - Aiero Style */
.mm-pricing-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    padding: 8px 24px;
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(91, 81, 255, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(91, 81, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(91, 81, 255, 0.4);
    }
}

/* Pricing Card Header */
.mm-pricing-card header h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--mm-text);
    margin: 0 0 8px 0;
}

.mm-pricing-card header .mm-muted {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--mm-text-muted);
    margin: 0;
}

/* Price */
.mm-price {
    font-family: 'Archivo', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #5B51FF;
    margin: 24px 0;
}

.mm-price-annual {
    font-size: 14px;
    font-weight: 400;
    color: var(--mm-text-muted);
    margin-left: 8px;
}

/* Feature List - Green Checkmarks */
.mm-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.mm-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--mm-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mm-feature-list li:last-child {
    border-bottom: none;
}

/* Green Circle Checkmark - Aiero */
.mm-feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* CTA Button */
.mm-pricing-card .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
}

.mm-pricing-card .btn-primary {
    background: linear-gradient(135deg, #5B51FF 0%, #00D4FF 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(91, 81, 255, 0.3);
}

.mm-pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 81, 255, 0.4);
}

.mm-pricing-card .btn-outline-primary {
    background: white;
    color: #5B51FF;
    border: 2px solid #5B51FF;
}

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

/* Guarantee Section */
.mm-pricing-guarantee {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(91, 81, 255, 0.05);
    border-radius: 16px;
}

.mm-pricing-guarantee h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--mm-text);
    margin: 0 0 8px 0;
}

.mm-pricing-guarantee p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--mm-text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .mm-card-grid--pricing {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mm-pricing-card--pro {
        transform: scale(1);
    }
    
    .mm-pricing-card--pro:hover {
        transform: scale(1.02);
    }
}






