/* PRICING PAGE ENHANCEMENTS - COMPARISON TABLE & VOLUME DISCOUNTS */

/* Comparison Table Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 900px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #1f2937;
    color: white;
    font-weight: 600;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table .feature-column {
    text-align: left;
    min-width: 280px;
}

.comparison-table .featured-column {
    background: rgba(0, 102, 255, 0.03);
    border-left: 2px solid #0066ff;
    border-right: 2px solid #0066ff;
}

.comparison-table thead .featured-column {
    background: #0066ff;
    color: white;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table .category-row {
    background: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
}

.comparison-table .category-row td {
    padding: 12px 20px;
    border-bottom: 2px solid #d1d5db;
}

.comparison-table .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #00c896;
    font-weight: 600;
    font-size: 18px;
}

.comparison-table .check.partial {
    color: #ff9500;
    font-size: 13px;
    font-weight: 500;
}

.comparison-table .cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #9ca3af;
    font-size: 18px;
    opacity: 0.5;
}

/* Volume Note Styling */
.trial-note {
    margin-top: 12px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.trial-note.volume-discount {
    background: rgba(0, 102, 255, 0.05);
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    font-size: 12px;
    line-height: 1.6;
}

.trial-note.volume-discount strong {
    color: #0066ff;
}

/* Yearly/Monthly Toggle Labels */
.yearly-only {
    display: inline;
}

.monthly-only {
    display: none;
}

body.billing-monthly .yearly-only {
    display: none;
}

body.billing-monthly .monthly-only {
    display: inline;
}

/* Disabled Feature Styling */
.plan-features .disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

/* Responsive Comparison Table */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 32px -20px 0;
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .comparison-table .feature-column {
        min-width: 200px;
        font-size: 11px;
    }
    
    .comparison-section {
        padding: 60px 0;
    }
}
