.vrop-table {
    background: #f7f9fd;
}
.vrop-table__container {
    margin: 0 auto;
    position: relative;
}
.vrop-table__blob {
    right: 20px;
    top: 105px;
}
.vrop-table__title {
    line-height: 1.12;
    letter-spacing: -1.3px;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.vrop-table__grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    border: 1px solid #e7ebf4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(46,46,74,0.08);
    margin-top: 56px;
    position: relative;
    z-index: 1;
    background: #fff;
}
.vrop-table__header {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 30px 40px 22px;
}
.vrop-table__header--left {
    background: #fff;
}
.vrop-table__header--right {
    background: linear-gradient(160deg, #eef3fd 0%, #e5edfb 100%);
}
.vrop-table__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 2px;
}
.vrop-table__header-text {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: normal;
}
.vrop-table__header-text--gray {
    color: #8787ab;
}
.vrop-table__header-text--blue {
    color: #258bff;
}
.vrop-table__cell {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 27px 40px 26px;
    min-height: 101px;
}
.vrop-table__cell--left {
    background: #fff;
    border-top: 1px solid #eef1f8;
}
.vrop-table__cell--right {
    background: linear-gradient(160deg, #eef3fd 0%, #e5edfb 100%);
    border-top: 1px solid #dde7f9;
}
.vrop-table__cell-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
}
.vrop-table__icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vrop-table__icon-wrap--gray {
    background: #f1f4fa;
}
.vrop-table__icon-wrap--blue {
    background: #258bff;
    box-shadow: 0 6px 7px rgba(43,99,246,0.25);
}
.vrop-table__cell-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.vrop-table__cell-text--muted {
    color: #62678a;
}
.vrop-table__cell-text--dark {
    color: #474766;
}
.vrop-table__vs-badge {
    position: absolute;
    left: -59px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid #dfe8fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 10px rgba(46,46,74,0.1);
    flex-shrink: 0;
}

@media screen and (max-width: 1100px) {
    .vrop-table__container {
        padding: 0 40px;
    }
    .vrop-table__title {
        font-size: 34px;
    }
    .vrop-table__grid {
        margin-top: 40px;
    }
    .vrop-table__header {
        padding: 22px 24px 18px;
    }
    .vrop-table__cell {
        padding: 20px 24px;
        min-height: auto;
    }
    .vrop-table__cell-text {
        font-size: 14px;
        line-height: 20px;
    }

    .vrop-table__cell-inner,
    .vrop-table__cell {
        gap: 16px;
    }

    .vrop-table__cell-inner {
        flex-direction: row;
    }
    .vrop-table__vs-badge {
        height: 30px;
        width: 30px;
        left: -40px;
    }
}
@media screen and (max-width: 750px) {
    .vrop-table__container {
        padding: 0 16px;
    }
    .vrop-table__title {
        font-size: 24px;
        line-height: 1.3;
        text-align: left;
        letter-spacing: -0.5px;
    }
    .vrop-table__grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
        margin-top: 32px;
    }
    .vrop-table__header--left {
        border-bottom: none;
    }
    .vrop-table__header--right {
        order: -1;
    }
    .vrop-table__cell--left {
        border-top: none;
    }
    .vrop-table__cell--left:first-of-type {
        border-top: 1px solid #eef1f8;
    }
    .vrop-table__blob {
        display: none;
    }
    .vrop-table__vs-badge {
        left: 50%;
        top: 0;
        transform: translate(-50%, -120%) rotate(90deg);
        box-shadow: none;
    }
    .vrop-table__header {
        display: none;
    }
}
