:root {
    --color-black: #121212;
    --color-black-70: #3e3c3c;
    --color-black-50: #6f6f71;
    --color-black-30: #dbdbdb;
    --color-black-10: #e8e8e8;
    --color-black-80: #414141;
    --color-white: #ffffff;
    --color-white-70: #b3b3b3;
    --color-white-50: #959595;
    --color-white-30: #595959;
    --color-bg-light: #f4f4f4;
    --color-accent: #bd8aff;
    --color-accent-deep: #6400e7;
    --grid-gap: 16px;
    --section-padding-y: 124px;
    --section-padding-x: 64px;
    --scroll-inline-padding: 64px;
    --transition-default: 200ms ease;
}

@import url("https://fonts.cdnfonts.com/css/graphik");

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: "GraphikAton Web", "Graphik", sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-black);
    background-color: var(--color-white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.scroll-locked {
    overflow: hidden;
    height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

p {
    margin: 0;
    font-size: 22px;
    line-height: 32px;
    color: inherit;
}

.page-wrapper {
    min-height: 100vh;
    background-color: var(--color-white);
}

main {
    overflow: visible;
}

.feedback-form-anchor {
    height: 0;
    scroll-margin-top: 80px;
}

/* Grid System */
.grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--grid-gap);
}

.col-content {
    grid-column: 4 / 10;
}

/* Промо-блок */
.promo {
    position: relative;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    padding: 0 var(--section-padding-x);
}

@media (max-width: 767px) {
    .promo {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.promo__background {
    position: absolute;
    inset: 0;
    background-image: url("/i/images/nps/promo-bg.png");
    background-size: cover;
    background-position: center;
    filter: saturate(0.9);
    pointer-events: none;
}

.promo__grid {
    position: relative;
    z-index: 2;
    row-gap: 0;
    padding-top: 312px;
    padding-bottom: 80px;
}

.promo__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.banner__title,.banner__caption {
    margin: 0;
    font-size: 60px;
    line-height: 72px;
    font-weight: 500;
    color: var(--color-white);
}

.reason-item__quotes li {
    padding-left: 48px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    font-size: 22px;
    line-height: 35px;
    font-weight: 500;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: var(--transition-default);
    font-family: inherit;
}

.btn--primary {
    background-color: var(--color-white);
    color: var(--color-black);
    align-self: flex-start;
    width: 172px;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
}

.btn--primary:hover {
    opacity: 0.9;
}

/* Блок стратегии */
.strategy {
    padding: var(--section-padding-y) var(--section-padding-x) 0 var(--section-padding-x);
    background-color: var(--color-white);
}

.strategy__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.strategy h2,.nps-info h2 {
    margin: 0;
    font-size: 48px;
    line-height: 64px;
    font-weight: 500;
    color: var(--color-black);
}

.strategy__text {
    color: var(--color-black-70);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

/* Блок NPS информации */
.nps-info {
    padding: 64px var(--section-padding-x) 160px var(--section-padding-x);
    background-color: var(--color-white);
}

.nps-info__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.nps-info h3 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--color-black);
}

.nps-info__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nps-info__text-wrapper p {
    color: var(--color-black-70);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.nps-quote {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 64px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-black-10);
    border-radius: 8px;
}

.nps-quote__text {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--color-black);
}

.nps-quote__author {
    display: flex;
    align-items: center;
    gap: 64px;
}

.nps-quote__logo {
    width: 219px;
    height: 24px;
}

.nps-quote__description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black-70);
}

.nps-goal {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.nps-goal h3 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--color-black);
}

.nps-graph {
    width: 100%;
}

.nps-graph__image {
    width: 100%;
    height: auto;
}

.nps-graph__picture {
    display: block;
}

.nps-graph__details {
    display: none;
    margin-top: 16px;
    flex-direction: column;
    gap: 16px;
}

.nps-graph__ranges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nps-graph__range {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black-70);
}

.nps-graph__range-bar {
    width: 16px;
    height: 12px;
    border-radius: 999px;
    background-color: var(--color-accent);
    flex-shrink: 0;
}

.nps-graph__range-bar--soft {
    background-color: #d8bff9;
}

.nps-graph__range-bar--mid {
    background-color: #c199f5;
}

.nps-graph__range-bar--accent {
    background-color: var(--color-accent-deep);
}

.nps-graph__range-label {
    font-weight: 500;
    color: var(--color-black);
}

.nps-graph__range-status {
    margin-left: auto;
    color: var(--color-black);
}

.nps-graph__scale {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-black-50);
}

