#page-purchase {
    max-width: 100% !important;
    width: 100%;
}

.card-payment-banner {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 32px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-payment-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.card-payment-banner:hover::before {
    left: 100%;
}

.card-payment-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.card-payment-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.card-payment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-payment-icon i {
    font-size: 24px;
    color: #ffffff;
}

.card-payment-text {
    flex: 1;
    min-width: 0;
}

.card-payment-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.card-payment-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.card-payment-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.card-payment-icons i {
    font-size: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.card-payment-banner:hover .card-payment-icons i {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

.card-payment-icons i.fa-cc-visa {
    color: #1a1f71;
}

.card-payment-icons i.fa-cc-mastercard {
    color: #eb001b;
}

.card-payment-icons i.fa-cc-amex {
    color: #006fcf;
}

.card-payment-icons i.fa-cc-discover {
    color: #ff6000;
}

.card-payment-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-payment-arrow i {
    font-size: 16px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.card-payment-banner:hover .card-payment-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.card-payment-banner:hover .card-payment-arrow i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .card-payment-banner {
        padding: 20px;
        margin-bottom: 24px;
    }

    .card-payment-banner-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .card-payment-icon {
        width: 48px;
        height: 48px;
    }

    .card-payment-icon i {
        font-size: 20px;
    }

    .card-payment-title {
        font-size: 16px;
    }

    .card-payment-subtitle {
        font-size: 12px;
    }

    .card-payment-icons {
        gap: 8px;
    }

    .card-payment-icons i {
        font-size: 24px;
    }

    .card-payment-arrow {
        width: 36px;
        height: 36px;
    }

    .card-payment-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card-payment-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .card-payment-text {
        width: 100%;
    }

    .card-payment-icons {
        justify-content: center;
        width: 100%;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    /* Allow tag to overflow */
}

.pricing-card>* {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
    /* Subtle purple glow */
    transform: scale(1.05);
    z-index: 2;
}

/* Gradient Background from Top */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.75) 0%, rgba(139, 92, 246, 0.25) 70%, transparent 100%);
    border-radius: 16px;
    z-index: 0;
    pointer-events: none;
}

/* Popular Tag */
.pricing-card.featured::after {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.pricing-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
}

.pricing-features svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.pricing-card .pricing-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    margin-top: auto;
}

.pricing-card .pricing-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.pricing-card.featured .pricing-btn {
    background: var(--accent);
    color: #000;
    border: none;
}

.pricing-card.featured .pricing-btn:hover {
    filter: brightness(1.1);
}

.pricing-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}