/* Page styles for templates/comparison.html (feature comparison landing page).
   Extracted from an inline <style> block. */
.comparison-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    margin-top: 76px;
}
.comparison-table {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}
.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.comparison-table thead th {
    padding: 24px 16px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
}
.comparison-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}
.comparison-table tbody tr:last-child {
    border-bottom: none;
}
.comparison-table tbody td {
    padding: 20px 16px;
    vertical-align: middle;
}
.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
.feature-category {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feature-name {
    font-weight: 600;
    color: #2d3748;
}
.check-yes {
    color: #10b981;
    font-size: 1.5rem;
}
.check-partial {
    color: #f59e0b;
    font-size: 1.5rem;
}
.check-no {
    color: #ef4444;
    font-size: 1.5rem;
}
.platform-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 1.5rem;
}
.highlight-column {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-left: 3px solid #667eea;
    border-right: 3px solid #667eea;
}
.pricing-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}
.badge-free {
    background: #d1fae5;
    color: #065f46;
}
.badge-paid {
    background: #fee2e2;
    color: #991b1b;
}
.summary-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
.summary-card h3 {
    color: #667eea;
    margin-bottom: 16px;
}
.pros-cons {
    margin-top: 20px;
}
.pros-cons h5 {
    font-weight: 600;
    margin-bottom: 12px;
}
.pros-cons ul {
    list-style: none;
    padding: 0;
}
.pros-cons li {
    padding: 8px 0;
    display: flex;
    /* NOTE: original template had the invalid declaration `align-items-start;`
       (a no-op typo). Preserved as-is to keep this extraction behavior-identical.
       To enable the intended alignment, change to: align-items: flex-start; */
    align-items-start;
}
.pros-cons li i {
    margin-right: 8px;
    margin-top: 4px;
}
.sticky-header {
    position: sticky;
    top: 76px;
    z-index: 1020;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
