.vrop-infra {
    background: #f7f9fd;
}
.vrop-infra__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.vrop-infra__title {
    max-width: 920px;
    margin: 0;
}
.vrop-infra__subtitle {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #8787ab;
    max-width: 780px;
    margin: 0;
}
.vrop-infra__window {
    width: 100%;
    max-width: 860px;
    margin: 20px 0 0;
    background: #fff;
    border: 1px solid #e3e9f5;
    border-radius: 16px;
    box-shadow: 0 26px 64px rgba(46,46,74,0.12);
    overflow: hidden;
}
.vrop-infra__window-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px 15px;
    background: #f8faff;
    border-bottom: 1px solid #edf1f8;
}
.vrop-infra__window-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}
.vrop-infra__dot {
    width: 9px;
    height: 9px;
    border-radius: 4.5px;
}
.vrop-infra__dot--red {
    background: #ff5f57;
}
.vrop-infra__dot--yellow {
    background: #febc2e;
}
.vrop-infra__dot--green {
    background: #28c840;
}
.vrop-infra__window-title {
    font-size: 12px;
    color: #8787ab;
    line-height: normal;
    margin-left: 8px;
}
.vrop-infra__window-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    background: #e0f5ea;
    border-radius: 99px;
    font-weight: 600;
    font-size: 11px;
    color: #149960;
    line-height: normal;
}
.vrop-infra__row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 25px 36px 26px;
    border-top: 1px solid #f1f4fa;
}
.vrop-infra__row:first-of-type {
    border-top: none;
}
.vrop-infra__row-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vrop-infra__row-icon--blue {
    background: #258bff;
}
.vrop-infra__row-icon--purple {
    background: linear-gradient(135deg, #9b7bf5 0%, #7a52ec 100%);
}
.vrop-infra__row-icon--green {
    background: linear-gradient(135deg, #3ecf8e 0%, #1fb573 100%);
}
.vrop-infra__row-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vrop-infra__row-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #474766;
    margin: 0;
}
.vrop-infra__row-text {
    font-size: 16px;
    line-height: 1.5;
    color: #8787ab;
    margin: 0;
}
.vrop-infra__row-status {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 154px;
    justify-content: flex-end;
}
.vrop-infra__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #3ecf8e;
    box-shadow: 0 0 0 3px #e0f5ea;
    flex-shrink: 0;
}
.vrop-infra__status-label {
    font-weight: 600;
    font-size: 12px;
    color: #149960;
    line-height: normal;
    white-space: nowrap;
    margin-left: 7px;
    margin-right: 18px;
}
.vrop-infra__toggle {
    width: 46px;
    height: 26px;
    border-radius: 99px;
    position: relative;
    flex-shrink: 0;
}
.vrop-infra__toggle--on {
    background: linear-gradient(135deg, #4d82ff 0%, #2b63f6 100%);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.12);
}
.vrop-infra__toggle--on::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.vrop-infra__outro {
    max-width: 740px;
    margin: 20px 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #474766;
}
.vrop-infra__outro p {
    margin: 0;
}
.vrop-infra__highlight {
    color: #258bff;
}
.vrop-infra__demo {
    display: inline-flex;
    align-items: center;
    padding: 17px 37px;
    background: #fff;
    border: 1px solid #c9d7f7;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #258bff;
    line-height: normal;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.vrop-infra__demo:hover {
    background: #f0f6ff;
    border-color: #258bff;
}

@media screen and (max-width: 1100px) {
    .vrop-infra__container {
        padding: 0 40px;
    }
    .vrop-infra__title {
        font-size: 34px;
    }
    .vrop-infra__subtitle {
        font-size: 16px;
    }
    .vrop-infra__row {
        padding: 20px 24px;
        gap: 16px;
        flex-wrap: wrap;
    }
    .vrop-infra__row-status {
        width: auto;
        margin-left: auto;
    }
    .vrop-infra__row-content {
        flex: 1;
        min-width: 200px;
    }
}
@media screen and (max-width: 750px) {
    .vrop-infra__window-badge {
        display: none;
    }
    .vrop-infra__container {
        padding: 0 16px;
        gap: 14px;
    }
    .vrop-infra__title {
        font-size: 24px;
        line-height: 1.3;
        text-align: left;
        width: 100%;
    }
    .vrop-infra__subtitle {
        font-size: 15px;
        text-align: left;
        width: 100%;
    }
    .vrop-infra__window {
        margin-top: 10px;
    }
    .vrop-infra__window-header {
        padding: 10px 14px;
        flex-wrap: wrap;
    }
    .vrop-infra__window-title {
        font-size: 11px;
    }
    .vrop-infra__row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
    }
    .vrop-infra__row-icon {
        width: 44px;
        height: 44px;
    }
    .vrop-infra__row-icon img {
        width: 18px;
        height: 18px;
    }
    .vrop-infra__row-title {
        font-size: 17px;
    }
    .vrop-infra__row-text {
        font-size: 14px;
    }
    .vrop-infra__row-status {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    .vrop-infra__outro {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        margin-top: 12px;
    }
    .vrop-infra__demo {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}
