/* Comparison Section Styles */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
    position: relative;
}


.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    min-width: 800px;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid #34495e;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
    font-size: 0.9rem;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.uwb-row {
    background: rgba(64, 224, 208, 0.05);
    border-left: 4px solid #40E0D0;
}

.uwb-row:hover {
    background: rgba(64, 224, 208, 0.1) !important;
}

.uwb-row td:first-child {
    color: #40E0D0;
    font-weight: 700;
}

.detail {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
    margin-top: 0.25rem;
}

.comparison-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #40E0D0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

.highlight strong {
    color: #40E0D0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .comparison-section {
        padding: 3rem 1rem;
    }
    
    .comparison-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .comparison-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight {
        padding: 1rem;
    }
}