/* Comparison Page Styling */
.comparison-hero {
    background: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.vs-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.comparison-table-container {
    margin-top: -80px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    z-index: 10;
}

.comp-header-row {
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.comp-brand-column {
    text-align: center;
}

.comp-brand-logo {
    max-width: 60px;
    margin-bottom: 15px;
}

.comp-brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.brand-massejli {
    color: #000;
}

.brand-chatbase {
    color: #333;
}

.comp-feature-row {
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.3s;
}

.comp-feature-row:hover {
    background-color: #fcfdfe;
}

.comp-feature-name {
    font-weight: 700;
    color: #212529;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.comp-value {
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comp-value-win {
    color: #0061ff;
    font-weight: 700;
}

.comp-value-loss {
    color: #46B8DA;
}

.check-icon {
    color: #198754;
    font-size: 1.3rem;
}

.cross-icon {
    color: #dc3545;
    font-size: 1.3rem;
}

.why-massejli-winner {
    background: #e7f1ff;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.winner-badge {
    background: #0d6efd;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .comp-feature-name {
        margin-bottom: 15px;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: normal;
        padding: 0 10px;
    }

    .comp-value {
        font-size: 1rem;
    }

    .comp-header-row {
        position: sticky;
        top: 70px;
        background: white;
        z-index: 100;
        margin-top: -30px;
        padding-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-radius: 15px 15px 0 0;
    }

    .comp-brand-logo {
        height: 30px !important;
        margin-bottom: 5px;
    }

    .comp-brand-name {
        font-size: 1rem;
    }

    .comparison-table-container {
        padding: 20px 15px;
    }

    .comp-feature-row {
        padding: 25px 0;
    }
}