/**
 * MU PlanManager Pricing Cards CSS - Glass Effect
 */

body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #3e64de;
}

.mu-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: transparent;
    min-height: 100vh;
}

.mu-pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.mu-pricing-columns-3 .mu-pricing-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
}

/* Dark Theme Card */
.mu-pricing-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 0 60px rgba(62, 100, 222, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 700px;
    height: 100%;
}

/* Glass overlay effects */
.mu-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 30px;
    z-index: -1;
    pointer-events: none;
}

.mu-pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.8), 
        rgba(139, 92, 246, 0.8), 
        rgba(6, 182, 212, 0.8));
    border-radius: 24px 24px 0 0;
}

/* Hover effects - Dark Theme */
.mu-pricing-card:hover {
    transform: translateY(-20px) scale(1.02) rotateY(3deg);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 0 80px rgba(62, 100, 222, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Badges */
.mu-pricing-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
    z-index: 10;
    transform: rotate(1deg);
    transition: all 0.3s ease;
}

.mu-pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 0;
}

.mu-pricing-badge-popular {
    background: #dc2626;
    color: white;
}

.mu-pricing-badge-popular::before {
    border-color: transparent #dc2626 transparent transparent;
}

.mu-pricing-badge-best {
    background: #059669;
    color: white;
}

.mu-pricing-badge-best::before {
    border-color: transparent #059669 transparent transparent;
}

.mu-pricing-badge-enterprise {
    background: #7c3aed;
    color: white;
}

.mu-pricing-badge-enterprise::before {
    border-color: transparent #7c3aed transparent transparent;
}