/* Блок ТОП-5 причин */
.top-reasons {
    padding: 0 var(--section-padding-x) var(--section-padding-y) var(--section-padding-x);
    background-color: var(--color-white);
}

.top-reasons__header {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.top-reasons h2 {
    margin: 0;
    font-size: 48px;
    line-height: 64px;
    font-weight: 500;
    color: var(--color-black);
}

.top-reasons__subtitle {
    color: var(--color-black-70);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.top-reasons__list {
    grid-column: 1 / 13;
    display: flex;
    flex-direction: column;
    gap: 96px;
    padding-top: 64px;
}

.reason-item {
    display: grid;
    grid-template-columns: minmax(3.5rem, min(25%, 10rem)) minmax(0, 1fr);
    column-gap: clamp(16px, 1.2vw + 8px, 80px);
    row-gap: 0;
    padding-top: 96px;
    border-top: 1px solid var(--color-black-30);
    position: relative;
    transition: column-gap 0.35s ease, padding-top 0.35s ease;
}

.reason-item__number {
    grid-column: 1;
    font-size: clamp(2.5rem, 0.55vw + 1.35rem, 3.75rem);
    line-height: 1.1;
    font-weight: 500;
    color: var(--color-black-30);
}

.reason-item__content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: min(100%, 58.75rem);
    min-width: 0;
}

.reason-item__details {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (max-width: 1599px) {
    .reason-item__details {
        gap: 32px;
    }
}

.reason-item h3 {
    margin: 0;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--color-black);
}

.reason-item__description {
    color: var(--color-black-70);
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}

.reason-item__card-title {
    font-size: 60px;
    line-height: 72px;
    font-weight: 500;
    color: var(--color-accent-deep);
    white-space: nowrap;
    width: 378px;
}
.reason-item__card {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 32px 48px;
    background-color: var(--color-bg-light);
    border-radius: 8px;
    align-items: start;
    justify-content: space-between;
}

.reason-item__card-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black-80);
    width: 378px;
}
.reason-item__quotes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 940px;
    position: relative;
}

.reason-item__quotes li {
    position: relative;
    padding-left: 0;
    font-size: 22px;
    line-height: 32px;
    color: var(--color-black-70);
}

.reason-item__quotes li::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -32px;
    width: 16px;
    height: 2px;
    background-color: #6400E7;
}

/* Адаптивность */
@media (max-width: 1919px) and (min-width: 1600px) {
    .reason-item__card-title,
    .reason-item__card-text{
        width: 298px;
    }
    :root {
        --grid-gap: 24px;
    }

    .col-content {
        max-width: 724px;
    }

    .promo__grid {
        padding-top: 312px;
        padding-bottom: 80px;
    }

    .banner__title,.banner__caption {
        font-size: 60px;
        line-height: 72px;
    }

    .btn {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 24px;
    }

    .strategy h2,
    .nps-info h2,
    .top-reasons h2 {
        font-size: 48px;
        line-height: 64px;
    }

    .strategy__content,
    .top-reasons__header {
        gap: 64px;
    }

    .strategy__text,
    .nps-info__text-wrapper p,
    .top-reasons__subtitle,
    .reason-item__description,
    .reason-item__quotes li {
        font-size: 22px;
        line-height: 32px;
    }

    .reason-item h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .nps-info__content {
        gap: 64px;
    }

    .nps-info__text-wrapper {
        gap: 24px;
    }

    .nps-quote {
        gap: 48px;
        padding: 48px 64px;
    }

    .nps-quote__text {
        font-size: 24px;
        line-height: 34px;
    }

    .nps-quote__description {
        font-size: 14px;
        line-height: 24px;
    }

    .nps-goal {
        gap: 48px;
    }

    .reason-item__content {
        gap: 64px;
    }

    .reason-item__card-title {
        font-size: 60px;
        line-height: 72px;
    }

    .reason-item__card-text {
        font-size: 14px;
        line-height: 24px;
    }

    .reason-item__quotes {
        width: 780px;
    }

    .top-reasons__list {
        gap: 96px;
    }

    .reason-item {
        padding-top: 96px;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        column-gap: var(--grid-gap);
    }

    .reason-item__number {
        grid-column: span 3;
        font-size: 60px;
        line-height: 72px;
    }

    .reason-item__content {
        grid-column: 4 / 10;
        max-width: none;
    }
}

