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

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

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

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

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

    width: 100%;

    position: relative;
}

.section-container .particles-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40vh;
    z-index: 0;
}

.page-title {
    line-height: 100%;
    font-weight: 600;
    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: 400;
    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 {
    margin-top: 56px;

    display: flex;

    z-index: 1;
    position: relative;
}

.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;

        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: 400;
    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;
}

/* Benefits */
@keyframes particleAnimation1 {
    0% { opacity: 0; transform: translateZ(0); }
    40% { opacity: .4; }
    60% { opacity: .4; }
    100% { opacity: 0; transform: translate3d(-30px, -65px, 0); }
}

@keyframes particleAnimation2 {
    0% { opacity: 0; transform: translateZ(0); }
    40% { opacity: .4; }
    60% { opacity: .4; }
    100% { opacity: 0; transform: translate3d(-10px, -30px, 0); }
}

@keyframes particleAnimation3 {
    0% { opacity: 0; transform: translateZ(0); }
    40% { opacity: .4; }
    60% { opacity: .4; }
    100% { opacity: 0; transform: translate3d(25px, -40px, 0); }
}

@keyframes particleAnimation4 {
    0% { opacity: 0; transform: translateZ(0); }
    40% { opacity: .4; }
    60% { opacity: .4; }
    100% { opacity: 0; transform: translate3d(20px, 50px, 0); }
}

@keyframes particleAnimation5 {
    0% { opacity: 0; transform: translateZ(0); }
    40% { opacity: .4; }
    60% { opacity: .4; }
    100% { opacity: 0; transform: translate3d(34px, 30px, 0); }
}

.benefits-container {
    width: 100%;
    height: 584px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .benefits-container {
        height: 524px;
        overflow: unset;
    }
}

.particles-container {
    width: 100%;
    height: 584px;
    position: relative;
    overflow: hidden;
}

.particles-container :nth-child(1) {
    left: 20%;
    opacity: 0;
    top: 75%;
}

.particles-container :nth-child(2) {
    left: 14%;
    opacity: 0;
    top: 55%
}

.particles-container :nth-child(3) {
    right: 35%;
    opacity: 0;
    top: 20%
}


.particles-container :nth-child(4) {
    right: 20%;
    opacity: 0;
    top: 85%
}

.particles-container :nth-child(5) {
    right: 20%;
    opacity: 0;
    top: 70%
}

.particles-container :nth-child(6) {
    right: 20%;
    opacity: 0;
    top: 10%
}

.particles-container :nth-child(7) {
    right: 45%;
    opacity: 0;
    bottom: 10%;
}

.particles-container :nth-child(8) {
    left: 45%;
    opacity: 0;
    top: 20%
}

.particles-container :nth-child(9) {
    left: 17%;
    opacity: 0;
    top: 48%
}

.particles-container :nth-child(10) {
    right: 17%;
    opacity: 0;
    top: 75%
}

.particles-container :nth-child(11) {
    left: 23%;
    opacity: 0;
    top: 19%
}

.particles-container :nth-child(12) {
    left: 5%;
    opacity: 0;
    top: 19%
}

.particles-container :nth-child(13) {
    right: 5%;
    opacity: 0;
    bottom: 8%
}

.particles-container :nth-child(14) {
    right: 22%;
    opacity: 0;
    bottom: 19%
}

.particles-container :nth-child(15) {
    left: 5%;
    opacity: 0;
    bottom: 29%
}

.particles-container :nth-child(16) {
    left: 5%;
    opacity: 0;
    bottom: 6%
}

.particles-container :nth-child(17) {
    left: 50%;
    opacity: 0;
    bottom: 2%
}

.particles-container :nth-child(18) {
    right: 25%;
    opacity: 0;
    bottom: 36%
}

.particles-container :nth-child(19) {
    left: 15%;
    opacity: 0;
    bottom: 36%
}

.particles-container :nth-child(20) {
    left: 22%;
    opacity: 0;
    bottom: 16%
}

.big-particle, .medium-particle, .small-particle {
    background-color: var(--surface-brand);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    position: absolute;

    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.big-particle { width: 34px; height: 34px; }
.medium-particle { width: 24px; height: 24px; }
.small-particle { width: 24px; height: 24px; }

@keyframes floatUpDownV2 {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20%); }
    100% { transform: translateY(0); }
}

