/**
 * Pricing Page Specific Styles
 */

/* Pricing Tables */
.pricing-plan {
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Feature Comparison Table */
.feature-comparison-table {
    border-collapse: collapse;
    width: 100%;
}

.feature-comparison-table th,
.feature-comparison-table td {
    border: 1px solid #e2e8f0;
}

.feature-comparison-table th {
    background-color: #f7fafc;
}

.feature-comparison-table tr:hover {
    background-color: #f8fafc;
}

/* Section Headers */
.section-header {
    position: relative;
}

.section-header:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

/* FAQ Items */
.faq-item {
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Media queries for better mobile display */
@media (max-width: 768px) {
    .feature-comparison-table {
        font-size: 0.875rem;
    }
    
    .feature-comparison-table th,
    .feature-comparison-table td {
        padding: 0.5rem;
    }
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0 0.375rem 0 0.375rem;
}