@media (max-width: 1599px) and (min-width: 1280px) {
    .reason-item__card-title,
    .reason-item__card-text{
        width: 218px;
    }

    :root {
        --grid-gap: 24px;
        --section-padding-y: 124px;
    }

    .col-content {
        max-width: 564px;
    }

    .promo__grid {
        padding-top: 306px;
        padding-bottom: 80px;
    }

    .banner__title,.banner__caption {
        font-size: 40px;
        line-height: 48px;
    }

    .btn {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 24px;
    }

    .strategy {
        padding-top: 124px;
    }

    .strategy__content {
        gap: 48px;
    }

    .strategy h2,
    .nps-info h2,
    .top-reasons h2 {
        font-size: 32px;
        line-height: 48px;
    }

    .strategy__content,
    .top-reasons__header {
        gap: 48px;
    }

    .strategy__text,
    .nps-info__text-wrapper p,
    .top-reasons__subtitle,
    .reason-item__description,
    .reason-item__quotes li {
        font-size: 16px;
        line-height: 28px;
    }

    .nps-info {
        padding-top: 48px;
        padding-bottom: 124px;
    }

    .nps-info h3,
    .nps-goal h3,
    .reason-item h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .nps-info__content {
        gap: 48px;
    }

    .nps-info__text-wrapper {
        gap: 24px;
    }
    .grid{
        grid-row-gap: 0;
    }
    .nps-quote {
        gap: 32px;
        padding: 32px;
    }

    .nps-quote__text {
        font-size: 18px;
        line-height: 24px;
    }

    .nps-quote__description {
        font-size: 14px;
        line-height: 24px;
    }

    .nps-goal {
        gap: 32px;
    }

    .reason-item__content {
        gap: 48px;
    }

    .reason-item__card-title {
        font-size: 40px;
        line-height: 48px;
        width: 218px;
    }

    .reason-item__card-text {
        font-size: 14px;
        line-height: 24px;
        width: 218px;
    }

    .reason-item__quotes {
        width: 612px;
    }

    .top-reasons {
        padding-bottom: 124px;
    }

    .top-reasons__list {
        gap: 96px;
        padding-top: 48px;
    }

    .reason-item {
        padding-top: 96px;
    }
    .reason-item__card{
        gap: 32px;
    }
}

@media (max-width: 1279px) and (min-width: 768px) {
    .reason-item__card-title{
        width: 201px;
    }
    .reason-item__card-text{
        width: 276px;
    }
    :root {
        --grid-gap: 16px;
        --section-padding-y: 96px;
        --section-padding-x: 64px;
    }

    .grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-row-gap: 0;
    }

    .col-content {
        grid-column: 1 / 9;
    }

    .promo__grid {
        padding-top: 272px;
        padding-bottom: 64px;
    }

    .banner__title,.banner__caption {
        font-size: 40px;
        line-height: 48px;
    }

    .btn {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 24px;
    }

    .promo__content {
        gap: 32px;
    }

    .strategy {
        padding-top: 96px;
    }

    .strategy__content {
        gap: 48px;
    }

    .strategy h2,
    .nps-info h2,
    .top-reasons h2 {
        font-size: 32px;
        line-height: 48px;
    }

    .strategy__text,
    .nps-info__text-wrapper p,
    .top-reasons__subtitle,
    .reason-item__description,
    .reason-item__quotes li {
        font-size: 16px;
        line-height: 28px;
    }

    .nps-info {
        padding-top: 48px;
        padding-bottom: 96px;
    }

    .nps-info h3,
    .nps-goal h3,
    .reason-item h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .nps-info__content {
        gap: 48px;
    }

    .nps-info__text-wrapper {
        gap: 32px;
    }

    .nps-quote {
        gap: 24px;
        padding: 32px 48px;
    }

    .nps-quote__text {
        font-size: 18px;
        line-height: 24px;
    }

    .nps-quote__description {
        font-size: 14px;
        line-height: 24px;
    }

    .nps-quote__author {
        gap: 64px;
    }

    .nps-goal {
        gap: 32px;
    }

    .top-reasons {
        padding-bottom: 96px;
    }

    .top-reasons__header {
        gap: 48px;
    }

    .top-reasons__list {
        grid-column: 1 / 9;
        gap: 64px;
        padding-top: 48px;
    }

    .reason-item {
        padding-top: 64px;
    }

    .reason-item__content {
        gap: 48px;
    }

    .reason-item__card {
        gap: 140px;
        padding: 24px 32px;
    }

    .reason-item__card-title {
        font-size: 40px;
        line-height: 48px;
    }

    .reason-item__card-text {
        font-size: 14px;
        line-height: 24px;
    }

    .reason-item__quotes {
        width: 100%;
        gap: 24px;
    }

    .reason-item__quotes li {
        padding-left: 40px;
    }

    .reason-item__quotes li::before {
        left: 0;
        top: 13px;
    }
}

