.page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    max-width: 1131px;
    margin: 120px auto 0 auto;
    position: relative;
}

.mt-section {
    margin: 80px auto 0 auto;
}

@media(max-width: 768px) {
    .page-container {
        margin: 64px 15px 0;
    }
}

.page-title {
    line-height: 100%;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -0.01em;
    text-align: center;
    white-space: pre-wrap;
    word-break: break-word;

    color: var(--text-main);

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-title {
        font-size: 32px;
        word-break: break-word;
        padding: 0 16px;
        line-height: 120%;
    }
}

.page-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    text-align: center;

    color: var(--text-secondary);
    white-space: pre-wrap;
    margin-top: 24px;

    z-index: 1;
    position: relative;
}

@media(max-width: 768px) {
    .page-description {
        word-break: break-word;
        padding: 0 16px;
        font-size: 16px;
        white-space: initial;
    }
}

.buttons-container {
    display: flex;

    z-index: 1;
    position: relative;

    margin-top: 32px;
}

.buttons-container a {
    display: block;
    margin-top: 0;
}

.buttons-container a:not(:first-child) {
    margin-left: 18px;
}

@media(max-width: 768px) {
    .buttons-container a:not(:first-child) {
        margin-left: 0;
        margin-top: 18px;
    }

    .buttons-container a {
        text-align: center;
    }

    .buttons-container {
        display: flex;
        flex-direction: column;
        padding: 0 16px;

        width: 100%;
    }
}

.rounded-button {
    padding: 20px 56px;

    color: var(--text-on-brand);
    background: var(--surface-brand);
    border: 1px solid var(--surface-border);
    box-sizing: border-box;
    border-radius: 16px;
    margin-top: 56px;

    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    transition: background-color 200ms linear;
}

.rounded-button span {
    transition: all ease 200ms;
    margin-left: 4px;
}

.rounded-button:hover {
    filter: brightness(1.1);
}

.rounded-button > span {
    transform: translateX(5px);
}

@media(max-width: 768px) {
    .rounded-button {
        margin-top: 32px;
    }
}

.transparent-button {
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-main);
    transition: box-shadow 200ms ease;
    border: 1px solid var(--surface-border);
}

.transparent-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: rgb(0 56 110 / 8%) 0 0 15px 5px, rgb(225 237 250) 0 0 0 1px inset;
}

/* first screen */
.first-screen {
    margin: 80px auto 0 auto;
}

.first-screen .main-container {
    padding: 64px 30px 30px;
    background: var(--surface-background-secondary);
    border-radius: 40px;
    width: 100%;
    height: 575px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.first-screen .main-container::before {
    position: absolute;
    bottom: 0;
    left: -50%;
    height: 160px;
    width: 300%;
    transform: perspective(350px) rotateX(7deg) rotateY(0deg) skewX(0deg);
    opacity: 0.4;
    background: url("/ssr-landing-static/service/images/railway-part.svg") repeat-x;
    background-size: contain;
    content: '';
    animation: infinite-track-scroll 10.25s linear infinite;
}

@media (max-width: 768px) {
    .first-screen .main-container {
        grid-template-columns: 1fr;
        overflow: hidden;
        height: 655px;
    }
}

.first-screen .main-container > :first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.first-screen .main-container > :first-child > :first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.first-screen .main-container > :first-child > :first-child * {
    text-align: center;
}

.first-screen .title-text {
    color: var(--text-main);
    text-align: center;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .first-screen .title-text {
        font-size: 40px;
    }
}

.first-screen .description-text {
    margin-top: 18px;
    color: var(--text-secondary);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .first-screen .description-text {
        font-size: 16px;
    }
}

@keyframes infinite-track-scroll {
    0% {
        background-position-x: -800px;
    }

    100% {
        background-position-x: -50px;
    }
}

.main-page-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    padding: 0 25px;
    text-align: center;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .tablet {
        display: none;
    }
}

.tracks-container {
    display: flex;
    align-items: center;
    gap: 130px;
    position: absolute;
    bottom: 30px;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.bubble-container {
    position: absolute;
    bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(221, 144, 80, 0.5);
    padding: 4px 4px 4px 33px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-main);
}

.bubble-container::before {
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 20px;
    height: 20px;
    content: "";
    background-size: contain;
}

