.pricing {
    margin-top: 60px;
    padding-top: 40px;
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
}

.pricing p.subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.pricing-section {
    margin-bottom: 100px;
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.pricing-section-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.pricing-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 90%);
    border-radius: 2px;
}

.pricing-section-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    perspective: 1200px;
}

.pricing-section-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 360px;
    height: fit-content;
    padding: 0;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0) rotateX(0) rotateY(0);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 5px solid var(--primary);
}

.pricing-section-card:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(0, 0, 0, 0.05);
}

.pricing-section-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 90%);
    color: #ffffff;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg) translateZ(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.pricing-section-header {
    padding: 30px 25px;
    border-bottom: 1px solid #dfe6e9;
}

.pricing-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

.pricing-section-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.pricing-section-price-container {
    margin-bottom: 5px;
    position: relative;
}

.pricing-section-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pricing-section-currency {
    font-size: 20px;
    margin-right: 5px;
    margin-top: 8px;
}

.pricing-section-amount {
    line-height: 1;
}

.pricing-section-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: normal;
}

.pricing-section-note {
    font-size: 13px;
    color: var(--primary);
    font-style: italic;
    margin-top: 5px;
    display: block;
}

.pricing-section-body {
    padding: 30px 25px;
}

ul.pricing-section-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

ul.pricing-section-features li {
    margin: 15px 0;
    font-size: 15px;
    color: var(--dark);
    position: relative;
    padding-left: 30px;
}

ul.pricing-section-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

ul.pricing-section-features li.disabled {
    color: #b2bec3;
}

ul.pricing-section-features li.disabled:before {
    content: '\f00d';
    color: var(--danger);
}

.pricing-section-btn {
    border: none;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 90%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 5px 15px rgba(20, 126, 179, 0.3);
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pricing-section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 126, 179, 0.4);
}

.pricing-section-btn:active {
    transform: translateY(0);
}

.pricing-section-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.pricing-section-btn:hover::after {
    transform: translateX(100%);
}

.pricing-section-toggle {
    margin-bottom: 40px;
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    justify-content: center;
    width: fit-content;
    margin-bottom: 40px;
    perspective: 500px;
}

.pricing-section-toggle-btn {
    background: transparent;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-section-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 90%);
    color: white;
    box-shadow: 0 3px 10px rgba(20, 126, 179, 0.3);
    transform: rotateX(10deg);
    box-shadow: 0 5px 15px rgba(20, 126, 179, 0.3), 
                0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-section-highlight {
    border: 2px solid var(--primary);
    transform: translateZ(10px) scale(1.02);
    border-top: 5px solid var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(0, 0, 0, 0.05);
}

.pricing-section-highlight .pricing-section-btn {
    background: linear-gradient(135deg, #2dc6c6 0%, #147eb3 90%);
}

.pricing-section-highlight:hover {
    transform: translateY(-10px) translateZ(30px) scale(1.02);
}

.pricing-section-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgb(20, 126, 179), rgb(20, 126, 179));
    z-index: -1;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.pricing-section-decoration-1 {
    top: -50px;
    left: -50px;
}

.pricing-section-decoration-2 {
    bottom: -50px;
    right: -50px;
}

ul.pricing-section-features li:nth-child(1) { transition-delay: 0.05s; }
ul.pricing-section-features li:nth-child(2) { transition-delay: 0.1s; }
ul.pricing-section-features li:nth-child(3) { transition-delay: 0.15s; }
ul.pricing-section-features li:nth-child(4) { transition-delay: 0.2s; }
ul.pricing-section-features li:nth-child(5) { transition-delay: 0.25s; }

/* Enhanced Mobile Styles */
@media (max-width: 992px) {
    .pricing-section-container {
        gap: 20px;
    }
    
    .pricing-section-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .pricing {
        margin-top: 40px;
        padding-top: 20px;
    }
    
    .pricing h2 {
        font-size: 28px;
    }
    
    .pricing p.subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .pricing-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .pricing-section-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .pricing-section-card {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-section-highlight {
        transform: none;
    }
    
    .pricing-section-header {
        padding: 25px 20px;
    }
    
    .pricing-section-body {
        padding: 25px 20px;
    }
    
    .pricing-section-price {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        width: 90%;
    }
    
    .pricing h2 {
        font-size: 24px;
    }
    
    .pricing p.subtitle {
        font-size: 15px;
    }
    
    .pricing-section-title {
        font-size: 20px;
    }
    
    .pricing-section-card {
        border-radius: 15px;
    }
    
    .pricing-section-header {
        padding: 20px 15px;
    }
    
    .pricing-section-body {
        padding: 20px 15px;
    }
    
    .pricing-section-price {
        font-size: 32px;
    }
    
    .pricing-section-currency {
        font-size: 18px;
        margin-top: 6px;
    }
    
    ul.pricing-section-features li {
        font-size: 14px;
        padding-left: 25px;
    }
    
    .pricing-section-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .pricing-section-badge {
        font-size: 12px;
        padding: 6px 30px;
        right: -30px;
    }
}