.benefits-bubble-container {
    width: 100%;
    height: 584px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .benefits-bubble-container {
        position: absolute;
        top: 0;
    }

    .benefits-bubble-container > :last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    @keyframes infiniteScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .benefits-bubble-container {
        display: flex;
        align-items: center;
        gap: 8px;

        position: absolute;
        bottom: 20px;
        width: 100%;
        padding-top: 20%;
        height: unset;
    }

    .benefits-bubble-container > div {
        display: flex;
        align-items: center;
        gap: 8px;

        animation: infiniteScroll 40s linear infinite;
    }
}

.benefit-bubble {
    position: absolute;
    padding: 12px 16px;
    background: var(--surface-background-secondary);
    color: var(--text-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    width: 229px;
    height: 64px;
    animation: floatUpDownV2 10s infinite;
}

.benefit-bubble .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background-size: contain;
    margin-right: 10px;
}

.benefit-bubble.fast {
    left: 7%;
    bottom: 125px;
    background-image: url('/ssr-landing-static/oreo/images/fast.svg');
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 16px;
}

.benefit-bubble.gem {
    right: 25%;
    top: 50px;
    background-image: url('/ssr-landing-static/oreo/images/gem.svg');
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 16px;
}

.benefit-bubble.umbrella {
    right: 5%;
    bottom: 150px;
    background-image: url('/ssr-landing-static/oreo/images/umbrella.svg');
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 16px;
}

@media (max-width: 768px) {
    .benefit-bubble {
        position: unset;
        min-width: 229px;
        animation: unset;
    }
}

@keyframes pumpingAnimation {
    0% { transform: scale(1); }
    20% { transform: scale(1.6); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}

.new-card, .second-card {
    position: absolute;
    width: 282px;
    height: 340px;
    background-size: contain;
    border-radius: 16px;
    box-shadow: 0 32px 64px 0 rgba(28, 31, 43, 0.30);
    z-index: 33;
}

.new-card {
    left: -15%;
    right: 0;
    top: 89px;
    margin: 0 auto;
    background-image: url("/ssr-landing-static/oreo/images/card.svg");
}

.second-card {
    left: 15%;
    right: 0;
    top: 192px;
    margin: 0 auto;
    background-image: url("/ssr-landing-static/oreo/images/second-card.svg");
}

.new-card p, .second-card p {
    color: #465666;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: absolute;
    bottom: 6px;
    left: 120px;
    right: 0;
}

.second-card p {
    left: 130px;
    bottom: 8px;
}

.new-card-heart {
    width: 20px;
    height: 20px;
    background: url("/ssr-landing-static/oreo/images/heart.svg") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 8px;
    left: 88px;
    animation: pumpingAnimation 2s infinite;
}

@media (max-width: 768px) {
    .new-card-heart {
        left: 60px;
        bottom: 6px;
        width: 11px;
        height: 11px;
    }

    .new-card, .second-card {
        width: 168px;
        height: 200px;
    }

    .new-card p, .second-card p {
        font-size: 9px;
        left: 75px;
        bottom: 0px;
    }

    .new-card { transform: rotate(-5deg); }
    .second-card { transform: rotate(10deg); }

    .heart {
        left: 60px;
        bottom: 6px;
        width: 11px;
        height: 11px;
    }
}

@keyframes circleAnimation {
    0% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.9); }
    100% { opacity: 0.1; transform: scale(1); }
}

@keyframes circleInnerAnimation {
    0% { opacity: 0.15; transform: scale(0.8); }
    50% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.15; transform: scale(0.8); }
}

@keyframes circleSecondInnerAnimation {
    0% { opacity: 0.3; transform: scale(0.75); }
    50% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.75); }
}

.big-circle {
    background: var(--surface-brand-15);

    border-radius: 500px;
    bottom: -30%;
    margin: auto;
    opacity: 0.3;
    padding-top: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 80%;
    height: 80%;

    animation: circleAnimation 12s ease-in-out infinite;
}

.smaller-circle {
    padding-top: 80%;
    width: 60%;
    height: 60%;

    animation: circleInnerAnimation 12s ease-in-out infinite;
}

.smallest-circle {
    padding-top: 90%;
    top: 140%;
    width: 50%;
    height: 50%;

    animation: circleSecondInnerAnimation 12s ease-in-out infinite;
}