.bubble-container.icon-1::before {
    background: url("/ssr-landing-static/service/images/social-heart.svg") no-repeat;
}
.bubble-container.icon-2::before {
    background: url("/ssr-landing-static/service/images/follow.svg") no-repeat;
}
.bubble-container.icon-3::before {
    background: url("/ssr-landing-static/service/images/share.svg") no-repeat;
}
.bubble-container.icon-4::before {
    background: url("/ssr-landing-static/service/images/social-star.svg") no-repeat;
}

.social-network {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    background-size: contain;
}

.social-network.icon-1 {
    background: url("/ssr-landing-static/service/images/FB.svg") no-repeat;
}
.social-network.icon-2 {
    background: url("/ssr-landing-static/service/images/INSTA.svg") no-repeat;
}
.social-network.icon-3 {
    background: url("/ssr-landing-static/service/images/Likee.svg") no-repeat;
}
.social-network.icon-4 {
    background: url("/ssr-landing-static/service/images/Ok.svg") no-repeat;
}
.social-network.icon-5 {
    background: url("/ssr-landing-static/service/images/Spotify.svg") no-repeat;
}
.social-network.icon-6 {
    background: url("/ssr-landing-static/service/images/Telegram.svg") no-repeat;
}
.social-network.icon-7 {
    background: url("/ssr-landing-static/service/images/Twitch.svg") no-repeat;
}
.social-network.icon-8 {
    background: url("/ssr-landing-static/service/images/Twitter.svg") no-repeat;
}
.social-network.icon-9 {
    background: url("/ssr-landing-static/service/images/VK.svg") no-repeat;
}
.social-network.icon-10 {
    background: url("/ssr-landing-static/service/images/YOTUBE.svg") no-repeat;
}

.box-track {
    width: fit-content;
    height: 150px;
    max-width: 100%;
    animation: infinite-scroll 92s linear infinite;
    display: flex;
    align-items: center;
    gap: 130px;
}

.box-container {
    width: 150px;
    height: 150px;
    position: relative;
    background-size: contain;
}

.box-container.box-1 {
    background: url("/ssr-landing-static/service/images/box-1.svg") no-repeat;
}
.box-container.box-2 {
    background: url("/ssr-landing-static/service/images/box-2.svg") no-repeat;
}
.box-container.box-3 {
    background: url("/ssr-landing-static/service/images/box-3.svg") no-repeat;
}
.box-container.box-4 {
    background: url("/ssr-landing-static/service/images/box-4.svg") no-repeat;
}

/* Позиционирование социальных сетей в зависимости от типа коробки */
.box-container.box-1 .social-network,
.box-container.box-4 .social-network {
    top: 28px;
    left: 5px;
}

.box-container.box-2 .social-network {
    top: 32px;
    left: 5px;
}

.box-container.box-3 .social-network {
    top: 32px;
    left: 25px;
}

.box-container.box-1 .bubble-container,
.box-container.box-2 .bubble-container,
.box-container.box-4 .bubble-container {
    bottom: 35px;
    left: 15px;
}

.box-container.box-3 .bubble-container {
    bottom: 35px;
    left: 35px;
}


/* main features */

.main-features {
    position: relative;
}

.main-features .section-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;

    background: transparent;

    padding-top: 0;
}

.main-features .main-page-title {
    color: #fff;
    font-size: 40px;
    text-align: center;
    white-space: initial;
}

.main-features .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 50px;

    max-width: 1131px;
    width: 100%;
}

@media (max-width: 768px) {
    .main-features .cards-container {
        grid-template-columns: 1fr;

        max-width: 100%;
    }
}

.main-features .feature-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media(min-width: 769px) {
    .main-features .feature-card-container {
        padding: 0 12px;
    }

    .main-features .feature-card-container:not(:last-child) {
        border-right: 1px solid var(--surface-border);
    }
}

@media(max-width: 768px) {
    .main-features .feature-card-container:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--surface-border);
    }
}

.main-features .icon {
    width: 48px;
    height: 48px;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-main);
}

.main-features .title-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: var(--text-main);
    white-space: pre-wrap;
}

.main-features .description-text {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;

    color: var(--text-secondary);
    white-space: pre-wrap;
    text-align: center;
}

