:root {
    --overflow-clip-fallback: clip;
    --color-background: #ffffff;
    --color-primary: #333333;
    --color-secondary: #888888;
    --color-tint: #0099ff;
    --color-header-bg: rgb(48, 48, 48);
    --color-header-text: rgb(255, 255, 255);
    --color-header-hover: rgb(219, 250, 84);
    --nav-hover-scale: 1.3;
    --nav-hover-transition-duration: 0.3s;
    --nav-hover-transition-timing: ease;
    --font-size-body: 16px;
    --font-size-title: 22px;
    --font-size-nav: 22px;
    --color-footer-bg: #f5f5f5;
    --color-hero-accent: rgb(218, 248, 84);
    --font-hero: "SNFBSTRD handwrite SNFBSTRD handwrite", "SNFBSTRD handwrite SNFBSTRD handwrite Placeholder", sans-serif;
    --font-size-hero: 31px;
    --btn-cta-primary-bg: #A1CC49;
    --btn-cta-primary-text: #1a1a1a;
    --btn-cta-secondary-bg: #ffffff;
    --btn-cta-secondary-text: #1a1a1a;
    --btn-cta-radius: 999px;
    --btn-cta-font-size: 16px;
    --btn-cta-icon-circle-bg: #ffffff;
    --btn-cta-hover-scale: 1.02;
    --btn-cta-active-scale: 0.98;
    --btn-cta-transition-duration: 0.2s;
    --btn-cta-transition-timing: ease-out;
}

[data-theme="dark"] {
    --color-background: #000000;
    --color-primary: #ffffff;
    --color-secondary: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "TT Hoves Regular", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: var(--font-size-body);
    color: var(--color-primary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: zoom 0.2s ease-out;
}

.header {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 18.75px;
    z-index: 1;
    border: 0;
    box-shadow: none;
    z-index: 1000;
}

.header-container {
    will-change: var(--framer-will-change-override, transform);
    z-index: 1;
    background-color: #303030;
    border-radius: 20px;
    flex-flow: row;
    flex: none;
    place-content: center;
    align-items: center;
    gap: 71px;
    width: 1342px;
    height: 71px;
    padding: 0;
    display: flex;
    position: sticky;
    top: 0;
    overflow: hidden;
    margin:0 auto;
}



.logo {
    height: 52px;
    overflow: var(--overflow-clip-fallback, clip);
    z-index: 1;
    flex: none;
    width: 107px;
    position: absolute;
    top: calc(48.8095% - 26.135px);
    left: 35px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
    fill: var(--color-primary);
    flex: none;
    width: 63px;
    height: 29px;
    text-decoration: none;
    position: absolute;
    top: calc(53.4884% - 14.585px);
    left: calc(50% - 31.605px);
}

.logo-img {
    width: 63px;
    height: 29px;
    object-fit: contain;
    image-rendering: pixelated;
}

.logo-text {
    font-size: var(--font-size-title);
    font-weight: 400;
    color: var(--color-primary);
    display: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 71px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    text-decoration-line: none;
    color:#ffffff;
    font-size: var(--font-size-nav);
    font-weight: 400;
    font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
    padding: 0;
    margin: 0;
    transition: color var(--nav-hover-transition-duration) var(--nav-hover-transition-timing),
                transform var(--nav-hover-transition-duration) var(--nav-hover-transition-timing);
    display: inline-block;
    line-height: 26.4px;
    white-space: pre;
    word-break: normal;
    overflow-wrap: normal;
    cursor: pointer;
    position: static;
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
    will-change: transform;
}

.nav-list a:hover {
    color: var(--color-header-hover);
    transform: scale(var(--nav-hover-scale));
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-header-text);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.content {
    max-width: 1440px;
    width: 100%;
    position: relative;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 18.75px;
    overflow: hidden;
}

.screen {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    flex-flow: row;
    flex: none;
    gap: 71px;
    width: 1342px;
    padding: 0;
    display: flex;
    top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.screen.screen--in-view {
    opacity: 1;
    transform: translateY(0);
}
/*screen-1 1440*/
.screen-1{
    height: 467px;
}
.screen-1-logo{
    position:absolute;
    image-rendering: pixelated;
    flex-shrink: 0;
    background-size: 264px 121px;
    background: url("../svg/screen-1.svg") no-repeat;
    height: 121px;
    width: 264px;
    top:175.5px;
    left:910.21px
}
.screen-1-left{
    flex: none;
    width: 738px;
    height: 422px;
    position: absolute;
    top: calc(50.4013% - 210.75px);
    left: 0px;
    background: url("../svg/screen-1-left.svg") center center /cover no-repeat;
}
.screen-1-right{
    flex: none;
    width: 659px;
    height: 422px;
    position: absolute;
    top: calc(50.4013% - 210.75px);
    left: 686px;
    background: url("../svg/screen-1-right.svg") center center /cover no-repeat;
}
.screen-1-hero {
    margin: 0;
    position: absolute;
    top: 89px;
    left: 29px;
    max-width: 570px;
    font-family: var(--font-hero);
    font-size: var(--font-size-hero);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-hero-accent);
    letter-spacing: 0.00em;
    transform: rotate(-1deg);
    white-space: pre-wrap;
    word-break: break-word;
}
.screen-1-text{
    position: absolute;
    width: 802.98px;
    height: 175px;
    left: 29px;
    top: 129px;
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 47.8613px;
    line-height: 58px;
    color: #FFFFFF;
}

.screen-1-cta {
    position: absolute;
    left: 29px;
    top: 351px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.screen-1-btn,
.screen-1-btn-1,
.screen-1-btn-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 15.5616px;
    gap: 15.56px;
    width: 228.02px;
    border-radius: 259.359px;
    text-decoration: none;
    transition: 0.15s ease-in-out;
    position: absolute;
    top:2.5px;
}

.screen-1-btn-1 {
    left:0px;
    border: 1px solid #DAF955;
    background: #DAF955;
}

.screen-1-btn-2 {
    left:260px;
    border: 1px solid #ffffff;
    background: #ffffff;
}

.screen-1-btn-1::before,
.screen-1-btn-2::before {
    position: absolute;
    content: "";
    display: block;
    height: 23.67px;
    width: 12.34px;
    top: 50%;
    left: 202px;
    opacity: 1;
    transform: translateY(-50%);
    background: url("../svg/arrow-up.svg") center center /contain no-repeat;
    background-size: 100% 100%;
    transition: 0.1s ease-in-out;
}

.btn-text {
    width: 195px;
    height: 20px;
    font-family: 'TT Hoves Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #313131;
    flex: none;
    order: 0;
    flex-grow: 0;
    transition: 0.15s ease-in-out;
}
/* Property 1=hover */

.screen-1-btn-1:hover {
    background: none;
    color: #DAF955;
    border: 1px solid #DAF955;
    width: 200px;
}

.screen-1-btn-1:hover::before {
    opacity: 0;
}

.screen-1-btn-1:hover .btn-text {
    color: #DAF955;
}

.screen-1-btn-2:hover {
    background: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    width: 210px;
}

.screen-1-btn-2:hover::before {
    opacity: 0;
}

.screen-1-btn-2:hover .btn-text {
    color: #ffffff;
}

.screen-1-cta-btn{
    display:none;
}

.screen-2 {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    flex-flow: row;
    flex: none;
    gap: 71px;
    width: 1342px;
    padding: 0;
    display: flex;
    top: 0;
    overflow: visible;
    z-index: 10;
    min-height: 770px;
    top: -45px;
}
.fig-1{
    position: absolute;
    width: 278px;
    height: 301px;
    left: -134px;
    top: -32px;
    transform: rotate(0deg);
    background: url("../images/fig-1.webp") center center /contain no-repeat;
    background-size: 100% 100%;
}
.fig-2{
    position: absolute;
    width: 436px;
    height: 436px;
    right: -183px;
    top: -89px;
    transform: rotate(0deg);
    background: url("../images/fig-2.webp") center center /contain no-repeat;
    background-size: 100% 100%;
}
.section-2-title{
    position: absolute;
    width: 1017.09px;
    height: 120px;
    left: calc(50% - 1017.09px/2 - 14.5px);
    top: calc(50% - 655px/2 + 8.87px);
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 34.9515px;
    line-height: 42px;
    text-align: center;
    color: #313131;
}

.section-2-title br.w1440{
    display:block;
}
.section-2-title br.w429{
    display:none;
}

.section-2-infoblock {
    position: absolute;
    width: 1342px;
    height: 513px;
    left: 0;
    top: 232px;
    background: #5278FF;
    border-radius: 46.68px;
    box-sizing: border-box;
    padding: 65px 25px 57px 51px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    overflow: hidden;
}


.section-2-infoblock-col--text {
    width: 632px;
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}


.section-2-infoblock-heading {
    width: 504px;
    margin: 0 0 27px 0;
    min-height: 76px;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 36.66px;
    line-height: 1.05;
    color: #DAF955;
    text-align: left;
}

.section-2-infoblock-text {
    width: 565px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 288px;
}


.section-2-infoblock-paragraph {
    margin: 0;
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.178;
    color: #FFFFFF;
    text-align: left;
}
.section-2-infoblock-paragraph br{
    display: none;
}



.section-2-stat-number {
    font-family: "TT Hoves DemiBold", "TT Hoves", sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 1.178;
    color: #FFFFFF;
    text-align: left;
}

.section-2-stat-desc {
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.178;
    color: #FFFFFF;
    text-align: left;
}
.section-2-stat-desc br{
    display: none;
}

.screen-3 {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    flex-flow: row;
    flex: none;
    gap: 71px;
    width: 1342px;
    padding: 0;
    display: flex;
    top: 0;
    overflow: visible;
    z-index: 30;
    min-height: 790px;
    top: -45px;
}
.fig-3{
    position: absolute;
    width: 335px;
    height: 335px;
    right: -105px;
    top: -145px;
    transform: rotate(0deg);
    background: url("../images/fig-3.avif") center center /contain no-repeat;
    background-size: 100% 100%;
}

.section-3-title {
    position: absolute;
    left: 0px;
    top: 0;
    width: 1071px;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: left;
}

.section-3-grid {
    position: absolute;
    left: 0;
    top: 73px;
    width: 1342px;
    height: 646px;
    overflow: visible;
}

.section-3-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    touch-action: pan-y;
}



.section-3-slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.section-3-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.section-3-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 516px;
    height: 590px;
    border-radius: 30px;
    min-height: 590px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Десктоп: плавная и медленная смена слайдов */
    transition: left 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-3-slide.maxsize {
    width: 2322px;
}

.section-3-slide.media {
    background: #313131;
}

.section-3-slide.sociology {
    background: #daf854;
}
.section-3-slide.telegram {
    background: #5278FF;
}
.section-3-slide.ai {
    background: #313131;
}
.section-3-slide.reputation {
    background: #FF9921;
}
.section-3-slide.maxsize {
    background: #5177ff;
}

