:root
{
    --bgAccent: linear-gradient(135deg, #62078f 0%, #e6007e 56%, #ffb000) 100%;
    --bgBrand: radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.24), transparent 18rem), linear-gradient(135deg, #260239 0%, #62078f 58%, #e6007e 100%);
    --bgBrandLight: linear-gradient(117.37deg, #62078F 0%, #E6007E 100%);
    --bgBody: radial-gradient(circle at 12% 24%, rgba(255, 176, 0, 0.22), transparent 23rem), radial-gradient(circle at 92% 26%, rgba(230, 0, 126, 0.18), transparent 22rem), linear-gradient(180deg, #ffffff 0%, #fff7f3 55%, #ffffff 100%);
    --bgAccentLight: linear-gradient(112.74deg, rgba(98, 7, 143, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%), radial-gradient(86.74% 206.93% at 20% 20%, rgba(255, 107, 203, 0.22) 0%, rgba(255, 107, 203, 0) 26.94%);
    --bgCard: #ffffff;

    --colorMain: #171126;
    --colorMainText: #64576f;
    --colorGrey: #8a7f94;


    --fontSizeH1: clamp(34px, calc(34px + (60 - 34) * ((100vw - 768px) / (1440 - 768))), 60px);
    --fontSizeH2: clamp(30px, calc(30px + (52 - 30) * ((100vw - 768px) / (1440 - 768))), 52px);
    --fontSizeH3: clamp(20px, calc(20px + (24 - 20) * ((100vw - 768px) / (1440 - 768))), 24px);
    --fontSizeTextMain: clamp(16px, calc(16px + (18 - 16) * ((100vw - 768px) / (1440 - 768))), 18px);
    --fontSizeTextMain2: clamp(14px, calc(14px + (16 - 14) * ((100vw - 768px) / (1440 - 768))), 16px);

    --line: rgba(230, 0, 126, 0.13);
    --shadow-soft: 0 16px 48px rgba(54, 18, 82, 0.1);
    --shadow-accent: 0px 22px 55px 0px #62078F47;
    --text: #20172b;
    --hover: #62078f;
    --muted: #6d6278;
    --muted-2: #91879c;
    --radius: 34px;








    --black: #0e100f;
    --white: #fffce1;
    --s75: #bbbaa6;
    --s50: #7c7c6f;
    --s25: #42433d;
    --color-just-black: #0e100f;
    --color-surface-white: #fffce1;
    --color-grey: #191919;
    --color-grey-dark: #191919;
    --color-surface75: #bbbaa6;
    --color-surface50: #7c7c6f;
    --color-surface25: #42433d;
    --dark: var(--color-just-black);
    --light: var(--color-surface-white);
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html, body, div{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    font-family: 'Raleway Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--colorMainText);
}

html, body{
    width: 100%;
    min-width: 390px !important;
    /*height: 100vh;*/
    overflow-x: hidden;
}

main{
    padding-top: 80px;
    position: relative;
    /*top: -80px;*/
    background: var(--bgBody);
    background-repeat: no-repeat;
}

ul, li{
    list-style: none;
    margin: 0;
    padding: 0;
}

button{
    border: none;
    outline: none;
}

button,
.btn{
    background: var(--bgAccent);
    color: #fff;
    cursor: pointer;
    height: 46px;
    border-radius: 45px;
    font-family: 'Raleway ExtraBold';
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    box-shadow: 0 16px 36px rgba(98, 7, 143, 0.28);
}

button:hover,
.btn:hover{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

button.disabled,
button.disabled:hover{
    -webkit-transition: unset;
    -moz-transition: unset;
    -ms-transition: unset;
    -o-transition: unset;
    transition: unset;
    opacity: 0.5;
    cursor: default;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.btn.btn-white{
    background: #fff;
    color: var(--colorMain);
    box-shadow: 0 10px 28px rgba(54, 18, 82, 0.08);
}

.btn a{
    width: 100%;
    height: 100%;
    color:inherit;
    padding: 0 18px;
    border-radius: 45px;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.btn.btn-white a{
    border: 1px solid var(--line);
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=date],
input[type=datetime-local],
select,
textarea{
    width: 100%;
    height: 50px;
    display: block;
    border: 1px solid var(--line);
    outline: none;
    border-radius: 17px;
    padding: 0 15px;
    color: var(--text);
    font-family: inherit;
    font-size: var(--fontSizeTextMain2);
    line-height: 1;
    background: #ffffff;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    touch-action: manipulation;
}

input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
select:focus,
textarea:focus{
    border-color: rgba(98, 7, 143, 0.42);
    box-shadow: 0 0 0 4px rgba(98, 7, 143, 0.1);
    touch-action: manipulation;
}

input[type=date]{
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url('/local/templates/panel/image/svg/calendar-icon.svg') no-repeat;
    width: 24px;
    height: 24px;
    border-width: thin;
    background-size: 24px;
    cursor: pointer;
    background-position-x: right;
    background-position-y: center;
}

textarea{
    padding: 15px;
    min-height: 130px;
}

textarea{
    resize: vertical;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

textarea::-webkit-scrollbar {
    width: 0;
    height: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    font-size: var(--fontSizeTextMain2);
    line-height: 1;
    color: var(--colorMainText);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder{
    opacity: 0;
}

input::-moz-placeholder,
textarea::-moz-placeholder{
    font-size: var(--fontSizeTextMain2);
    line-height: 1;
    color: var(--colorMainText);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder{
    opacity: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder{
    font-size: var(--fontSizeTextMain2);
    line-height: 1;
    color: var(--colorMainText);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder{
    opacity: 0;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
    font-size: var(--fontSizeTextMain2);
    line-height: 1;
    color: var(--colorMainText);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder{
    opacity: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    transition: background-color 99999s ease-in-out 0s !important;
}

a{
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: inherit;
}

b{
    font-family: 'Raleway Regular';
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway ExtraBold';
    font-weight: 900;
    margin-top: 0;
    color: var(--colorMain);
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}

.d-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.d-flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.d-flex-left{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.d-flex-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.d-flex-left-start{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.trs{
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.container{
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

.section{
    padding: 90px 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3{
    font-family: 'Raleway ExtraBold';
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--colorMain);
}

h1.white,
.h1-white,
h2.white,
.h2-white,
h3.white,
.h3-white{
    color: #fff;
}

h1,
.h1{
    font-size: var(--fontSizeH1);
}

h2,
.h2{
    font-size: var(--fontSizeH2);
}

h3,
.h3{
    font-size: var(--fontSizeH3);
}

.text-main,
.text-main-2{
    line-height: 1.5;
    color: var(--colorMainText);
}

.text-main{
    font-size: var(--fontSizeTextMain);
}

.text-main-2{
    font-size: var(--fontSizeTextMain2);
}

.grid-col-2{
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}

.grid-col-2 .grid-span-2{
    grid-column: span 2;
}

.grid-col-3{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
}

.grid-col-12{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
}

.grid-col-12 .grid-span-4{
    grid-column: span 4;
}

.grid-col-12 .grid-span-6{
    grid-column: span 6;
}

.grid-col-12 .grid-span-12{
    grid-column: span 12;
}

.doc-block > *:not(h1, .h1, h2, .h2, h3, .h3){
    font-family: inherit;
}

.doc-block strong{
    font-family: 'Raleway Extrabold';
}

.doc-block-wrap{
    margin-top: 60px;
}

.doc-block-section{
    margin-bottom: 52px;
}

.doc-block-section h2,
.doc-block-section-item{
    margin-bottom: 32px;
}

.doc-block-section-item:last-child{
    margin-bottom: 0;
}

.doc-block-section-item h3{
    margin-bottom: 24px;
}

.doc-block-section-item > div{
    margin-bottom: 16px;
}

.doc-block-section-item > div:last-child{
    margin-bottom: 0;
}

.doc-block-section-item-text ul{
    margin: 12px 0;
}

.doc-block-section-item-text ul li{
    list-style: inside;
}

/*для фиксации подвала на дне страницы - начало*/
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*   height: 100vh;*/
}

footer{
    margin-top: auto;
}
/*для фиксации подвала на дне страницы - конец*/


/* ИКОНКИ - начало */

[class*='snova-icons-']:before {
    display: inline-block;
    font-family: 'snova-icons';
    font-size: 14px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #37474F;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 300ms;
    -moz-transition: color 300ms;
    -ms-transition: color 300ms;
    -o-transition: color 300ms;
    transition: color 300ms;
}
.snova-icons-phone:before {content: "\e900";}
.snova-icons-delete:before {content: "\e901";}
.snova-icons-hands-clap:before {content: "\e902";}
.snova-icons-user:before {content: "\e903";}
.snova-icons-home:before {content: "\e904";}
.snova-icons-paint-brush:before {content: "\e905";}
.snova-icons-stack:before {content: "\e906";}
.snova-icons-crown:before {content: "\e907";}
.snova-icons-rocket:before {content: "\e908";}
.snova-icons-lightbulb:before {content: "\e909";}
.snova-icons-alarm:before {content: "\e90a";}
.snova-icons-cross-circle:before {content: "\e90b";}
.snova-icons-plus-circle:before {content: "\e90c";}
.snova-icons-print:before {content: "\e90d";}
.snova-icons-arrow-right:before {content: "\e90e";}
.snova-icons-dots-vertical:before {content: "\e90f";}
.snova-icons-sign-in:before {content: "\e910";}
.snova-icons-details:before {content: "\e911";}
.snova-icons-wallet:before {content: "\e912";}
.snova-icons-share:before {content: "\e913";}
.snova-icons-book-open:before {content: "\e914";}
.snova-icons-cross:before {content: "\e915";}
.snova-icons-widget:before {content: "\e916";}
.snova-icons-notebook:before {content: "\e917";}
.snova-icons-clipboard:before {content: "\e918";}
.snova-icons-trophy:before {content: "\e919";}
.snova-icons-puzzle:before {content: "\e91a";}
.snova-icons-fav:before {content: "\e91b";}
.snova-icons-paperclip:before {content: "\e91c";}
.snova-icons-list:before {content: "\e91d";}
.snova-icons-list-bullets:before {content: "\e91e";}
.snova-icons-file:before {content: "\e91f";}
.snova-icons-question:before {content: "\e920";}
.snova-icons-ringing:before {content: "\e921";}
.snova-icons-cards:before {content: "\e922";}
.snova-icons-cloud-check:before {content: "\e923";}
.snova-icons-cloud-up:before {content: "\e924";}
.snova-icons-cloud-down:before {content: "\e925";}
.snova-icons-lightning:before {content: "\e926";}
.snova-icons-search:before {content: "\e927";}
.snova-icons-warning:before {content: "\e928";}
.snova-icons-key:before {content: "\e929";}
.snova-icons-info:before {content: "\e92a";}
.snova-icons-settings:before {content: "\e92b";}
.snova-icons-profile:before {content: "\e92c";}
.snova-icons-users:before {content: "\e92d";}
.snova-icons-squares:before {content: "\e92e";}
.snova-icons-arrow-light:before {content: "\e92f";}
.snova-icons-check:before {content: "\e930";}
.snova-icons-calendar:before {content: "\e931";}
.snova-icons-case:before {content: "\e932";}
.snova-icons-support:before {content: "\e933";}
.snova-icons-chart-line:before {content: "\e934";}
.snova-icons-minus:before {content: "\e935";}
.snova-icons-plus:before {content: "\e936";}
.snova-icons-graph:before {content: "\e937";}
.snova-icons-chart-pie:before {content: "\e938";}
.snova-icons-mail:before {content: "\e939";}
.snova-icons-location:before {content: "\e93a";}
.snova-icons-download:before {content: "\e93b";}
.snova-icons-directory:before {content: "\e93c";}
.snova-icons-home-page:before {content: "\e93d";}
.snova-icons-eye:before {content: "\e93e";}
.snova-icons-eye-close:before {content: "\e93f";}
.snova-icons-handshake:before {content: "\e940";}
.snova-icons-pencil:before {content: "\e941";}
.snova-icons-database:before {content: "\e942";}
.snova-icons-user-circle-plus:before {content: "\e943";}
.snova-icons-smile:before {content: "\e944";}
.snova-icons-orders:before {content: "\e945";}
.snova-icons-basket:before {content: "\e946";}
.snova-icons-user-minus:before {content: "\e947";}
.snova-icons-smile-sad:before {content: "\e948";}
.snova-icons-lead-out:before {content: "\e949";}
.snova-icons-text:before {content: "\e94a";}
.snova-icons-event:before {content: "\e94b";}
.snova-icons-calendar-check:before {content: "\e94c";}
.snova-icons-globe:before {content: "\e94d";}
.snova-icons-email-mail:before {content: "\e94e";}
.snova-icons-email:before {content: "\e94f";}
.snova-icons-infinity:before {content: "\e950";}
.snova-icons-target:before {content: "\e951";}
.snova-icons-layout:before {content: "\e952";}
.snova-icons-gift:before {content: "\e953";}
.snova-icons-handbag:before {content: "\e954";}
.snova-icons-shield-check:before {content: "\e955";}
.snova-icons-shield-warning:before {content: "\e956";}


/* ИКОНКИ - конец */


/*---- универсальные блоки - начало ----*/

.reveal{
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.logo a{
    align-items: center;
    gap: 12px;
}

.logo a i{
    width: 42px;
    height: 42px;
    background: url('/logo.png') no-repeat;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center;
}

.logo a span{
    font-weight: 900;
    font-family: 'Raleway ExtraBold';
    color: var(--colorMain);
    font-size: 22px;
    line-height: 1;
}

.check-list li{
    justify-content: flex-start;
    line-height: 1;
    margin-bottom: 12px;
    gap: 10px;
}

.check-list li:last-child{
    margin-bottom: 0;
}

.check-list li i{
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #20c997, #54e9b8);
    border-radius: 4px;
}

.check-list li i:before{
    color: #ffffff;
    font-size: 12px;
}

.check-list li span{
    font-family: 'Raleway ExtraBold';
    font-size: 15px;
}

.copy-text > div{
    color: var(--muted-2);
    font-size: 13px;
}

.form-field{
    position: relative;
}

.form-field-title{
    display: block;
    font-family: 'Raleway ExtraBold';
    font-size: 14px;
    line-height: 16px;
    position: relative;
    color: var(--colorMainText);
    margin-bottom: 8px;
}

.required .form-field-title span{
    position: relative;
}

.required .form-field-title span:before{
    content: '*';
    font-size: 20px;
    line-height: 16px;
    display: block;
    position: absolute;
    left: calc(100% + 3px);
    top: 0;
}

.form-field span.snova-input-desc-error{
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Raleway Regular';
    color: red;
    font-size: 12px;
    line-height: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.form-field input.snova-invalid + span.snova-input-desc-error{
    opacity: 1;
}

.form-field input.snova-invalid{
    border: 1px solid red;
}

.form-field input.snova-invalid:focus{
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
}

.policy-block{
    position: relative;
}

.input-checkbox{
    width: 18px;
    height: 18px;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.label-checkbox{
    position: relative;
    justify-content: flex-start;
    cursor: pointer;
}

input.input-checkbox + .label-checkbox:before{
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
    border: 1.3px solid var(--hover);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
}

input.input-checkbox + .label-checkbox:after{
    content: "\e930";
    width: 10px;
    height: 10px;
    display: block;
    font-family: 'snova-icons';
    font-size: 10px;
    line-height: 1;
    color: #ffffff;
    position: absolute;
    left: 4px;
    top: 4px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

input.input-checkbox:checked + .label-checkbox:before{
    background: var(--hover);
}

input.input-checkbox:checked + .label-checkbox:after{
    z-index: 2;
    opacity: 1;
}

.label-checkbox > span{
    padding: 0 0 0 26px;
    line-height: 18px;
    font-size: 14px ;
}

.label-checkbox a:hover{
    background: var(--bgAccent);
    color: transparent;
    background-clip: text;
}

.base-style-block{
    border-radius: var(--radius);
    background: var(--bgCard);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    padding: 34px;
}

.section-tag{
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Raleway ExtraBold';
    background: linear-gradient(
            to right,
            #62078f 20%,
            #e6007e 30%,
            #ffb000 70%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: flow 5s ease-in-out infinite alternate;
}

@keyframes flow {
    from { background-position: 0 50%; }
    to { background-position: 100% 50%; }
}

.section-header{
    width: 100%;
    max-width: 780px;
    margin-bottom: 36px;
}

.section-header h2{
    margin-bottom: 20px;
}

.item-multi-grid h3{
    margin-bottom: 10px;
}

.item-multi-grid-icon{
    width: 54px;
    height: 54px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(98, 7, 143, 0.12) 0%, rgba(255, 107, 203, 0.14) 100%);
    margin-bottom: 18px;
}

.item-multi-grid-icon i{
    width: 34px;
    height: 34px;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.item-multi-grid-icon i:before{
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px; /* вместо contain */
    image-rendering: crisp-edges; /* для Firefox */
    image-rendering: pixelated;   /* для Chrome */
    image-rendering: crisp-edges; /* общее свойство */
}

.item-multi-grid-icon.email i:before{
    background-image: url('/local/templates/public/image/icons/email-icon.png');
}

.item-multi-grid-icon.trigger i:before{
    background-image: url('/local/templates/public/image/icons/trigger-icon.png');
}

.item-multi-grid-icon.constructor i:before{
    background-image: url('/local/templates/public/image/icons/constructor-icon.png');
}

.item-multi-grid-icon.subscribers i:before{
    background-image: url('/local/templates/public/image/icons/subscribers-icon.png');
}

.item-multi-grid-icon.chart i:before{
    background-image: url('/local/templates/public/image/icons/chart-icon.png');
}

.item-multi-grid-icon.magnet i:before{
    background-image: url('/local/templates/public/image/icons/magnet-icon.png');
}

.item-multi-grid .tags-block{
    margin-top: 20px;
}

.tags-block{
    gap: 10px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.tag-block{
    height: auto;
    min-height: 30px;
    padding: 8px 10px;
    background: rgba(98, 7, 143, 0.1);
    border-radius: var(--radius);
    font-size: 12px;
    line-height: 1;
    font-family: 'Raleway ExtraBold';
    color: var(--hover);
}


.item-multi-grid.d-flex-left{
    gap: 30px;
}

.item-multi-grid.d-flex-left > div:not(.widget-preview){
    flex: 1;
}

.widget-preview{
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--bgAccentLight);
    position: relative;
    width: 45.5%;
    height: auto;
    max-width: 585px;
    aspect-ratio: 1 / 0.425;
    min-height: 246px;
}

.widget-preview .browser-window{
    position: absolute;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    display: block;
    top: 18px;
    left: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    z-index: 2;
}

.widget-preview .browser-bar{
    height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
}

.widget-preview .browser-bar i{
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: rgba(98, 7, 143, 0.22);
}

.widget-preview .site-lines{
    padding: 18px;
}

.widget-preview .site-lines .line{
    height: 10px;
    border-radius: 999px;
    background: rgba(98, 7, 143, 0.12);
    margin-bottom: 10px;
}

.widget-preview .site-lines .line.w1{
    width: 68%;
}

.widget-preview .site-lines .line.w2{
    width: 46%;
}

.widget-preview .site-lines .line.w3{
    width: 82%;
}

.widget-preview .site-lines .line.w4{
    width: 38%;
}

.widget-preview .floating-widget{
    padding: 16px;
    background: var(--bgBrandLight);
    position: absolute;
    z-index: 3;
    width: 46.5%;
    max-width: 270px;
    aspect-ratio: 1 / 0.52;
    border-radius: 14px;
    right: 26px;
    bottom: 26px;
    box-shadow: var(--shadow-accent);
}

.widget-preview .floating-widget .title{
    width: 100%;
    color: #ffffff;
    font-family: 'Raleway ExtraBold';
    font-size: 16px;
    line-height: 1;
    margin-bottom: 8px;
}

.widget-preview .floating-widget .desc{
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.76);
}

.widget-preview .floating-widget .fake-input{
    height: 35px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/*---- универсальные блоки - конец ----*/

/*---- шапка - начало ----*/

header{
    width: 100%;
    height: 80px;
    min-height: 80px;
    /*position: sticky;*/
    position: fixed;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid var(--line);
}

.header-wrap{
    justify-content: space-between;
    gap: 20px;
}

.nav-links-container{
    height: 40px;
    align-content: center;
    position: relative;
}

.nav-links ul{
    gap: 0 24px;
}

.nav-link a{
    font-family: 'Raleway ExtraBold';
    color: var(--colorMainText);
    font-size: 14px;
}

.header-btns{
    gap: 10px;
}

.nav-links-container .blob{
    position: absolute;
    background: rgba(98, 7, 143, 0.08);
    border-radius: 44px;
    filter: blur(0px);
    height: 40px;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transition: filter 0.2s;
}

.mob-menu-btn{
    width: 46px;
    display: none;
}

.mob-menu-btn > button{
    width: 100%;
}

.mob-menu-btn i:before{
    font-size: 20px;
    color: #ffffff;
    -webkit-transition: content 0.3s;
    -moz-transition: content 0.3s;
    -ms-transition: content 0.3s;
    -o-transition: content 0.3s;
    transition: content 0.3s;
}

.mob-menu-btn >button.active i:before{
    content: "\e915";
}

/*---- шапка - конец ----*/

/*---- подвал - начало ----*/

footer{
    padding: 35px 0 45px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.52);
}

.footer-wrap{
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(auto, 250px));
    gap: 30px;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--line);
}

.footer-promo{
    max-width: 60%;
}

.footer-promo .text{
    font-family: 'Raleway ExtraBold';
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 16px;
}

.footer-menu .title{
    margin: 0 0 24px;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Raleway ExtraBold';
    color: var(--colorMain);
}

.footer-menu li:not(.title){
    font-family: 'Raleway ExtraBold';
    font-size: 16px;
    line-height: 1;
    margin-bottom: 16px;
}

.footer-menu li:not(.title):last-child{
    margin-bottom: 0;
}

.footer-menu li:not(.title) a{
    color: var(--muted);
}

.footer-copy .copy-text{
    gap: 30px;
}

/*---- подвал - конец ----*/

/*---- подвал - конец ----*/

.form-section-wrap{
    display: grid;
    grid-template-columns: 0.8fr 1.1fr;
    gap: 22px;
    align-items: stretch;
}

.form-section-wrap > div{
    align-content: center;
}

.form-section-desc-block{
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--bgBrand);
    box-shadow: 0 24px 80px rgba(54, 18, 82, 0.14);
}

.form-section-desc-block .title{
    margin-bottom: 24px;
}

.form-section-desc-block .desc{
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 32px;
}

.form-section-desc-block .btn{
    max-width: fit-content;
    margin-bottom: 24px;
}

.form-section-form-block{
    border-radius: var(--radius);
    background: var(--bgCard);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    padding: 34px;
}

.form-section-form-block .title{
    margin-bottom: 14px;
}

.form-section-form-block .desc{
    margin-bottom: 20px;
}

.form-section-form-block .btn{
    width: 100%;
    margin: 20px 0;
}

.form-result-block{
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(98, 7, 143, 0.12);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.form-result-popup{
    width: auto;
    height: auto;
    min-height: 200px;
    position: absolute;
    align-content: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
}

.form-result-block.active{
    z-index: 100;
    opacity: 1;
}

.form-result-popup .text{
    margin-top: 24px;
}











/*---- мобильное меню - начало ----*/

.toogle-menu{
    position: fixed;
}

.toogle-menu .container{
    padding-top: 80px;
    position: relative;
}

.toogle-menu-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    overflow: hidden;
}
.toogle-menu-nav-bg {
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 70%);
    opacity: 0;
    height: 100dvh;
}

.toogle-menu-nav-border {
    border: solid 1px var(--line);
    border-radius: 34px;
}

.toogle-menu-nav-top {
    flex: 1;
    width: 100%;
    background: #ffffff;
    color: var(--colorMain);
    transform: translateX(-201%);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: relative;
    z-index: 3;
    margin-top: 10px;
}

.toogle-menu-nav-middle {
    margin: 10px 0;
    padding: 40px 34px;
    background: var(--bgBody);
}

.toogle-menu-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    justify-content: center;
    background: linear-gradient(136.87deg, rgba(32, 201, 151, 0.12) 0%, rgba(98, 7, 143, 0.08) 100%);
    padding: 40px 34px;
}
.toogle-menu-nav-item {
    overflow: hidden;
    margin-bottom: 20px;
}

.toogle-menu-nav-item:last-child{
    margin-bottom: 0;
}

.toogle-menu-nav-link {
    display: block;
    text-decoration: none;
    color: var(--colorMain);
    font-size: var(--fontSizeH3);
    line-height: 1.1;
}

.toogle-menu-nav-middle-header{
    margin-bottom: 24px;
    color: var(--colorMain);
}

/*---- мобильное меню - конец ----*/

.activation-steps{
    display: grid;
    margin-bottom: 100px;
    gap: 16px;
}

.activation-step-number{
    font-size: 55px;
    font-family: 'Raleway ExtraBold';
    text-transform: uppercase;
    background: linear-gradient(180deg, #62078F 0%, #E6007E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.activation-step h3{
    margin-bottom: 20px;
}

@media (max-width: 1440px){

    .container{
        max-width: 1220px;
    }

    /*---- подвал - начало ----*/

    .footer-promo{
        max-width: 100%;
    }

    .footer-wrap{
        padding-bottom: 30px;
        margin-bottom: 30px;
        grid-template-columns: 1.2fr repeat(3, minmax(auto, 200px));
    }

    /*---- подвал - конец ----*/

    .form-section-wrap{
        grid-template-columns: 520px 1fr;
    }

    .form-section-form-block{
        padding: 28px;
    }

    .form-section-form-block .title{
        margin-bottom: 10px;
    }

    /*.toogle-menu-nav-panel {
        right: calc((100% - 740px)/2);
    }*/

}


@media (max-width: 1199px){

    .form-section-wrap{
        grid-template-columns: 420px 1fr;
    }

    .nav-links-container{
        display: none;
    }

    .mob-menu-btn{
        display: block;
    }
}

@media (max-width: 1024px){

    /*---- подвал - начало ----*/

    footer{
        padding: 30px 0;
    }

    .footer-wrap{
        gap: 50px 30px;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-promo{
        grid-column: span 3;
    }

    /*---- подвал - конец ----*/

    .form-section-wrap{
        grid-template-columns: auto;
    }

    /*---- универсальные блоки - начало ----*/

    .base-style-block{
        padding: 24px;
    }

    .widget-preview{
        width: 53.5%;
        max-width: 485px;
    }

    .widget-preview .floating-widget{
        width: 56%;
    }

    /*---- универсальные блоки - конец ----*/


}

@media (max-width: 768px){

    .grid-col-12{
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-col-12 .grid-span-4,
    .grid-col-12 .grid-span-6,
    .grid-col-12 .grid-span-12{
        grid-column: span 1;
    }

    /*---- универсальные блоки - начало ----*/

    .item-multi-grid.d-flex-left{
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

    .item-multi-grid.d-flex-left > div:not(.widget-preview){
        flex: unset;
    }

    .item-multi-grid.d-flex-left > div{
        width: 100%;
        max-width: unset;
    }

    .widget-preview{
        min-height: unset;
        aspect-ratio: 1 / 0.5;
    }

    .widget-preview .floating-widget{
        max-width: unset;
        aspect-ratio: 1 / 0.5;
    }

    .widget-preview .floating-widget .fake-input{
        position: absolute;
        width: calc(100% - 32px);
        bottom: 16px;
        left: 16px;
    }

    /*---- универсальные блоки - конец ----*/
}

@media (max-width: 680px){

    .section{
        padding: 50px 0;
    }



    /*---- подвал - начало ----*/

    .footer-wrap{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-promo{
        grid-column: span 2;
    }

    .footer-copy .copy-text{
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        gap: 10px;
    }


    /*---- подвал - конец ----*/
}

@media (max-width: 568px){

    .btn a{
        padding: 0 10px;
    }

    /*---- мобильное меню - начало ----*/

    .toogle-menu-nav-list,
    .toogle-menu-nav-middle{
        padding: 24px;
    }

    /*---- мобильное меню - конец ----*/


    /*---- шапка - начало ----*/

    .header-wrap{
        gap: 10px;
    }

    .header-btns .go-to-panel{
        display: none;
    }

    /*---- шапка - конец ----*/

    /*---- подвал - начало ----*/

    .footer-wrap{
        gap: 40px;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-promo{
        grid-column: span 1;
    }

    /*---- подвал - конец ----*/

    .form-section-form-block,
    .form-section-desc-block,
    .base-style-block{
        padding: 20px;
    }

    .form-fields.grid-col-2{
        grid-template-columns: repeat(1, 1fr);
    }

    .form-fields.grid-col-2 .grid-span-2{
        grid-column: span 1;
    }

    /*---- универсальные блоки - начало ----*/

    .widget-preview{
        aspect-ratio: 1 / 0.65;
    }

    .widget-preview .browser-window{
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        top: 10px;
        left: 10px;
    }

    .widget-preview .floating-widget{
        width: 100%;
        max-width: 260px;
        padding: 10px;
        aspect-ratio: unset;
        right: 20px;
        bottom: 20px;
    }

    .widget-preview .floating-widget .desc{
        font-size: 12px;
    }

    .widget-preview .floating-widget .fake-input{
        width: 100%;
        height: 24px;
        bottom: unset;
        left: unset;
        position: unset;
    }

    /*---- универсальные блоки - конец ----*/
}

@media (max-width: 410px){

    /*---- универсальные блоки - начало ----*/

    .widget-preview .floating-widget{
        max-width: 200px;
    }

    /*---- универсальные блоки - конец ----*/
}