.main-features .bubbles-container {
    position: absolute;
    right: 39px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-features .bubble {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    background: #fff;
}

.main-features .bubble img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.main-features .bubble p {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.main-features .play-frame {
    width: 40px;
    height: 40px;
    background: url("/ssr-landing-static/accent/images/play-frame.svg") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

@keyframes heartAnimation {
    0% { opacity: 0; transform: rotate(-10deg) translateY(45%); }
    50% { opacity: 0.65; transform: rotate(-10deg) translateY(-15%); }
    100% { transform: rotate(-10deg) translateY(-25%); opacity: 0; }
}

.main-features .hearts-container {
    width: 450px;
    height: 350px;
    z-index: 1;
    position: absolute;
    right: 0;
    margin: 0 auto;
}

.main-features .heart {
    position: absolute;
    background: url("/ssr-landing-static/accent/images/heart.svg") no-repeat;
    background-size: contain;
}

.main-features .heart:nth-child(1) { top: 10%; left: 20%; animation: heartAnimation 2s infinite linear 0s; width: 50px; height: 50px; }
.main-features .heart:nth-child(2) { bottom: 10%; left: 20%; animation: heartAnimation 2.2s infinite linear 200ms; width: 58px; height: 58px; }
.main-features .heart:nth-child(3) { bottom: 34%; left: 26%; animation: heartAnimation 2.5s infinite linear 250ms; width: 35px; height: 35px; }
.main-features .heart:nth-child(4) { bottom: 45%; left: 5%; animation: heartAnimation 2.9s infinite linear 290ms; width: 55px; height: 55px; }
.main-features .heart:nth-child(5) { bottom: 55%; left: 35%; animation: heartAnimation 1.3s infinite linear 100ms; width: 27px; height: 27px; }
.main-features .heart:nth-child(6) { bottom: 15%; left: 10%; animation: heartAnimation 2.5s infinite linear 600ms; width: 17px; height: 17px; }
.main-features .heart:nth-child(7) { bottom: 25%; left: 40%; animation: heartAnimation 1.5s infinite linear 800ms; width: 18px; height: 18px; }
.main-features .heart:nth-child(8) { top: 25%; left: 1%; animation: heartAnimation 2.5s infinite linear 500ms; width: 29px; height: 29px; }
.main-features .heart:nth-child(9) { top: 0; left: 1%; animation: heartAnimation 2.5s infinite linear 500ms; width: 35px; height: 35px; }
.main-features .heart:nth-child(10) { top: -20px; left: 35%; animation: heartAnimation 2.5s infinite linear 500ms; width: 55px; height: 55px; }

@media (max-width: 768px) {
    .main-features .hearts-container {
        width: 90%;
        height: 33vh;
    }
    .main-features .heart {
        width: calc(50%);
        height: calc(50%);
    }
}


@media (max-width: 768px) {
    .main-features .phone-banner-container {
        max-width: calc(100vw - 32px);
        width: 100%;
        max-height: 195px;
        top: -160px;
        bottom: 250px;
    }

    .main-features .phone-banner-container::before {
        width: calc(100% - 22px);
        height: calc(100% - 22px);
        max-height: 190px;
        margin: 10px;
        border-radius: 22px;
    }

    .main-features .bubbles-container {
        right: 20px;
    }

    .main-features .bubble {
        padding: 5px 7px;
    }

    .main-features .bubble img {
        width: 8px;
        height: 8px;
    }

    .main-features .bubble p {
        font-size: 7px;
        line-height: unset;
    }
}

@media (max-width: 410px) {
    .main-features .phone-banner-container::before {
        width: calc(100% - 20px);
        height: calc(100% - 28px);
        margin: 10px;
        border-radius: 22px;
    }
}

/* cabinet features v2 */
.cabinet-features-v2 {
    margin-top: 10px;
}

.main-page-title {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .main-page-title {
        font-size: 32px;
    }

    .cabinet-features-v2 {
        margin-top: 0;
    }
}

.cabinet-features-v2 .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;

    margin-top: 10px;
    padding: 18px;
    border-radius: 18px;
    width: 100%;
    background: var(--surface-background-secondary);
}

@media (max-width: 768px) {
    .cabinet-features-v2 .cards-container {
        grid-template-columns: 1fr;
    }
}

.cabinet-features-v2 .feature-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media(min-width: 769px) {
    .cabinet-features-v2 .feature-card-container {
        padding: 0 12px;
    }

    .cabinet-features-v2 .feature-card-container:not(:last-child) {
        border-right: 1px solid var(--surface-border);
    }
}

@media(max-width: 768px) {
    .cabinet-features-v2 .feature-card-container:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--surface-border);
    }
}

