
	
/* Comparison Table Styles - FIXED HEADERS */
.comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    min-width: 800px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-header {
    display: contents;
}

/* FIXED: Header cells styling - applies to ALL header cells */
.comparison-header > div {
    background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
    color: white !important;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-header > div:last-child {
    border-right: none;
}

.tool-subtitle {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.comparison-row {
    display: contents;
}

.comparison-row > div {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-row > div:last-child {
    border-right: none;
}

.comparison-row:hover > div {
    background: rgba(30, 60, 114, 0.02);
}

/* FIXED: Feature name styling - only applies to NON-header feature names */
.comparison-row .feature-name {
    text-align: left !important;
    background: rgba(30, 60, 114, 0.05) !important;
    font-weight: 600;
    color: #1e3c72 !important;
}

.comparison-row .feature-name small {
    display: block;
    font-weight: 400;
    color: #64748b !important;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* PMWaves column highlighting - only for data rows */
.comparison-row .pmwaves-col {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.08), rgba(42, 82, 152, 0.05)) !important;
    border-left: 3px solid #2a5298 !important;
}

.feature-detail {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Icon Styles */
.excellent {
    color: #10b981;
    font-size: 1.2rem;
}

.good {
    color: #3b82f6;
    font-size: 1.2rem;
}

.limited {
    color: #f59e0b;
    font-size: 1.2rem;
}

.cross {
    color: #ef4444;
    font-size: 1.2rem;
}

.coming-soon {
    color: #8b5cf6;
    font-size: 1.2rem;
}

/* Pricing Row */
.pricing-row > div {
    background: rgba(30, 60, 114, 0.02);
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Legend */
.comparison-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.08);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-legend {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .comparison-table {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem 0.5rem;
    }
}
		
