  .pricing-section {
        background: #000000;
        min-height: calc(100vh - 60px);
        padding-top: 2rem;
    }

    .page-header {
        padding-bottom: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
    }

    .page-subtitle {
        color: #8b92a7;
        font-size: 1.1rem;
        margin: 0;
    }

    .pricing-card {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 15px 40px rgba(13, 110, 253, 0.25);
    }

    .pricing-card.featured {
        border: 2px solid #0d6efd;
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
    }

    .pricing-card.featured:hover {
        box-shadow: 0 20px 50px rgba(13, 110, 253, 0.35);
    }

    .popular-badge {
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 0 0 12px 12px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
        z-index: 1;
    }

    .pricing-header {
        padding: 2.5rem 2rem 1.5rem;
        text-align: center;
        background: linear-gradient(180deg, rgba(13, 110, 253, 0.05) 0%, transparent 100%);
    }

    .featured .pricing-header {
        padding-top: 3.5rem;
    }

    .plan-icon {
        width: 80px;
        height: 80px;
        background: rgba(13, 110, 253, 0.1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: #0d6efd;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
    }

    .pricing-card:hover .plan-icon {
        background: rgba(13, 110, 253, 0.15);
        transform: scale(1.1) rotate(5deg);
    }

    .plan-name {
        font-size: 1.8rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .plan-description {
        color: #8b92a7;
        font-size: 0.95rem;
        margin: 0;
    }

    .pricing-body {
        padding: 1.5rem 2rem 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .price-wrapper {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #2d3238;
    }

    .price {
        font-size: 3.5rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
    }

    .period {
        font-size: 1.5rem;
        color: #8b92a7;
        font-weight: 600;
    }

    .currency {
        font-size: 1.5rem;
        color: #8b92a7;
        font-weight: 600;
        margin-left: 0.25rem;
    }

    .credits-info {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .credits-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(13, 110, 253, 0.1);
        border: 1px solid rgba(13, 110, 253, 0.3);
        color: #0d6efd;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .credits-badge.pro {
        background: rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.3);
        color: #ffc107;
    }

    .credits-badge.business {
        background: rgba(25, 135, 84, 0.1);
        border-color: rgba(25, 135, 84, 0.3);
        color: #198754;
    }

    .credits-note {
        color: #8b92a7;
        font-size: 0.85rem;
        margin: 0;
    }

    .savings-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(25, 135, 84, 0.1);
        border: 1px solid rgba(25, 135, 84, 0.3);
        color: #198754;
        padding: 0.4rem 1rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 0.75rem;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
        flex: 1;
    }

    .features-list li {
        display: flex;
        align-items: center;
        padding: 0.75rem 0;
        color: #ffffff;
        font-size: 0.95rem;
    }

    .features-list li i {
        color: #198754;
        font-size: 1.1rem;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }

    .btn-buy {
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .btn-buy:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
    }

    /* FAQ Section */
    .faq-section {
        margin-top: 5rem;
        padding: 3rem 0;
        border-top: 1px solid #2d3238;
    }

    .faq-title {
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
    }

    .faq-item {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: #0d6efd;
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    }

    .faq-question {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

    .faq-question i {
        color: #0d6efd;
        font-size: 1rem;
    }

    .faq-answer {
        color: #8b92a7;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .empty-state {
        background: #1a1d23;
        border: 1px solid #2d3238;
        border-radius: 20px;
        padding: 4rem 2rem;
    }

    /* Payment Modal */
    #paymentModal .modal-content {
        background: #0a0a0a;
        border: 1px solid #2d3238;
        border-radius: 20px;
        padding: 2rem;
        position: relative;
    }

    .payment-header {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #2d3238;
    }

    .payment-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #0d6efd, #0a58ca);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        margin: 0 auto;
    }

    .payment-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .selected-plan-info {
        margin-top: 1rem;
    }

    .plan-badge {
        display: inline-block;
        background: rgba(13, 110, 253, 0.1);
        border: 1px solid rgba(13, 110, 253, 0.3);
        color: #0d6efd;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .price-display {
        margin: 1rem 0;
    }

    .price-amount {
        font-size: 3rem;
        font-weight: 700;
        color: #ffffff;
    }

    .price-currency {
        font-size: 1.5rem;
        color: #8b92a7;
        margin-left: 0.25rem;
    }

    .credits-display {
        color: #ffd700;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }

    .payment-methods {
        padding: 1.5rem 0;
    }

    .methods-title {
        color: #ffffff;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .payment-method-btn {
        width: 100%;
        background: #1a1d23;
        border: 2px solid #2d3238;
        border-radius: 12px;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .payment-method-btn:hover {
        border-color: #0d6efd;
        background: #252a31;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
    }

    .method-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .method-icon.paypal {
        background: rgba(0, 48, 135, 0.1);
        color: #0070ba;
    }

    .method-icon.card {
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
    }

    .method-icon.applepay {
        background: rgba(0, 0, 0, 0.8);
        color: #ffffff;
    }

    .method-icon.googlepay {
        background: #ffffff;
        position: relative;
    }

    .google-icon {
        font-size: 1.8rem;
        font-weight: 700;
        font-family: 'Product Sans', Arial, sans-serif;
        background: linear-gradient(
            90deg,
            #4285F4 0%,
            #4285F4 25%,
            #EA4335 25%,
            #EA4335 50%,
            #FBBC05 50%,
            #FBBC05 75%,
            #34A853 75%,
            #34A853 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .method-info {
        flex: 1;
        text-align: left;
    }

    .method-name {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.25rem;
        font-size: 1rem;
    }

    .method-description {
        color: #8b92a7;
        margin: 0;
        font-size: 0.85rem;
    }

    .method-arrow {
        color: #8b92a7;
        font-size: 1.25rem;
    }

    .security-notice {
        text-align: center;
        padding: 1rem;
        background: rgba(25, 135, 84, 0.1);
        border: 1px solid rgba(25, 135, 84, 0.3);
        border-radius: 10px;
        color: #198754;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .security-notice i {
        font-size: 1.25rem;
    }

    /* Alert Styles */
    .alert-success {
        background: rgba(25, 135, 84, 0.1);
        border: 1px solid rgba(25, 135, 84, 0.3);
        color: #198754;
        border-radius: 12px;
        padding: 1.25rem;
        font-size: 1rem;
    }

    .alert-success .btn-close {
        filter: invert(1);
    }

    .alert-danger {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.3);
        color: #dc3545;
        border-radius: 12px;
        padding: 1.25rem;
        font-size: 1rem;
    }

    .alert-danger .btn-close {
        filter: invert(1);
    }

    .alert i {
        font-size: 1.25rem;
        vertical-align: middle;
    }

    @media (max-width: 991.98px) {
        .page-title {
            font-size: 2rem;
        }

        .pricing-card {
            margin-bottom: 1.5rem;
        }
    }

    @media (max-width: 767.98px) {
        .page-title {
            font-size: 1.75rem;
        }

        .price {
            font-size: 2.5rem;
        }

        .plan-icon {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }

        .pricing-header {
            padding: 2rem 1.5rem 1rem;
        }

        .featured .pricing-header {
            padding-top: 3rem;
        }

        .pricing-body {
            padding: 1.5rem;
        }

        .faq-title {
            font-size: 1.5rem;
        }
    }