.cabinet-features-v2 .icon {
    width: 48px;
    height: 48px;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-secondary);
}

.cabinet-features-v2 .title-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: var(--text-main);
    white-space: pre-wrap;
}

.cabinet-features-v2 .description-text {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;

    color: var(--text-secondary);
    white-space: pre-wrap;
    text-align: center;
}


/* cabinet preview */
.cabinet-preview {
    width: 100%;
}

@media (max-width: 768px) {
    .cabinet-preview {
        position: relative;
    }
}

.cabinet-preview .title-container {
    text-align: center;
}

.cabinet-preview .sub-title-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
}

.cabinet-preview .order-card-container {
    bottom: 10px;
    left: 0;
    transform: perspective(350px) rotateX(7deg) rotateY(0deg) skewX(0deg);
    max-width: 1131px;
    margin: 50px auto;
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
}

.cabinet-preview .order-card-container > * {
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .cabinet-preview .order-card-container {
        transform: unset;
        margin-top: 0;
    }
    .cabinet-preview .order-card-container > * {
        top: 150px;
        min-width: 900px;
        padding: 0;
        left: 0;
    }
}

.cabinet-preview .mobile-order-container {
    height: 500px;
    position: relative;
}

.cabinet-preview .mobile-order-container > div {
    height: 480px;
    bottom: unset;
    top: 20px;
    position: relative;
    width: 100%;
    max-width: 320px;
}

/* cabinet features preview */
.cabinet-features-preview {
    width: 100%;
}

@media (max-width: 768px) {
    .cabinet-features-preview {
        position: relative;
    }
}

.cabinet-features-preview {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
}

