/* Pricing Page - Premium Minimalist Design */

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-header h1 {
    color: #1a1a1a;
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subtitle {
    color: #666;
    font-size: 1.125rem;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 0;
    padding: 50px 40px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #1a1a1a;
    border-width: 2px;
}

.pricing-card.featured:hover {
    transform: translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 6px 20px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.period {
    color: #999;
    font-size: 1rem;
    font-weight: 400;
}

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

.plan-features li {
    padding: 16px 0;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    width: 100%;
    padding: 18px 32px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    font-family: inherit;
}

.plan-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.plan-button.featured-btn {
    background: #1a1a1a;
}

.plan-button.featured-btn:hover {
    background: #333;
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 16px 20px;
    border-radius: 6px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    border: 1px solid #fcc;
    font-size: 0.9rem;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: 6px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
    border: 1px solid #c8e6c9;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 60px 24px;
    }
    
    .pricing-header h1 {
        font-size: 2.25rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}