/* Header Section */
.mu-pricing-header {
    padding: 20px 20px 5px 20px;
    flex: 0 0 120px;
    background: rgba(255, 255, 255, 0.05);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mu-pricing-title {
    color: white;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Content */
.mu-pricing-features {
    padding: 15px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 8px;
    overflow-y: auto;
    min-height: 300px;
    max-height: 400px;
}

.mu-pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mu-pricing-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mu-pricing-feature-icon {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    to { text-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

.mu-pricing-feature-text {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 500;
}

/* Footer - Pricing & Buttons */
.mu-pricing-options {
    padding: 20px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    border-radius: 0 0 30px 30px;
}

.mu-pricing-option {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.mu-pricing-original-price {
    color: #94a3b8;
    font-size: 16px;
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 500;
    opacity: 0.8;
}

.mu-pricing-price {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-period {
    font-size: 16px;
    font-weight: 600;
    color: #93c5fd;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.mu-pricing-button {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mu-pricing-button-premium {
    background: rgba(139, 92, 246, 0.8);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3); */
}

.mu-pricing-button-premium:hover {
    background: rgba(139, 92, 246, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4); */
    border-color: rgba(255, 255, 255, 0.3);
}

.mu-pricing-button-professional {
    background: rgba(6, 182, 212, 0.8);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3); */
}

.mu-pricing-button-professional:hover {
    background: rgba(6, 182, 212, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4); */
    border-color: rgba(255, 255, 255, 0.3);
}

.mu-pricing-button-disabled {
    background: #64748b;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mu-pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .mu-pricing-columns-3 .mu-pricing-card {
        flex: 0 0 100%;
        max-width: 400px;
    }
    
    .mu-pricing-card {
        min-height: auto;
    }
    
    .mu-pricing-features {
        min-height: 200px;
        max-height: 300px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mu-pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.mu-pricing-card:nth-child(1) { animation-delay: 0.1s; }
.mu-pricing-card:nth-child(2) { animation-delay: 0.2s; }
.mu-pricing-card:nth-child(3) { animation-delay: 0.3s; }

/* ==========================================================================
   Simple Pricing Cards (Glassmorphism Version - css.glass style)
   ========================================================================== */

.mu-pricing-simple {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: transparent;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

/* ==========================================================================
   Theme Support - Dark & Light
   ========================================================================== */

/* Dark Theme (Default) */
.mu-pricing-theme-dark {
    color: #3e64de;
}

.mu-pricing-theme-dark .mu-pricing-simple-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px 0 rgba(31, 38, 135, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mu-pricing-theme-dark .mu-pricing-simple-header h3 {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.3);
}

.mu-pricing-theme-dark .mu-pricing-simple-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.mu-pricing-theme-dark .mu-pricing-simple-feature {
    background: rgba(255, 255, 255, 0.03);
}

.mu-pricing-theme-dark .mu-pricing-simple-feature:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mu-pricing-theme-dark .mu-pricing-simple-feature span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.mu-pricing-theme-dark .mu-pricing-simple-price .price {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
}

.mu-pricing-theme-dark .mu-pricing-simple-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.mu-pricing-theme-dark .mu-pricing-simple-button {
    /* Also apply to anchor links */
    text-decoration: none;
    display: inline-block;    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mu-pricing-theme-dark .mu-pricing-simple-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 25px rgba(31, 38, 135, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Light Theme */
.mu-pricing-theme-light {
    color: #212327;
}

.mu-pricing-theme-light .mu-pricing-simple-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(62, 100, 222, 0.1);
    box-shadow: 
        0 20px 60px 0 rgba(62, 100, 222, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.mu-pricing-theme-light .mu-pricing-simple-header h3 {
    color: #212327;
    text-shadow: 
        0 2px 10px rgba(62, 100, 222, 0.1),
        0 0 30px rgba(62, 100, 222, 0.05);
}

.mu-pricing-theme-light .mu-pricing-simple-subtitle {
    color: #64748b;
}

.mu-pricing-theme-light .mu-pricing-simple-feature {
    background: rgba(62, 100, 222, 0.03);
}

.mu-pricing-theme-light .mu-pricing-simple-feature:hover {
    background: rgba(62, 100, 222, 0.08);
}

/* Custom scrollbar for light theme */
.mu-pricing-theme-light .mu-pricing-simple-features {
    scrollbar-color: rgba(62, 100, 222, 0.3) transparent;
}

.mu-pricing-theme-light .mu-pricing-simple-features::-webkit-scrollbar-thumb {
    background: rgba(62, 100, 222, 0.3);
}

.mu-pricing-theme-light .mu-pricing-simple-features::-webkit-scrollbar-thumb:hover {
    background: rgba(62, 100, 222, 0.4);
}

.mu-pricing-theme-light .mu-pricing-simple-feature span:last-child {
    color: #374151;
}

.mu-pricing-theme-light .mu-pricing-simple-price .price {
    color: #212327;
    text-shadow: 
        0 2px 10px rgba(62, 100, 222, 0.1),
        0 0 40px rgba(62, 100, 222, 0.05);
}

.mu-pricing-theme-light .mu-pricing-simple-price .period {
    color: #64748b;
}

.mu-pricing-theme-light .mu-pricing-simple-button {
    /* Also apply to anchor links */
    text-decoration: none;
    display: inline-block;    background: transparent;
    border: 2px solid #3e64de;
    color: #3e64de;
    box-shadow: 
        0 5px 20px rgba(62, 100, 222, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mu-pricing-theme-light .mu-pricing-simple-button:hover {
    background: #3e64de;
    color: #ffffff;
    box-shadow: 
        0 15px 40px rgba(62, 100, 222, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.mu-pricing-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.mu-pricing-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch; /* Make all cards equal height */
    grid-auto-rows: 1fr; /* ให้ทุก card มีความสูงเท่ากัน */
}

.mu-pricing-simple-card {
    /* Dark Theme Card */
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px 0 rgba(31, 38, 135, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* ใช้ความสูงเต็มที่ของ grid cell */
    min-height: 400px; /* Minimum height ที่น้อยลง */
}

.mu-pricing-theme-dark .mu-pricing-simple-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 80px 0 rgba(31, 38, 135, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mu-pricing-theme-light .mu-pricing-simple-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px 0 rgba(62, 100, 222, 0.15),
        inset 0 0 0 1px rgba(62, 100, 222, 0.2);
    border-color: rgba(62, 100, 222, 0.3);
}

.mu-pricing-simple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    pointer-events: none;
}

/* Header Section - Fixed Top */
.mu-pricing-theme-dark .mu-pricing-simple-header {
    flex: 0 0 120px; /* เพิ่มความสูงกลับมา */
    padding: 25px 25px 20px 25px; /* เพิ่ม padding-top */
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.mu-pricing-theme-light .mu-pricing-simple-header {
    flex: 0 0 120px; /* เพิ่มความสูงกลับมา */
    padding: 25px 25px 20px 25px; /* เพิ่ม padding-top */
    background: transparent;
    border-bottom: 1px solid rgba(62, 100, 222, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.mu-pricing-simple-header h3 {
    margin: 30px 0 15px 0;
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

/* Add package description */
.mu-pricing-simple-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 10px 0 0 0;
}

/* Content Section - Flexible Height */
.mu-pricing-simple-content {
    flex: 1 1 auto; /* ยืดหยุ่นตาม content */
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden; /* ป้องกัน content เกินขอบเขต */
}

/* Features section - remove scrollbar and use full space */
.mu-pricing-simple-features {
    flex: 1 1 auto; /* ยืดหยุ่นตาม content */
    background: transparent;
    padding: 15px 20px;
    position: relative;
    /* ลบ overflow-y และ max-height ออกเพื่อใช้พื้นที่เต็ม */
}

/* Remove scrollbar CSS */
.mu-pricing-simple-features::-webkit-scrollbar,
.mu-pricing-simple-features::-webkit-scrollbar-track,
.mu-pricing-simple-features::-webkit-scrollbar-thumb,
.mu-pricing-simple-features::-webkit-scrollbar-thumb:hover {
    display: none;
}


.mu-pricing-simple-feature {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mu-pricing-simple-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.mu-pricing-simple-feature:hover::before {
    left: 100%;
}

.mu-pricing-simple-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.mu-pricing-simple-feature span:first-child {
    color: #4ade80;
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 
        0 0 20px rgba(74, 222, 128, 0.5),
        0 0 40px rgba(74, 222, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.mu-pricing-simple-feature span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
}

/* Footer Section - Fixed Bottom */
.mu-pricing-theme-dark .mu-pricing-simple-footer {
    flex: 0 0 auto; /* Height based on content */
    padding: 25px 25px 30px 25px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
    margin-top: auto; /* ดัน footer ไปด้านล่างเสมอ */
}

.mu-pricing-theme-light .mu-pricing-simple-footer {
    flex: 0 0 auto; /* Height based on content */
    padding: 25px 25px 30px 25px;
    background: transparent;
    border-top: 1px solid rgba(62, 100, 222, 0.1);
    position: relative;
    z-index: 2;
    margin-top: auto; /* ดัน footer ไปด้านล่างเสมอ */
}

.mu-pricing-simple-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mu-pricing-simple-option {
    text-align: center;
}

.mu-pricing-simple-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mu-pricing-simple-discount .original-price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 600;
}

.mu-pricing-simple-discount .discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3); */
}

.mu-pricing-simple-price {
    margin-bottom: 18px;
}

.mu-pricing-simple-price .price {
    font-size: 24px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    display: block;
    line-height: 1.1;
    letter-spacing: -1px;
}

.mu-pricing-simple-price .period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-top: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mu-pricing-simple-button {
    /* Also apply to anchor links */
    text-decoration: none;
    display: inline-block;    /* Dark Theme Button */
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.mu-pricing-simple-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mu-pricing-simple-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.01);
    box-shadow: none;
}

.mu-pricing-simple-button:hover::before {
    left: 100%;
}

.mu-pricing-simple-button:active {
    transform: translateY(0);
}

/* Badge Styles for Simple Pricing Cards */
/* Badge Styles - Center positioned, single line text */
.mu-pricing-simple-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.5px;
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Single line text only */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.mu-pricing-simple-badge::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 12px;
    border-color: transparent;
}
/* Badge color variations based on text content */
.mu-pricing-simple-badge[data-badge="NEW"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="NEW"]::before {
    border-color: transparent #10b981 transparent transparent;
}

.mu-pricing-simple-badge[data-badge="MOST POPULAR"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="MOST POPULAR"]::before {
    border-color: transparent #ef4444 transparent transparent;
}

.mu-pricing-simple-badge[data-badge="BEST VALUE"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="BEST VALUE"]::before {
    border-color: transparent #f59e0b transparent transparent;
}

.mu-pricing-simple-badge[data-badge="ENTERPRISE"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="ENTERPRISE"]::before {
    border-color: transparent #8b5cf6 transparent transparent;
}

.mu-pricing-simple-badge[data-badge="LIMITED TIME"] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="LIMITED TIME"]::before {
    border-color: transparent #06b6d4 transparent transparent;
}

/* Hover effects for badges */
.mu-pricing-simple-badge:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.4);
}
/* Animation for badges */
@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.2); */
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.4),
            0 3px 10px rgba(0, 0, 0, 0.3);
    }
}

/* Badge Styles - Center positioned, single line text */
.mu-pricing-simple-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.5px;
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Single line text only */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
/* Badge color variations based on text content */
.mu-pricing-simple-badge[data-badge="NEW"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="NEW"]::before {
    border-color: #10b981 transparent transparent transparent;
}

.mu-pricing-simple-badge[data-badge="MOST POPULAR"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="MOST POPULAR"]::before {
    border-color: #ef4444 transparent transparent transparent;
}

.mu-pricing-simple-badge[data-badge="BEST VALUE"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="BEST VALUE"]::before {
    border-color: #f59e0b transparent transparent transparent;
}

.mu-pricing-simple-badge[data-badge="ENTERPRISE"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="ENTERPRISE"]::before {
    border-color: #8b5cf6 transparent transparent transparent;
}

.mu-pricing-simple-badge[data-badge="LIMITED TIME"] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mu-pricing-simple-badge[data-badge="LIMITED TIME"]::before {
    border-color: #06b6d4 transparent transparent transparent;
}

/* Badge icon styles for Safari compatibility */
.badge-icon {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Safari-specific fixes */
@supports (-webkit-appearance: none) {
    .badge-icon {
        font-size: 20px;
        transform: translateZ(0);
    }
    
    .mu-pricing-simple-badge {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .mu-pricing-simple-badge:hover {
        -webkit-transform: translateX(-50%) scale(1.05) translateZ(0);
        transform: translateX(-50%) scale(1.05) translateZ(0);
    }
}