@media (max-width: 768px) {
    .cabinet-features-preview {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.cabinet-features-preview .small-banners-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 768px) {
    .cabinet-features-preview .small-banners-container {
        gap: 18px;
    }
}

.cabinet-features-preview .banner-container {
    padding-left: 25px;
    padding-top: 20px;
    border-radius: 24px;
    background: var(--surface-background-secondary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cabinet-features-preview .banner-container.big > :last-child {
    background: var(--surface-background);
    border-top-left-radius: 24px;
}

.cabinet-features-preview .small-banner-container {
    padding: 25px;
    height: 100%;
}

.cabinet-features-preview .icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.cabinet-features-preview .title-text {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--text-main);
    white-space: pre-wrap;
    text-align: center;
}

.cabinet-features-preview .description-text {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--text-secondary);
    margin-top: 5px;
    white-space: pre-wrap;
    text-align: left;
}

.cabinet-features-preview .styled-title-text {
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: var(--text-main);
    white-space: pre-wrap;

    font-size: 20px;
    text-align: left;
}

/* banners */

.network-banners-container {
     margin-top: 50px;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 32px;
     width: 100%;
}

@media (max-width: 768px) {
    .network-banners-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.network-banner-card {
    padding: 30px 0;
    border-radius: 24px;
    background: var(--surface-background-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .network-banner-card:first-child {
        height: 550px;
    }
}

.network-banner-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.network-banner-title {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: var(--text-main);
    text-align: center;
    white-space: pre-wrap;
}

.network-banner-description {
    margin-top: 5px;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

.network-banner-left-image {
    width: 100%;
    height: 415px;
    position: absolute;
    bottom: -86px;
}

.network-banner-right-image {
    width: 288px;
    height: 288px;
    margin-top: 40px;
}

/* cabinet features */
.cabinet-features .title-container {
    text-align: center;
}

.cabinet-features .sub-title-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 150%;
}

.cabinet-features .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 70px;
    width: 100%;
}

@media (max-width: 768px) {
    .cabinet-features .cards-container {
        grid-template-columns: 1fr;
    }
}

.cabinet-features .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cabinet-features .visual-api-container-v2 {
    width: 450px;
    height: 225px;
    border-radius: 24px;
}

@media (max-width: 768px) {
    .cabinet-features .visual-api-container-v2 {
        width: 100%;
    }
}

.cabinet-features .title-text {
    text-align: center;
    font-family: Inter Tight, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -0.48px;
    color: var(--text-main);
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .cabinet-features .title-text {
        font-size: 28px;
    }
}

.cabinet-features .description-text {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 150%;
    margin-top: 10px;
    white-space: pre-wrap;
}

.visual-api-container {
    border-radius: 24px;
    padding: 16px 0 16px 20px;
    margin-top: 18px;
    position: relative;
}

.visual-api-container::after {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 30px;
    right: 18px;
    content: '';
    background: url("/ssr-landing-static/oreo/images/api.svg") no-repeat;
    background-size: contain;
}

.visual-api-container p {
    color: var(--text-main);
    font-family: "PT Root UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
}

.response-container {
    padding: 11px 15px;
    white-space: pre-wrap;
    font-family: "JetBrains Mono", sans-serif;

    background: var(--surface-background-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    border-radius: 16px 0 0 16px;
}

/* reviews */

.reviews-container {
    margin-top: 50px;
    width: 100%;
}

.small-reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

@media (min-width: 769px) {
    .big-review {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .small-reviews-container, .big-reviews-container {
        grid-template-columns: 1fr;
    }
}

.hint-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.hint-text {
    position: relative;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    padding-left: 42px;
    color: var(--text-secondary);
}

.hint-text::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 32px;
    height: 32px;
    mask: url("/ssr-landing-static/oreo/images/heart.svg") no-repeat;
    -webkit-mask: url("/ssr-landing-static/oreo/images/heart.svg") no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-secondary);
}

.review {
    display: flex;
    flex-direction: column;
    gap: 10px;

    background: var(--surface-background-secondary);
    border-radius: 16px;
    padding: 15px;
}

.author-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.author-name {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%; /* 18px */
    text-transform: lowercase;
}

.social-network-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-network-icon {
    width: 24px;
    height: 24px;
}

.network-name {
    color: var(--text-main);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 90%;
}

.review-container {
}

.review-container p {
    color: var(--text-main);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    letter-spacing: -0.4px;
    white-space: pre-wrap;

    padding-bottom: 15px;
    border-bottom: 1px solid var(--surface-border);
}

/* FAQ */
.questions-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 50px;
    width: 100%;
}

.question-container {
    padding: 25px;
    border-radius: 16px;
    width: 100%;
    position: relative;
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-S);
    cursor: pointer;
}

.faq-title {
    color: var(--text-main);
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 90%;
}

.expanded-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
}

.expanded-text span {
    padding-top: 8px;
}

.question-container.active .expanded-text {
    max-height: 116px;
    padding-top: 16px;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 25px;
    top: 25px;
    mask: url("/ssr-landing-static/oreo/images/arrow.svg") no-repeat;
    -webkit-mask: url("/ssr-landing-static/oreo/images/arrow.svg") no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--text-main);
    transition: transform 0.3s ease-in-out;
}

.question-container.active .arrow-icon {
    transform: rotateZ(0);
}

.arrow-icon.inactive {
    transform: rotateZ(180deg);
}

/* Reg promotion */
.registration-container {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-S);
}

.registration-container > a {
    display: block;

    margin-top: 0;
}

@media (max-width: 768px) {
    .registration-container {
        flex-direction: column;
        gap: 26px;
        text-align: center;
    }
}

.title-text {
    color: var(--text-main);
    font-feature-settings: 'ss02' on;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
}

.description-text {
    color: var(--text-secondary);
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;

    margin-top: 5px;
}

.desktop-icon {
    margin-left: 10px;
    font-size: 24px;
}

.cabinet-preview .order-card-container {
    height: 470px;
    margin-bottom: 32px;
}

.cabinet-preview .order-card-container .card-container {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .cabinet-preview .order-card-container {
        position: relative;
        height: 500px;

        margin-top: 20px;
        margin-bottom: 0;
    }

    .cabinet-preview .order-card-container > div {
        height: 480px;
        bottom: unset;
        top: 20px;
        position: relative;

        width: 100%;
        max-width: 320px !important;
        min-width: unset;
    }
}