@media (max-width: 768px) {
    .big-circle {
        bottom: 0;
        top: 0;
    }

    .big-circle { width: 90vw; height: 90vw; }
    .smaller-circle { width: 70vw; height: 70vw; }
    .smallest-circle {
        width: 60vw;
        height: 60vw;

        padding: 0;
    }
}

.main-features-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .main-features-container {
        flex-direction: column;
        align-items: center;
    }
}

.main-feature {
    color: var(--text-main);
    font-family: Gothic A1, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 90%;
    padding-left: 19px;
    position: relative;
}

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

/* Services */

.services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;

    width: 100%;

    max-width: 1120px;
    margin: 128px auto 0;
    padding: 80px 0;
    border-radius: 20px;
    background: var(--surface-background-secondary);
}

.services-container a {
    width: fit-content;
}

.services-container-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.4px;
    margin-top: 24px;
    text-align: center;
    white-space: pre-wrap;

    color: var(--text-secondary);
}

@media (min-width: 769px) {
    .services-container .page-title {
        max-width: 80%;
    }
}

@keyframes floatUpDown {
    0% { transform: rotate(var(--rotation)) translateY(0); }
    50% { transform: rotate(var(--rotation)) translateY(-35%); }
    100% { transform: rotate(var(--rotation)) translateY(0); }
}

.bubbles-container {
    width: 100%;
}

@media (max-width: 768px) {
    .bubbles-container {
        height: 230px;

        position: relative;

        padding-top: 30px;
    }
}

.bubble {
    position: absolute;
    padding: 8px 20px 8px 52px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 15px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    font-family: "Gothic A1", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    width: fit-content;
    animation: floatUpDown 4.5s infinite linear;
}

.bubble:nth-child(1) { --rotation: 5.524deg; animation-duration: 4.5s; }
.bubble:nth-child(2) { --rotation: -12.031deg; animation-duration: 5.5s; animation-delay: 150ms; }
.bubble:nth-child(3) { --rotation: 23.613deg; animation-duration: 6s; animation-delay: 200ms; }
.bubble:nth-child(4) { --rotation: -7.9deg; animation-duration: 7s; animation-delay: 250ms; }
.bubble:nth-child(5) { --rotation: 12.323deg; animation-duration: 8.5s; animation-delay: 150ms; }

