
.brand-comparison {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    font-family: system-ui, -apple-system, sans-serif;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 6px 20px rgba(255, 146, 0, 0.08);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #8a8a8a;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.comparison-table {
    background: linear-gradient(180deg, #2a2a2a, #151515);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.header-cell {
    padding: 1.5rem 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-header {
    color: #fff;
    background: rgba(255, 178, 59, 0.1);
}

.ourbrand-header {
    color: #4cd964;
    background: rgba(76, 217, 100, 0.1);
}

.others-header {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.feature-cell {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.yes-cell, .no-cell {
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    margin: 0.2rem;
    min-width: 70px;
}

.yes-cell {
    background: #4cd964;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 217, 100, 0.3);
}

.no-cell {
    background: #ff6b6b;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Mobile Styles - Keep 3 columns */
@media (max-width: 768px) {
    .brand-comparison {
        padding: 20px 10px;
        min-height: auto;
    }
    
    .container {
        max-width: 100%;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .comparison-table {
        border-radius: 12px;
        margin: 0 5px;
    }
    
    .table-header {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .header-cell {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
    
    .table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .table-cell {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .feature-cell {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .yes-cell, .no-cell {
        font-size: 0.9rem;
        min-width: 50px;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .brand-comparison {
        padding: 15px 5px;
    }
    
    .main-title {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .header-cell {
        padding: 0.8rem 0.3rem;
        font-size: 0.9rem;
    }
    
    .table-cell {
        padding: 0.8rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .feature-cell {
        font-size: 0.8rem;
    }
    
    .yes-cell, .no-cell {
        font-size: 0.8rem;
        min-width: 45px;
        padding: 0.4rem 0.6rem;
    }
}
