/* Comparison Section */
.comparison-section {
    padding: 6rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    font-size: 1.1rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
}

.comparison-table th.brand-col {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    width: 35%;
}

.comparison-table td {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: background 0.2s;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.cross {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0.5;
}

.vs-badge {
    display: inline-block;
    background: var(--accent-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}
