:root {
    --section-space: 80px;
}

/* Brutal Type Regular */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType.woff2') format('woff2'),
         url('./new-fonts/BrutalType.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Bold */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-Bold.woff2') format('woff2'),
         url('./new-fonts/BrutalType-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Extra Bold */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-ExtraBold.woff2') format('woff2'),
         url('./new-fonts/BrutalType-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Black */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-Black.woff2') format('woff2'),
         url('./new-fonts/BrutalType-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Light */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-Light.woff2') format('woff2'),
         url('./new-fonts/BrutalType-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Extra Light */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-ExtraLight.woff2') format('woff2'),
         url('./new-fonts/BrutalType-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Medium */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-Medium.woff2') format('woff2'),
         url('./new-fonts/BrutalType-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/* Brutal Type Thin */
@font-face {
    font-family: 'Brutal Type';
    src: url('./new-fonts/BrutalType-Thin.woff2') format('woff2'),
         url('./new-fonts/BrutalType-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 100px;
    }
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 76px;
    }
}

body.new-service {
    background-color: #0A0A0A;
}

.new-service .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1200px;
}

/* @media (min-width: 576px) {
	.new-service .container {
		max-width: 540px;
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 768px) {
	.new-service .container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.new-service .container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.new-service .container {
		max-width: 1170px;
	}
} */

.new-service .services--inner .hero-slide .section-heading {
    font-family: 'Brutal Type', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 112.5%;
    margin-top: 16px;
}

.new-service .services--inner .hero-slide .category {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 13px;
    line-height: 100%;
    color: #FAFAFA80;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #D9D9D933;
    width: 32px;
}

.new-service .services--inner .hero-slide .section-description {
    font-family: 'PT Root UI', sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 400;
    color: #AAAAAA;
}

.new-service .services--inner .hero-slide .section-description, 
.new-service .services--inner .hero-slide .section-heading {
    padding: 0 64px;
}

.new-service .header {
    padding: 25px 50px;
    position: static;
}


.new-service .header .logo img {
    height: 30px;
    width: auto;
}

.new-service .services--inner .hero-slide {
    height: 800px;
    margin: 10px 45px 0;
}

.new-service .services--inner .hero-slide::before {
    background-color: rgba(0, 0, 0, 0.7);
}

.new-service .services--inner .hero-slide .control-buttons {
    display: none;
}

