/* --- Pricing Section --- */

h3 {
    margin-bottom: 0.5rem;
}

.pricing-section {
    padding: 80px 0 25px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    min-width: 300px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.pricing-card:hover {
    /*transform: translateY(-10px);*/
    box-shadow: var(--shadow-sm);
}

.pricing-card.popular {
    border: 2px solid var(--primary-purple);
    /*transform: scale(1.05);*/
}

.popular-badge {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    background: var(--gradient-main);
    color: white;
    padding: 5px 50px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg) translateX(55px) translateY(-18px); /*rotate(45deg)*/
    transform-origin: center;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    /*margin-bottom: 1.5rem;*/
}

.price sup {
    font-size: 1.2rem;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #888;
}

.lifetime-text {
    font-size: 1rem;
    font-weight: normal;
    color: #888;
}

.pricing-card ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 0.25rem 0;
}

.text-center {
    text-align: center;
}

@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}