.bubble::before {
    width: 24px;
    height: 24px;
    position: absolute;
    content: '';
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.bubble:nth-child(1) { background: linear-gradient(180deg, #F3C5FF 0%, #E1A4FF 100%); }
.bubble:nth-child(2) { background: linear-gradient(180deg, #C5FFCA 0%, #A4FFA4 100%); }
.bubble:nth-child(3) { background: linear-gradient(180deg, #FFEFC5 0%, #FFE1A4 100%); }
.bubble:nth-child(4) { background: linear-gradient(180deg, #C5EAFF 0%, #A4DDFF 100%); }
.bubble:nth-child(5) { background: linear-gradient(180deg, #FFCEC5 0%, #FFB3A4 100%); }

.bubble:nth-child(1)::before { background-image: url('/ssr-landing-static/oreo/images/icon-chat.svg'); }
.bubble:nth-child(2)::before { background-image: url('/ssr-landing-static/oreo/images/icon-shares.svg'); }
.bubble:nth-child(3)::before { background-image: url('/ssr-landing-static/oreo/images/icon-boosts.svg'); }
.bubble:nth-child(4)::before { background-image: url('/ssr-landing-static/oreo/images/icon-followers.svg'); }
.bubble:nth-child(5)::before { background-image: url('/ssr-landing-static/oreo/images/icon-likes.svg'); }

@media (min-width: 769px) {
    .bubble:nth-child(1) { left: 36px; top: 32px; }
    .bubble:nth-child(2) { bottom: 66px; left: 56px; }
    .bubble:nth-child(3) { bottom: 12px; left: 280px; }
    .bubble:nth-child(4) { bottom: 48px; right: 108px; }
    .bubble:nth-child(5) { top: 45px; right: 69px; }
}

@media (max-width: 768px) {
    .bubble:nth-child(1) { left: 10px; top: 120px; }
    .bubble:nth-child(2) { top: 39px; right: -5px; }
    .bubble:nth-child(3) { top: 10px; left: -10px; }
    .bubble:nth-child(4) { bottom: -10px; right: -18px; }
    .bubble:nth-child(5) { bottom: -20px; left: -20px; }
}

/* Features */

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 30px;
    align-items: flex-start;
    margin-top: 64px;
}

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

.feature-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.feature-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.feature-card h2 {
    font-family: Grandis, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -2px;
    color: var(--textMain);
    margin-top: 24px;
}

.feature-card p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.4px;
    color: var(--textSecondary);
    margin-top: 10px;
    text-align: center;
}

/* cabinet features */
.cabinet-section-container {
    padding-top: 80px;
}

.banners-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

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

.big-banner {
    border-radius: 32px;
    background: #FF6933;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.big-banner-title {
    color: #FFF;
    text-align: center;
    font-family: Onest, sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 90%;

    max-width: 50%;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .mobile-preview-container {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .big-banner {
        height: 415px;
    }

    .big-banner-title {
        font-size: 48px;
    }
}

.phone-container {
    position: absolute;
    bottom: -220px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 402px;
    height: 550px;
    object-fit: contain;
    border-radius: 20px;
    border: 15px solid rgba(0, 0, 0, 0.3);
}

.phone-container > div {
    border-radius: 6px;
}

.phone-container::before {
    width: 5px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    position: absolute;
    left: -20px;
    top: 47px;
    content: '';
}

@media (max-width: 768px) {
    .phone-container {
        width: 80%;
        height: 312px;
        bottom: -65px;
    }
}

.phone-sound-buttons-container {
    position: absolute;
    right: -15px;
    top: 47px;
}

.phone-sound-buttons-container::before,
.phone-sound-buttons-container::after {
    width: 5px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
}

.phone-sound-buttons-container::after {
    top: 85px;
}

.small-banners-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-banner-container {
    padding: 25px 0 0 25px;
    background: var(--surface-background-secondary);
    border: 1px solid var(--surface-border);
    border-radius: 32px;
    overflow: hidden;
}

.banner-title {
    color: var(--text-main);
    font-family: Gothic A1, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 90%;
}

.banner-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 5px;
}

.features-container {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

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

.feature-card-v2 {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 32px;
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-S);
}

.feature-card-v2 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-card-v2 .feature-title {
    color: var(--text-main);
    font-family: Gothic A1, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 90%;
}

.feature-card-v2 .feature-description {
    color: var(--text-secondary);
    font-family: Gothic A1, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 5px;
}

.visual-api-container {
    border-top-left-radius: 24px;
    padding: 16px 0 16px 20px;
    background: var(--surface-background);
    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: 400;
    line-height: 20px;
    margin-bottom: 4px;
}

.response-container {
    padding: 11px 15px;
    background: var(--surface-background-secondary);
    white-space: pre-wrap;
    font-family: "JetBrains Mono", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    border-radius: 16px 0 0 16px;
}

.stats-container {
    border-top-left-radius: 24px;
    padding: 22px 20px;
    background: var(--surface-background);
    margin-top: 18px;
    position: relative;
}

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

.stats-container .title {
    color: var(--text-main);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.4px;
}

.stats-container .text {
    margin-top: 4px;
    color: var(--text-main);
    position: relative;
    font-family: "PT Root UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    width: fit-content;
}

.stats-container .text::after {
    width: 8px;
    height: 8px;
    content: '';
    right: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 1000px;
    position: absolute;
}

.stats-container .text.green::after {
    background: #12C78C;
}

.stats-container .text.yellow::after {
    background: #FFC000;
}

.stats-container > div:not(:first-child) {
    margin-top: 40px;
}

/* reviews */

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

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

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

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

.hint-text {
    position: relative;
    font-family: Gothic A1, 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;
}

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

.author-name {
    color: var(--text-main);
    font-family: Gothic A1, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 90%;
    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-secondary);
    font-family: Gothic A1, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 90%;
}

.review-container {
    border-radius: 12px 12px 32px 32px;
    background: var(--surface-background-secondary);
    box-shadow: var(--shadow-S);
    padding: 25px;
}

.review-container p {
    color: var(--text-main);
    font-family: Gothic A1, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    white-space: pre-wrap;
}

/* 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: Gothic A1, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 90%;
}

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

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

.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: Gothic A1, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
}

.description-text {
    color: var(--text-secondary);
    font-family: Gothic A1, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

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