/* Pricing Page Styles - Stunning Redesign */
:root {
    --pricing-card-bg: rgba(15, 18, 25, 0.7);
    --pricing-border: rgba(255, 255, 255, 0.08);
    --pricing-accent: #D2F800;
    --pricing-accent-glow: rgba(210, 248, 0, 0.15);
    --pricing-premium: #FF0080;
    --pricing-premium-glow: rgba(255, 0, 128, 0.15);
}

.pricing-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.pricing-header {
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.pricing-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.pricing-header p {
    color: #94A3B8;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    perspective: 1000px;
}

.pricing-card {
    background: var(--pricing-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--pricing-border);
    border-radius: 32px;
    padding: 40px 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Specific Plan Colors */
.pricing-card.plan-free:hover {
    border-color: #94A3B8;
}

.pricing-card.plan-standard:hover {
    border-color: #D2F800;
}

.pricing-card.plan-plus:hover {
    border-color: #00D1FF;
}

.pricing-card.plan-premium:hover {
    border-color: #FF0080;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(210, 248, 0, 0.08) 0%, rgba(15, 18, 25, 0.7) 100%);
    border: 1px solid rgba(210, 248, 0, 0.3);
}

.pricing-card.featured::before {
    background: #D2F800;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D2F800;
    color: #000;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(210, 248, 0, 0.3);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.5px;
}

.card-subtitle {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 32px;
    min-height: 40px;
    line-height: 1.4;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.price-period {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 500;
}

.billing-info {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 32px;
}

.select-plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.select-plan-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.02);
}

.pricing-card.featured .select-plan-btn {
    background: #D2F800;
    color: #000;
    border: none;
}

.pricing-card.featured .select-plan-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(210, 248, 0, 0.4);
}

.pricing-card.plan-premium .select-plan-btn {
    background: linear-gradient(45deg, #FF0080, #7928CA);
    border: none;
}

.pricing-card.plan-premium .select-plan-btn:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #CBD5E1;
    line-height: 1.4;
}

.feature-check {
    color: #D2F800;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: -2px;
}

.feature-credit-highlight {
    font-weight: 800;
    color: #fff;
}

/* Ticked features (previous plans) */
.feature-item.ticked {
    color: #64748B;
}

.feature-item.ticked .feature-check {
    color: #64748B;
    opacity: 0.5;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations for cards */
.pricing-grid>div:nth-child(1) {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.pricing-grid>div:nth-child(2) {
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.pricing-grid>div:nth-child(3) {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.pricing-grid>div:nth-child(4) {
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1280px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 650px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header h1 {
        font-size: 3rem;
    }

    .pricing-page-container {
        padding: 40px 20px;
    }
}