/* Pricing Page Styles - Light Blueprint Aesthetic */

.pricing-hero {
    padding: 60px 0 30px;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 30px 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 48px 32px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-description {
    font-size: 1rem;
    margin-bottom: 32px;
    min-height: 3em;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px 80px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-hero {
        padding: 80px 20px 40px;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}