.section-3-slide-img {
    flex-shrink: 0;
    width: 100%;
    height: 172px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-3-slide-img--media {
    position: absolute;
    top: -316px;
    left: -254px;
    width: 880px;
    height: 550px;
    background: url(../images/services-media.avif) center top / cover no-repeat;
    transform: rotate(-294deg);
    opacity: 0.5;
    z-index:1;
}

.section-3-slide-img--sociology {
    position: absolute;
    top: -276px;
    left: -80px;
    width: 594px;
    height: 594px;
    background-image: url("../images/services-sociology.avif");
    transform: rotate(-312deg);
    opacity: 0.5;
    z-index:1;
}

.section-3-slide-img--telegram {
    position: absolute;
    top: -106px;
    left: -70px;
    width: 679px;
    height: 381px;
    background-image: url("../images/services-telegram.avif");
    transform: rotate(-351deg);
    opacity: 0.6;
    z-index: 1;
}

.section-3-slide-img--ai {
    position: absolute;
    top: -240px;
    left: -24px;
    width: 541px;
    height: 541px;
    background-image: url("../images/services-ai.avif");
    transform: rotate(-307deg);
    opacity: 0.7;
    z-index: 1;
}

.section-3-slide-img--reputation {
    position: absolute;
    top: -146px;
    left: -135px;
    width: 679px;
    height: 381px;
    background-image: url("../images/services-reputation.avif");
    transform: rotate(-355deg);
    opacity: 0.6;
    z-index: 1;
}

.section-3-slide-img--maxsize {
    position: absolute;
    top: 50%;
    left: 977px;
    width: 295px;
    height: 206px;
    background: url("../images/maxsize.avif") center center / contain no-repeat;
    transform: rotate(15deg) translateY(-50%);
    opacity: 1;
    z-index: 1;
}
.section-3-slide-img--maxsize-2{
    position: absolute;
    top: 50%;
    left: 475px;
    width: 1354px;
    height: 1309px;
    background: url("../svg/round.svg") center center / contain no-repeat;
    transform: translateY(-48%);
    z-index: 5;
}
.section-3-slide-img--maxsize-3{
    z-index:10;
    width: 484px;
    height: 249px;
    position: absolute;
    top: 283px;
    left: 321px;
    background: #5177ff;
}

.section-3-slide-arrow {
    position:absolute;
    z-index: 40;
    top:25px;
    right:25px;
    width: 62px;
    height: 62px;
    cursor:pointer;
}

.section-3-slide.media .section-3-slide-arrow, 
.section-3-slide.telegram .section-3-slide-arrow,
.section-3-slide.ai .section-3-slide-arrow{
    background: url("../svg/slide-arrow-green.svg") center center /contain no-repeat;
}
.section-3-slide.sociology .section-3-slide-arrow{
    background: url("../svg/slide-arrow-black.svg") center center /contain no-repeat;
}
.section-3-slide.reputation .section-3-slide-arrow{
    background: url("../svg/slide-arrow-orange.svg") center center /contain no-repeat;
}
.section-3-slide-body {
    position:absolute;
    left: 0px;
    top: 110px;
    z-index: 10;
    flex: 1;
    padding: 24px 20px 24px 25px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-height: 0;
}
.section-3-slide-body .dot-grid{
    position: absolute;
    top:0px;
    left:25px;
    display: flex;
    flex-direction: row;
    width: 72px;
    height: 19px;
    gap: 7px;
    justify-content: space-between;
    align-items: center;
}
.section-3-slide-body .dot-grid .section-3-dot-green{
    display:block;
    width: 19px; 
    height: 19px;
    background: url("../svg/dot-green.svg") center center /contain no-repeat;
    background-size: 100% 100%;
}
.section-3-slide-body .dot-grid .section-3-dot-black{
    display:block;
    width: 19px; 
    height: 19px;
    background: url("../svg/dot-black.svg") center center /contain no-repeat;
    background-size: 100% 100%;
}
.section-3-slide-body .action{
    color: #daf854;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.05;
    width: 150px;
    position: absolute;
    top: 2px;
    left: 132px;
}
.section-3-slide-body .action::before{
    position:absolute;
    top: -2px;
    left: -23px;
    width: 19px;
    height: 19px;
    content: "";
    background:url("../svg/fire.svg") center center /contain no-repeat;
}

.section-3-slide-badge {
    margin-top:0px;
    display: inline-block;
    font-family: "TT Hoves Regular", sans-serif;
    font-size: 19px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.06em;
}

@media screen and (min-width: 1440px){
    .section-3-slide-badge.pdg36{
        margin-top:0px;
    }
}

.section-3-slide.sociology .section-3-slide-badge{
    color: #303030;
}
.section-3-slide.reputation .section-3-slide-badge{
    color: #303030;
}

.section-3-slide-new {
    display: inline-block;
    font-family: "TT Hoves DemiBold", sans-serif;
    font-size: 11px;
    color: #DAF955;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.section-3-slide-title {
    padding:10px 0px;
    font-family: 'TT Hoves Medium';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.section-3-slide.sociology .section-3-slide-title{
    color: #303030;
}
.section-3-slide.reputation .section-3-slide-title{
    color: #303030;
}

.section-3-slide-price {
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: #FFFFFF;
}

.section-3-slide.sociology .section-3-slide-price{
    color: #303030;
}
.section-3-slide.reputation .section-3-slide-price{
    color: #303030;
}

.section-3-slide-desc {
    width: 473px;
    height: 85px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.section-3-slide.sociology .section-3-slide-desc{
    color: #303030;
}
.section-3-slide.reputation .section-3-slide-desc{
    color: #303030;
}

.section-3-slide-list {
    margin: 25px 0px;
    padding: 0;
    list-style: none;
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
    font-size: 13px;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.section-3-slide-list li {
    position: relative;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 9.78514px 10px;
    min-height: 33.57px;
    width: fit-content;
    max-width: 100%;
    background: rgba(54, 54, 54, 0.1);
    border: 0.65px solid #DDFD55;
    color: #DDFD55;
    backdrop-filter: blur(7.05px);
    border-radius: 163.086px;
    flex: none;
    white-space: nowrap;
}

.section-3-slide-desc br.w1440{
    display:none;
}

.section-3-slide.sociology .section-3-slide-list li{
    background: rgba(36, 36, 36, 0.1);
    border: 0.65px solid #303030;
    color: #303030;
}
.section-3-slide.telegram .section-3-slide-list li{
    background: rgba(36, 36, 36, 0.1);
    border: 0.65px solid #ffffff;
    color: #ffffff;
}
.section-3-slide.sociology .section-3-slide-list li{
    background: rgba(36, 36, 36, 0.1);
    border: 0.65px solid #303030;
    color: #303030;
}
.section-3-slide.reputation .section-3-slide-list li{
    background: rgba(36, 36, 36, 0.1);
    border: 0.65px solid #303030;
    color: #303030;
}

.section-3-slide-bgp--maxsize{
    width: 294px;
    height: 65px;
    position: absolute;
    top: 200px;
    left: 40px;
    background: #ffffff;
    border-radius: 15px;
    z-index: 20;
}
.section-3-slide-m-maxsize{
    position:absolute;
    left:-20px;
    bottom: 0px;
    background: url("../images/m.avif") center center /cover no-repeat;
    width: 170px;
    height: 170px;
}
.section-3-slide-wm-maxsize{
    position: absolute;
    right: -22px;
    bottom: -18px;
    background: url("../images/wm.avif") center center / cover no-repeat;
    width: 211px;
    height: 211px;
}

.section-3-slide-title--maxsize{
    font-family: "Druk Wide Cyr Medium", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 288px;
    left: 40px;
    z-index: 20;
}

.section-3-slide-btn-1--maxsize, .section-3-slide-btn-2--maxsize{
    background: #dbfa54;
    border-radius: 15px;
    top: 460px;
    left:40px;
    z-index: 20;
    width: 370px;
    height: 50px;
    position: absolute;
    font-family: "Druk Wide Cyr Medium", sans-serif;
    font-size: 15px;
    text-align: center;
    line-height: 50px;
    font-weight: 500;
    color: #303030;
    transition: 0.3s ease;
    cursor:pointer;
    text-transform: uppercase;
    text-decoration: none;
}
.section-3-slide-btn-2--maxsize{
    background: #ff9920;
    left:437px;
}
.section-3-slide-btn-1--maxsize:hover{
    background: #313131;
    color: #dbfa54;
}
.section-3-slide-btn-2--maxsize:hover{
    background: #313131;
    color: #ff9920;
}

.section-3-slider-btn {
    position: absolute;
    bottom: -15px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.section-3-slider-btn:hover {
    background: #5278FF;
    transform: scale(1.08);
}

.section-3-slider-btn:active {
    transform: scale(0.96);
}

.section-3-slider-btn--prev {
    left: 50%;
    transform: translateX(-60px);
}

.section-3-slider-btn--prev:hover {
    transform: translateX(-60px) scale(1.08);
}

.section-3-slider-btn--prev:active {
    transform: translateX(-60px) scale(0.96);
}

.section-3-slider-btn--next {
    left: 50%;
    transform: translateX(12px);
}

.section-3-slider-btn--next:hover {
    transform: translateX(12px) scale(1.08);
}

.section-3-slider-btn--next:active {
    transform: translateX(12px) scale(0.96);
}

.section-3-slider-btn-icon {
    display: block;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.section-3-slider-btn--prev .section-3-slider-btn-icon {
    background-image: url("../svg/arrow-prevnext.svg");
    transform: rotate(180deg);
}

.section-3-slider-btn--next .section-3-slider-btn-icon {
    background-image: url("../svg/arrow-prevnext.svg");
    transform: rotate(0deg);
}

.section-3-slider-dots {
    display: none;
}

.section-3-slider-dot {
    display: none;
}

.section-3-cta--adaptive {
    display: none;
}
.section-3-slide-list .m429{
    display:none;
}
.section-3-slide-list .m430{
    display:block;
}


.screen-4 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 650px;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    z-index:40
}
.fig-4{
    position: absolute;
    width: 383px;
    height: 383px;
    left: -195px;
    top: -143px;
    transform: rotate(0deg);
    background: url("../images/fig-4.avif") center center /contain no-repeat;
    background-size: 100% 100%;
}

.section-4-title {
    position: absolute;
    left: 270px;
    top: 0;
    width: 1071px;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: left;
}

.section-4-grid {
    position: absolute;
    left: 0px;
    top: 95px;
    width: 1342px;
    height: 484px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 234px 234px;
    gap: 16px 24.5px;
}

.section-4-card {
    position: relative;
    width: 317px;
    min-width: 317px;
    height: 234px;
    border-radius: 0 13.54px 13.54px 13.54px;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-self: start;
    align-self: start;
    transition: transform 0.25s ease;
    transform-origin: center;
}



.section-4-card:not(.section-4-card-overlay):hover {
    transform: scale(1.07);
}

.section-4-card--blue {
    background: #5278FF;
}

.section-4-card--dark {
    background: #313131;
}

.section-4-card--tall {
    grid-row: span 2;
    height: 484px;
}

.section-4-card-overlay .section-4-card-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5) url("../images/section4-6.png") center / cover no-repeat;
    pointer-events: none;
}

.section-4-card-body-logo{
    position: absolute;
    top:50%;
    left:50%;
    transform: translateX(-50%) translateY(-50%); 
    width: 181px;
    height: 82.45px;
    background: url("../svg/screen-1.svg") center / contain no-repeat;
    background-size: 100% 100%;
}

/* Кнопки слайдера секции 4 - скрыты по умолчанию, показываются только на мобильных */
.section-4-slider-btn {
    display: none;
}

.section-4-card-overlay .section-4-card-body {
    position: relative;
    z-index: 1;
    justify-content: center;
    flex: 1;
}

.section-4-card-img {
    position: absolute;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-4-card-img--1 {
    width: 236px; height: 236px; right: -52px; top: -70px; transform: rotate(-73deg);
    background-image: url("../images/section-4-1.avif");
}
.section-4-card-img--2 {
    width: 89px; height: 177px; right: 0px; top: -25px; transform: rotate(-36deg);
    background-image: url("../images/section-4-3.avif");
}
.section-4-card-img--3 {
    width: 360px; height: 360px; left: -125px; top: -168px; transform: rotate(123deg);
    background-image: url("../images/section-4-4.avif");
}
.section-4-card-img--4 {
    width: 241px; height: 241px; right: -25px; top: -100px; transform: rotate(-15deg);
    background-image: url("../images/section-4-6.avif"); 
}
.section-4-card-img--6 {
    width: 241px; height: 241px; right: -122px; top: -57px; transform: rotate(-51deg);
    background-image: url("../images/section-4-5.avif");
}
.section-4-card-img--kp {
    width: 236px; height: 236px; right: 74px; top: -97px; transform: rotate(-120deg);
    background-image: url("../images/section-4-2.avif");
}

.section-4-card-body {
    position: relative;
    z-index: 1;
    padding: 71px 8px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.card-1-t{
    padding-top: 98px;
}
.card-2-t{
    padding-top: 138px;
}
.card-3-t{
    padding-top: 100px;
}
.card-4-t{
    padding-top: 98px;
}
.card-5-t{
    padding-top: 80px;
}
.card-6-t{
    padding-top: 80px;
}
.section-4-card--tall .section-4-card-body {
    padding-top: 200px;
}

.section-4-card-title {
    margin: 0;
    font-family: "TT Hoves Medium", "TT Hoves", sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 0.9;
    color: #FFFFFF;
    text-align: left;
    max-width: 305px;
}

.section-4-card-desc {
    margin: 0;
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.178;
    color: #FFFFFF;
    text-align: left;
}
/*.section-4-card-desc br{
    display:none;
}*/
.ms4810{
    display:block;
}
.ms4429{
    display:none;
}


.section-4-card-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4.75px 4.32px;
    height: 24.61px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.178;
    color: #313131;
    border: 0.9px solid #313131;
    border-radius: 6.48px;
    background: transparent;
}

.section-4-card--dark .section-4-card-tag {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.section-4-card-arrow {
    position: absolute;
    width: 36px;
    height: 36px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.section-4-card-arrow--black {
    transform: rotate(-45deg);
    top: 11px;
    left:11px;
    background: url("../svg/arrow-l.svg") center center /contain no-repeat;
}

.section-4-card-arrow--white {
    top: 11px;
    right:11px;
    background: url("../svg/arrow-r.svg") center center /contain no-repeat;
}

.section-4-card.section-4-card--tall-2.section-4-card--dark-2.section-4-card-overlay-2{
    display:none;
}







.screen-5 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 30px auto;
    min-height: 795px;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    z-index:50
}

.fig-5{
    position: absolute;
    width: 530px;
    height: 530px;
    right: -215px;
    top: -240px;
    transform: rotate(0deg);
    background: url("../images/fig-5.avif") center center /contain no-repeat;
    background-size: 100% 100%;
}

.section-5-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 15px;
    position: absolute;
    width: 357px;
    height: 52px;
    left: 687px;
    top: 0px;
    background: #DAF955;
    border-radius: 15px;
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #313131;
    flex: none;
    order: 0;
    flex-grow: 0;
    transition: 0.3s ease;
    cursor:pointer;
}
.section-5-btn:hover{
    background: #313131;
    color: #DAF955
}

.section-5-title {
    position: absolute;
    left: 0px;
    top: 0;
    width: 680px;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: left;
}
.section-5-grid {
    position: absolute;
    left: 0px;
    top: 95px;
    width: 1342px;
    height: 633px;
}
.section-5-slider {
    width: 100%;
    height: 100%;
    position: relative;
    touch-action: pan-y;
}
.section-5-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.section-5-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 425px;
    gap: 16px 33px;
}
.section-5-card {
    width: 424.62px;
    height: 623.88px;
    background: #2b2b2b;
    border-radius: 26.4005px;
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease;
}

.section-5-card:hover {
    transform: scale(1.03);
}

.section-5-top{
    height: 210px;
    width: 380px;
    margin:0 auto;
    border-bottom: 1.05602px solid #454545;
}
.section-5-center{
    height: 258px;
    width: 380px;
    margin:0 auto;
    border-bottom: 1.05602px solid #454545;
    padding: 13px 0px;
}
.section-5-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
}

.section-5-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-5-card-icon--target {
    width: 25px;
    height: 25px;
    background: url("../svg/signal.svg") center center /cover no-repeat;
}
.section-5-card-icon--flame{
    width: 25px;
    height: 25px;
    background: url("../svg/fire.svg") center center /cover no-repeat;
}

.section-5-card-heading-block {
    flex: 1;
    min-width: 0;
}

.section-5-card-title {
    font-family: "TT Hoves Regular", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 26px;
    line-height: 26px;
    color: #FFFFFF;
}

.section-5-card-desc {
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 17.4026px;
    line-height: 21px;
    color: #FFFFFF;
}
.ms5810{
    display:block;
}
.ms5429{
    display:none;
}

.section-5-card-did {
    margin-bottom: 8px;
}

.section-5-card-subtitle {
    font-family: "TT Hoves Regular", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 26px;
    line-height: 26px;
    color: #DAF955;
}

.section-5-card-list {
    list-style: none;
    margin: 0;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    height: 205px;
}

.section-5-card-list li {
    font-family: "TT Hoves Regular", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    color: #FFFFFF;
    margin: 0;
}

.section-5-card-results {
    width: 366px;
    margin: 0px auto;
    padding-top: 4px;
}

.section-5-card-results-title {
    font-family: 'SNFBSTRD handwrite SNFBSTRD handwrite';
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 28px;
    color: #DAF955;
}

.section-5-card-results-blocks {
    margin-top:10px;
    display: flex;
    gap: 10px;
}

.section-5-card-result-block {
    flex: 1;
    min-width: 0;
    background: #DAF955;;
    border-radius: 12.1818px;;
    padding: 6px 6px;
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4px;
}

.section-5-card-result-block .section-5-card-result-label {
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 13.0519px;
    line-height: 120%;
    color: #313131;
}

.section-5-card-result-block .section-5-card-result-value {
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 15.9841px;
    line-height: 90%;
    color: #313131;
}

.section-5-card-result-value-left{
    text-align: left;
}

.section-5-card-result-value-right{
    text-align: right;
}

.section-5-card-result-value-center{
    text-align: center;
}

.section-5-card-result-block .section-5-card-result-value strong {
    font-size: 32px;
    font-weight: 500;
    color: #313131;
}

.section-5-card-result-block--with-num {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.section-5-card-result-num {
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 51.6834px;
    line-height: 120%;
    text-align: right;
    color: #313131;
    flex-shrink: 0;
}

.section-5-card-result-block--with-num .section-5-card-result-label {
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 13.0519px;
    line-height: 120%;
}

.btn-section5{
    display:none;
}

/* Кнопки слайдера секции 5 — скрыты по умолчанию, показываются в карусели (809px и меньше) */
.section-5-slider-btn {
    display: none;
}


  


.screen-6 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 650px;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    z-index:40
}

.fig-6{
    position: absolute;
    width: 308px;
    height: 308px;
    left: -145px;
    top: -130px;
    transform: rotate(0deg);
    background: url("../images/fig-6.avif") center center /contain no-repeat;
    background-size: 100% 100%;
}

.section-6-title {
    position: absolute;
    right: 0px;
    top: 0;
    width: 1071px;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: right;
}

.section-6-grid {
    position: absolute;
    left: 0px;
    top: 95px;
    width: 1342px;
    height: 484px;
    display: grid;
    grid-template-columns: 320px 320px 657px;
    grid-template-rows: 271px 271px;
    gap: 16px 24.5px;
}

.section-6-card {
    position: relative;
    border-radius: 0 14px 14px 14px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
    transform-origin: center;
    width: 320px;
    height: 271px;
    background: url("../svg/section-6-block.svg") center center /contain no-repeat;
}

.section-6-card:hover {
    transform: scale(1.02);
}

.section-6-card--white {
    min-height: 0;
}

.section-6-card-corner {
    position:absolute;
    top:15px;
    right:15px;
    width: 36.17px;
    height: 36.17px;
}

.section-6-card-corner--calendar {
    background: url("../svg/section-6-icon-1.svg") center center /cover no-repeat;
}

.section-6-card-corner--book {
    background: url("../svg/section-6-icon-2.svg") center center /cover no-repeat;
}

.section-6-card-corner--thumb {
    background: url("../svg/section-6-icon-3.svg") center center /cover no-repeat;
}

.section-6-card-corner--pen {
    background: url("../svg/section-6-icon-4.svg") center center /cover no-repeat;
}    

.section-6-card-title {
    position: relative;
    width: 290px;
    min-height: 100px;
    padding: 15px;
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #5278FF;
}

.section-6-body{
    display: flex;
}

@media (min-width: 811px) {
    .section-6-body {
        margin-top: 0px;
        height: 150px;
        flex-direction: column;
        justify-content: space-between;
    }
}

.section-6-card-desc {
    position: relative;
    width: 300px;
    padding: 0px 15px 5px 15px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    display: flex;
    align-items: flex-start;
    color: #313131;
}
.section-6-card-desc br.w811{
    display:block;
}
.section-6-card-desc br.w810-429{
    display:none;
}
.section-6-card-desc br.w429{
    display:none;
}

.section-6-card-desc:last-of-type {
    font-family: 'TT Hoves Bold';
    font-weight: 300;
    margin-bottom: 0;
}

.section-6-card--social {
    grid-column: 3;
    grid-row: 1 / -1;
    background: url("../svg/exclude.svg") center center /contain no-repeat;
    padding: 28px 20px 20px;
    min-height: 558px;
    width: 657px;
    border-radius:25.33px;
}   

.section-6-social-bg {
    position: absolute;
    width: 923px;
    height: 923px;
    left: -576px;
    top: 50%;
    transform: translateY(-43%);
    background: url(../svg/round.svg) center center / cover no-repeat;
    background-size: 100% 100%;
}

.section-6-social-logo {
    position: absolute;
    bottom: 20px;
    left: 28px;
    width: 24px;
    height: 20px;
    background: url("../svg/fbl.svg") center center / contain no-repeat;
    opacity: 1;
}

.section-6-social-title {
    position: absolute;
    width: 334.67px;
    height: 28.51px;
    left: 27px;
    top: 91px;
    font-family: 'SNFBSTRD handwrite SNFBSTRD handwrite';
    font-style: normal;
    font-weight: 400;
    font-size: 28.3233px;
    line-height: 30px;
    color: #5278FF;
    transform: matrix(1, -0.03, 0.03, 1, 0, 0);
}
.section-6-social-subtitle{
    position: absolute;
    width: 603.81px;
    height: 57px;
    left: 27px;
    top: 126.25px;
    font-family: 'Druk Wide Cyr Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 46.7368px;
    line-height: 57px;
    color: #FFFFFF;
}

.section-6-social-desc {
    position: absolute;
    width: 522.93px;
    height: 99px;
    left: 27px;
    top: 203.63px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 27.9606px;
    line-height: 33px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.section-6-social-buttons {
    position: absolute;
    top: 350px;
    left:27px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-6-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 14px;
    background: #FFFFFF;
    color: #313131;
    border-radius: 10px;
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;  
    font-weight: 400;
    font-size: 20.1803px;
    line-height: 24px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 290px;
    height: 48px;
}

.section-6-social-btn.vk{
    width: 365px;
    height: 48px;
}

.section-6-social-btn {
    transition: 
        opacity 0.2s ease,
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-6-social-btn:hover {
    opacity: 0.9;
    transform: scale(1.05) translateY(-1px) rotate(-1.5deg);
}

.section-6-social-btn-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.section-6-social-btn-icon--telegram {
    width: 22px;
    height: 19px;
    background: url("../svg/telegram-icon.svg") center center /contain no-repeat;
}

.section-6-social-btn-icon--vk {
    width: 26px;
    height: 16px;
    background: url("../svg/vk-icon.svg") center center /contain no-repeat;
}

.section-6-social-illustration {
    position: absolute;
    right: 35px;
    bottom: 30px;
    width: 190px;
    height: 192px;
    background: url("../images/wm2.avif") center center /contain no-repeat;
    pointer-events: none;
}





.screen-7 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 40px auto;
    min-height: 300px;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    z-index:70;
    gap: 0px;
}

.section-7-title {
    margin: 0px;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: center;
}

.section-7-grid{
    position: absolute;
    left: 0px;
    top: 100px;
    width: 100%;
    height: 100px;
    display: block;
}

.section-7-slider {
    width: 100%;
    min-height: 100px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}

.section-7-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 100px;
    will-change: transform;
}

.section-7-slider-set {
    display: flex;
    flex-shrink: 0;
    width: var(--section-7-ribbon-width, 2000px);
    min-width: var(--section-7-ribbon-width, 2000px);
    box-sizing: border-box;
}

.section-7-slider-set-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.section-7-slide-wrap {
    flex: 0 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-7-slide {
    display: block;
    height: 100px;
    width: auto;
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
}


.screen-8 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 30 auto;
    min-height: 606px;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    z-index:80
}

.fig-8{
    position: absolute;
    width: 530px;
    height: 530px;
    left: -215px;
    top: -140px;
    transform: rotate(0deg);
    background: url("../images/fig-4.avif") center center /contain no-repeat;
    background-size: 100% 100%;
}
.section-8-title {
    position: absolute;
    right: 0px;
    top: 0;
    width: 1030px;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: right;
}
.section-8-grid {
    position: absolute;
    left: 0;
    top: 95px;
    width: 1342px;
    height: 465px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 309px 143px;
    gap: 16px 24px;
}

.section-8-card {
    border-radius: 26px;
    padding: 35px 20px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.section-8-card--left {
    grid-column: 1;
    grid-row: 1 / -1;
    background: #313131;
}

.section-8-card--middle-top {
    grid-column: 2;
    grid-row: 1;
    background: url("../svg/section-8-mid-top.svg") center center /contain no-repeat;
}

.section-8-card--middle-bottom {
    grid-column: 2;
    grid-row: 2;
    background: url("../svg/section-8-mid-bot.svg") center center /contain no-repeat;
    justify-content: flex-end;
}

.section-8-card--middle-bottom a{
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 600;
    font-size: 21.3992px;
    line-height: 26px;
    text-decoration: none;
    color: #FFFFFF;
}
.section-8-card--middle-bottom a:hover{
    text-decoration: underline;
}


.section-8-card--right {
    grid-column: 3;
    grid-row: 1 / -1;
    background: #5278FF;
}

.section-8-card-title {
    font-family: 'TT Hoves Medium';
    font-style: normal;
    font-weight: 500;
    font-size: 36.007px;
    line-height: 90%;
    color: #FFFFFF;
    margin-bottom:25px;
}

.section-8-card-text {
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    padding-bottom: 25px;
}
.section-8-card-text br.w811{
    display:block;
}
.section-8-card-text br.w810-429{
    display:none;
}
.section-6-social-desc br.w429{
    display:none;
}

.section-8-card-title.black, .section-8-card-text.black{
    color:#313131;
}
.section-8-card-text.black a{
    color:#313131;
}
.section-8-card-text.black a:hover{
    text-decoration:none
}


.section-8-card-text:last-of-type {
    margin-bottom: 0;
}

.section-8-card-link {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.section-8-card-link:hover {
    opacity: 0.9;
}

.section-8-card-contact {
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 20.404px;
    line-height: 24px;
    color: #FFFFFF;
    padding-top: 60px;
}

.section-8-card-contact a {
    color: #fff;
    text-decoration: underline;
}
.section-8-card-contact a:hover {
    color: #fff;
    text-decoration: none;
}

.section-8-card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: url("../svg/link-square.svg") center / cover no-repeat;
}

.section-8-card-avatar {
    position: absolute;
    right: -90px;
    bottom: -35px;
    width: 290px;
    height: 290px;
    background: url("../images/wm3.avif") center center / cover no-repeat;
    border-radius: 50%;
}

.section-8-card--middle-btn{
    display:none;
}



.screen-9 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 820px;
    box-sizing: border-box;
    padding: 0;
    overflow: visible;
    z-index:90
}

.fig-9{
    position: absolute;
    width: 356px;
    height: 356px;
    right: -188px;
    top: -93px;
    transform: rotate(0deg);
    background: url("../images/fig-5.avif") center center /contain no-repeat;
    background-size: 100% 100%;
}

.section-9-title {
    position: absolute;
    left: 0px;
    top: 0;
    width: 1071px;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: left;
}

.section-9-grid {
    position: absolute;
    left: 0px;
    top: 95px;
    width: 1342px;
    height: 675px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
}

.section-9-card {
    position: relative;
    background-color: #EFEEEE;
    border-radius: 0 16px 16px 16px;
    padding: 24px;
    padding-top: 274px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    width: 313px;
    height: 333px;
    overflow: hidden;
    transition: 0.3s ease;
}

.section-9-card:hover{
    transform: rotate(1.5deg) scale(1.05);
}

.section-9-card-photo {
    position: absolute;
    bottom:0px;
    left: 0;
    right: 0;
    height: 250px;
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 0 16px 0 0;
}

/* Фоны и фото секции 9: те же файлы .avif для 810 и выше, как у 429 */
.section-9-card-photo--1 { background-image: url("../images/p1.png"); height: 280px; width: 430px; left: -80px; bottom: -30px;}
.section-9-card-photo--2 { background-image: url("../images/p2.png"); height: 280px; width: 430px; left: -70px; bottom: -30px;}
.section-9-card-photo--3 { background-image: url("../images/p3.png"); height: 280px; width: 430px; left: -55px; bottom: -30px;}
.section-9-card-photo--4 { background-image: url("../images/p4.png"); height: 280px; width: 430px; left: -70px; bottom: -30px;}
.section-9-card-photo--5 { background-image: url("../images/p5.png"); height: 280px; width: 430px; left: -80px; bottom: -30px;}
.section-9-card-photo--6 { background-image: url("../images/p6.png"); height: 280px; width: 430px; left: -40px; bottom: -30px;}
.section-9-card-photo--7 { background-image: url("../images/p7.png"); height: 280px; width: 430px; left: -40px; bottom: -30px;}
.section-9-card-photo--8 { background-image: url("../images/p8.png"); height: 280px; bottom: -26px; width: 356px; left: -32px;}
.section-9-card-name {
    position: absolute;
    width: 300px;
    height: 32px;
    left: 15.3px;
    top: 15.86px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 27.3283px;
    line-height: 32px;
    color: #313131;
}

.section-9-card-role {
    position: absolute;
    width: 300px;
    height: 15px;
    left: 16.3px;
    top: 47px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 13.1176px;
    line-height: 15px;
    color: rgba(49, 49, 49, 0.5);
}


.screen-10 {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0px auto;
    height: auto;
    min-height: 261px;
    box-sizing: border-box;
    padding-top: 95px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    overflow: visible;
    z-index: 100;
}

.section-10-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: center;
}

.section-10-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.section-10-card {
    position:relative;
    width: 403px;
    height: 126px;
    min-height: 126px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: #313131;
    border-radius: 20px;
    text-decoration: none;
}
.name-smi{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
    gap: 10px;
    position: absolute;
    min-width: 50px;
    height: 34px;
    left: 14px;
    top: 13px;
    background: #FF9921;
    border-radius: 5px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
}
.icon-smi {
    position: absolute;
    width: 34px;
    height: 34px;
    right: 13px;
    top: 13px;
    background: #D9D9D9;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-smi img {
    width: 110%;
    height: 110%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.section-10-card-body{
    position: absolute;
    width: 368px;
    height: 53px;
    left: 16px;
    top: 60px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 900;
    font-size: 17px;
    line-height: 20px;
    color: #FFFFFF;
}

.section-10-slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 100;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.section-10-slider-btn:hover {
    background: #5278FF;
    transform: translateY(-50%) scale(1.08);
}

.section-10-slider-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.section-10-slider-btn--prev {
    left: 8px;
}

.section-10-slider-btn--prev:hover {
    transform: translateY(-50%) scale(1.08);
}

.section-10-slider-btn--prev:active {
    transform: translateY(-50%) scale(0.96);
}

.section-10-slider-btn--prev .section-10-slider-btn-icon {
    background-image: url("../svg/arrow-prevnext.svg");
    transform: rotate(180deg);
}

.section-10-slider-btn--next {
    right: 8px;
}

.section-10-slider-btn--next:hover {
    transform: translateY(-50%) scale(1.08);
}

.section-10-slider-btn--next:active {
    transform: translateY(-50%) scale(0.96);
}

.section-10-slider-btn--next .section-10-slider-btn-icon {
    background-image: url("../svg/arrow-prevnext.svg");
    transform: rotate(0deg);
}

.section-10-slider-btn-icon {
    display: block;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



.screen-11 {
    position: relative;
    width: 1342px;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 400px;
    box-sizing: border-box;
    padding-top: 95px;
    padding-bottom: 40px;
    overflow: visible;
    z-index: 100;
}

.section-11-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    margin: 0;
    font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    color: #313131;
    text-align: center;
}


.section-11-grid {
    width: 1342px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fig-11{
    position: absolute;
    width: 278px;
    height: 301px;
    left: -166px;
    top: -175px;
    transform: rotate(0deg);
    background: url("../images/fig-1.webp") center center /contain no-repeat;
    background-size: 100% 100%;
}

.section-11-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

.section-11-card-image {
    width: 100%;
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius:25px
}

.section-11-card-image--1 { background-image: url("../images/section-4-1.avif"); }
.section-11-card-image--2 { background-image: url("../images/section-4-2.avif"); }
.section-11-card-image--3 { background-image: url("../images/section-4-3.avif"); }

.section-11-card-content {
    padding: 20px 0px;
}

.section-11-card-date {
    display: block;
    position: relative;
    width: 205px;
    height: 35px;
    margin:20px 0px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 29px;
    color: #8C8888;
}

.section-11-card-title {
    position: relative;
    font-family: 'TT Hoves Medium';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 29px;
    color: #000000;
    margin-bottom:20px;
}

footer {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 373px;
    background: url("../images/footer.png") center bottom / cover no-repeat;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
.footer-mail{
    position: absolute;
    width: 550px;
    left: 50px;
    top: 40px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18.8946px;
    line-height: 22px;
    color: #9E9E9E;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-mail-blk{
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-mail-blk-title{
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 700;
    font-size: 18.8946px;
    line-height: 22px;
    color: #9E9E9E;
}
.footer-mail-blk-value{
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18.8946px;
    line-height: 22px;
    color: #9E9E9E;
}
.footer-mail-blk-value a{
    text-decoration:underline;
    color: #9E9E9E;
}
.footer-mail-blk-value a:hover{
    text-decoration:none;
}

.footer-copy{
    position: absolute;
    width: 550px;
    left: 50px;
    top: 115px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18.8946px;
    line-height: 22px;
    color: #9E9E9E;
}
.footer-link{
    position: absolute;
    width: 550px;
    left: 50px;
    top: 180px;
    font-family: 'TT Hoves Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 18.8946px;
    line-height: 22px;
    color: #9E9E9E;
}
.footer-link a{
    text-decoration:underline;
    color: #9E9E9E;
}
.footer-link a:hover{
    text-decoration:none;
}

.footer-social-buttons {
    position: absolute;
    top: 41px;
    right: 44px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.footer-mail-buttons {
    position: absolute;
    top: 115px;
    right: 44px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 14px;
    background: #FFFFFF;
    color: #313131;
    border-radius: 10px;
    font-family: "TT Hoves Regular", "TT Hoves", sans-serif;  
    font-weight: 400;
    font-size: 20.1803px;
    line-height: 24px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 290px;
    height: 48px;
}

.footer-social-btn.vk{
    width: 365px;
    height: 48px;
}
.footer-social-btn.tg2{
    width: 225px;
    height: 48px;
}


.footer-social-btn.mail{
    width: 250px;
    height: 48px;
}

.footer-social-btn {
    transition: 
        opacity 0.2s ease,
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-social-btn:hover {
    opacity: 0.9;
    transform: scale(1.05) translateY(-1px) rotate(-1.5deg);
}

.footer-social-btn-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-social-btn-icon--telegram {
    width: 22px;
    height: 19px;
    background: url("../svg/telegram-icon.svg") center center /contain no-repeat;
}

.footer-social-btn-icon--vk {
    width: 26px;
    height: 16px;
    background: url("../svg/vk-icon.svg") center center /contain no-repeat;
}

.footer-mail-btn-icon--mail {
    width: 29px;
    height: 19px;
    background: url("../svg/mail-icon.svg") center center /contain no-repeat;
}

@media screen and (max-width:1439px) and (min-width:811px){
    .header-container {
        gap: 50px;
        padding: 0 20px;
    }
    
    .nav-list {
        gap: 50px;
    }
    
    .nav-list a {
        font-size: 20px;
    }

    .screen-1-cta{
        display:none;
    }
    .screen-1-cta-btn{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        margin: 20px 0px 20px 0px;
        z-index:30;
    }
    .screen-1-cta-btn .screen-1-btn-1,
    .screen-1-cta-btn .screen-1-btn-2{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px 15.5616px;
        gap: 15.56px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        top: auto;
        left: auto;
        flex: 1;
        min-width: 0;
        height: 92px;
        text-align: center;
        justify-content: center;
    }
    .screen-1-cta-btn .screen-1-btn-1 {
        border: 1px solid #DAF955;
        background: #DAF955;
    }
    .screen-1-cta-btn .screen-1-btn-2 {
        border: 1px solid #ff9820;
        background: #ff9820;
    }
    .screen-1-cta-btn .screen-1-btn-1::before,
    .screen-1-cta-btn .screen-1-btn-2::before {
        display: none;
    }
    .screen-1-cta-btn .btn-text {
        width: 100%;
        height: auto;
        font-family: "Druk Wide Cyr Medium", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 28px;
        line-height: 22px;
        text-align: center;
        text-transform: uppercase;
        align-items: center;
        justify-content: center;
        color: #313131;
        transition: 0.15s ease-in-out;
    }
    .screen-1-cta-btn .screen-1-btn-1:hover {
        background: #313131;
        color: #DAF955;
        border: 1px solid #313131;
    }
    .screen-1-cta-btn .screen-1-btn-1:hover .btn-text {
        color: #DAF955;
    }
    .screen-1-cta-btn .screen-1-btn-2:hover {
        background: #313131;
        color: #ff9820;
        border: 1px solid #313131;
    }
    .screen-1-cta-btn .screen-1-btn-2:hover .btn-text {
        color: #ff9820;
    }

    .screen-4{
        height:870px;
    }
    .section-4-grid {
        position: absolute;
        left: 0px;
        top: 95px;
        width: 100%;
        height: 726px; 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 290px 290px 130px;
        gap: 16px 24.5px;
        padding: 0 20px;
    }

    .section-4-card {
        position: relative;
        width: 100%;
        min-width: 30%;
        height: 290px;
        border-radius: 0 13.54px 13.54px 13.54px;
        box-sizing: border-box;
        padding: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-self: start;
        align-self: start;
        transition: transform 0.25s ease;
        transform-origin: center;
    }

    .section-4-card-body {
        position: relative;
        z-index: 1;
        padding: 71px 15px 43px 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
        min-height: 0;
        justify-content: flex-end;
    }
    .section-4-card-title {
        margin: 0;
        font-family: "TT Hoves Medium", "TT Hoves", sans-serif;
        font-weight: 500;
        font-size: 30px;
        line-height: 0.9;
        color: #FFFFFF;
        text-align: left;
        max-width: 305px;
    }

    .section-4-card-desc {
        margin: 0;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 19.5px;
        line-height: 1.178;
        color: #FFFFFF;
        text-align: left;
    }

    .section-4-grid .section-4-card--tall-2 {
        grid-row: 3;
        grid-column: 1 / -1;
        height: 130px;
        width: 100%;
        max-width: 100%;
        transition: none !important;
        transform: none !important;
    }
    .section-4-card.section-4-card--tall.section-4-card--dark.section-4-card-overlay{
        display:none;
    }
    .section-4-card.section-4-card--tall-2.section-4-card--dark-2.section-4-card-overlay-2{
        display:block;
    }

    .section-4-card--tall-2 {
        grid-row: 4;
        height: 130px;
        width: 100%;
        max-width: 100%;
        position: relative;
        transform: none;
        box-sizing: border-box;
    }

    .section-4-card-overlay-2 .section-4-card-overlay-bg-2{
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5) url("../images/section-4-mid.avif") center / cover no-repeat;
        pointer-events: none;
    }

    .section-4-card-body-logo-2{
        position: absolute;
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%); 
        width: 181px;
        height: 82.45px;
        background: url("../svg/screen-1.svg") center / contain no-repeat;
        background-size: 100% 100%;
    }

    .section-4-card-overlay-2 .section-4-card-body-2 {
        position: relative;
        z-index: 1;
        justify-content: center;
        flex: 1;
    }

    /* Секция 3 при 811–1439: слайдер и карточки как у 810 — карусель без maxsize */
    .screen-3 {
        min-height: 992px;
        overflow: visible;
    }
    .section-3-title {
        position: absolute;
        left: 25px;
        top: 0px;
        width: 550px;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: rgb(49, 49, 49);
        text-align: left;
        margin: 0px;
    }
    .section-3-grid {
        position: absolute;
        left: 30px;
        top: 100px;
        width: 100%;
        height: 770px;
        overflow: visible;
    }
    .section-3-viewport--carousel {
        overflow: visible;
        width: 100%;
        height: 100%;
    }
    .section-3-track--carousel {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: 100%;
        will-change: transform;
    }
    .section-3-track--carousel .section-3-slide,
    .section-3-track--carousel [data-section-3-clone] {
        flex-shrink: 0;
        margin-right: 20px;
    }
    .section-3-track--carousel .section-3-slide:last-child,
    .section-3-track--carousel [data-section-3-clone="first"] {
        margin-right: 0;
    }
    .section-3-slide.maxsize {
        display: none;
    }
     .section-3-slider {
        width: 750px;
        min-height: 770px;
        flex-shrink: 0;
        transform-origin: center top;
        left: 0;
        overflow: visible;
        zoom: 1;
    }
    .section-3-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 750px;
        height: 770px;
        border-radius: 30px;
        min-height: 640px;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .section-3-slide-img--media {
        position: absolute;
        top: -510px;
        left: -260px;
        width: 1086px;
        height: 809px;
        background: url(../images/services-media.avif) center top / cover no-repeat;
        transform: rotate(-294deg);
        opacity: 0.5;
        z-index: 1;
    }
    .section-3-slide-img--sociology {
        position: absolute;
        top: -299px;
        left: -80px;
        width: 642px;
        height: 642px;
        background-image: url(../images/services-sociology.avif);
        transform: rotate(-312deg);
        opacity: 0.5;
        z-index: 1;
    }
    .section-3-slide-img--telegram {
        position: absolute;
        top: -118px;
        left: -24px;
        width: 811px;
        height: 512px;
        background-image: url(../images/services-telegram.avif);
        transform: rotate(-351deg);
        opacity: 0.6;
        z-index: 1;
    }
    .section-3-slide-img--ai {
        position: absolute;
        top: -326px;
        left: -41px;
        width: 760px;
        height: 739px;
        background-image: url(../images/services-ai.avif);
        transform: rotate(-307deg);
        opacity: 0.6;
        z-index: 1;
    }
    .section-3-slide-img--reputation {
        position: absolute;
        top: -182px;
        left: -129px;
        width: 927px;
        height: 468px;
        background-image: url(../images/services-reputation.avif);
        transform: rotate(-355deg);
        opacity: 0.6;
        z-index: 1;
    }
    .section-3-slide-arrow {
        position: absolute;
        z-index: 40;
        top: 25px;
        right: 35px;
        width: 75px;
        height: 75px;
        cursor: pointer;
    }
    .section-3-slide-body {
        position: absolute;
        left: 0px;
        top: 169px;
        z-index: 10;
        flex: 1;
        padding: 24px 35px 24px 35px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-height: 0;
        width: 100%;
    }
    .section-3-slide-body .dot-grid {
        position: absolute;
        top: 0px;
        left: 35px;
        display: flex;
        flex-direction: row;
        width: 110px;
        height: 25px;
        gap: 7px;
        justify-content: space-between;
        align-items: flex-start;
    }
    .section-3-slide-body .dot-grid .section-3-dot-green,
    .section-3-slide-body .dot-grid .section-3-dot-black {
        display: block;
        width: 25px;
        height: 25px;
    }
    .section-3-slide-title {
        margin-top: 4px;
        padding: 10px 0px 5px 0px;
        font-family: 'TT Hoves DemiBold';
        font-style: normal;
        font-weight: 500;
        font-size: 46px;
        line-height: 37px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }
    .section-3-slide-desc {
        width: 100%;
        height: 140px;
        font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 31px;
        line-height: 35px;
        display: flex;
        align-items: start;
        color: #FFFFFF;
    }
    .section-3-slide-list {
        margin: 40px 0px 30px 0px;
        padding: 0;
        list-style: none;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-size: 21.5px;
        line-height: 1.25;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .section-3-slide-list li {
        position: relative;
        box-sizing: border-box;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 10px;
        min-height: 33.57px;
        width: fit-content;
        max-width: 100%;
        background: rgba(54, 54, 54, 0.1);
        border: 0.65px solid #DDFD55;
        color: #DDFD55;
        backdrop-filter: blur(7.05px);
        border-radius: 163.086px;
        flex: none;
        white-space: nowrap;
    }
    .section-3-slide-list li span {
        display: none;
    }
    .section-3-slide-desc br.w1440{
        display:none;
    }
    .section-3-slide-badge {
        margin-top: 0px;
        display: inline-block;
        font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
        font-size: 21px;
        line-height: 0.8;
        color: rgba(255, 255, 255, 1);
        letter-spacing: 0.00em;
    }
    .section-3-slide-badge.pdg36{
        padding-top:0px;
    }

    .section-3-slide-price {
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 35px;
        line-height: 35px;
        color: #FFFFFF;
    }
    .section-3-cta--adaptive {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 15.56px;
        gap: 15.56px;
        width: 100%;
        max-width: 755px;
        margin: 0px 0px;
        margin-top: 24px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        border: 1px solid #ff9820;
        background: #ff9820;
        flex-shrink: 0;
        height: 92px;
        top: 0px;
    }
    .section-3-cta--adaptive .section-3-cta-text {
        width: 100%;
        font-family: "Druk Wide Cyr Medium", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 29px;
        line-height: 22px;
        text-align: center;
        text-transform: uppercase;
        color: #000000;
        transition: 0.15s ease-in-out;
    }
    .section-3-slide-body .action {
        color: #daf854;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 36px;
        line-height: 1.05;
        width: 150px;
        position: absolute;
        top: 44px;
        left: 533px;
    }
    .section-3-slide-body .action::before {
        position: absolute;
        top: -2px;
        left: -38px;
        width: 36px;
        height: 36px;
        content: "";
        background: url(../svg/fire.svg) center center / contain no-repeat;
    }
    .section-3-slider-btn {
        display: none;
    }
    .section-3-cta--adaptive {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 15.56px;
        gap: 15.56px;
        width: 100%;
        max-width: 755px;
        margin: 0px auto;
        margin-top: 24px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        border: 1px solid #ff9820;
        background: #ff9820;
        flex-shrink: 0;
        height: 92px;
        top: 0px;
        transition: 0.3s ease;
    }
    .section-3-cta--adaptive:hover{
        background: #313131;
        color:#ff9820;
        border: 1px solid #313131;
    }
    .section-3-cta--adaptive:hover .section-3-cta-text{
        color:#ff9820;
    }
    .section-3-slide-list .m429{
        display:block;
    }
    .section-3-slide-list .m430{
        display:none;
    }

    .ms5810{
        display:block;
    }
    .ms5429{
        display:none;
    }

    .section-6-social-desc br.w811{
        display:block;
    }
    .section-6-card-desc br.w810-429{
        display:none;
    }
    .section-6-card-desc br.w429{
        display:none;
    } 

}

@media screen and (max-width: 1439px){
    .header{
        display:none;
    }
    .footer-mail-buttons{
        display:block;
    }
}

@media (min-width: 811px) {
    .section-2-infoblock-col--stats {
        width: 632px;
        flex: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-width: 0;
    }


    .section-2-stats-header {
        position: absolute;
        top: 77.37px;
        left:683px;
        width: 632px;
        height: 81px;
        padding: 0 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url("../images/think-tank.avif") center center /contain no-repeat;
        background-size: 100% 100%;
        border-radius: 18px;
        font-family: "Druk Wide Cyr Medium", sans-serif;
        font-weight: 500;
        font-size: 25px;
        line-height: 81px;
        color: #FFFFFF;
        text-align: center;
    }

    .section-2-stats-grid {
        width: 632px;
        display: grid;
        grid-template-columns: 306px 306px;
        grid-template-rows: 125px 125px;
        gap: 20px;
        flex: none;
    }

    .section-2-stat-card {
        position:absolute;
        width: 306px;
        height: 125px;
        background: #313131;
        border-radius: 20px;
        padding: 9px 15px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
    }
    .card-1{
        left: 683px;
        top: 178.37px;
    }
    .card-2{
        left: 1008.97px;
        top: 178.37px;
    }
    .card-3{
        left: 683px;
        top: 322.91px;
    }
    .card-4{
        left: 1008.97px;
        top: 322.91px;
    }
}

@media (max-width: 810px) {
    .content{
        padding:0px;
    }
    /*screen-1 810*/
    .screen-1{
        width: 100%;
        height: 840px;
        background: url(../images/bg-mobile-s1-810.webp) center top / cover no-repeat;
        background-size: 100% 100%;
    }
    .screen-1-logo{
        display:none;
    }
    .screen-1-left{
        flex: none;
        width: 100%;
        height: 865px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: none;
    }
    .screen-1-right{
        display:none;
    }
    .screen-1-hero {
        margin: 0;
        position: absolute;
        top: 485px;
        left: 50%;
        max-width: 100%;
        width: 100%;
        font-family: var(--font-hero);
        font-size: 36px;
        font-weight: 400;
        line-height: 1.2;
        color: var(--color-hero-accent);
        letter-spacing: 0.00em;
        transform: rotate(-1deg) translateX(-52%);
        white-space: pre-wrap;
        word-break: break-word;
        text-align: center;
    }
    .screen-1-text {
        position: absolute;
        width: 756px;
        height: 175px;
        left: 50%;
        top: 296px;
        text-align: center;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 55px;
        line-height: 66px;
        color: #FFFFFF;
        transform: translateX(-50%);
    }
    
    .screen-1-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 38px;
        width: 100%;
        position: absolute;
        left: 0;
        top: 581px;
    }
    
    .screen-1-btn,
    .screen-1-btn-1,
    .screen-1-btn-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px 15.5616px;
        gap: 15.56px;
        width: 692px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        top: 2.5px;
        height: 92px;
        text-align: center;
    }
    
    .screen-1-btn-1 {
        left:auto;
        border: 1px solid #DAF955;
        background: #DAF955;
    }
    
    .screen-1-btn-2 {
        left: auto;
        border: 1px solid #ff9820;
        background: #ff9820;
    }
    
    .screen-1-btn-1::before,
    .screen-1-btn-2::before {
        display:none;
    }
    
    .btn-text {
        width: 100%;
        height: auto;
        font-family: "Druk Wide Cyr Medium";
        font-style: normal;
        font-weight: 500;
        font-size: 28px;
        line-height: 22px;
        display: flex;
        text-align: center;
        text-transform: uppercase;
        align-items: center;
        justify-content: center;
        color: #313131;
        transition: 0.15s ease-in-out;
    }

    .screen-1-btn-1:hover {
        background: #313131;
        color: #DAF955;
        border: 1px solid #DAF955;
        width: 692px;
    }
    
    .screen-1-btn-1:hover::before {
        opacity: 0;
    }
    
    .screen-1-btn-1:hover .btn-text {
        color: #DAF955;
    }

    .screen-1-btn-2:hover {
        background: #313131;
        color: #ff9820;
        border: 1px solid #ff9820;
        width: 692px;
    }
    
    .screen-1-btn-2:hover::before {
        opacity: 0;
    }
    
    .screen-1-btn-2:hover .btn-text {
        color: #ff9820;
    }

    /* Screen-2 810*/
    .screen-2 {
        position: relative;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
        flex-flow: row;
        flex: none;
        gap: 71px;
        width: 756px;
        padding: 0;
        display: flex;
        top: 0;
        overflow: visible;
        z-index: 10;
        min-height: 1409px;
        top: -33px;
        margin: 0 auto;
    }
    .fig-1{
        position: absolute;
        width: 155px;
        height: 155px;
        left: -91px;
        top: 45px;
        transform: rotate(0deg);
        background: url(../images/fig-1.webp) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .fig-2{
        position: absolute;
        width: 245px;
        height: 245px;
        right: -172px;
        top: -9px;
        transform: rotate(0deg);
        background: url(../images/fig-2.webp) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-2-title{
        position: absolute;
        width: 1017.09px;
        height: 120px;
        left: 50%;
        top: 60px;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 29px;
        line-height: 38px;
        text-align: center;
        color: #313131;
        transform: translateX(-50%);
    }
    .section-2-title br.w1440{
        display:none;
    }
    .section-2-title br.w429{
        display:block;
    }
    .section-2-infoblock {
        position: absolute;
        width: 100%;
        height: 1127px;
        left: 0;
        top: 232px;
        background: #5278FF;
        border-radius: 46.68px;
        box-sizing: border-box;
        padding: 65px 30px 57px 30px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 35px;
        overflow: hidden;
    }


    .section-2-infoblock-col--text {
        width: 100%;
        flex: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-width: 0;
        position:relative
    }


    .section-2-infoblock-heading {
        width: 504px;
        margin: 0 0 30px 0;
        min-height: 76px;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 46.66px;
        line-height: 1.05;
        color: #DAF955;
        text-align: left;
    }

    .section-2-infoblock-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 21px;
        min-height: 288px;
    }


    .section-2-infoblock-paragraph {
        margin: 0;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 30px;
        line-height: 1.178;
        color: #FFFFFF;
        text-align: left;
    }
    .section-2-infoblock-paragraph br{
        display:block;
    }

    .section-2-infoblock-col--stats {
        width: 100%;
        flex: none;
        display: grid;
        grid-template-rows: auto 1fr;
        gap: 9px;
        min-width: 0;
        position: relative;
    }

    .section-2-stats-header {
        position: relative;
        width: 100%;
        height: 81px;
        padding: 0 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url("../images/think-tank.avif") center center /contain no-repeat;
        background-size: 100% 100%;
        border-radius: 18px;
        font-family: "Druk Wide Cyr Medium", sans-serif;
        font-weight: 500;
        font-size: 25px;
        line-height: 81px;
        color: #FFFFFF;
        text-align: center;
    }

    .section-2-stats-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 9px;
        flex: none;
    }

    .section-2-stat-card {
        position: relative;
        width: 100%;
        min-height: 125px;
        background: #313131;
        border-radius: 20px;
        padding: 9px 15px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px;
    }
    .card-1 { grid-column: 1; grid-row: 1; }
    .card-2 { grid-column: 2; grid-row: 1; }
    .card-3 { grid-column: 1; grid-row: 2; }
    .card-4 { grid-column: 2; grid-row: 2; }

    .section-2-stat-number {
        font-family: "TT Hoves DemiBold", "TT Hoves", sans-serif;
        font-weight: 600;
        font-size: 54px;
        line-height: 1.178;
        color: #FFFFFF;
        text-align: left;
    }

    .section-2-stat-desc {
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 21px;
        line-height: 0.98;
        color: #FFFFFF;
        text-align: right;
    }

    .section-2-stat-desc br {
        display: block;
    }

    /* Screen-3 810 */
    .screen-3 {
        min-height: 1100px;
        overflow: visible;
    }

    .section-3-title {
        position: absolute;
        left: 25px;
        top: 0px;
        width: 550px;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: rgb(49, 49, 49);
        text-align: left;
        margin: 0px;
    }
    .section-3-grid {
        position: absolute;
        left: 0px;
        top: 100px;
        width: 100%;
        height: 646px;
        overflow: visible;
    }
    .section-3-viewport--carousel {
        overflow: visible;
        width: 100%;
        height: 100%;
    }
    .section-3-track--carousel {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: 100%;
        will-change: transform;
    }
    .section-3-track--carousel .section-3-slide,
    .section-3-track--carousel [data-section-3-clone] {
        flex-shrink: 0;
        margin-right: 20px;
    }
    .section-3-track--carousel .section-3-slide:last-child,
    .section-3-track--carousel [data-section-3-clone="first"] {
        margin-right: 0;
    }
    .section-3-slide.maxsize {
        display: none;
    }

    /* Секция 3 при ≤810px: инфинити-скролл — горизонтальный скролл с тонкой полосой */
    .section-3-viewport--infinite-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(49, 49, 49, 0.4) transparent;
    }
    .section-3-viewport--infinite-scroll::-webkit-scrollbar {
        height: 6px;
    }
    .section-3-viewport--infinite-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    .section-3-viewport--infinite-scroll::-webkit-scrollbar-thumb {
        background: rgba(49, 49, 49, 0.4);
        border-radius: 3px;
    }
    .section-3-viewport--infinite-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(49, 49, 49, 0.6);
    }
    .section-3-track--infinite-scroll {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: 100%;
        gap: 0;
    }
    .section-3-track--infinite-scroll .section-3-slide {
        flex-shrink: 0;
        margin-right: 20px;
    }
    .section-3-track--infinite-scroll .section-3-slide:last-child {
        margin-right: 0;
    }

    .fig-3{
        display: none;
    }
    .section-3-slider {
        width: 100%;
        min-height: 770px;
        flex-shrink: 0;
        transform-origin: center top;
        left: 0;
        overflow: visible;
        zoom: 1;
    }
    .section-3-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 750px;
        height: 770px;
        border-radius: 30px;
        min-height: 640px;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-3-slide-img--media {
        position: absolute;
        top: -510px;
        left: -260px;
        width: 1086px;
        height: 809px;
        background: url(../images/services-media.avif) center top / cover no-repeat;
        transform: rotate(-294deg);
        opacity: 0.5;
        z-index: 1;
    }
    
    .section-3-slide-img--sociology {
        position: absolute;
        top: -299px;
        left: -80px;
        width: 642px;
        height: 642px;
        background-image: url(../images/services-sociology.avif);
        transform: rotate(-312deg);
        opacity: 0.5;
        z-index: 1;
    }
    
    .section-3-slide-img--telegram {
        position: absolute;
        top: -118px;
        left: -24px;
        width: 811px;
        height: 512px;
        background-image: url(../images/services-telegram.avif);
        transform: rotate(-351deg);
        opacity: 0.6;
        z-index: 1;
    }
    
    .section-3-slide-img--ai {
        position: absolute;
        top: -326px;
        left: -41px;
        width: 760px;
        height: 739px;
        background-image: url(../images/services-ai.avif);
        transform: rotate(-307deg);
        opacity: 0.6;
        z-index: 1;
    }
    
    .section-3-slide-img--reputation {
        position: absolute;
        top: -182px;
        left: -129px;
        width: 927px;
        height: 468px;
        background-image: url(../images/services-reputation.avif);
        transform: rotate(-355deg);
        opacity: 0.6;
        z-index: 1;
    }

    .section-3-slide-arrow {
        position: absolute;
        z-index: 40;
        top: 25px;
        right: 35px;
        width: 75px;
        height: 75px;
        cursor: pointer;
    }
    .section-3-slide-body {
        position: absolute;
        left: 0px;
        top: 169px;
        z-index: 10;
        flex: 1;
        padding: 24px 35px 24px 35px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-height: 0;
        width: 100%;
    }
    .section-3-slide-body .dot-grid {
        position: absolute;
        top: 0px;
        left: 35px;
        display: flex;
        flex-direction: row;
        width: 110px;
        height: 25px;
        gap: 7px;
        justify-content: space-between;
        align-items: flex-start;
    }
    .section-3-slide-body .dot-grid .section-3-dot-green, .section-3-slide-body .dot-grid .section-3-dot-black {
        display: block;
        width: 25px;
        height: 25px;
    }
    .section-3-slide-title {
        margin-top: 4px;
        padding: 10px 0px 5px 0px;
        font-family: 'TT Hoves DemiBold';
        font-style: normal;
        font-weight: 500;
        font-size: 46px;
        line-height: 37px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }
    .section-3-slide-desc {
        width: 100%;
        height: 140px;
        font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 31px;
        line-height: 35px;
        display: flex;
        align-items: start;
        color: #FFFFFF;
    }
    .section-3-slide-list {
        margin: 30px 0px 30px 0px;
        padding: 0;
        list-style: none;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-size: 21.5px;
        line-height: 1.25;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .section-3-slide-list li {
        position: relative;
        box-sizing: border-box;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 10px;
        min-height: 33.57px;
        width: fit-content;
        max-width: 100%;
        background: rgba(54, 54, 54, 0.1);
        border: 2px solid #DDFD55;
        color: #DDFD55;
        backdrop-filter: blur(7.05px);
        border-radius: 163.086px;
        flex: none;
        white-space: nowrap;
    }

    .section-3-slide.sociology .section-3-slide-list li {
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #303030;
        color: #303030;
    }
    .section-3-slide.telegram .section-3-slide-list li {
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    .section-3-slide.reputation .section-3-slide-list li {
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #303030;
        color: #303030;
    }

    .section-3-slide-desc br.w1440{
        display:none;
    }

    .section-3-slide-list li span{
        display: none;
    }
    .section-3-slide-badge {
        margin-top: 0px;
        display: inline-block;
        font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
        font-size: 21px;
        line-height: 0.8;
        color: rgba(255, 255, 255, 1);
        letter-spacing: 0.00em;
    }
    .section-3-slide-badge.pdg36{
        padding-top:0px;
    }
    .section-3-slide-price {
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 35px;
        line-height: 35px;
        color: #FFFFFF;
    }
    .section-3-cta--adaptive {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 15.56px;
        gap: 15.56px;
        width: 100%;
        max-width: 755px;
        margin: 0px auto;
        margin-top: 24px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        border: 1px solid #ff9820;
        background: #ff9820;
        flex-shrink: 0;
        height: 92px;
        top: 45px;
    }
    .section-3-cta--adaptive:hover{
        background: #313131;
        color:#ff9820;
        border: 1px solid #313131;
    }

    .section-3-cta--adaptive .section-3-cta-text {
        width: 100%;
        font-family: "Druk Wide Cyr Medium", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 29px;
        line-height: 22px;
        text-align: center;
        text-transform: uppercase;
        color: #000000;
        transition: 0.15s ease-in-out;
    }
    .section-3-cta--adaptive:hover .section-3-cta-text{
        color:#ff9820;
    }
    
    .section-3-slide-body .action{
        color: #daf854;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 36px;
        line-height: 1.05;
        width: 150px;
        position: absolute;
        top: 52px;
        left: 533px;
    }
    .section-3-slide-body .action::before {
        position: absolute;
        top: -2px;
        left: -38px;
        width: 36px;
        height: 36px;
        content: "";
        background: url(../svg/fire.svg) center center / contain no-repeat;
    }
    .section-3-slider-btn{
        display: none;
    }
    
    .section-3-slide-list .m429{
        display:block;
    }
    .section-3-slide-list .m430{
        display:none;
    }

    /* Screen-4 810*/
    .screen-4{
        top: 0px;
        height: 963px;
    }
    .section-4-title {
        width: 614px;
        left: auto;
        right: 25px;
        top: -37px;
        text-align: right;
        letter-spacing: -0.02em;
    }
    .fig-4 {
        position: absolute;
        width: 245px;
        height: 245px;
        left: -48px;
        top: -88px;
        transform: rotate(0deg);
        background: url(../images/fig-4.avif) center center / contain no-repeat;
        background-size: 100% 100%;
    }

    .section-4-grid {
        position: absolute;
        left: 0px;
        top: 95px;
        width: 100%;
        height: 726px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 290px 290px 290px 130px;
        gap: 16px 0px;
        padding: 20px;
    }

    .section-4-grid .section-4-card:nth-child(1) { order: 1; }
    .section-4-grid .section-4-card:nth-child(2) { order: 2; }
    .section-4-grid .section-4-card:nth-child(3) { order: 4; }
    .section-4-grid .section-4-card:nth-child(5) { order: 3; }
    .section-4-grid .section-4-card:nth-child(6) { order: 5; }
    .section-4-grid .section-4-card:nth-child(7) { order: 6; }
    .section-4-grid .section-4-card--tall-2 { order: 7; }

    .section-4-card {
        position: relative;
        width: 100%;
        min-width: 30%;
        height: 290px;
        border-radius: 0 13.54px 13.54px 13.54px;
        box-sizing: border-box;
        padding: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-self: start;
        align-self: start;
        transition: unset;
        transform-origin: center;
    }
    .section-4-card:not(.section-4-card-overlay):hover{
        transform: none;
    }

    .section-4-card-body {
        position: relative;
        z-index: 1;
        padding: 71px 30px 27px 30px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        flex: 1;
        min-height: 0;
        justify-content: flex-end;
    }
    .section-4-card-title {
        margin: 0;
        font-family: "TT Hoves Medium", "TT Hoves", sans-serif;
        font-weight: 500;
        font-size: 41px;
        line-height: 0.9;
        color: #FFFFFF;
        text-align: left;
        max-width: 600px;
    }

    .section-4-card-desc {
        margin: 0;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 26.7px;
        line-height: 1.178;
        color: #FFFFFF;
        text-align: left;
    }

    .ms5810{
        display:none;
    }
    .ms5429{
        display:block;
    }

    .section-4-grid .section-4-card--tall-2 {
        grid-row: 4;
        grid-column: 1 / -1;
        height: 130px;
        width: 100%;
        max-width: 100%;
        transition: none !important;
        transform: none !important;
    }
    .section-4-card.section-4-card--tall.section-4-card--dark.section-4-card-overlay{
        display:none;
    }
    .section-4-card.section-4-card--tall-2.section-4-card--dark-2.section-4-card-overlay-2{
        display:block;
    }

    .section-4-card--tall-2 {
        grid-row: 4;
        height: 130px;
        width: 100%;
        max-width: 100%;
        position: relative;
        transform: none;
        box-sizing: border-box;
    }

    .section-4-card-overlay-2 .section-4-card-overlay-bg-2{
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5) url("../images/section-4-mid.avif") center / cover no-repeat;
        pointer-events: none;
    }

    .section-4-card-body-logo-2{
        position: absolute;
        top:50%;
        left:50%;
        transform: translateX(-50%) translateY(-50%); 
        width: 181px;
        height: 82.45px;
        background: url("../svg/screen-1.svg") center / contain no-repeat;
        background-size: 100% 100%;
    }

    .section-4-card-overlay-2 .section-4-card-body-2 {
        position: relative;
        z-index: 1;
        justify-content: center;
        flex: 1;
    }

    /* Слайдер секции 4 при 810px и меньше (стили для режима слайдера) */
    .section-4-grid-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0 0px;
        box-sizing: border-box;
    }

    .section-4-grid[data-section4-mode="slider"] {
        position: relative;
        left: 0;
        top: 95px;
        width: 300%;
        max-width: none;
        height: 726px;
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
        box-sizing: border-box;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-4-grid[data-section4-mode="slider"] .section-4-slide {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        width: 33.333%;
        height: 100%;
        gap: 20px;
        padding: 0px 27px;
        box-sizing: border-box;
    }

    .section-4-grid[data-section4-mode="slider"] .section-4-slide .section-4-card {
        width: 100%;
        max-width: 100%;
        height: 318px;
        box-sizing: border-box;
        position: relative;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .section-4-card-arrow--black {
        top: 11px;
        left: 30px;
        display:none;
    }
    .section-4-card-arrow--white {
        top: 11px;
        left: 30px;
        display:none;
    }

    .section-4-grid-wrapper .section-4-card--below-slider {
        position: absolute;
        top: calc(95px + 660px + 16px);
        left: 27px;
        width: calc(100% - 54px);
        height: 130px;
        display: block !important;
        margin-bottom: 0;
    }

    .section-4-slider-btn {
        position: absolute;
        top: calc(95px + 363px);
        transform: translateY(-50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #FF9921;
        border: none;
        cursor: pointer;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease, transform 0.2s ease;
        padding: 0;
    }

    .section-4-slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .section-4-slider-btn:disabled {
        opacity: 0;
        cursor: not-allowed;
    }

    .section-4-slider-btn--prev {
        left: 15px;
    }

    .section-4-slider-btn--next {
        right: 15px;
    }

    .section-4-slider-btn-icon {
        width: 30px;
        height: 30px;
        background-size: contain;
        background-position: 7.5px center;
        background-repeat: no-repeat;
    }

    .section-4-slider-btn-icon--prev {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        transform: rotate(180deg);
    }

    .section-4-slider-btn-icon--next {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
    .section-4-card-img--1 {
        width: 280px;
        height: 280px;
        right: -52px;
        top: -70px;
        transform: rotate(-73deg);
        background-image: url(../images/section-4-1.avif);
    }
    .section-4-card-img--kp {
        width: 350px;
        height: 350px;
        right: -72px;
        top: -150px;
        transform: rotate(-120deg);
        background-image: url(../images/section-4-2.avif);
    }
    .section-4-card-img--3 {
        width: 460px;
        height: 460px;
        left:auto;
        right: -106px;
        top: -196px;
        transform: rotate(159deg);
        background-image: url(../images/section-4-4.avif);
    }
    .section-4-card-img--2 {
        width: 141px;
        height: 287px;
        right: 0px;
        top: -32px;
        transform: rotate(-36deg);
        background-image: url(../images/section-4-3.avif);
    }
    .section-4-card-img--6 {
        width: 341px;
        height: 341px;
        right: -122px;
        top: -121px;
        transform: rotate(-91deg);
        background-image: url(../images/section-4-5.avif);
    }
    .section-4-card-img--4 {
        width: 341px;
        height: 341px;
        right: -68px;
        top: -100px;
        transform: rotate(-15deg);
        background-image: url(../images/section-4-6.avif);
    }


    /* Screen-5 810*/
    .screen-5 {
        overflow: visible;
        min-height: 770px;
        height: 1192px;
    }
    .fig-5{
        display:none;
    }
    .section-5-title {
        position: absolute;
        left: 25px;
        top: 0;
        width: 100%;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: left;
    }
    .section-5-grid {
        position: relative;
        left: auto;
        width: 100%;
        height: 810px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow: visible;
        top: 150px;
    }
    .section-5-slider {
        width: 585px;
        height: 625px;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: auto;
        transform: scale(1.3);
        transform-origin: center top;
        overflow: visible;
    }
    .section-5-viewport--carousel {
        width: 100%;
        height: 100%;
    }
    .section-5-track--carousel {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        height: 100%;
        will-change: transform;
    }

    .section-5-card {
        width: 585px;
        height: 770px;
        background: #2b2b2b;
        border-radius: 26.4005px;
        padding: 25px 18px 18px;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        overflow: hidden;
        box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.06);
        transition: transform 0.3s ease;
    }

    .section-5-track--carousel .section-5-card,
    .section-5-track--carousel [data-section-5-clone] {
        flex-shrink: 0;
    }
   
    .section-5-card:hover {
        transform: none;
    }

    .section-5-card-header {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 33px;
    }
    .section-5-top {
        height: 240px;
        width: 525px;
        margin: 0 auto;
        border-bottom: 1.05602px solid #454545;
    }
    .section-5-card-icon--target {
        width: 35px;
        height: 35px;
        background: url(../svg/signal.svg) center center / cover no-repeat;
    }
    .section-5-card-title {
        font-family: "TT Hoves DemiBold", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 35px;
        line-height: 31px;
        color: #FFFFFF;
    }
    .section-5-card-desc {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 21px;
        color: #FFFFFF;
    }

    .section-5-center {
        height: 320px;
        width: 525px;
        margin: 0 auto;
        border-bottom: 1.05602px solid #454545;
        padding: 30px 0px;
    }
    .section-5-card-icon--flame {
        width: 35px;
        height: 35px;
        background: url(../svg/fire.svg) center center / cover no-repeat;
    }
    .section-5-card-subtitle {
        font-family: "TT Hoves DemiBold", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 35px;
        line-height: 31px;
        color: #DAF955;
    }
    .section-5-card-list {
        list-style: none;
        margin: 0;
        padding: 0px 0px 10px 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        height: 205px;
    }
    .section-5-card-list li {
        font-family: "TT Hoves Regular", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 21px;
        color: #FFFFFF;
        margin: 0;
    }
    .section-5-card-results {
        width: 525px;
        margin: 0px auto;
        padding-top: 4px;
    }

    .section-5-card-results-title {
        font-family: 'SNFBSTRD handwrite SNFBSTRD handwrite';
        font-style: normal;
        font-weight: 400;
        font-size: 41px;
        line-height: 45px;
        color: #DAF955;
    }
    .section-5-card-result-block {
        flex: 1;
        min-width: 0;
        background: #DAF955;
        border-radius: 12.1818px;
        padding: 6px 12px;
        height: 97px;
        display: flex;
        justify-content: space-between;
        gap: 4px;
    }
    .section-5-card-result-block .section-5-card-result-label {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 18.0519px;
        line-height: 1.1em;
        color: #313131;
    }
    .section-5-card-result-block .section-5-card-result-value {
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 22px;
        line-height: 1em;
        color: #313131;
    }
    .section-5-card-result-block .section-5-card-result-value strong {
        font-size: 34px;
        font-weight: 500;
        color: #313131;
    }
    .section-5-card-result-num {
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 73px;
        line-height: 1em;
        text-align: right;
        color: #313131;
        flex-shrink: 0;
        padding: 0px 5px;
    }
    .section-5-card-result-block--with-num .section-5-card-result-label {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 18.0519px;
        line-height: 1.1em;
    }

    /* Кнопки управления слайдером секции 5 (как в секции 4) */
    .section-5-slider-btn {
        position: absolute;
        top: calc(150px + 312px);
        transform: translateY(-50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: rgba(255, 151, 33, 0.76);
        border: none;
        cursor: pointer;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease, transform 0.2s ease;
        padding: 0;
    }
    .section-5-slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    .section-5-slider-btn:disabled {
        opacity: 0;
        cursor: not-allowed;
    }
    .section-5-slider-btn--prev {
        left: 15px;
    }
    .section-5-slider-btn--next {
        right: 15px;
    }
    .section-5-slider-btn-icon {
        width: 30px;
        height: 30px;
        background-size: contain;
        background-position: 7.5px center;
        background-repeat: no-repeat;
    }
    .section-5-slider-btn-icon--prev {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        transform: rotate(180deg);
    }
    .section-5-slider-btn-icon--next {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .btn-section5{
        display:block;
        position:relative;
        height:100px;
        padding:0px 20px;
        box-sizing: border-box;
    }    
    .section-5-cta--mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 15.56px;
        gap: 15.56px;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        margin-top: 5px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        background: #daf955 !important;
        color: #313131 !important;
        flex-shrink: 0;
        height: 92px;
    }
    .section-5-cta--mobile .section-3-cta-text {
        color: #313131 !important;
        font-size: 28px;
        line-height: 22px;
        width: 100%;
        font-family: 'Druk Wide Cyr Medium', Arial, sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
    }
    .section-5-cta--mobile:hover{
        background: #313131 !important;
        color:#daf955 !important;
    }
    .section-5-cta--mobile:hover .section-3-cta-text{
        color:#daf955 !important;
    }
    .section-5-cta--mobile:active {
        transform: none;
    }

    .section-5-btn{
        display:none;
    }

    /* Screen-6 810 */
    .screen-6 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-height: 2270px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index:40;
        top: 115px;
    }
    .section-6-title {
        position: absolute;
        right: 25px;
        top: -44px;
        width: 600px;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: right;
        letter-spacing: -0.01em;
    }
    .fig-6 {
        position: absolute;
        width: 360px;
        height: 360px;
        left: -140px;
        top: -147px;
        transform: rotate(0deg);
        background: url(../images/fig-6.avif) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-6-grid {
        position: absolute;
        left: 0;
        top: 95px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 25px;
        height: auto;
        min-height: 0;
        padding: 20px;
    }
   
    .section-6-card {
        background: url(../svg/section-6-bg-429.svg) center center / contain no-repeat;
    }

    .section-6-card.section-6-card--3 {
        background: url(../svg/section-6-bg-429-middle-half.svg) center center / contain no-repeat;
        height: 279px;
    }
    .section-6-card.section-6-card--4 {
        background: url(../svg/section-6-bg-429-middle-2x.svg) center center / contain no-repeat;
        height: 370px;
    }

    .section-6-card--white {
        width: 100%;
        max-width: 100%;
        height: 328px;
        min-height: 156px;
        box-sizing: border-box;
    }

    .section-6-card--white h3{
        width: 767px;
    }

    .section-6-card--1{}
    .section-6-card--2{}
    .section-6-card--3 h3 br{ display:none;}
    .section-6-card--4{}

    .section-6-card--social {
        grid-column: 1;
        grid-row: 5;
        background: url(../svg/exclude.svg) center center / contain no-repeat;
        padding: 28px 20px 20px;
        height: 654px;
        box-sizing: border-box;
        width: 100%;
        min-height: 558px;
        border-radius: 25.33px;
    }
    .section-6-social-bg {
        position: absolute;
        width: 923px;
        height: 929px;
        left: -546px;
        top: 50%;
        transform: translateY(-47%);
        background: url(../svg/round.svg) center center / cover no-repeat;
        background-size: 100% 100%;
    }
    .section-6-social-subtitle {
        position: absolute;
        width: 603.81px;
        height: 57px;
        left: 37px;
        top: 164.25px;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 60px;
        line-height: 57px;
        color: #FFFFFF;
    }

    .section-6-card-title {
        position: relative;
        width: 675px;
        min-height: 54px;
        padding: 23px 30px 15px 30px;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 44px;
        line-height: 49px;
        color: #5278FF;
    }
    .section-6-social-title {
        position: absolute;
        width: 334.67px;
        height: 28.51px;
        left: 38px;
        top: 143px;
        font-family: 'SNFBSTRD handwrite SNFBSTRD handwrite';
        font-style: normal;
        font-weight: 400;
        font-size: 36.3233px;
        line-height: 30px;
        color: #5278FF;
        transform: matrix(1, -0.02, 0.02, 1, 0, 0);
    }
    .section-6-social-desc {
        position: absolute;
        width: 534.93px;
        height: 99px;
        left: 38px;
        top: 257.63px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 29.9606px;
        line-height: 37px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }

    .section-6-social-buttons {
        position: absolute;
        top: 401px;
        left: 41px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 23px;
    }

    .section-6-social-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 10px 14px;
        background: #FFFFFF;
        color: #313131;
        border-radius: 10px;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 23.1803px;
        line-height: 24px;
        text-decoration: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        width: 348px;
        height: 56px;
    }
    .section-6-social-btn.vk {
        width: 420px;
        height: 56px;
    }

    .section-6-social-btn-icon--telegram {
        width: 26px;
        height: 26px;
        background: url(../svg/telegram-icon.svg) center center / contain no-repeat;
    }
    .section-6-social-btn-icon--vk {
        width: 33px;
        height: 26px;
        background: url(../svg/vk-icon.svg) center center / contain no-repeat;
    }

    .section-6-social-illustration {
        position: absolute;
        right: 42px;
        bottom: 36px;
        width: 224px;
        height: 224px;
        background: url(../images/wm2-2.webp) center center / contain no-repeat;
        pointer-events: none;
    }

    .section-6-body {
        display: flex;
        flex-direction: column;
    }
    .section-6-card--white div{
        padding:0px 30px;
        width: 100%;
    }
    .section-6-card-desc {
        position: unset;
        width: unset;
        padding: 0px 0px 0px 0px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        line-height: 33px;
        align-items: unset;
        color: #313131;
        display: unset;
    }
    .section-6-card-desc br.w811{
        display:none;
    }
    .section-6-card-desc br.w810-429{
        display:block;
    }
    .section-6-card-desc br.w429{
        display:none;
    }

    .section-6-card-desc.nd-inline-b{
        display:flex;
    }
    .section-6-card-desc:last-of-type {
        font-family: 'TT Hoves Regular';
        font-weight: 900;
        margin-bottom: 0;
    }
    .section-6-card-corner {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .section-6-social-logo {
        position: absolute;
        bottom: 25px;
        left: 35px;
        width: 34px;
        height: 25px;
        background: url(../svg/fbl.svg) center center / contain no-repeat;
        opacity: 1;
    }

    /* Screen-7 */

    .screen-7 {
        position: relative;
        width: 1342px;
        max-width: 100%;
        margin: 0px auto;
        min-height: 300px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index: 70;
        gap: 0px;
        top: 70px;
    }
    .section-7-title {
        position:relative;
        left: 25px;
    }

    /* Screen-8 */
    .screen-8 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        min-height: 1800px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index: 80;
        top: 97px;
    }

    .fig-8 {
        position: absolute;
        width: 340px;
        height: 340px;
        left: -74px;
        top: -119px;
        transform: rotate(0deg);
        background: url(../images/fig-4.avif) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-8-title {
        position: absolute;
        right: 25px;
        top: -55px;
        width: 540px;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: right;
    }
    .section-8-grid {
        position: absolute;
        left: 0;
        top: 95px;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 571px 452px 462px;
        gap: 16px 24px;
        padding: 0px 25px;
    }

    .section-8-card {
        border-radius: 26px;
        padding: 35px 30px 35px 30px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .section-8-card--left {
        grid-column: 1;
        grid-row: 1;
        background: #313131;
    }

    .section-8-card--middle-top {
        grid-column: 1;
        grid-row: 2;
        background: url("../svg/section-8-mid-top-809.svg") center center /contain no-repeat;
    }

    .section-8-card--middle-bottom {
        grid-column: 1;
        grid-row: 3;
        background: url("../svg/section-8-mid-bot-809.svg") center center /contain no-repeat;
        display: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
    }

    .section-8-card--middle-btn {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0px 30px 50px 30px;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
    }

    .section-8-card--middle-btn a{
        flex: 1 1 45%;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 600;
        font-size: 30px;
        line-height: 40px;
        text-decoration: none;
        color: #313131;
        display: block;
        box-sizing: border-box;
        text-align: left;
        margin-bottom: 0;
    }
    .section-8-card--middle-btn a:first-child{
        text-align: left;
    }
    .section-8-card--middle-btn a:last-child{
        text-align: right;
    }
    .section-8-card--middle-btn a:hover{
        text-decoration: underline;
    }


    .section-8-card--right {
        grid-column: 1;
        grid-row: 3;
        background: #5278FF;
    }

    .section-8-card-title {
        font-family: 'TT Hoves Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 48px;
        line-height: 90%;
        color: #FFFFFF;
        margin-bottom:35px;
    }

    .section-8-card-text {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 31px;
        line-height: 37px;
        color: #FFFFFF;
        padding-bottom: 35px;
    }
    .section-8-card-text br.w811{
        display:none;
    }
    .section-8-card-text br.w810-429{
        display:block;
    }
    .section-6-card-desc br.w429{
        display:none;
    }

    .section-8-card-contact {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 31px;
        line-height: 37px;
        color: #FFFFFF;
        padding-top: 0px;
    }

    .section-8-card-icon {
        display:none;
        position: absolute;
        top: 30px;
        left: 30px;
        width: 50px;
        height: 50px;
        border-radius: 4px;
        background: url("../svg/link-square.svg") center / cover no-repeat;
    }

    .section-8-card-avatar {
        position: absolute;
        right: 10px;
        bottom: -35px;
        width: 290px;
        height: 290px;
        background: url("../images/wm3.avif") center center / cover no-repeat;
        border-radius: 50%;
    }

    /* Screen-9*/
    .screen-9 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-height: 1790px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index: 90;
    }

    .fig-9 {
        display: none;
    }

    /* Section-9 810 — оформление как у 429 */
    .section-9-card-photo {
        border-radius: 0 24px 0 0;
    }
    .section-9-title {
        position: absolute;
        left: 25px;
        top: -30px;
        width: 100%;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 53.6px;
        line-height: 1.05;
        color: #313131;
        text-align: left;
        letter-spacing: -0.02em;
        word-spacing: -0.05em;
    }
    .section-9-grid {
        position: absolute;
        left: 0px;
        top: 67px;
        width: 100%;
        height: 675px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 408px 408px 408px 480px;
        gap: 11px;
        padding: 14px;
    }
    .section-9-card {
        position: relative;
        background-color: #EFEEEE;
        border-radius: 0 24px 24px 24px;
        padding: 24px;
        padding-top: 274px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        width: 100%;
        height: 406px;
        overflow: hidden;
        transition: none;
    }
    .section-9-card:hover{
        transform: none;
    }
    .section-9-card-photo--1,
    .section-9-card-photo--2 {
        height: 328px;
        width: 505px;
        left: -80px;
        bottom: -24px;
    }
    .section-9-card-photo--1 { background-image: url(../images/p1.png); }
    .section-9-card-photo--2 { background-image: url(../images/p2.png); }
    .section-9-card-photo--3 {
        background-image: url(../images/p3.png);
        height: 328px;
        width: 505px;
        left: -62px;
        bottom: -24px;
    }
    .section-9-card-photo--4 {
        background-image: url(../images/p4.png);
        height: 353px;
        width: 528px;
        left: -91px;
        bottom: -50px;
    }
    .section-9-card-photo--5 {
        background-image: url(../images/p5.png);
        height: 316px;
        width: 528px;
        left: -91px;
        bottom: -14px;
    }
    .section-9-card-photo--6 {
        background-image: url(../images/p6.png);
        height: 337px;
        width: 555px;
        left: -78px;
        bottom: -32px;
    }
    .section-9-card-photo--7 {
        background-image: url(../images/p7.png);
        height: 357px;
        width: 580px;
        left: -80px;
        bottom: -51px;
    }
    .section-9-card-photo--8 {
        background-image: url(../images/p8.png);
        height: 352px;
        bottom: -40px;
        width: 445px;
        left: -40px;
    }

    .section-9-card-name {
        position: absolute;
        width: 300px;
        height: 32px;
        left: 15.3px;
        top: 15.86px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 37px;
        line-height: 32px;
        color: #313131;
    }
    .section-9-card-role {
        position: absolute;
        width: 300px;
        height: 15px;
        left: 16.3px;
        top: 49px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 22px;
        color: rgba(49, 49, 49, 0.5);
    }

    /* Screen-10 810*/
    .screen-10 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        min-height: 261px;
        box-sizing: border-box;
        padding-top: 95px;
        padding-bottom: 0px;
        margin-bottom: 0px;
        overflow: visible;
        z-index: 100;
    }
    .section-10-slider-wrap {
        position: relative;
        width: 100%;
    }

    .section-10-slider-viewport {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 525px;
        position: relative;
        touch-action: none;
    }

    /* Секция 10 при ≤810px: режим горизонтального тонкого скролла (вместо слайдера) */
    .section-10-slider-viewport.section-10-slider-viewport--scroll {
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar {
        height: 6px;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.06);
        border-radius: 3px;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 3px;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.4);
    }
    .section-10-slider-wrap--scroll .section-10-slider-btn {
        display: none !important;
    }
    .section-10-slider-viewport--scroll .section-10-grid--slider {
        transition: none;
        will-change: auto;
    }

    @media screen and (min-width: 480px) {
        .section-10-slider-btn {
            display: flex;
        }
    }
    /* Секция 10 при ≤810px: скрывать кнопку «предыдущий» на первом слайде, «следующий» — на последнем */
    .section-10-slider-btn--hidden {
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
    }

    .section-10-grid.section-10-grid--slider {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        height: 428px;
        margin: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .section-10-slide {
        flex-shrink: 0;
        display: flex;
        width: 750px !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
        height: 428px;
        box-sizing: border-box;
        padding: 0;
    }

    .section-10-grid.section-10-grid--slider .section-10-slide .section-10-card {
        width: 100%;
        max-width: calc(100% - 32px);
        flex-shrink: 0;
        height: 156px;
        min-height: 156px;
        border-radius: 24px;
    }

    .name-smi {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 5px;
        gap: 10px;
        position: absolute;
        min-width: 50px;
        height: 45px;
        left: 25px;
        top: 20px;
        background: #FF9921;
        border-radius: 5px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 22px;
        line-height: 18px;
        color: #000000;
    }

    .icon-smi {
        position: absolute;
        width: 45px;
        height: 45px;
        right: 26px;
        top: 20px;
        background: #D9D9D9;
        border-radius: 5px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-10-card-body {
        position: absolute;
        width: calc(100% - 64px);
        height: 53px;
        left: 24px;
        top: 79px;
        font-family: 'TT Hoves DemiBold';
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 31px;
        color: #FFFFFF;
    }

    /* Screen-11 810 — пропорции и выравнивание как у 429 */
    .screen-11 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 575px;
        min-height: 422px;
        box-sizing: border-box;
        padding: 95px 25px 40px;
        overflow: visible;
        z-index: 100;
        top:70px;
    }
    .fig-11 {
        display: none;
    }
    .section-11-grid {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 19px;
        top: -7px;
        position: relative;
        text-align: center;
    }
    .section-11-card-image {
        width: 240px;
        height: 190px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 25px;
    }
    .section-11-card-content {
        padding: 0px 3px;
        text-align: center;
    }
    .section-11-card-date {
        display: block;
        position: relative;
        width: 100%;
        height: 29px;
        margin: 11px 0px 0px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 29px;
        color: #8C8888;
        text-align: center;
    }
    .section-11-card-title {
        position: relative;
        font-family: 'TT Hoves Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 25px;
        line-height: 36px;
        color: #000000;
        margin-bottom: 20px;
    }

    footer {
        position: relative;
        margin: 0 auto;
        width: 100%;
        height: 475px;
        min-height: 228px;
        background: #313131;
        padding: 0;
        box-sizing: border-box;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        overflow-x: hidden;
    }
    footer::before{
        content: "";
        position: absolute;
        bottom:0px;
        left:0px;
        width: 100%;
        height: 60px;
        background: url("../svg/FEEDBACK.svg") center center /contain no-repeat;
        z-index: 15;
    }
    .footer-copy {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 120px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 28px;
        color: #9E9E9E;
        padding: 0px 30px;
        text-align: center;
    }
    .footer-link {
        position: absolute;
        display: flex;
        width: 100%;
        left: 0px;
        top: 86px;
        gap: 30px;
        justify-content: space-between;
        align-items: center;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 19.5px;
        line-height: 22px;
        color: #ff9920;
        padding: 0px 30px;
    }
    .footer-link br {
        display: none;
    }
    .footer-link a{
        text-decoration:underline;
        color: #ff9920;
    }
    .footer-link a:hover{
        text-decoration:none;
    }

    .footer-social-buttons {
        position: absolute;
        top: 20px;
        right: 0px;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        padding: 0px 30px;
    }

    footer::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 70px;
        background: url(../svg/FEEDBACK.svg) center center / contain no-repeat;
        z-index: 15;
    }
    .footer-link {
        position: absolute;
        display: flex;
        width: 100%;
        left: 0px;
        top: 85px;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 19.95px;
        line-height: 22px;
        color: #ff9920;
        padding: 0px 37px;
    }
    .footer-social-buttons {
        position: absolute;
        top: 20px;
        right: 0px;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        padding: 0px 30px;
    }
    .footer-mail-buttons {
        position: absolute;
        top: 92px;
        right: 50%;
        transform: translateX(50%);
        z-index: 1;
        display: flex;
        flex-direction: row;
        gap: 25px;
    }
    .footer-copy {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 250px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 28px;
        color: #9E9E9E;
        padding: 0px 30px;
        text-align: center;
    }
    
    .footer-link {
        position: absolute;
        display: flex;
        width: 100%;
        left: 0px;
        top: 329px;
        gap: 7px;
        justify-content: space-between;
        align-items: center;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 22px;
        color: #ff9920;
        padding: 0px 37px;
        flex-direction: column;
    }
    .footer-mail {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 170px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 22px;
        color: #9E9E9E;
        display: flex;
        flex-direction: row;
        gap: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 0 57px;
    }
    .footer-mail-blk {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: flex-start;
    }
    .footer-mail-blk-title {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 22px;
        color: #9E9E9E;
        text-align: center;
    }
    .footer-mail-blk-value {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 22px;
        color: #9E9E9E;
        text-align: center;
    }
    .footer-mail-blk-value a{
        text-decoration:underline;
        color: #9E9E9E;
    }
    .footer-mail-blk-value a:hover{
        text-decoration:none;
    }

}

@media (max-width: 809px) and (min-width: 430px) {
    .header-container {
        gap: 40px;
        padding: 0 16px;
        height: 70px;
    }
    
    .nav-list {
        gap: 30px;
    }
    
    .nav-list a {
        font-size: 18px;
    }
    
    .logo-img {
        width: 55px;
        height: 25px;
    }
}

@media screen and (max-width: 429px) {
    .header-container {
        height: 60px;
        padding: 0 12px;
        justify-content: space-between;
        gap: 0;
    }
    
    .logo-img {
        width: 50px;
        height: 23px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--color-header-bg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        align-items: flex-start;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 16px 0;
        width: 100%;
        font-size: 18px;
    }
}
@media screen and (max-width:429px) {
    /*Screen-1 429*/
    .screen-1{
        width: 100%;
        height: 890px;
        background: url(../images/bg-mobile-s1.avif) center top / cover no-repeat;
        background-size: 810px;
    }
    .screen-1-logo{
        display:none;
    }
    .screen-1-left{
        flex: none;
        width: 100%;
        height: 865px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: none;
    }
    .screen-1-right{
        display:none;
    }
    .screen-1-hero {
        margin: 0;
        position: absolute;
        top: 499px;
        left: 50%;
        max-width: 100%;
        width: 100%;
        font-family: var(--font-hero);
        font-size: 36px;
        font-weight: 400;
        line-height: 1.2;
        color: var(--color-hero-accent);
        letter-spacing: 0.00em;
        transform: rotate(-1deg) translateX(-52%);
        white-space: pre-wrap;
        word-break: break-word;
        text-align: center;
    }
    .screen-1-text{
        position: absolute;
        width: 756px;
        height: 175px;
        left: 50%;
        top: 312px;
        text-align: center;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 65px;
        line-height: 66px;
        color: #FFFFFF;
        transform: translateX(-50%);
    }

    .screen-1-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        width: 100%;
        position: absolute;
        left: 0;
        top: 595px;
    }
    
    .screen-1-btn,
    .screen-1-btn-1,
    .screen-1-btn-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 25px 15.5616px;
        gap: 15.56px;
        width: 770px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        top: 0px;
        height: 104px;
        text-align: center;
    }
  
    .screen-1-btn-1::before,
    .screen-1-btn-2::before {
        display:none;
    }
    
    .btn-text {
        font-size: 31px;
        line-height: 31px;
    }

    .screen-1-btn-1:hover {
        width: 770px;
    }

    .screen-1-btn-2:hover {
        width: 770px;
    }

    /* Screen-2 429*/
    .screen-2{
        min-height: 1485px;
    }
    .fig-1 {
        position: absolute;
        width: 155px;
        height: 155px;
        left: -92px;
        top: 70px;
        transform: rotate(0deg);
        background: url(../images/fig-1.webp) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .fig-2 {
        position: absolute;
        width: 269px;
        height: 269px;
        right: -192px;
        top: 8px;
        transform: rotate(0deg);
        background: url(../images/fig-2.webp) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-2-title {
        position: absolute;
        width: 1017.09px;
        height: 120px;
        left: 50%;
        top: 60px;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 29px;
        line-height: 38px;
        text-align: center;
        color: #313131;
        transform: translateX(-50%);
    }

    .section-2-infoblock {
        position: absolute;
        width: 100%;
        height: 1181px;
        left: 0;
        top: 254px;
        background: #5278FF;
        border-radius: 46.68px;
        box-sizing: border-box;
        padding: 75px 25px 37px 25px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 35px;
        overflow: hidden;
    }
    .section-2-infoblock-heading {
        width: 504px;
        margin: 0 0 16px 0;
        min-height: 76px;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 46.66px;
        line-height: 1.15;
        color: #DAF955;
        text-align: left;
    }
    .section-2-infoblock-text {
        width: 103%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        min-height: 288px;
    }
    .section-2-infoblock-paragraph {
        margin: 0;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 31.3px;
        line-height: 1.178;
        color: #FFFFFF;
        text-align: left;
    }
    .section-2-infoblock-col--stats {
        width: 100%;
        flex: none;
        display: grid;
        grid-template-rows: auto 1fr;
        gap: 9px;
        min-width: 0;
        position: relative;
    }
    .section-2-stats-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 347px 347px;
        grid-template-rows: 137px 137px;
        gap: 9px;
        flex: none;
    }
    .section-2-stat-number {
        font-family: "TT Hoves DemiBold", "TT Hoves", sans-serif;
        font-weight: 600;
        font-size: 57px;
        line-height: 1.178;
        color: #FFFFFF;
        text-align: left;
    }
    .section-2-stat-desc {
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 22px;
        line-height: 0.95;
        color: #FFFFFF;
        text-align: right;
    }
    .section-2-stat-desc br{
        display: inline-block;
    }
    
    /* Screen-3 429*/
    .fig-3{
        display: none;
    }
    .section-3-grid {
        position: absolute;
        left: 0px;
        top: 100px;
        width: 100%;
        height: 646px;
        overflow: visible;
    }
    .section-3-slider {
        width: 100%;
        min-height: 840px;
        flex-shrink: 0;
        transform-origin: center top;
        left: 0;
        overflow: visible;
        zoom: 1;
    }
    .section-3-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 750px;
        height: 830px;
        border-radius: 30px;
        min-height: 640px;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

   /* .section-3-slide-img--media {
        position: absolute;
        top: -499px;
        left: -288px;
        width: 1164px;
        height: 831px;
        background: url(../images/services-media.avif) center top / cover no-repeat;
        transform: rotate(-294deg);
        opacity: 0.5;
        z-index: 1;
    }
    
    .section-3-slide-img--sociology {
        position: absolute;
        top: -299px;
        left: -80px;
        width: 642px;
        height: 642px;
        background-image: url(../images/services-sociology.avif);
        transform: rotate(-312deg);
        opacity: 0.5;
        z-index: 1;
    }
    
    .section-3-slide-img--telegram {
        position: absolute;
        top: -118px;
        left: -24px;
        width: 811px;
        height: 512px;
        background-image: url(../images/services-telegram.avif);
        transform: rotate(-351deg);
        opacity: 0.6;
        z-index: 1;
    }
    
    .section-3-slide-img--ai {
        position: absolute;
        top: -326px;
        left: -41px;
        width: 760px;
        height: 739px;
        background-image: url(../images/services-ai.avif);
        transform: rotate(-307deg);
        opacity: 0.6;
        z-index: 1;
    }
    
    .section-3-slide-img--reputation {
        position: absolute;
        top: -182px;
        left: -129px;
        width: 927px;
        height: 468px;
        background-image: url(../images/services-reputation.avif);
        transform: rotate(-355deg);
        opacity: 0.6;
        z-index: 1;
    }*/

    .section-3-slide-arrow {
        position: absolute;
        z-index: 40;
        top: 35px;
        right: 35px;
        width: 90px;
        height: 90px;
        cursor: pointer;
    }
    .section-3-slide-body {
        position: absolute;
        left: 0px;
        top: 160px;
        z-index: 10;
        flex: 1;
        padding: 24px 15px 24px 35px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-height: 0;
        width: 100%;
    }
    .section-3-slide-body .dot-grid {
        position: absolute;
        top: 0px;
        left: 35px;
        display: flex;
        flex-direction: row;
        width: 110px;
        height: 30px;
        gap: 10px;
        justify-content: space-between;
        align-items: flex-start;
    }
    .section-3-slide-body .dot-grid .section-3-dot-green, .section-3-slide-body .dot-grid .section-3-dot-black {
        display: block;
        width: 30px;
        height: 30px;
    }
    .section-3-slide-title {
        margin-top: 20px;
        padding: 10px 0px;
        font-family: 'TT Hoves DemiBold';
        font-style: normal;
        font-weight: 500;
        font-size: 50px;
        line-height: 37px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }
    .section-3-slide-desc {
        width: 100%;
        height: 150px;
        font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        line-height: 35px;
        display: flex;
        align-items: start;
        color: #FFFFFF;
    }
    .section-3-slide-list {
        margin: 30px 0px 50px 0px;
        padding: 0;
        list-style: none;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-size: 21.9px;
        line-height: 1.25;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 21px;
    }
    .section-3-slide-list li span{
        display: none;
    }

    .section-3-slide-desc br.w1440{
        display:block;
    }
    .section-3-slide.sociology .section-3-slide-list li{
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #303030;
        color: #303030;
    }
    .section-3-slide.telegram .section-3-slide-list li{
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    .section-3-slide.sociology .section-3-slide-list li{
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #303030;
        color: #303030;
    }
    .section-3-slide.reputation .section-3-slide-list li{
        background: rgba(36, 36, 36, 0.1);
        border: 2px solid #303030;
        color: #303030;
    }

    .section-3-slide-badge {
        margin-top: 0px;
        display: inline-block;
        font-family: "TT Hoves Regular", "TT Hoves Regular Placeholder", sans-serif;
        font-size: 21px;
        line-height: 0.8;
        color: rgba(255, 255, 255, 1);
        letter-spacing: 0.00em;
        margin-top:0px;
    }
    .section-3-slide-badge.pdg36{
        padding-top:0px;
    }
    .section-3-slide.reputation .section-3-slide-badge{
        margin-top: 0px;
    }
    .section-3-slide-price {
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 35px;
        line-height: 35px;
        color: #FFFFFF;
    }
    .section-3-cta--adaptive {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 15.56px;
        gap: 15.56px;
        width: 100%;
        max-width: 755px;
        margin: 0px auto;
        margin-top: 24px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s 
ease-in-out;
        position: relative;
        border: 1px solid #ff9820;
        background: #ff9820;
        flex-shrink: 0;
        height: 102px;
        top: 50px;
    }
    .section-3-cta--adaptive .section-3-cta-text {
        width: 100%;
        font-family: "Druk Wide Cyr Medium", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 31px;
        line-height: 22px;
        text-align: center;
        text-transform: uppercase;
        color: #313131;
        transition: 0.15s ease-in-out;
    }
    
    .section-3-slide-body .action{
        color: #daf854;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 36px;
        line-height: 1.05;
        width: 150px;
        position: absolute;
        top: 62px;
        left: 533px;
    }
    .section-3-slide-body .action::before {
        position: absolute;
        top: -2px;
        left: -38px;
        width: 36px;
        height: 36px;
        content: "";
        background: url(../svg/fire.svg) center center / contain no-repeat;
    }


    .section-3-slide-list .m429{
        display:block !important;
    }
    .section-3-slide-list .m430{
        display:none !important;
    }

    /* Screen-4 429*/
    .screen-4 {
        top: 90px;
        height: auto;
        min-height: 1050px;
    }
    .section-4-title {
        width: 614px;
        left: 162px;
        top: -37px;
        text-align: right;
        letter-spacing: -0.02em;
    }
    .fig-4 {
        position: absolute;
        width: 248px;
        height: 248px;
        left: -45px;
        top: -82px;
        transform: rotate(0deg);
        background: url(../images/fig-4.avif) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-4-grid {
        position: relative;
        left: 0;
        top: 114px;
        width: 100%;
        max-width: 100%;
        height: 2100px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, auto);
        gap: 16px 0px;
        padding: 0 0px;
        box-sizing: border-box;
        justify-items: stretch;
    }

    .section-4-grid[data-section4-mode="slider"] .section-4-slide .section-4-card {
        width: 100%;
        max-width: 100%;
        height: 366px;
        box-sizing: border-box;
        position: relative;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Порядок карточек в слайдах: 1, 2, 5, 3, 6, 7 (карточка 4 — в конце) */
    .section-4-grid .section-4-card:nth-child(1) { order: 1; }
    .section-4-grid .section-4-card:nth-child(2) { order: 2; }
    .section-4-grid .section-4-card:nth-child(3) { order: 4; }
    .section-4-grid .section-4-card:nth-child(4) { order: 7; }
    .section-4-grid .section-4-card:nth-child(5) { order: 3; }
    .section-4-grid .section-4-card:nth-child(6) { order: 5; }
    .section-4-grid .section-4-card:nth-child(7) { order: 6; }
    .section-4-grid .section-4-card--tall-2 {
        order: unset;
    }
    .section-4-grid .section-4-card {
        width: 100%;
        max-width: 100%;
        height: 363px;
        justify-self: stretch;
        align-self: start;
        box-sizing: border-box;
    }
    .section-4-grid .section-4-card--tall-2 {
        grid-row: auto;
        grid-column: 1;
        height: 130px;
        width: 100%;
        max-width: 100%;
    }
    .section-4-card-body {
        position: relative;
        z-index: 1;
        padding: 71px 10px 32px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
        min-height: 0;
        justify-content: flex-end;
    }
    .section-4-card-title {
        margin: 0;
        font-family: "TT Hoves Medium", "TT Hoves", sans-serif;
        font-weight: 500;
        font-size: 45px;
        line-height: 0.9;
        color: #FFFFFF;
        text-align: left;
        max-width: 548px;
    }

    .section-4-card-desc {
        margin: 0;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 31.8px;
        line-height: 1.11;
        color: #FFFFFF;
        text-align: left;
        max-width: 730px;
    }
    .section-4-card-arrow--black {
        transform: rotate(-45deg);
        top: 20px;
        left: 35px;
        background: url(../svg/arrow-l.svg) center center / contain no-repeat;
    }
    .section-4-card-arrow--white {
        top: 20px;
        right: auto;
        left:35px;
        background: url(../svg/arrow-r.svg) center center / contain no-repeat;
    }

    .section-4-card-arrow {
        position: absolute;
        width: 44px;
        height: 44px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        pointer-events: none;
    }

    .card-1-t {
        padding-top: 98px;
    }
    .section-4-card-body-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        width: 100px;
        height: 50px;
        background: url(../svg/screen-1.svg) center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-4-card-img--1 {
        width: 370px;
        height: 370px;
        right: -67px;
        top: -90px;
        transform: rotate(-73deg);
        background-image: url(../images/section-4-1.avif);
    }
    .section-4-card-img--kp {
        width: 440px;
        height: 440px;
        right: -84px;
        top: -195px;
        transform: rotate(-120deg);
        background-image: url(../images/section-4-2.avif);
    }
    .section-4-card-img--2 {
        width: 187px;
        height: 378px;
        right: 0px;
        top: -51px;
        transform: rotate(-36deg);
        background-image: url(../images/section-4-3.avif);
    }
    .section-4-card-img--3 {
        width: 460px;
        height: 460px;
        left: 452px;
        top: -177px;
        transform: rotate(177deg);
        background-image: url(../images/section-4-4.avif);
    }
    .section-4-card-img--6 {
        width: 400px;
        height: 400px;
        right: -122px;
        top: -132px;
        transform: rotate(-83deg);
        background-image: url(../images/section-4-5.avif);
    }
    .section-4-card-img--4 {
        width: 300px;
        height: 300px;
        right: -57px;
        top: -87px;
        transform: rotate(-15deg);
        background-image: url(../images/section-4-6.avif);
    }

    /* Слайдер для секции 4 на мобильных (429px и меньше) */
    .section-4-grid-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0 0px;
        box-sizing: border-box;
    }

    .section-4-grid {
        position: relative;
        left: 0;
        top: 114px;
        width: 300%;
        max-width: none;
        height: 742px;
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
        box-sizing: border-box;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Создаем слайды как inline-block контейнеры */
    .section-4-grid .section-4-slide {
        display: flex;
        width: 100%;
        height: 100%;
        vertical-align: top;
        white-space: normal;
        padding: 0px 27px;
        box-sizing: border-box;
    }

    .section-4-slide .section-4-card {
        width: 100%;
        max-width: 100%;
        height: 363px;
        box-sizing: border-box;
        position: relative;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* 4-ю карточку скрываем */
    .section-4-grid .section-4-card:nth-child(4) {
        display: none;
    }

    /* Обертка слайда */
    .section-4-slide {
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        width: 33.333%;
        height: 100%;
        gap: 20px;
    }

    /* 8-я карточка остается под слайдером - позиционируется относительно wrapper */
    .section-4-grid-wrapper .section-4-card--below-slider {
        position: absolute;
        top: calc(114px + 742px + 16px);
        left: 27px;
        width: calc(100% - 54px);
        height: 130px;
        display: block !important;
        margin-bottom: 0;
    }

    /* Кнопки управления слайдером */
    .section-4-slider-btn {
        position: absolute;
        top: calc(114px + 371px);
        transform: translateY(-50%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #FF9921;
        border: none;
        cursor: pointer;
        z-index: 100;
        display: none;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease, transform 0.2s ease;
        padding: 0;
    }

    .section-4-slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .section-4-slider-btn:disabled {
        opacity: 0;
        cursor: not-allowed;
    }

    .section-4-slider-btn--prev {
        left: 15px;
    }

    .section-4-slider-btn--next {
        right: 15px;
    }

    /* Иконки стрелок в кнопках */
    .section-4-slider-btn-icon {
        width: 30px;
        height: 30px;
        background-size: contain;
        background-position: 7.5px center;
        background-repeat: no-repeat;
    }

    .section-4-slider-btn-icon--prev {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        transform: rotate(180deg);
    }

    .section-4-slider-btn-icon--next {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    /* Screen-5 429*/
    
    .screen-5 {
        overflow: visible;
        min-height: calc(710px * 1.3);
        height: calc(735px * 1.68);
        top:100px;
    }
    .fig-5 {
        display:none;
    }
    .section-5-title {
        position: absolute;
        left: 25px;
        top: 0;
        width: 755px;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: left;
    }
    .section-5-grid {
        position: relative;
        left: auto;
        width: 100%;
        height: 1107px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow: visible;
        top: 115px;
    }

    /* Слайдер section-5 при 429px: реальные размеры ×1.79 без scale */
    .section-5-slider {
        width: 1047px;
        height: 1119px;
        transform: none;
        transform-origin: unset;
        margin-left: 0px;
        margin-right: 0px;
    }
    .section-5-track--carousel {
        gap: 36px;
    }
    .section-5-track--carousel .section-5-card,
    .section-5-track--carousel [data-section-5-clone] {
        width: 760px;
        height: 1107px;
        border-radius: 47.26px;
        padding: 36px 0px 26px 0px;
    }
    .section-5-top {
        height: 354px;
        width: 700px;
        border-bottom-width: 1.89px;
    }
    .section-5-center {
        height: 462px;
        width: 700px;
        padding: 43px 0;
        border-bottom-width: 1.89px;
    }
    .section-5-card-header {
        gap: 21px;
        margin-bottom: 31px;
    }
    .section-5-card-subtitle {
        font-family: "TT Hoves Medium", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 26px;
        line-height: 26px;
        color: #DAF955;
    }
    .section-5-card-icon--target,
    .section-5-card-icon--flame {
        width: 50px;
        height: 50px;
    }
    .section-5-card-title {
        font-family: "TT Hoves Medium", sans-serif;
        font-size: 54px;
        line-height: 47px;
    }
    .section-5-card-desc {
        font-size: 27px;
        line-height: 34px;
    }
    .section-5-card-did {
        margin-bottom: 14px;
    }
    .section-5-card-subtitle {
        font-size: 54px;
        line-height: 47px;
    }
    .section-5-card-list {
        padding: 0px 0;
        height: 293px;
        justify-content: flex-start;
        gap: 27px;
    }
    .section-5-card-list li {
        font-size: 27.3px;
        line-height: 37px;
    }
    .section-5-card-results {
        width: 690px;
        padding-top: 7px;
    }
    .section-5-card-results-title {
        font-size: 54px;
        line-height: 50px;
    }
    .section-5-card-results-blocks {
        margin-top: 18px;
        gap: 23px;
    }
    .section-5-card-result-block {
        border-radius: 21.81px;
        padding: 8px 15px 6px 11px;
        height: 138px;
        gap: 7px;
    }
    .section-5-card-result-block--with-num .section-5-card-result-label {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 13.0519px;
        line-height: 108%;
    }
    .section-5-card-result-block .section-5-card-result-label {
        line-height: 120%;
    }
    .section-5-card-result-block .section-5-card-result-label {
        font-size: 23.5px;
    }
    .section-5-card-result-block .section-5-card-result-value {
        font-size: 29px;
    }
    .section-5-card-result-block .section-5-card-result-value strong {
        font-size: 57px;
    }
    .section-5-card-result-block--with-num {
        gap: 12px;
    }
    .section-5-card-result-num {
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 51.6834px;
        line-height: 100%;
        text-align: right;
        color: #313131;
        flex-shrink: 0;
    }
    .section-5-card-result-num {
        font-size: 101px;
        min-width: 115px;
    }
    
    /* Позиция кнопок слайдера секции 5 при 429px (центр по высоте слайдера) */
    .section-5-slider-btn {
        top: 50%;
        background-color: rgba(255, 151, 33, 0.7);
    }
    .section-5-cta--mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 25px 15.56px;
        gap: 15.56px;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        margin-top: 21px;
        border-radius: 15px;
        text-decoration: none;
        transition: 0.15s ease-in-out;
        position: relative;
        background: #daf955 !important;
        color: #313131 !important;
        flex-shrink: 0;
        height: 102px;
    }
    .section-5-cta--mobile .section-3-cta-text {
        color: #313131 !important;
        font-size: 31px;
        line-height: 31px;
        width: 100%;
        font-family: 'Druk Wide Cyr Medium', Arial, sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
    }

    .btn-section5 {
        display: block;
        position: relative;
        height: 100px;
        padding: 0px 15px;
        box-sizing: border-box;
        top: 100px;
    }

    /* Screen-6 429*/
    .screen-6 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-height: 2330px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index:40;
        top: 220px;
    }
    .section-6-title {
        position: absolute;
        right: 25px;
        top: -44px;
        width: 615px;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: right;
        letter-spacing: -0.01em;
    }
    .fig-6 {
        position: absolute;
        width: 340px;
        height: 340px;
        left: -134px;
        top: -143px;
        transform: rotate(0deg);
        background: url(../images/fig-6.avif) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-6-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 25px;
        height: auto;
        min-height: 0;
        padding: 20px;
    }

    .section-6-card {
        background: url(../svg/section-6-bg-429.svg) center center / contain no-repeat;
    }

    .section-6-card.section-6-card--3 {
        background: url(../svg/section-6-bg-429-middle-half.svg) center center / contain no-repeat;
        height: 279px;
    }
    .section-6-card.section-6-card--4 {
        background: url(../svg/section-6-bg-429-middle-2x.svg) center center / contain no-repeat;
        height: 370px;
    }

    .section-6-card--white {
        width: 100%;
        max-width: 100%;
        height: 328px;
        min-height: 156px;
        box-sizing: border-box;
    }

    .section-6-card--white h3{
        width: 767px;
    }

    .section-6-card--1{}
    .section-6-card--2{}
    .section-6-card--3 h3 br{ display:none;}
    .section-6-card--4{}

    .section-6-card--social {
        grid-column: 1;
        grid-row: 5;
        background: url(../svg/exclude.svg) center center / contain no-repeat;
        padding: 28px 20px 20px;
        height: 654px;
        box-sizing: border-box;
        width: 100%;
        min-height: 558px;
        border-radius: 25.33px;
    }
    .section-6-social-bg {
        position: absolute;
        width: 923px;
        height: 929px;
        left: -546px;
        top: 50%;
        transform: translateY(-47%);
        background: url(../svg/round.svg) center center / cover no-repeat;
        background-size: 100% 100%;
    }
    .section-6-social-subtitle {
        position: absolute;
        width: 603.81px;
        height: 57px;
        left: 37px;
        top: 164.25px;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 60px;
        line-height: 57px;
        color: #FFFFFF;
    }

    .section-6-card-title {
        position: relative;
        width: 675px;
        min-height: 54px;
        padding: 23px 30px 15px 30px;
        font-family: 'Druk Wide Cyr Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 44px;
        line-height: 49px;
        color: #5278FF;
    }
    .section-6-social-title {
        position: absolute;
        width: 334.67px;
        height: 28.51px;
        left: 38px;
        top: 143px;
        font-family: 'SNFBSTRD handwrite SNFBSTRD handwrite';
        font-style: normal;
        font-weight: 400;
        font-size: 36.3233px;
        line-height: 30px;
        color: #5278FF;
        transform: matrix(1, -0.02, 0.02, 1, 0, 0);
    }
    .section-6-body {
        display: flex;
        flex-direction: column;
    }
    .section-6-social-desc {
        position: absolute;
        width: 534.93px;
        height: 99px;
        left: 38px;
        top: 257.63px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 29.9606px;
        line-height: 37px;
        display: flex;
        align-items: center;
        color: #FFFFFF;
    }

    .section-6-social-desc br.w811{
        display:none;
    }
    .section-6-card-desc br.w810-429{
        display:none;
    }
    .section-6-card-desc br.w429{
        display:block;
    }   

    .section-6-social-buttons {
        position: absolute;
        top: 401px;
        left: 41px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 23px;
    }

    .section-6-social-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 10px 14px;
        background: #FFFFFF;
        color: #313131;
        border-radius: 10px;
        font-family: "TT Hoves Regular", "TT Hoves", sans-serif;
        font-weight: 400;
        font-size: 23.1803px;
        line-height: 24px;
        text-decoration: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        width: 348px;
        height: 56px;
    }
    .section-6-social-btn.vk {
        width: 420px;
        height: 56px;
    }

    .section-6-social-btn-icon--telegram {
        width: 26px;
        height: 26px;
        background: url(../svg/telegram-icon.svg) center center / contain no-repeat;
    }
    .section-6-social-btn-icon--vk {
        width: 33px;
        height: 26px;
        background: url(../svg/vk-icon.svg) center center / contain no-repeat;
    }

    .section-6-social-illustration {
        position: absolute;
        right: 42px;
        bottom: 36px;
        width: 224px;
        height: 224px;
        background: url(../images/wm2-2.webp) center center / contain no-repeat;
        pointer-events: none;
    }

    .section-6-card--white div{
        padding:0px 30px;
        width: 100%;
    }
    .section-6-card-desc {
        position: unset;
        width: unset;
        padding: 0px 0px 0px 0px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 30px;
        line-height: 33px;
        align-items: unset;
        color: #313131;
        display: unset;
    }
    .section-6-card-desc.nd-inline-b{
        display:flex;
    }
    .section-6-card-desc:last-of-type {
        font-family: 'TT Hoves Regular';
        font-weight: 900;
        margin-bottom: 0;
    }
    .section-6-card-corner {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .section-6-social-logo {
        position: absolute;
        bottom: 25px;
        left: 35px;
        width: 34px;
        height: 25px;
        background: url(../svg/fbl.svg) center center / contain no-repeat;
        opacity: 1;
    }

    /* Screnn-7 */
    .screen-7 {
        position: relative;
        width: 1342px;
        max-width: 100%;
        margin: 40px auto 60px auto;
        min-height: 300px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index: 70;
        gap: 0px;
        top: 90px;
    }
    .section-7-title {
        margin: 0px;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: center;
        letter-spacing: -0.01em;
    }
    .section-7-grid {
        position: absolute;
        left: 0px;
        top: 131px;
        width: 100%;
        height: 100px;
        display: block;
    }

    /* Screen-8 429*/
    .screen-8 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 30px auto;
        min-height: 1730px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index: 80;
        top: 60px;
    }
    .section-8-title {
        margin: 0px;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 55px;
        line-height: 1.05;
        color: #313131;
        text-align: center;
        letter-spacing: -0.01em;
    }
    .fig-8 {
        position: absolute;
        width: 360px;
        height: 360px;
        left: -82px;
        top: -116px;
        transform: rotate(0deg);
        background: url(../images/fig-4.avif) center center / contain no-repeat;
        background-size: 100% 100%;
    }
    .section-8-grid {
        position: absolute;
        left: 0;
        top: 95px;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 571px 452px 462px;
        gap: 16px 24px;
        padding: 0px 25px;
    }
    .section-8-card {
        border-radius: 40px;
        padding: 35px 30px 35px 30px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }
    .section-8-card-text {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 31px;
        line-height: 37px;
        color: #FFFFFF;
        padding-bottom: 45px;
    }
    .section-8-card--middle-btn {
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0px 30px 50px 30px;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
    }
    .section-8-card-contact {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 31px;
        line-height: 37px;
        color: #FFFFFF;
        padding-top: 0px;
    }

    /* Screen-9 429*/
    .screen-9 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-height: 1783px;
        box-sizing: border-box;
        padding: 0;
        overflow: visible;
        z-index: 90;
    }
    .fig-9 {
        display:none;
    }
    .section-9-card-photo {
        border-radius: 0 24px 0 0;
    }
    .section-9-title {
        position: absolute;
        left: 25px;
        top: -30px;
        width: 100%;
        margin: 0;
        font-family: "SNFBSTRD handwrite SNFBSTRD handwrite", sans-serif;
        font-weight: 400;
        font-size: 53.6px;
        line-height: 1.05;
        color: #313131;
        text-align: left;
        letter-spacing: -0.02em;
        word-spacing: -0.05em;
    }
    .section-9-grid {
        position: absolute;
        left: 0px;
        top: 67px;
        width: 100%;
        height: 675px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 408px 408px 408px 480px;
        gap: 11px;
        padding: 14px;
    }
    .section-9-card {
        position: relative;
        background-color: #EFEEEE;
        border-radius: 0 24px 24px 24px;
        padding: 24px;
        padding-top: 274px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        width: 100%;
        height: 406px;
        overflow: hidden;
        transition: none;
    }
    .section-9-card-photo--1,
    .section-9-card-photo--2 {
        height: 328px;
        width: 505px;
        left: -80px;
        bottom: -24px;
    }
    .section-9-card-photo--1 { background-image: url(../images/p1.png); }
    .section-9-card-photo--2 { background-image: url(../images/p2.png); }
    .section-9-card-photo--3 {
        background-image: url(../images/p3.png);
        height: 328px;
        width: 505px;
        left: -62px;
        bottom: -24px;
    }
    .section-9-card-photo--4 {
        background-image: url(../images/p4.png);
        height: 353px;
        width: 528px;
        left: -91px;
        bottom: -50px;
    }
    .section-9-card-photo--5 {
        background-image: url(../images/p5.png);
        height: 316px;
        width: 528px;
        left: -91px;
        bottom: -14px;
    }
    .section-9-card-photo--6 {
        background-image: url(../images/p6.png);
        height: 337px;
        width: 555px;
        left: -78px;
        bottom: -32px;
    }
    .section-9-card-photo--7 {
        background-image: url(../images/p7.png);
        height: 357px;
        width: 580px;
        left: -80px;
        bottom: -51px;
    }
    .section-9-card-photo--8 {
        background-image: url(../images/p8.png);
        height: 352px;
        bottom: -40px;
        width: 457px;
        left: -40px;
    }
    .section-9-card-name {
        position: absolute;
        width: 300px;
        height: 32px;
        left: 15.3px;
        top: 15.86px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 37px;
        line-height: 32px;
        color: #313131;
    }
    .section-9-card-role {
        position: absolute;
        width: 300px;
        height: 15px;
        left: 16.3px;
        top: 56px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 22px;
        color: rgba(49, 49, 49, 0.5);
    }

    /* Screen-10 429: пропорции как у 810 (коэффициент 429/810 ≈ 0.53), слайдер с кнопками как у секции 5 */
    .screen-10 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        min-height: 138px;
        box-sizing: border-box;
        padding-top: 50px;
        padding-bottom: 0px;
        margin-bottom: 16px;
        overflow: visible;
        z-index: 100;
    }
    .section-10-slider-wrap {
        position: relative;
        top: 40px;
    }
    .section-10-slider-viewport {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 565px;
        position: relative;
        touch-action: none;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll {
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar {
        height: 5px;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.06);
        border-radius: 3px;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 3px;
    }
    .section-10-slider-viewport.section-10-slider-viewport--scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.4);
    }
    .section-10-slider-wrap--scroll .section-10-slider-btn {
        display: none !important;
    }
    .section-10-slider-viewport--scroll .section-10-grid--slider {
        transition: none;
        will-change: auto;
    }
    .section-10-grid.section-10-grid--slider {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        height: 275px;
        margin: 0;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    /* Кнопки секции 10 при 429px — пропорционально 810 (48px → 25px) */
    .section-10-slider-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: rgba(82, 120, 255, 0.856);
        border: none;
        cursor: pointer;
        z-index: 100;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
    }
    .section-10-slider-btn-icon {
        width: 30px;
        height: 30px;
        background-size: contain;
        background-position: 8px center;
        background-repeat: no-repeat;
    }
    .section-10-slider-btn--next .section-10-slider-btn-icon {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
    .section-10-slider-btn--prev .section-10-slider-btn-icon {
        background-image: url("data:image/svg+xml,%3Csvg width='13' height='22' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.62989 1.62984L10.9668 10.9668L1.62988 20.3037' stroke='%23FFFFFF' stroke-width='3.26052' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        transform: rotate(180deg);
    }
    .section-10-slider-btn:hover:not(:disabled) {
        background: #5278FF;
        transform: translateY(-50%) scale(1.08);
    }
    .section-10-slider-btn:active:not(:disabled) {
        transform: translateY(-50%) scale(0.96);
    }
    .section-10-slider-btn:disabled {
        opacity: 0;
        cursor: not-allowed;
    }
    /* Секция 10 при 429px: скрывать кнопку «предыдущий» на первом слайде, «следующий» — на последнем */
    .section-10-slider-btn--hidden {
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
    }
    .section-10-slider-btn--prev {
        left: 5px;
    }
    .section-10-slider-btn--next {
        right: 5px;
    }
    .section-10-slide {
        flex-shrink: 0;
        display: flex;
        width: 429px !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 13px;
        height: 275px;
        box-sizing: border-box;
        padding: 0;
    }
    .section-10-grid.section-10-grid--slider .section-10-slide .section-10-card {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        flex-shrink: 0;
        height: 168px;
        min-height: 90px;
    }
    .name-smi {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 5px;
        gap: 10px;
        position: absolute;
        min-width: 50px;
        height: 45px;
        left: 25px;
        top: 20px;
        background: #FF9921;
        border-radius: 5px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 500;
        font-size: 22px;
        line-height: 18px;
        color: #000000;
    }
    .icon-smi {
        position: absolute;
        width: 45px;
        height: 45px;
        right: 26px;
        top: 20px;
        background: #D9D9D9;
        border-radius: 5px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section-10-card-body {
        position: absolute;
        width: calc(100% - 64px);
        height: 53px;
        left: 24px;
        top: 79px;
        font-family: 'TT Hoves DemiBold';
        font-style: normal;
        font-weight: 500;
        font-size: 26px;
        line-height: 33px;
        color: #FFFFFF;
    }

    /* Section-11 */
    .screen-11 {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 563px;
        min-height: 422px;
        box-sizing: border-box;
        padding-top: 95px;
        padding-bottom: 40px;
        overflow: visible;
        z-index: 100;
        top: 30px;
    }
    .fig-11 {
        display:none;
    }
    .section-11-grid {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        top: -7px;
        position: relative;
    }
    .section-11-card-image {
        width: 236px;
        height: 190px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 25px;
    }
    .section-11-card-content {
        padding: 0px 3px;
        text-align: center;
    }
    .section-11-card-date {
        display: block;
        position: relative;
        width: 100%;
        height: 35px;
        margin: 11px 0px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 17px;
        line-height: 29px;
        color: #8C8888;
        text-align: center;
    }
    .section-11-card-title {
        position: relative;
        font-family: 'TT Hoves Medium';
        font-style: normal;
        font-weight: 500;
        font-size: 25px;
        line-height: 36px;
        color: #000000;
        margin-bottom: 20px;
    }

    /* footer 429*/

    footer{
        /*background: url("../images/footer429.png") center bottom /cover no-repeat;*/
        padding: 0px 0px;
        box-sizing: border-box;
        height: 475px;
        min-height: 228px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }


    footer::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 70px;
        background: url(../svg/FEEDBACK.svg) center center / contain no-repeat;
        z-index: 15;
    }
    .footer-link {
        position: absolute;
        display: flex;
        width: 100%;
        left: 0px;
        top: 85px;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 19.95px;
        line-height: 22px;
        color: #ff9920;
        padding: 0px 37px;
    }
    .footer-social-buttons {
        position: absolute;
        top: 20px;
        right: 0px;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        padding: 0px 30px;
    }
    .footer-mail-buttons {
        position: absolute;
        top: 92px;
        right: 50%;
        transform: translateX(50%);
        z-index: 1;
        display: flex;
        flex-direction: row;
        gap: 25px;
    }
    .footer-copy {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 250px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 28px;
        color: #9E9E9E;
        padding: 0px 30px;
        text-align: center;
    }
    
    .footer-link {
        position: absolute;
        display: flex;
        width: 100%;
        left: 0px;
        top: 329px;
        gap: 7px;
        justify-content: space-between;
        align-items: center;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 22px;
        color: #ff9920;
        padding: 0px 37px;
        flex-direction: column;
    }
    .footer-mail {
        position: absolute;
        width: 100%;
        left: 0px;
        top: 170px;
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 22px;
        color: #9E9E9E;
        display: flex;
        flex-direction: row;
        gap: 60px;
        align-items: center;
        justify-content: space-between;
        padding: 0 57px;
    }
    .footer-mail-blk {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: flex-start;
    }
    .footer-mail-blk-title {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 22px;
        color: #9E9E9E;
        text-align: center;
    }
    .footer-mail-blk-value {
        font-family: 'TT Hoves Regular';
        font-style: normal;
        font-weight: 400;
        font-size: 25px;
        line-height: 22px;
        color: #9E9E9E;
        text-align: center;
    }
    .footer-mail-blk-value a{
        text-decoration:underline;
        color: #9E9E9E;
    }
    .footer-mail-blk-value a:hover{
        text-decoration:none;
    }
}

