/* Pricing Page Hero Styles */
.pricing-hero {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(102, 126, 234, 0.1));
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-color, #ff3366);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-hero-sub {
    font-size: 1.4rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    margin-bottom: 0;
    font-weight: 400;
}

.pricing-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
}

.pricing-headline {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.pricing-tagline {
    text-align: center;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* Pricing Page Custom Cards Styles */

.custom-pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.custom-pricing-card {
    position: relative;
    background: var(--bg-card, #1a1a1a);
    border: 2px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: var(--radius-lg, 16px);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color, #ff3366);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.2);
}

.custom-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color, #ff3366);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-card-image-wrapper {
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.custom-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-card-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.custom-card-plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #ffffff);
    background: linear-gradient(135deg, var(--primary-color, #ff3366), var(--secondary-color, #33ccff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-card-description {
    font-size: 0.9rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    margin: 0;
}

.custom-card-payment-selector {
    margin-bottom: 1rem;
}

.custom-card-payment-type {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary, #ffffff);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-card-payment-type:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color, #ff3366);
}

.custom-card-payment-type:focus {
    outline: none;
    border-color: var(--primary-color, #ff3366);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.custom-card-price-display {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary, #ffffff);
    line-height: 1;
}

.price-period-wrapper {
    font-size: 0.85rem;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
}

.price-period {
    display: block;
}

.price-loading {
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
    font-size: 0.9rem;
}

.price-error,
.price-placeholder {
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
    font-size: 0.9rem;
}

.custom-card-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.custom-card-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-card-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check {
    color: var(--success-color, #00ff99);
}

.feature-minus {
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
}

.feature-text {
    color: var(--text-primary, #ffffff);
    flex: 1;
}

.feature-yes .feature-text {
    color: var(--text-primary, #ffffff);
}

.feature-no .feature-text {
    color: var(--text-secondary, rgba(255, 255, 255, 0.5));
    text-decoration: line-through;
}

.custom-card-checkout-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color, #ff3366), var(--secondary-color, #33ccff));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-card-checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
}

.custom-card-checkout-btn:active:not(:disabled) {
    transform: translateY(0);
}

.custom-card-checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Comparison Table */
.comparison-table-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    margin-top: 4rem;
}

.comparison-table-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color, #ff3366), var(--secondary-color, #33ccff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
}

.table-dark {
    background: var(--bg-card, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.1);
}

.table-dark th {
    background: rgba(255, 51, 102, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    padding: 1rem;
}

.table-dark td {
    border-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
}

.table-dark tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-pricing-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .custom-card-plan-name {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .comparison-table-section {
        padding: 2rem 0;
        margin-top: 2rem;
    }

    .comparison-table-section h2 {
        font-size: 2rem;
    }
}

