/* ==========================================================================
   Pricing Page Styles
   Extracted from templates/accounts/pricing.html.
   ========================================================================== */

    .pricing-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 4rem 0 3rem;
        margin-bottom: 3rem;
    }

    .billing-toggle {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .billing-toggle button {
        padding: 0.5rem 1.5rem;
        border: none;
        background: transparent;
        color: white;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .billing-toggle button.active {
        background: white;
        color: #667eea;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .pricing-card {
        border: 2px solid #e0e0e0;
        border-radius: 1rem;
        padding: 2rem;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .pricing-card:hover {
        border-color: #667eea;
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
        transform: translateY(-5px);
    }

    .pricing-card.featured {
        border-color: #667eea;
        border-width: 3px;
        position: relative;
    }

    .featured-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.875rem;
    }

    .price {
        font-size: 3rem;
        font-weight: 700;
        color: #667eea;
        margin: 1rem 0;
    }

    .price-period {
        font-size: 1rem;
        color: #6c757d;
        font-weight: 400;
    }

    .yearly-price {
        display: none;
    }

    .billing-toggle button[data-period="yearly"].active ~ .pricing-cards .yearly-price {
        display: block;
    }

    .billing-toggle button[data-period="yearly"].active ~ .pricing-cards .monthly-price {
        display: none;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
        flex-grow: 1;
    }

    .feature-list li {
        padding: 0.75rem 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .feature-list li i {
        color: #667eea;
        font-size: 1.25rem;
    }

    .btn-select-plan {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        color: white;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
    }

    .btn-select-plan:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        color: white;
    }

    .savings-badge {
        display: inline-block;
        background: #28a745;
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-left: 0.5rem;
    }
