.comparison-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-top: 60px;
    padding: 10px;
}

.comp-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.2;
}

.comp-visuals {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
    gap: 20px;
}

.comp-img-box {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.comp-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vs-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    z-index: 2;
    border: 4px solid #fff;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.comp-row {
    display: flex;
    gap: 0;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.comp-bar {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    min-height: 50px;
}

.bar-left {
    background-color: #E16203;
    color: white;
    justify-content: flex-end;
    text-align: right;
    border-radius: 50px 0 0 50px;
    gap: 0;
}

.bar-right {
    background-color: #fff;
    color: #444;
    justify-content: flex-start;
    text-align: left;
    border: 1px solid #eee;
    border-left: none;
    border-radius: 0 50px 50px 0;
}

.icon-check, .icon-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.bar-left .icon-check {
    margin-left: 10px;
    color: #E16203;
}

.bar-right .icon-cross {
    margin-right: 10px;
    background: #000;
    color: #fff;
}

.bar-left .icon-check svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.bar-right .icon-cross svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}


@media (max-width: 1024px){
    .comparison-section {
        margin-top: 40px;
        padding: 0 10px;
    }

    .comp-visuals {
        margin-bottom: 20px;
    }

    .comp-title {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .comp-bar {
        font-size: 8px;
    }

    .bar-left {
        width: 50%;
    }

    .bar-right {
        width: 50%;
    }

    .comp-row {
        display: flex;
        gap: 0;
        width: 100%;
        justify-content: center;
    }

    .comp-list {
        padding: 0 20px;
        max-width: 300px;
    }

    .icon-check, .icon-cross {
        width: 18px;
        height: 18px;
    }
}