/* Pricing Page Specific Styles */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    border-radius: 10px 10px 0 0;
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

.pricing-description {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
}

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

.pricing-features li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background-color: var(--light-color);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--gray-light);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    font-weight: 500;
}

.featured-col {
    background-color: rgba(59, 130, 246, 0.05);
}

.comparison-table th.featured-col {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
