/* ==========================================================================
   Base/Pricing — Tier cards with feature lists and gradient background
   Promoted from Pricing.css
   ========================================================================== */

.pricing-section {
    background: linear-gradient(180deg, var(--section-bg-1) 0%, var(--section-bg-2) 100%);
    box-shadow: 0 4px 28px var(--primary-shadow), 0 1px 8px rgba(0,0,0,0.04);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.045em;
    line-height: 1.12;
    text-align: center;
    margin-bottom: 2.7rem;
    margin-top: 0.2rem;
    text-shadow: 0 2px 8px color-mix(in srgb, var(--section-bg-2) 20%, transparent), 0 1px 0 var(--section-bg-1), 0 0.5px 0 var(--section-bg-2), 0 0 1.5px color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-tier {
    background: linear-gradient(115deg, var(--section-bg-1) 70%, var(--section-bg-2) 100%);
    border: 1.5px solid color-mix(in srgb, var(--primary-color) 20%, white);
    border-radius: 18px;
    box-shadow: 0 4px 24px var(--primary-shadow), 0 1px 8px rgba(0,0,0,0.04);
    padding: 2.6rem 1.8rem 2.1rem 1.8rem;
    width: 320px;
    min-height: 325px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    margin-bottom: 1.2rem;
}

    .pricing-tier.featured {
        border: 2.5px solid color-mix(in srgb, var(--primary-color) 25%, white);
        box-shadow: 0 8px 36px var(--primary-shadow), 0 2px 16px rgba(0,0,0,0.06);
        z-index: 2;
        position: relative;
        background: linear-gradient(113deg, var(--section-bg-1) 65%, var(--section-bg-2) 100%);
        transform: translateY(-8px) scale(1.025);
    }

.pricing-tier-title {
    font-size: 1.22rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}

.pricing-tier-price {
    font-size: 2.18rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}

    .pricing-tier-price span {
        font-size: 1rem;
        color: color-mix(in srgb, var(--primary-color) 50%, white);
        font-weight: 400;
    }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0 0;
    text-align: left;
    width: 100%;
    display: block;
}

    .pricing-features li {
        color: var(--primary-color);
        font-size: 1.08rem;
        margin-bottom: 0.8em;
        position: relative;
        padding-left: 1.45em;
        line-height: 1.6;
    }

        .pricing-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.45em;
            width: 1.5em;
            height: 1.5em;
            background: url('/images/icons/silver-check.png') no-repeat center center/contain;
            border-radius: 50%;
            opacity: 0.92;
        }

@media (max-width: 1000px) {
    .pricing-grid {
        gap: 1.1rem;
    }

    .pricing-tier {
        width: 90vw;
        max-width: 330px;
    }
}

@media (max-width: 700px) {
    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .pricing-tier {
        width: 97vw;
        max-width: 400px;
    }
}
