.vrop-context {
    background: #f7f9fd;
}
.vrop-context__container {
    margin: 0 auto;
    position: relative;
}
.vrop-context__title {
    max-width: 920px;
    margin: 0 auto;
}
.vrop-context__subtitle {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #8787ab;
    max-width: 780px;
    margin: 18px auto 0;
}
.vrop-context__diagram {
    position: relative;
    max-width: 1060px;
    margin: 74px auto 0;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: 196px 196px;
    gap: 70px 0;
    align-items: start;
}
.vrop-context__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.vrop-context__card {
    background: #fff;
    border: 1px solid #e7ebf4;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 20px rgba(46,46,74,0.06);
    display: flex;
    flex-direction: column;
    gap: 12.8px;
    position: relative;
    z-index: 2;
    min-height: 195px;
}
.vrop-context__card--tl {
    grid-column: 1;
    grid-row: 1;
}
.vrop-context__card--tr {
    grid-column: 3;
    grid-row: 1;
}
.vrop-context__card--bl {
    grid-column: 1;
    grid-row: 2;
}
.vrop-context__card--br {
    grid-column: 3;
    grid-row: 2;
}
.vrop-context__card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}
.vrop-context__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vrop-context__icon--blue {
    background: #258bff;
}
.vrop-context__icon--green {
    background: linear-gradient(135deg, #3ecf8e 0%, #1fb573 100%);
}
.vrop-context__icon--purple {
    background: linear-gradient(135deg, #9b7bf5 0%, #7a52ec 100%);
}
.vrop-context__icon--orange {
    background: linear-gradient(135deg, #ffa14d 0%, #f97c1b 100%);
}
.vrop-context__card-title {
    font-weight: 600;
    font-size: 21px;
    line-height: 27.3px;
    color: #474766;
}
.vrop-context__card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #8787ab;
    margin: 0;
}
.vrop-context__center {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
    z-index: 3;
}
.vrop-context__center-ring {
    width: 216px;
    height: 216px;
    border: 1px dashed rgba(185,201,236,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.vrop-context__center-ring-inner {
    width: 158px;
    height: 158px;
    border: 1px dashed #b9c9ec;
    border-radius: 50%;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vrop-context__center-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #258bff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 44px rgba(43,99,246,0.35);
}
.vrop-context__center-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 19px;
    background: #fff;
    border: 1px solid #dbe5fa;
    border-radius: 99px;
    box-shadow: 0 8px 11px rgba(46,46,74,0.08);
    font-weight: 600;
    font-size: 13.5px;
    color: #258bff;
    line-height: normal;
    margin-top: -2px;
}
.vrop-context__outro {
    max-width: 860px;
    margin: 56px auto 0;
    font-weight: 400;
    font-size: 19px;
    line-height: 29.45px;
    text-align: center;
    color: #474766;
}

@media screen and (max-width: 1100px) {
    .vrop-context__container {
        padding: 0 40px;
    }
    .vrop-context__title {
        font-size: 34px;
    }
    .vrop-context__subtitle {
        font-size: 16px;
    }
    .vrop-context__diagram {
        grid-template-columns: 1fr 170px 1fr;
        margin-top: 50px;
    }
    .vrop-context__center-ring {
        width: 180px;
        height: 130px;
    }
    .vrop-context__center-ring-inner {
        width: 130px;
        height: 130px;
    }
    .vrop-context__center-icon {
        width: 80px;
        height: 80px;
    }
    .vrop-context__center-icon svg {
        width: 32px;
        height: 32px;
    }
}
@media screen and (max-width: 750px) {
    .vrop-context__diagram {
        display: flex;
        flex-direction: column;
    }
    .vrop-context__container {
        padding: 0 16px;
    }
    .vrop-context__title {
        font-size: 24px;
        line-height: 1.3;
        text-align: left;
    }
    .vrop-context__subtitle {
        text-align: left;
        margin: 12px auto 0;
    }
    .vrop-context__diagram {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 16px;
        margin-top: 32px;
    }
    .vrop-context__card--tl,
    .vrop-context__card--tr,
    .vrop-context__card--bl,
    .vrop-context__card--br {
        grid-column: 1;
        grid-row: auto;
    }
    .vrop-context__card--tl { grid-row: 1; }
    .vrop-context__card--tr { grid-row: 2; }
    .vrop-context__center {
        display: none;
    }
    .vrop-context__card--bl { grid-row: 4; }
    .vrop-context__card--br { grid-row: 5; }
    .vrop-context__lines {
        display: none;
    }
    .vrop-context__card {
        padding: 24px;
        min-height: unset;
        width: 100%;
    }
    .vrop-context__card--br {
        padding-bottom: 24px;
    }
    .vrop-context__card-title {
        font-size: 18px;
    }
    .vrop-context__card-text {
        font-size: 15px;
    }
    .vrop-context__outro {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        margin-top: 24px;
    }
    .vrop-context__center-ring {
        width: 160px;
        height: 160px;
    }
    .vrop-context__center-ring-inner {
        width: 116px;
        height: 116px;
    }
    .vrop-context__center-icon {
        width: 70px;
        height: 70px;
    }
}