.new-service .services--inner .hero-slide .button-wrapper {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.new-service .services--inner .hero-slide .button-wrapper .button {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    border: 1px solid var(--ui-color);
    margin: 0;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    padding: 16px 32px;
}

.new-service .services--inner .hero-slide .button-wrapper .button:hover {
    background-color: var(--theme_yellow);
    border-color: var(--theme_yellow);
    color: #121212;
}

@media (max-width: 1200px) {
    .new-service .header {
        padding: 25px 15px;
    }
    .new-service .services--inner .hero-slide {
        margin: 10px 15px 0;
    }
}

@media (max-width: 767px) {
    .new-service .services--inner .hero-slide {
        height: 700px;
    }
    .new-service .services--inner .hero-slide .section-heading {
        font-size: 48px;
        margin-top: 16px;
    }
    .new-service .services--inner .hero-slide .section-description {
        font-size: 20px;
        margin-top: 16px;
    }
    .new-service .services--inner .hero-slide .button-wrapper {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .new-service .services--inner .hero-slide .button-wrapper .button {
        width: 100%;
        text-align: center;
    }
    .new-service .services--inner .hero-slide .section-heading,
    .new-service .services--inner .hero-slide .section-description {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .new-service .services--inner .hero-slide .section-heading {
        font-size: 40px;
        line-height: 48px;
    }
    .new-service .services--inner .hero-slide .section-description {
        font-size: 20px;
        line-height: 28px;
    }
    .new-service .services--inner .hero-slide .button-wrapper {
        flex-direction: column;
        width: 100%;
    }
    .new-service .services--inner .hero-slide .button-wrapper .button {
        width: 100%;
        text-align: center; 
    }
    .new-service .services--inner .hero-slide .container {
        padding-top: 0;
    }
}

.new-service .inner-links-section {
    margin-bottom: 0;
    position: sticky;
    top: 0;
    background-color: #0A0A0A;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.new-service .inner-links-section.is-sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.new-service .inner-links-container {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 16px;
    left: 0;
}

.new-service .inner-links-container .inner-link {
    padding: 16px;
    font-family: 'PT Root UI', sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 400;
    color: #7A7A7A;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
}

.new-service .inner-links-container .inner-link.active {
    color: #FAFAFA;
    border-color: #FAFAFA;
}

.new-service .inner-links-container .inner-link:hover {
    color: #FAFAFA;
}

@media (max-width: 991px) {
    .new-service .inner-links-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    .new-service .inner-links-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 50px;
        background: linear-gradient(to right, #0A0A0A 0%, rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0) 100%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .new-service .inner-links-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50px;
        background: linear-gradient(to left, #0A0A0A 0%, rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0) 100%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .new-service .inner-links-section.scrollable-left::before {
        opacity: 1;
    }
    
    .new-service .inner-links-section.scrollable-right::after {
        opacity: 1;
    }
    
    .new-service .inner-links-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-top: 12px;
        padding-bottom: 12px;
        gap: 0;
        position: relative;
        z-index: 0;
    }
    
    .new-service .inner-links-container::-webkit-scrollbar {
        display: none;
    }
    
    /* .new-service .inner-links-container .inner-link {
        padding: 12px 16px;
        font-size: 18px;
        line-height: 140%;
        flex-shrink: 0;
    } */
    
    .new-service .inner-links-container .inner-link:first-child {
        padding-left: 15px;
    }
    
    .new-service .inner-links-container .inner-link:last-child {
        padding-right: 15px;
    }
}

@media (max-width: 575px) {
    .new-service .inner-links-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    /* .new-service .inner-links-container .inner-link {
        padding: 10px 14px;
        font-size: 16px;
    } */
    
    .new-service .inner-links-container .inner-link:first-child {
        padding-left: 16px;
    }
    
    .new-service .inner-links-container .inner-link:last-child {
        padding-right: 16px;
    }
}

.new-service .numbers-cards {
    margin-bottom: var(--section-space);
    margin-top: 44px;
}

.new-service .numbers-cards__items-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2px;
}

.new-service .numbers-cards__item {
    flex: 1;
    flex-shrink: 0;
    background-color: #1A1A1A;
    padding: 24px 32px;
}

.new-service .numbers-cards__item-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 48px;
}

.new-service .numbers-cards__item-number {
    font-family: 'Brutal Type', sans-serif;
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: var(--theme_yellow);
}

.new-service .numbers-cards__item-text {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    font-weight: 300;
    color: #FAFAFA;
}

@media (max-width: 1200px) {
    .numbers-cards__items-container {
        width: 100vw;
        transform: translateX(-15px);
    }
    .new-service .numbers-cards__item-text {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 991px) {
    .new-service .numbers-cards {
        margin-top: 24px;
    }
    .numbers-cards__items-container {
        flex-direction: column;
    }
    .new-service .numbers-cards__item-text {
        font-size: 28px;
        line-height: 36px;
    }
}

/* @media (max-width: 767px) {
    .new-service .numbers-cards {
        margin-top: 24px;
    }
    
    .new-service .numbers-cards__items-container {
        flex-direction: column;
        gap: 2px;
    }
    
    .new-service .numbers-cards__item {
        flex: 1 1 100%;
        width: 100%;
        padding: 20px 24px;
    }
    
    .new-service .numbers-cards__item:nth-child(3) {
        flex: 1 1 100%;
    }
    
    .new-service .numbers-cards__item-number {
        font-size: 64px;
    }
    
    .new-service .numbers-cards__item-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .new-service .numbers-cards__item-content {
        gap: 24px;
    }
} */

@media (max-width: 575px) {
    .new-service .numbers-cards {
        margin-top: 46px;
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .new-service .numbers-cards {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .new-service .numbers-cards__item-number {
        font-size: 80px;
        line-height: 80px;
    }
}

.new-service .section-heading {
    font-family: 'Brutal Type', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    margin-bottom: 24px;
}

.new-service .section-heading span {
    color: var(--theme_yellow);
}

.new-service .section-subheading {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    color: #AAAAAA;
}

@media (max-width: 1200px) {
    .new-service .section-subheading {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .new-service .section-heading {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .new-service .section-subheading {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .new-service .section-subheading {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .new-service .section-subheading {
        font-size: 16px;
    }
}

.new-service .features-section__items-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2px;
    margin-top: 48px;
}

.new-service .features-section__item {
    flex: 1;
    flex-shrink: 0;
    padding: 32px;
    position: relative;
}

.new-service .features-section__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #1A1A1A;
}

.new-service .features-section__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.new-service .features-section__item:nth-child(1)::after {
    background-image: url('./images/cards-textures/1.png');
}
.new-service .features-section__item:nth-child(2)::after {
    background-image: url('./images/cards-textures/2.png');
}
.new-service .features-section__item:nth-child(3)::after {
    background-image: url('./images/cards-textures/3.png');
}   

.new-service .features-section.light-grey-bg {
    background-color: #F2F2F2;
}

.new-service .features-section__items-container.color .features-section__item:nth-child(1)::before {
    background-color: #021707;
}
.new-service .features-section__items-container.color .features-section__item:nth-child(2)::before {
    background-color: #040A2F;
}
.new-service .features-section__items-container.color .features-section__item:nth-child(3)::before {
    background-color: #180208;
}

.new-service .features-section__item-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 49px;
}

.new-service .features-section__item-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #DADADA;
    position: relative;
}

.new-service .features-section__item-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #D9D9D933;
}

.new-service .features-section__item-text {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FAFAFA;
}

@media (max-width: 1200px) {
    .features-section__items-container {
        width: 100vw;
        transform: translateX(-15px);
    }
}

@media (max-width: 991px) {
    .features-section__items-container {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .new-service .features-section {
        margin-top: 60px;
    }
    
    .new-service .features-section__items-container {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 575px) {
    .new-service .features-section__item {
        padding: 20px 16px;
    }
    
    .new-service .features-section__item-content {
        gap: 24px;
    }
    
    .new-service .features-section__item-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .new-service .features-section__item-title::after {
        bottom: -12px;
        width: 24px;
        height: 1.5px;
    }
    
    .new-service .features-section__item-text {
        font-size: 14px;
        line-height: 20px;
    }
}

.functions-section__content {
    margin-top: 48px;
    display: flex;
    gap: 2px;
    align-items: stretch;
}

.functions-section__content-buttons-column {
    display: flex;
    gap: 2px;
    flex-direction: column;
    width: 398px;
    flex-shrink: 0;
}

.functions-section__content-button {
    background-color: #121212;
    color: #7A7A7A;
    padding: 24px 32px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.white-bg .functions-section__content-button,
.light-grey-bg .functions-section__content-button {
    background-color: #F2F2F2;
}

.functions-section__content-button.active,
.functions-section__content-button.active:hover {
    background-color: #1E1E1E;
    color: #DADADA;
}

.white-bg .functions-section__content-button.active,
.light-grey-bg .functions-section__content-button.active,
.white-bg .functions-section__content-button.active:hover,
.light-grey-bg .functions-section__content-button.active:hover {
    background-color: #EBEBEB;
    color: #020202;
}

.functions-section__content-button:hover {
    background-color: #191919;
    color: #bababa;
}

.white-bg .functions-section__content-button:hover,
.light-grey-bg .functions-section__content-button:hover {
    background-color: #ededed;
    color: #3d3d3d;
}

.functions-section__content-items {
    background-color: #1A1A1A;
    display: grid;
    width: 100%;
}

.white-bg .functions-section__content-items,
.light-grey-bg .functions-section__content-items {
    background-color: #EBEBEB;
    border-left: 4px solid var(--theme_yellow);
}

.functions-section__content-item {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #AAAAAA;
    grid-area: 1 / 1;
    padding: 24px 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.white-bg .functions-section__content-item,
.light-grey-bg .functions-section__content-item {
    color: #020202;
}

.functions-section__content-item.active {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1200px) {
    .functions-section__content-buttons-column {
        width: 360px;
    }
}

@media (max-width: 991px) {
    .functions-section__content-buttons-column {
        width: 280px;
    }
    .functions-section__content-button {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .functions-section__content {
        flex-direction: column;
    }
    .functions-section__content-buttons-column {
        width: 100%;
    }
    .functions-section__content-button {
        padding: 12px 16px;
    }
}

.pre-heading {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FAFAFA80;
    padding-bottom: 24px;
}
.pre-heading::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background-color: #D9D9D933;
    margin-top: 10px;
}

.text-block p,
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6,
.text-block ul,
.text-block li {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #AAAAAA;
    margin: 0;
}

.text-block ul {
    list-style-type: disc;
    padding-left: 30px;
}
.text-block ul li {
    padding-left: 6px;
}
.text-block ul li::before {
    display: none;
}
.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6 {
    font-weight: 700;
}

/* @media (max-width: 1200px) {
    .text-block p,
    .text-block h1,
    .text-block h2,
    .text-block h3,
    .text-block h4,
    .text-block h5,
    .text-block h6,
    .text-block ul,
    .text-block li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .text-block ul {
        padding-left: 24px;
    }
}

@media (max-width: 991px) {
    .text-block p,
    .text-block h1,
    .text-block h2,
    .text-block h3,
    .text-block h4,
    .text-block h5,
    .text-block h6,
    .text-block ul,
    .text-block li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .text-block ul {
        padding-left: 24px;
    }
}

@media (max-width: 767px) {
    .text-block p,
    .text-block h1,
    .text-block h2,
    .text-block h3,
    .text-block h4,
    .text-block h5,
    .text-block h6,
    .text-block ul,
    .text-block li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .text-block ul {
        padding-left: 20px;
    }
}

@media (max-width: 575px) {
    .text-block p,
    .text-block h1,
    .text-block h2,
    .text-block h3,
    .text-block h4,
    .text-block h5,
    .text-block h6,
    .text-block ul,
    .text-block li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .text-block ul {
        padding-left: 18px;
    }
    
    .text-block ul li {
        padding-left: 4px;
    }
} */

.new-service .text-section .text-block {
    margin-top: 24px;
}

.new-service .text-section .text-block p + p,
.new-service .text-section .text-block p + ul,
.new-service .text-section .text-block ul + p,
.new-service .text-section .text-block p + h1,
.new-service .text-section .text-block p + h2,
.new-service .text-section .text-block p + h3,
.new-service .text-section .text-block p + h4,
.new-service .text-section .text-block p + h5,
.new-service .text-section .text-block p + h6,
.new-service .text-section .text-block h1 + p,
.new-service .text-section .text-block h2 + p,
.new-service .text-section .text-block h3 + p,
.new-service .text-section .text-block h4 + p,
.new-service .text-section .text-block h5 + p,
.new-service .text-section .text-block h6 + p {
    margin-top: 20px;
}

@media (max-width: 1200px) {    
    .new-service .text-section .text-block {
        margin-top: 20px;
    }
    
    .new-service .text-section .text-block p,
    .new-service .text-section .text-block h1,
    .new-service .text-section .text-block h2,
    .new-service .text-section .text-block h3,
    .new-service .text-section .text-block h4,
    .new-service .text-section .text-block h5,
    .new-service .text-section .text-block h6,
    .new-service .text-section .text-block ul,
    .new-service .text-section .text-block li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .new-service .text-section .text-block p + p,
    .new-service .text-section .text-block p + ul,
    .new-service .text-section .text-block ul + p,
    .new-service .text-section .text-block p + h1,
    .new-service .text-section .text-block p + h2,
    .new-service .text-section .text-block p + h3,
    .new-service .text-section .text-block p + h4,
    .new-service .text-section .text-block p + h5,
    .new-service .text-section .text-block p + h6,
    .new-service .text-section .text-block h1 + p,
    .new-service .text-section .text-block h2 + p,
    .new-service .text-section .text-block h3 + p,
    .new-service .text-section .text-block h4 + p,
    .new-service .text-section .text-block h5 + p,
    .new-service .text-section .text-block h6 + p {
        margin-top: 18px;
    }
}

@media (max-width: 991px) {
    .new-service .text-section .text-block {
        margin-top: 18px;
    }
    
    .new-service .text-section .text-block p,
    .new-service .text-section .text-block h1,
    .new-service .text-section .text-block h2,
    .new-service .text-section .text-block h3,
    .new-service .text-section .text-block h4,
    .new-service .text-section .text-block h5,
    .new-service .text-section .text-block h6,
    .new-service .text-section .text-block ul,
    .new-service .text-section .text-block li {
        font-size: 18px;
        line-height: 26px;
    }
    
    .new-service .text-section .text-block ul {
        padding-left: 24px;
    }
    
    .new-service .text-section .text-block p + p,
    .new-service .text-section .text-block p + ul,
    .new-service .text-section .text-block ul + p,
    .new-service .text-section .text-block p + h1,
    .new-service .text-section .text-block p + h2,
    .new-service .text-section .text-block p + h3,
    .new-service .text-section .text-block p + h4,
    .new-service .text-section .text-block p + h5,
    .new-service .text-section .text-block p + h6,
    .new-service .text-section .text-block h1 + p,
    .new-service .text-section .text-block h2 + p,
    .new-service .text-section .text-block h3 + p,
    .new-service .text-section .text-block h4 + p,
    .new-service .text-section .text-block h5 + p,
    .new-service .text-section .text-block h6 + p {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {    
    .new-service .text-section .text-block {
        margin-top: 16px;
    }
    
    .new-service .text-section .text-block p,
    .new-service .text-section .text-block h1,
    .new-service .text-section .text-block h2,
    .new-service .text-section .text-block h3,
    .new-service .text-section .text-block h4,
    .new-service .text-section .text-block h5,
    .new-service .text-section .text-block h6,
    .new-service .text-section .text-block ul,
    .new-service .text-section .text-block li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .new-service .text-section .text-block ul {
        padding-left: 20px;
    }
    
    .new-service .text-section .text-block p + p,
    .new-service .text-section .text-block p + ul,
    .new-service .text-section .text-block ul + p,
    .new-service .text-section .text-block p + h1,
    .new-service .text-section .text-block p + h2,
    .new-service .text-section .text-block p + h3,
    .new-service .text-section .text-block p + h4,
    .new-service .text-section .text-block p + h5,
    .new-service .text-section .text-block p + h6,
    .new-service .text-section .text-block h1 + p,
    .new-service .text-section .text-block h2 + p,
    .new-service .text-section .text-block h3 + p,
    .new-service .text-section .text-block h4 + p,
    .new-service .text-section .text-block h5 + p,
    .new-service .text-section .text-block h6 + p {
        margin-top: 14px;
    }
}

@media (max-width: 575px) {
    .new-service .text-section .text-block {
        margin-top: 14px;
    }
    
    .new-service .text-section .text-block p,
    .new-service .text-section .text-block h1,
    .new-service .text-section .text-block h2,
    .new-service .text-section .text-block h3,
    .new-service .text-section .text-block h4,
    .new-service .text-section .text-block h5,
    .new-service .text-section .text-block h6,
    .new-service .text-section .text-block ul,
    .new-service .text-section .text-block li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .new-service .text-section .text-block ul {
        padding-left: 18px;
    }
    
    .new-service .text-section .text-block ul li {
        padding-left: 4px;
    }
    
    .new-service .text-section .text-block p + p,
    .new-service .text-section .text-block p + ul,
    .new-service .text-section .text-block ul + p,
    .new-service .text-section .text-block p + h1,
    .new-service .text-section .text-block p + h2,
    .new-service .text-section .text-block p + h3,
    .new-service .text-section .text-block p + h4,
    .new-service .text-section .text-block p + h5,
    .new-service .text-section .text-block p + h6,
    .new-service .text-section .text-block h1 + p,
    .new-service .text-section .text-block h2 + p,
    .new-service .text-section .text-block h3 + p,
    .new-service .text-section .text-block h4 + p,
    .new-service .text-section .text-block h5 + p,
    .new-service .text-section .text-block h6 + p {
        margin-top: 12px;
    }
}

.new-service .feedback-section .section-subheading {
    margin-top: 24px;
}

.new-service .button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    border: 1px solid var(--ui-color);
    margin: 0;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    padding: 16px 32px;
}

.new-service .button:hover {
    background-color: var(--theme_yellow);
    border-color: var(--theme_yellow);
    color: #121212;
}

@media (max-width: 767px) {
    .new-service .button {
        padding: 14px 24px;
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 575px) {
    .new-service .button {
        padding: 12px 20px;
        font-size: 14px;
        line-height: 18px;
    }
}

.new-service .feedback-section .button {
    margin-top: 32px;
}

.new-service .feedback-section__inner {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.new-service .feedback-section__image-column {
    flex-shrink: 0;
    width: 370px;
}

.new-service .feedback-section__image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
}

.new-service .feedback-section__content-column {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

@media (max-width: 991px) {
    .new-service .feedback-section__inner {
        flex-direction: column;
    }
    .new-service .feedback-section__image-column {
        width: 100%;
        height: 560px;
    }
    .new-service .feedback-section__content-column {
        padding: 20px 16px;
    }
    
    .new-service .feedback-section .button {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .new-service .feedback-section .button {
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .new-service .feedback-section__image-column {
        height: 400px;
    }
}

.new-service .prices-section {
    margin-top: 120px;
}

.new-service .prices-section__items-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 24px;
}

.new-service .prices-section__item {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.new-service .prices-section__items-container .prices-section__item:nth-child(1) {
    background-color: #121212;
}
.new-service .prices-section__items-container .prices-section__item:nth-child(2) {
    background-color: #1A1A1A;
}
.new-service .prices-section__items-container .prices-section__item:nth-child(3) {
    background-color: #212121;
}

.new-service .prices-section__item-title {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 36px;
    color: #FAFAFA;
    padding-bottom: 18px;
    position: relative;
}
.new-service .prices-section__item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #D9D9D933;
}
.new-service .prices-section__item-text {
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #AAAAAA;
    margin-top: 32px;
    margin-bottom: 32px;
}
.new-service .prices-section__item-text p {
    margin: 0;
}
.new-service .prices-section__item-text ul {
    margin: 0;
    list-style-type: disc;
    padding-left: 24px;
}
.new-service .prices-section__item-text ul li {
    margin: 0;
    padding-left: 4px;
}
.new-service .prices-section__item-text ul li::before {
    display: none;
}
.new-service .prices-section__item-price {
    font-family: 'Brutal Type', sans-serif;
    font-size: 28px;
    line-height: 36px;
    margin-top: auto;
    color: var(--theme_yellow);
}

.new-service .prices-section__item-button {
    margin-top: 32px;
    width: 100%;
}

@media (max-width: 1200px) {
    .new-service .prices-section__items-container {
        grid-template-columns: 1fr;
    }
    .new-service .prices-section__item-button {
        width: unset;
    }
}

@media (max-width: 575px) {
    .new-service .prices-section__item {
        padding: 16px 20px 20px 20px;
    }
    .new-service .prices-section__item-button {
        width: 100%;
    }
}
/* graph-section: база */
.graph-section {
    position: relative;
    overflow: hidden;
}

.graph-section__text-container {
    position: absolute;
    top: 0;
    left: 0;
}

.graph-section__graph-wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
}

.graph-section__graph-svgs {
    position: relative;
    height: 314px;
}

.graph-section__graph-svgs svg {
    display: block;
    width: 100%;
    height: auto;
}

.graph-section__graph-svgs .graph-gradient,
.graph-section__graph-svgs .graph-line,
.graph-section__graph-svgs .graph-dotted-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.graph-scroll-container {
    overflow: visible;
    cursor: default;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: none;
}

.graph-scroll-container::-webkit-scrollbar {
    display: none;
}

.graph-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.graph-scroll-container::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.graph-scroll-container::-webkit-scrollbar-thumb:vertical,
.graph-scroll-container::-webkit-scrollbar-thumb:horizontal {
    background-color: transparent;
    box-shadow: none;
}

.graph-section__graph-legend {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 24px;
    align-items: start;
}

.graph-section__graph-legend-item {
    min-width: 0;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    color: #AAAAAA;
}

.graph-section__graph-legend-item.active {
    color: var(--theme_yellow);
}

.graph-section__graph-svgs .start-gradient {
    stop-color: #00000000;
}

.graph-section__graph-svgs .end-gradient {
    stop-color: #212121;
}

/* graph-section: цветовые варианты */
.white-bg .graph-scroll-container,
.light-grey-bg .graph-scroll-container,
.grey-bg .graph-scroll-container {
    scrollbar-color: auto;
}

.white-bg .graph-scroll-container::-webkit-scrollbar-track,
.light-grey-bg .graph-scroll-container::-webkit-scrollbar-track,
.grey-bg .graph-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.white-bg .graph-scroll-container::-webkit-scrollbar-thumb,
.light-grey-bg .graph-scroll-container::-webkit-scrollbar-thumb,
.grey-bg .graph-scroll-container::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.white-bg .start-gradient,
.light-grey-bg .start-gradient,
.grey-bg .start-gradient {
    stop-color: #FFFFFF00;
}

.white-bg .end-gradient,
.light-grey-bg .end-gradient,
.grey-bg .end-gradient {
    stop-color: #CCCCCC;
}

.white-bg .graph-section__graph-legend-item,
.light-grey-bg .graph-section__graph-legend-item,
.grey-bg .graph-section__graph-legend-item {
    color: #333333;
}

.white-bg .graph-section__graph-legend-item.active,
.light-grey-bg .graph-section__graph-legend-item.active,
.grey-bg .graph-section__graph-legend-item.active {
    font-weight: 700;
    color: #020202;
}

/* graph-section: адаптив */
@media (max-width: 991px) {
    .graph-section__text-container {
        position: static;
        margin-bottom: 30px;
        text-align: left;
    }

    .graph-section__text-container br {
        display: none;
    }

    .graph-section__graph-svgs {
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .graph-section__graph-legend {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .graph-section__graph-legend-item {
        flex: 0 0 auto;
        min-width: 180px;
    }
}

@media (max-width: 575px) {
    .graph-section__graph-legend {
        display: grid;
        grid-template-columns: 1fr;
    }

    .graph-section__graph-legend-item {
        min-width: 0;
    }
    .graph-section__graph-legend-item {
        text-align: left;;
    }
    .graph-section__graph-legend-item br {
        display: none;
    }
}

.new-service section.white-bg {
    background-color: #FFFFFF;
}
.new-service section.light-grey-bg {
    background-color: #FAFAFA;
}

.new-service section.grey-bg {
    background-color: #EBEBEB;
}

.new-service section.black-bg {
    background-color: #050505;
}

.new-service section.white-bg .pre-heading,
.new-service section.light-grey-bg .pre-heading,
.new-service section.grey-bg .pre-heading {
    color: #AAAAAA;
}

.new-service section.white-bg .pre-heading::after,
.new-service section.light-grey-bg .pre-heading::after,
.new-service section.grey-bg .pre-heading::after {
    background-color: #AAAAAA;
}

.new-service section.white-bg .section-heading,
.new-service section.light-grey-bg .section-heading,
.new-service section.grey-bg .section-heading {
    color: #020202;
}
.new-service section.white-bg .text-block *,
.new-service section.light-grey-bg .text-block *,
.new-service section.grey-bg .text-block * {
    color: #333333;
}

.new-service section {
    margin: 0;
}

.new-service .features-section,
.new-service .functions-section,
.new-service .text-section,
.new-service .tools-section,
.new-service .feedback-section,
.new-service .graph-section,
.new-service .prices-section,
.new-service .steps-section,
.new-service .clients-section,
.new-service .services-section,
.new-service .cases-section,
.new-service .sales-funnel-section,
.new-service .cta-form-section {
    padding: var(--section-space) 0;
    margin: 0;
}

@media (max-width: 991px) {
    :root {
        --section-space: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-space: 40px;
    }
}

.tools-section__items-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.tools-section__item {
    background-color: #1A1A1A;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    flex: 1;
    min-width: 0;
}

.tools-section__tool-title {
    font-size: 24px;
    line-height: 32px;
    color: #FAFAFA;
    font-family: 'PT Root UI', sans-serif;
}

.tools-section__tool-image {
    width: 100%;
}

.tools-section__tool-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .tools-section__items-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .tools-section__item {
        padding: 24px;
    }
}

.steps-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 4px;
}
.steps-section__grid_small-cards {
    grid-template-rows: 150px 150px;
}

.steps-section__image-item {
    width: 100%;
    height: 100%;
    grid-row: 1 / 3;
}

.steps-section__image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-section__number-item {
    width: 100%;
    padding: 32px;
    background-color: #EBEBEB;
    position: relative;
}

.steps-section__item-text {
    font-size: 20px;
    line-height: 129%;
    color: #333333;
    font-weight: 400;
}

.steps-section__item-number {
    color: #DADADA;
    font-size: 56px;
    line-height: 100%;
    font-weight: 300;
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-family: 'Roboto', sans-serif;
}

.text-block + .steps-section__grid {
    margin-top: 24px;
}

@media (max-width: 1200px) {
    .steps-section__grid {
        grid-template-rows: 220px 220px;
        grid-auto-rows: 220px;
    }
    .steps-section__grid_small-cards {
        grid-template-rows: 150px 150px;
        grid-auto-rows: 150px;
    }
    .steps-section__number-item {
        padding: 24px;
    }
    .steps-section__item-text {
        /* font-size: 18px; */
    }
}

@media (max-width: 991px) {
    .steps-section__grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-section__image-item {
        grid-row: 1 / 3;
        grid-column: 1 / 3;
    }
}

@media (max-width: 767px) {
    .steps-section__number-item {
        /* padding: 20px; */
    }
    .steps-section__item-text {
        /* font-size: 16px; */
    }
    .steps-section__item-number {
        /* font-size: 48px; */
    }
}

@media (max-width: 575px) {
    .steps-section__grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px;
    }
    .steps-section__grid_small-cards {
        grid-template-rows: 130px 130px;
        grid-auto-rows: 130px;
    }
    .steps-section__image-item {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .steps-section__item-text {
        /* font-size: 18px; */
    }
}

.clients-section__grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 80px;
    grid-auto-rows: 80px;
    gap: 4px 6px;
}

.clients-section__grid-item {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-section__grid-item img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

@media (max-width: 1200px) {
    .clients-section__grid {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .clients-section__grid {
        margin-top: 18px;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .clients-section__grid {
        margin-top: 16px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .clients-section__grid {
        margin-top: 14px;
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-section__grid-item {
        padding: 24px 48px;
    }
}
@media (max-width: 500px) {
    .clients-section__grid-item {
        padding: 24px 40px;
    }
}
@media (max-width: 450px) {
    .clients-section__grid-item {
        padding: 24px 32px;
    }
}
@media (max-width: 400px) {
    .clients-section__grid-item {
        padding: 24px 24px;
    }
}

.services-section__items-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.services-section__item {
    padding: 40px 48px 48px 48px;
    background-color: #1A1A1A;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
}

.services-section__item-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
}

.services-section__item-title {
    font-family: 'PT Root UI', sans-serif;
    font-size: 32px;
    line-height: 40px;
    color: #FAFAFA;
}

.services-section__item-price {
    font-family: 'Brutal Type', sans-serif;
    font-weight: 400;
    color: var(--theme_yellow);
    font-size: 32px;
    line-height: 40px;
    flex-shrink: 0;
}

.services-section__item-add-info {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #7A7A7A;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .services-section__item {
        padding: 16px 20px 20px 20px;
        gap: 16px;
    }
    .services-section__item-top-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* @media (max-width: 575px) {
    .services-section__item {
        padding: 24px 16px 32px 16px;
        gap: 12px;
    }
    .services-section__item-title {
        font-size: 20px;
        line-height: 28px;
    }
    .services-section__item-price {
        font-size: 20px;
        line-height: 28px;
    }
    .services-section__item-add-info {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 10px;
    }
} */

.cases-section__grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.cases-section__grid-item {
    height: 540px;
    padding: 24px 32px 32px 32px;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 32px;
    position: relative;
}

.cases-section__item-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cases-section__item-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cases-section__grid-item:hover .cases-section__item-bg-image {
    opacity: 1;
}
.cases-section__grid-item:hover .cases-section__item-bg-video {
    opacity: 1;
}

.cases-section__item-play-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cases-section__grid-item:hover .cases-section__item-play-icon-container {
    opacity: 1;
    pointer-events: auto;
}

.cases-section__item-play-icon-container svg rect {
    transition: fill 0.2s, stroke 0.2s;
    fill: transparent;
}
.cases-section__item-play-icon-container:hover svg rect {
    stroke: none;
    fill: var(--theme_yellow);
}

.cases-section__item-title {
    font-family: 'PT Root UI', sans-serif;
    font-size: 32px;
    line-height: 36px;
    color: #020202;
    padding-bottom: 18px;
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}
.cases-section__grid-item:hover .cases-section__item-title {
    opacity: 0;
    pointer-events: none;
}
.cases-section__item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #AAAAAA;
}

.cases-section__item-text {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    height: 100%;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.cases-section__grid-item:hover .cases-section__item-text {
    opacity: 0;
    pointer-events: none;
}

.cases-section__item-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    flex-shrink: 0;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.cases-section__item-tag {
    padding: 8px 12px;
    background-color: #DADADA;
    font-size: 12px;
    line-height: 12px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    color: #333333;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.cases-section__grid-item:hover .cases-section__item-tags-list {
    opacity: 0;
    pointer-events: none;
}
.cases-section__grid-item:hover .cases-section__item-tags {
    opacity: 0;
    pointer-events: none;
}

.cases-section__item-dimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cases-section__grid-item:hover .cases-section__item-dimmer {
    opacity: 1;
}

.cases-section__grid-item_empty {transition: background-color 0.3s ease;}
.cases-section__grid-item_empty:hover {background-color: #828282;}
.cases-section__grid-item_empty:hover .cases-section__item-title,
.cases-section__grid-item_empty:hover .cases-section__item-text {
    opacity: 1;
    pointer-events: auto;
    color: #FFFFFF;
}

.cases-section__grid-item_empty:hover .cases-section__item-tags-list {
    opacity: 1;
    pointer-events: auto;
}

.cases-section__grid-item_empty:hover .cases-section__item-play-icon-container svg rect {
    backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    .cases-section__grid-item {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .cases-section__grid {
        grid-template-columns: 1fr 1fr;
    }
    .cases-section__grid-item {
        height: 450px;
    }
}

@media (max-width: 575px) {
    .cases-section__grid {
        grid-template-columns: 1fr;
    }
    .cases-section__grid-item {
        height: 600px;
    }
}

.sales-funnel-section__content-wrapper {
    display: flex;
    align-items: stretch;
}

.sales-funnel-section__funnel-item {
    width: 100%;
    background-color: #EBEBEB;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 8px;
}

.sales-funnel-section__funnel-item-bar {
    width: var(--funnel-bar-width, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.sales-funnel-section__bar-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 4px;
}
.sales-funnel-section__bar-container_percent {
    width: unset;
    padding: 12px 10px;
}

.sales-funnel-section__bar-text {
    font-size: 14px;
    line-height: 129%;
    font-family: 'Roboto', sans-serif;
    color: #FAFAFA;
    width: 100%;
    
}

.sales-funnel-section__bar-value {
    font-size: 24px;
    line-height: 129%;
    font-family: 'Roboto', sans-serif;
    color: #FAFAFA;
    flex-shrink: 0;
}

.sales-funnel-section__bar-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.sales-funnel-section__bar-icon path {
    transition: fill 0.2s, stroke 0.2s;
}

/* Dark background */
.sales-funnel-section__funnel-item-bar.dark-bg .sales-funnel-section__bar-container {
    background-color: #232323;
}
.sales-funnel-section__funnel-item-bar.dark-bg .sales-funnel-section__bar-icon path {
    fill: #FFFFFF;
}
.sales-funnel-section__funnel-item-bar.dark-bg .sales-funnel-section__bar-text,
.sales-funnel-section__funnel-item-bar.dark-bg .sales-funnel-section__bar-value {
    color: #FFFFFF;
}

/* White background */
.sales-funnel-section__funnel-item-bar.white-bg .sales-funnel-section__bar-container {
    background-color: #FFFFFF;
}
.sales-funnel-section__funnel-item-bar.white-bg .sales-funnel-section__bar-icon path {
    fill: #111111;
}
.sales-funnel-section__funnel-item-bar.white-bg .sales-funnel-section__bar-text,
.sales-funnel-section__funnel-item-bar.white-bg .sales-funnel-section__bar-value {
    color: #333333;
}

/* Light main background */
.sales-funnel-section__funnel-item-bar.light-main-bg .sales-funnel-section__bar-container {
    background-color: #F0D9BC;
}
.sales-funnel-section__funnel-item-bar.light-main-bg .sales-funnel-section__bar-icon path {
    fill: var(--theme_yellow);
}
.sales-funnel-section__funnel-item-bar.light-main-bg .sales-funnel-section__bar-text,
.sales-funnel-section__funnel-item-bar.light-main-bg .sales-funnel-section__bar-value {
    color: var(--theme_yellow);
}

/* Main background */
.sales-funnel-section__funnel-item-bar.main-bg .sales-funnel-section__bar-container {
    background-color: var(--theme_yellow);
}
.sales-funnel-section__funnel-item-bar.main-bg .sales-funnel-section__bar-icon path {
    fill: #FAFAFA;
}
.sales-funnel-section__funnel-item-bar.main-bg .sales-funnel-section__bar-text,
.sales-funnel-section__funnel-item-bar.main-bg .sales-funnel-section__bar-value {
    color: #FAFAFA;
}

.sales-funnel-section__info-item {
    flex-shrink: 0;
    width: 370px;
    padding: 40px 32px;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;
}

.sales-funnel-section__info-item-title {
    font-size: 24px;
    line-height: 129%;
    font-family: 'Roboto', sans-serif;
    color: #FAFAFA;
}

.sales-funnel-section__info-item-text {
    font-size: 18px;
    line-height: 139%;
    color: #DADADA;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.sales-funnel-section__info-item-disclamer {
    font-size: 14px;
    line-height: 129%;
    font-family: 'Roboto', sans-serif;
    color: #7A7A7A;
    margin-bottom: 10px;
}

.sales-funnel-section__info-item-button {
    margin-top: auto;

}

@media (max-width: 1200px) {
    .sales-funnel-section__info-item {
        padding: 20px 24px;
    }
}

@media (max-width: 991px) {
    .sales-funnel-section__content-wrapper {
        flex-direction: column;
    }

    .sales-funnel-section__info-item {
        width: 100%;
        height: 300px;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: start;
        gap: 10px;
    }

    .sales-funnel-section__info-item-title {
        width: 100%;
    }

    .sales-funnel-section__info-item-text {
        margin-top: 0;
        margin-bottom: 0;
    }

    .sales-funnel-section__info-item-disclamer {
        text-align: left;
    }

    .sales-funnel-section__info-item-button {
        margin-top: auto;
        align-self: flex-start;
    }

    .sales-funnel-section__funnel-item {
        padding: 30px;
        height: 460px;
        justify-content: start;
    }
    .sales-funnel-section__content-wrapper {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .sales-funnel-section__funnel-item {
        align-items: start;
        padding: 20px;
        height: auto;
    }
    .sales-funnel-section__bar-container_percent {
        width: 64px;
        height: 52px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sales-funnel-section__bar-value {
        font-size: 20px;
        line-height: 129%;
    }
    .sales-funnel-section__bar-text {
        line-height: 100%;
    }
    .sales-funnel-section__bar-container {
        padding: 10px;
    }
    .sales-funnel-section__info-item  {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .sales-funnel-section__info-item  {
        min-height: 380px;
        height: auto;
    }
}
@media (max-width: 400px) {
    .sales-funnel-section__funnel-item {
        padding: 15px;
    }
}

.cta-form-section__inner {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    background-color: #1A1A1A;
    padding: 40px 48px;
}

.cta-form-section__info-column {
    flex: 1;
    min-width: 0;
}

.cta-form-section__form-column {
    flex: 1;
    min-width: 0;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-form__field {
    margin-bottom: 32px;
}

.cta-form__label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: #FAFAFA80;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.cta-form__input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #4E4E4E;
    border-radius: 0;
    color: #FFFFFF;
    font-family: 'PT Root UI', sans-serif;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 0;
    outline: none;
    -webkit-appearance: none;
    transition: border-color 0.3s ease;
}

.cta-form__input:focus {
    border-bottom-color: #FFFFFF;
}

.cta-form__submit {
    margin-top: 8px;
    align-self: flex-start;
}

.cta-form__terms {
    margin-top: 24px;
    font-family: 'PT Root UI', sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #606060;
}

.cta-form__terms a {
    color: #606060;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cta-form__terms a:hover {
    color: #AAAAAA;
}

@media (max-width: 1200px) {
    .cta-form-section__inner {
        padding: 20px 24px;
    }
}

@media (max-width: 991px) {
    .cta-form-section__inner {
        flex-direction: column;
    }

    .cta-form-section__info-column,
    .cta-form-section__form-column {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cta-form__field {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .cta-form__field {
        margin-bottom: 20px;
    }

    .cta-form__submit {
        width: 100%;
        text-align: center;
    }

    .cta-form__terms {
        margin-top: 20px;
        font-size: 12px;
        line-height: 18px;
    }
}