@media (max-width: 767px) {
    .reason-item__card-title,
    .reason-item__card-text{
        width: 279px;
    }
    .nps-info{
        padding-top: 32px;
        padding-bottom: 0;
    }
    .nps-goal{
        gap: 32px
    }
    :root {
        --section-padding-x: 24px;
        --section-padding-y: 64px;
    }

    .grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-row-gap: 0
    }

    .btn {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 24px;
        width: 100%;
        height: 40px;
    }

    .col-content,
    .top-reasons__list {
        grid-column: 1 / 5;
    }

    .promo__grid {
        padding-top: 252px;
        padding-bottom: 64px;
    }
    .promo__content{
        gap:32px
    }

    .banner__title,.banner__caption {
        font-size: 28px;
        line-height: 36px;
    }
    .top-reasons__list{
        padding-top: 32px;
    }
    .top-reasons__list{
        gap:32px
    }

    .top-reasons {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .strategy__content,
    .nps-info__content,
    .top-reasons__header {
        gap: 32px;
    }

    .strategy h2,
    .nps-info h2,
    .top-reasons h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .strategy__text,
    .nps-info__text-wrapper p,
    .top-reasons__subtitle,
    .reason-item__description,
    .reason-item__quotes li {
        font-size: 16px;
        line-height: 28px;
    }

    .nps-info h3,
    .nps-goal h3,
    .reason-item h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .nps-info__text-wrapper {
        gap: 24px;
    }

    .nps-quote {
        padding: 32px 24px;
        gap: 24px;
    }

    .nps-quote__text {
        font-size: 18px;
        line-height: 24px;
    }

    .nps-quote__description {
        font-size: 14px;
        line-height: 24px;
    }

    .nps-quote__author {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .nps-graph__details {
        display: none;
    }

    .reason-item {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-top: 32px;
        border-top: 1px solid var(--color-black-30);
    }

    .reason-item__number {
        font-size: 28px;
        line-height: 36px;
    }

    .reason-item__content {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .reason-item__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }

    .reason-item__card-title {
        font-size: 28px;
        line-height: 36px;
    }

    .nps-graph__range,
    .nps-graph__range-label,
    .nps-graph__range-status,
    .nps-graph__scale {
        font-size: 14px;
        line-height: 24px;
    }

    .reason-item__quotes {
        width: 100%;
        gap: 24px;
    }

    .top-reasons h2{
        width: 60%;
    }

    .reason-item__quotes li {
        padding-left: 40px;
    }


    .reason-item__quotes li::before {
        left: 0;
        top: 13px;
        width: 16px;
    }
    .grid{
        grid-template-rows: none
    }
}
/* form-glass selectors summary */
div[id^='comp_'] .section-form-glass {
    padding-bottom: 160px;
}
.footer{
    background-color: black;
}
.section-form-glass.-bgd-transparent {
    background-color: #121212 !important;
    padding-top: 124px;
}
.form-glass__questions-item.text input {
    color: #959595 !important;
    font-size: 16px;
    line-height: 1.4545454545 !important;
    background: transparent !important;
}
.form-glass__questions-item.text input::placeholder {
    color: #b3b3b3 !important;
}
.form-glass__questions-item.text input:focus,
.form-glass__questions-item.text input.filled {
    color: #ffffff !important;
}
.form-glass__questions-item.text.-PHONE input {
    color: #959595 !important;
}

@media screen and (max-width: 1599px) and (min-width: 1280px) {
    div[id^='comp_'] .section-form-glass {
        padding-bottom: 124px;
    }
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
    div[id^='comp_'] .section-form-glass {
        padding-bottom: 96px;
    }
    .section-form-glass.-bgd-transparent {
        padding-top: 96px;
    }
    .section-form-glass .container-2024 {
        padding-left: 64px !important;;
        padding-right: 64px !important;
    }
}
@media screen and (max-width: 767px) and (min-width: 375px) {
    div[id^='comp_'] .section-form-glass {
        padding-bottom: 64px;
    }
    .section-form-glass.-bgd-transparent {
        padding-top: 64px;
    }
}
@media screen and (max-width: 767px) {
    .form-glass__title.--single{
        white-space:wrap
    }
    .section-form-glass .container-2024 {
        padding-left: 24px !important;;
        padding-right: 24px !important;;
    }
}
@media screen and (max-width: 374px) {
    .section-form-glass.-bgd-transparent {
        padding-top: 64px;
    }
}