﻿.pricing {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    position: relative;
}

    .price-card.popular {
        border: 2px solid var(--primary);
        transform: scale(1.05);
        box-shadow: var(--shadow);
    }

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

    .features-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .features-list i {
        color: #10b981;
    }



/*.pricing {
    padding: 5rem 0;
}

.pricing-container {
    perspective: 1000px;*/ /* Crucial for slight tilt animations on cards */
/*}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;*/ /* Sits above hero background bleed if necessary */
/*}*/

/* Base Glassmorphism Style */
/*.glass-card {
    background: rgba(255, 255, 255, 0.03);*/ /* Extremely translucent white */
    /*backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme='dark'] .glass-card {
    background: rgba(15, 23, 42, 0.3);*/ /* Translucent base color */
    /*border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card {
    padding: 3rem 2rem;
    width: 320px;
    text-align: center;
    position: relative;
}

    .price-card:hover {
        transform: translateY(-10px) rotateX(2deg);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
    }*/

/* --- Gradient Border Card (Featured) --- */
/*.grad-border-card {
    position: relative;
    transform: scale(1.05);*/ /* Slight default scale for visual importance */
/*}*/

    /* This creates the 'border' background */
    /*.grad-border-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;*/ /* Set just outside the card */
        /*background: linear-gradient(135deg, var(--accent-color), var(--premium-color), var(--accent-color));
        background-size: 200% 200%;
        border-radius: 22px;*/ /* Match inner radius + adjustment */
        /*z-index: -1;*/ /* Place behind card content but in front of gradient-border-card::after */
        /*filter: blur(2px);
        transition: background-position 0.5s ease;
    }

    .grad-border-card:hover::before {
        background-position: 100% 100%;
    }*/

    /* Optional glowing backdrop for the border */
    /*.grad-border-card::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, var(--accent-color), var(--premium-color));
        border-radius: 25px;
        z-index: -2;
        filter: blur(15px);
        opacity: 0.3;*/ /* Subtle background glow */
    /*}*/

/* Rest of the styling remains consistent */
/*.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--text-color);
}

    .price span {
        font-size: 1rem;
        opacity: 0.6;
    }

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.price-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

    .price-card li i {
        color: var(--accent-color);
        font-size: 0.9rem;
    }

        .price-card li i.fa-xmark {
            color: #f87171;
            opacity: 0.6;
        }*/