/* Pricing Page Specific Styles */

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    padding: 12px 24px;
    border-radius: 24px;
    margin-top: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.amount.custom {
    font-size: 32px;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list li strong {
    color: var(--text-primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    padding: 32px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: rgba(0, 123, 255, 0.02);
}

.table-wrapper {
    padding: 40px;
    overflow-x: auto;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
}

.features-table thead th {
    padding: 20px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(0, 123, 255, 0.2);
    background: rgba(0, 123, 255, 0.02);
}

.features-table thead th:first-child {
    text-align: left;
}

.features-table thead th.highlight {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    position: relative;
}

.features-table thead th.highlight::after {
    content: '⭐';
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 20px;
}

.features-table tbody td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: var(--text-secondary);
}

.features-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.features-table tbody td.highlight {
    background: rgba(0, 123, 255, 0.03);
    font-weight: 600;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .features-table {
        font-size: 12px;
    }
    
    .features-table thead th,
    .features-table tbody td {
        padding: 12px 8px;
    }
}
