

/* Start:/resheniya-dlya-finsektora/style.css?17712378446290*/
.skala-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #102145;
    font-family: "TT Hoves", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.inner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 1050px;
}

.bg-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.title {
    position: absolute;
    left: 439px;
    top: 120px;
    width: 1043px;
    font-size: 56px;
    font-weight: 500;
    text-align: center;
    color: white;
    line-height: 1;
}

.text-block {
    font-size: 18px;
    line-height: 1.3;
    color: white;
}

.text-block-large {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    color: white;
}

.cyan-bold {
    color: #32cddc;
    font-weight: bold;
    letter-spacing: 0.01em;
}

.connectors-left {
    position: absolute;
    left: 633px;
    top: 403px;
    display: flex;
    flex-direction: column;
    gap: 103px;
}

.connectors-right {
    position: absolute;
    left: 1161px;
    top: 403px;
    display: flex;
    flex-direction: column;
    gap: 103px;
}

.arrow-left,
.arrow-right {
    width: 72px;
    height: 38px;
}

.product-image {
    position: absolute;
    left: 759px;
    top: 295px;
    max-width: 399px;
    max-height: 528px;
    object-fit: cover;
}

/* Десктопные абсолютные позиции */
.desktop-pos {
    position: absolute;
}

.desktop-pos-performance {
    left: 298px;
    top: 399px;
    width: 298px;
    text-align: right;
}

.desktop-pos-reliability {
    left: 305px;
    top: 536px;
    width: 291px;
    text-align: right;
}

.desktop-pos-scalability {
    left: 298px;
    top: 672px;
    width: 298px;
    text-align: right;
}

.desktop-pos-recovery {
    left: 1270px;
    top: 395px;
    width: 401px;
    text-align: left;
}

.desktop-pos-storage {
    left: 1270px;
    top: 536px;
    width: 331px;
    text-align: left;
}

.desktop-pos-compliance {
    left: 1270px;
    top: 667px;
    width: 385px;
    text-align: left;
}

.desktop-pos-bottom {
    left: 686px;
    top: 835px;
    width: 548px;
    text-align: center;
}

@media (min-width: 1640px) {
    /* Центрированные элементы (заголовок, картинка, нижний текст) */
    .title,
    .product-image,
    .desktop-pos-bottom {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Левая колонка — точные offsets от центра (центр дизайна = 960px) */
    .desktop-pos-performance,
    .desktop-pos-scalability {
        left: calc(50% - 662px);  /* 298 - 960 = -662 */
        text-align: right;
    }

    .desktop-pos-reliability {
        left: calc(50% - 655px);  /* 305 - 960 = -655 */
        text-align: right;
    }

    /* Правая колонка — все элементы начинались с left:1270px */
    .desktop-pos-recovery,
    .desktop-pos-storage,
    .desktop-pos-compliance {
        left: calc(50% + 310px);  /* 1270 - 960 = +310 */
        text-align: left;
    }

    /* Стрелки (если хотите оставить на широких экранах) */
    .connectors-left {
        left: calc(50% - 327px);  /* 633 - 960 = -327 */
        display: flex;
    }

    .connectors-right {
        left: calc(50% + 201px);  /* 1161 - 960 = +201 */
        display: flex;
    }
}

@media (max-width: 1640px) and (min-width: 1281px) {

    /* Центр — это середина блока */
    .title {
        left: 50%;
        transform: translateX(-50%);
    }

    .product-image {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Левая колонка — смещаем от центра влево */
    .desktop-pos-performance,
    .desktop-pos-reliability,
    .desktop-pos-scalability {
        left: calc(50% - 520px);
    }

    /* Правая колонка — смещаем от центра вправо */
    .desktop-pos-recovery,
    .desktop-pos-storage,
    .desktop-pos-compliance {
        left: calc(50% + 240px);
    }

    /* Нижний текст */
    .desktop-pos-bottom {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Стрелки */
    .connectors-left,
    .connectors-right {
        display: none;
    }
}

/* Адаптив ≤1280px */
@media (max-width: 1280px) {
    .inner {
        height: auto;
        padding: 60px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .title {
        position: static;
        width: 100%;
        max-width: 800px;
        font-size: 42px;
        text-align: center;
        order: 1;
        margin: 0;
    }

    .product-image {
        position: static;
        width: 100%;
        max-width: 420px;
        height: auto;
        order: 2;
        margin: 0;
    }

    .features {
        order: 3;
        width: 100%;
        max-width: 700px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .features .text-block {
        position: static;
        width: 100%;
        text-align: left; /* Выравнивание по центру */
        margin: 0;
    }

    .features .text-block-large {
        position: static;
        width: 100%;
        text-align: left; /* Уже по центру */
        margin: 0;
    }

    /* Сбрасываем десктопные позиции */
    .desktop-pos,
    .desktop-pos-performance,
    .desktop-pos-reliability,
    .desktop-pos-scalability,
    .desktop-pos-recovery,
    .desktop-pos-storage,
    .desktop-pos-compliance,
    .desktop-pos-bottom {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
    }

    .connectors-left,
    .connectors-right,
    .bg-svg {
        display: none;
    }
}

@media (max-width: 480px) {
    .inner {
        padding: 40px 20px;
        gap: 32px;
    }

    .title {
        font-size: 32px;
    }

    .text-block {
        font-size: 16px;
    }

    .text-block-large {
        font-size: 20px;
    }

    .features {
        gap: 24px;
    }
}
/* End */


/* Start:/local/templates/cbit/components/bitrix/form.result.new/default_feedback_popup/style.css?1763711454782*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/cbit/components/bitrix/form.result.new/default_feedback_popup/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.captcha-class-error iframe{
	border: 1px solid #dc3545!important;
	border-radius: 5px;
	overflow: hidden;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/cbit/components/bitrix/form.result.new/default_feedback_popup/images/icon_warn.gif);
}
/* End */


/* Start:/local/templates/cbit/components/bitrix/form.result.new/default_feedback/style.css?1763711454780*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/local/templates/cbit/components/bitrix/form.result.new/default_feedback/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}

table.form-table td
{
	padding: 15px 5px;
}

.captcha-class-error iframe{
	border: 1px solid #dc3545!important;
	border-radius: 5px;
	overflow: hidden;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/local/templates/cbit/components/bitrix/form.result.new/default_feedback/images/icon_warn.gif);
}
/* End */
/* /resheniya-dlya-finsektora/style.css?17712378446290 */
/* /local/templates/cbit/components/bitrix/form.result.new/default_feedback_popup/style.css?1763711454782 */
/* /local/templates/cbit/components/bitrix/form.result.new/default_feedback/style.css?1763711454780 */
