/* Pricing Page Styles */

.pricing-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

.pricing-plans {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 2rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
}

.plan-price .period {
    color: #6b7280;
    font-size: 1.125rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    margin-top: 3rem;
}

.pricing-faq {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-list .faq-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.faq-list .faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-list .faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
}

