/* Pricing Container */
.pricing-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #4299e1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #4299e1;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.plan-price small {
    font-size: 1rem;
    color: #718096;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.plan-features li {
    padding: 10px 0;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    margin-right: 8px;
    color: #48bb78;
}

.plan-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4299e1, #667eea);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.plan-button.current-plan {
    background: linear-gradient(135deg, #28a745, #20c997);
    cursor: default;
}

.plan-button.disabled-plan {
    background: linear-gradient(135deg, #6c757d, #495057);
    cursor: default;
}

.plan-button.current-plan:hover,
.plan-button.disabled-plan:hover {
    transform: none;
    box-shadow: none;
}

.paypal-button-container {
    margin-top: 20px;
    min-height: 35px;
}

.free-plan {
    background: linear-gradient(135deg, #ffffff, #f7fafc);
}

.pro-plan {
    background: linear-gradient(135deg, #ffffff, #ebf8ff);
}

.business-plan {
    background: linear-gradient(135deg, #ffffff, #f0f5ff);
}

.self-hosted-plan {
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
}

.usd-price {
    font-size: 1rem;
    color: #718096;
    margin-top: 5px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 20px 16px;
        margin: 16px;
    }
    
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 16px 12px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        padding-left: 20px;
        font-size: 0.85rem;
    }
}
