:root {
    --color-text-primary: #000;
    --color-text-secondary: #595959;
    --color-text-gray: #6b6b6b;
    --color-accent-start: #DC4228;
    --color-accent-end: #DC4228;
    --color-accent-alt: #DC4228;
    --color-hover-dark: #b03622;
    --color-bg-body: #fefcfe;
    --color-bg-section: #fbf3fb;
    --color-white: #fff;
}

/* dark theme removed */

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:active,
:focus {
    outline: 0
}

a:active,
a:focus {
    outline: 0
}

::-webkit-input-placeholder {
    color: inherit
}

::-moz-placeholder {
    color: inherit
}

:-ms-input-placeholder {
    color: inherit
}

::-ms-input-placeholder {
    color: inherit
}

::placeholder {
    color: inherit
}

button,
input,
textarea {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: inherit
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit
}

a {
    color: inherit
}

a:link,
a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit
}

body,
html {
    height: 100%;
    min-width: 320px
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    color: var(--color-text-primary);
    font-size: 1rem;
    background-color: var(--color-bg-body)
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

[class*=__container] {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 .9375rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.wrapper {
    position: relative;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

@supports (overflow:clip) {
    .wrapper {
        overflow: clip
    }
}

.wrapper>main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.wrapper>* {
    min-width: 0
}

.menu {
    position: relative;
    z-index: 5
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: .625rem 1.875rem
}

.menu__link {
    display: inline-block;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
    font-size: .875rem;
    font-weight: 600;
    -webkit-transition: all .3s;
    transition: all .3s
}

.burger-menu {
    display: none
}

.menu-open .burger-menu::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: .375rem
}

.menu-open .burger-menu::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: .375rem
}

.menu-open .burger-menu span {
    opacity: 0
}

.header {
    position: fixed;
    width: 100%;
    z-index: 6;
    padding: 2.375rem 0;
    -webkit-transition: all .3s;
    transition: all .3s
}

.header._header-scroll {
    background-color: var(--color-white);
    -webkit-box-shadow: 0 .125rem .125rem 0 rgba(0, 0, 0, .1);
    box-shadow: 0 .125rem .125rem 0 rgba(0, 0, 0, .1);
    padding: .9375rem 0
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.5rem
}

.header__logo {
    position: relative;
    z-index: 10;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.header__logo img {
    max-width: 100%
}

.header__brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.header__logo .header__brand img {
    height: 3.5rem;
    width: auto
}

.header__logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--color-text-primary)
}

.hero {
    padding-top: 8.75rem;
    padding-bottom: 7.5rem
}

.hero__title {
    text-align: center;
    font-weight: 600;
    font-size: 3.25rem;
    margin-bottom: 2.625rem
}

.hero__text {
    font-weight: 500;
    font-size: 1.0625rem;
    text-align: center;
    max-width: 31.25rem;
    margin: 0 auto 3.75rem
}

.hero__image {
    text-align: center;
    margin-bottom: 5rem;
    position: relative
}

.hero__image img {
    max-width: 100%
}

.hero__decor {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1
}

.hero__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .8125rem;
    position: relative;
    z-index: 2
}

.hero__pair {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .8125rem
}

.hero__link {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    will-change: transform
}

.hero__link img {
    max-width: 100%;
    height: 100%
}

.need {
    background: var(--color-bg-section);
    padding: 10rem 0
}

.need__title {
    font-weight: 600;
    font-size: 2.1875rem;
    margin-bottom: 1.375rem
}

.need__sub-title {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    width: 100%;
    max-width: 53.125rem;
    margin-bottom: 4rem
}

.need__body {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: 10.625rem 10.625rem 10.625rem 10.625rem;
    grid-template-columns: 10.625rem 10.625rem 10.625rem 10.625rem;
    gap: 2.5rem
}

.need__item:nth-child(1) .need__icon {
    padding-left: .1875rem
}

.need__icon {
    background: linear-gradient(315deg, var(--color-accent-start) 0, var(--color-accent-end) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: .8125rem;
    width: 2.625rem;
    height: 2.625rem;
    margin-bottom: 1.125rem
}

.need__caption {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.125rem
}

.need__text {
    font-weight: 600;
    font-size: .8125rem;
    color: var(--color-text-secondary)
}

.reviews {
    padding: 4.8125rem 0
}

.reviews__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.4375rem
}

.reviews__item {
    -webkit-box-shadow: .0625rem .0625rem .6875rem 0 rgba(0, 0, 0, .1);
    box-shadow: .0625rem .0625rem .6875rem 0 rgba(0, 0, 0, .1);
    border-radius: 1.0625rem;
    background: var(--color-white);
    padding: 1.0625rem;
    max-width: 24.6875rem;
    width: 100%
}

.reviews__stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.1875rem;
    margin-bottom: 1.125rem
}

.reviews__text {
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1.125rem
}

.reviews__text span {
    display: block;
    font-weight: 600
}

.reviews__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.125rem
}

.reviews__avatar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.625rem;
    flex: 0 0 1.625rem
}

.reviews__avatar img {
    max-width: 100%
}

.reviews__name {
    font-size: 1.125rem;
    color: var(--color-text-secondary)
}

.supports {
    background: var(--color-bg-section);
    text-align: center;
    padding: 4.8125rem 0
}

.supports__title {
    font-weight: 600;
    font-size: 3.25rem;
    margin-bottom: 1.375rem
}

.supports__sub-title {
    font-weight: 500;
    font-size: 1.375rem;
    max-width: 25rem;
    margin: 0 auto 4.0625rem
}

.supports__image {
    margin-bottom: 4rem
}

.supports__image img {
    max-width: 100%
}

.supports__text {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 26.25rem;
    margin: 0 auto 2.1875rem
}

.supports__link {
    background: var(--color-white);
    border-radius: .8125rem;
    padding: .6875rem 1rem;
    font-weight: 600;
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transition: color .3s;
    transition: color .3s
}

.diary {
    padding: 4.8125rem 0
}

.diary__title {
    font-weight: 600;
    font-size: 2.1875rem;
    margin: 0 auto 1.375rem;
    text-align: center
}

.diary__sub-title {
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 4rem
}

.diary__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.6875rem
}

.diary__content {
    max-width: 19.375rem;
    width: 100%
}

.diary__item {
    position: relative;
    width: 100%
}

.diary__item:not(:last-child) {
    margin-bottom: 1.375rem
}

.diary__caption {
    font-weight: 600;
    font-size: 1.625rem;
    margin-bottom: 1.125rem
}

.diary__text {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text-secondary)
}

.diary__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    gap: 2.6875rem
}

.diary__decor {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1
}

.diary__decor-mobile {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
    display: none
}

.diary__image-mobile {
    display: none
}

.diary__image-mobile img {
    max-width: 21.875rem;
    width: 100%
}

.diary__image {
    -webkit-box-shadow: 0 .125rem .6875rem .1875rem rgba(0, 0, 0, .25);
    box-shadow: 0 .125rem .6875rem .1875rem rgba(0, 0, 0, .25);
    border-radius: 1.0625rem;
    overflow: hidden
}

.diary__image img {
    max-width: 100%
}

.diary__box {
    display: -ms-grid;
    display: grid;
    gap: 1.375rem
}

.free {
    background: var(--color-bg-section);
    text-align: center;
    padding: 4.8125rem 0
}

.free__title {
    font-weight: 600;
    font-size: 3.25rem;
    margin-bottom: 1.375rem
}

.free__text {
    font-weight: 500;
    font-size: 1.375rem;
    max-width: 45rem;
    margin: 0 auto 1.375rem
}

.free__link {
    font-weight: 600;
    font-size: 1.625rem;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-accent-start) 0, var(--color-accent-alt) 100%);
    padding: .75rem 1.0625rem;
    border-radius: 1.1875rem;
    display: inline-block;
    -webkit-transition: all .3s;
    transition: all .3s
}

.footer__top {
    background: #FEEDED;
    padding: 2.4375rem 0
}

.footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer__logo {
    max-width: 10.75rem
}

.footer__logo img {
    max-width: 100%
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap
}

.footer__logo .footer__brand img {
    height: 2.5rem;
    width: auto
}

.footer__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-primary)
}

.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.6875rem
}

.footer__pair {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.6875rem
}

.footer__column_mobile {
    display: none
}

.footer__title {
    font-weight: 500;
    font-size: .875rem;
    margin-bottom: .8125rem
}

.footer__item:not(:last-child) {
    margin-bottom: .8125rem
}

.footer__link {
    font-size: .875rem;
    color: var(--color-text-gray);
    -webkit-transition: color .3s;
    transition: color .3s
}

.footer__bottom {
    background: #fff;
    padding: .5625rem 0;
    text-align: center
}

.footer__copy {
    font-size: .75rem;
    color: var(--color-text-gray)
}

@media (min-width:47.99875em) {
    .menu__link_border {
        position: relative;
        background: var(--color-bg-body);
        padding: .4375rem .6875rem;
        border-radius: .5rem
    }

    .menu__link_border::before {
        content: "";
        background: -webkit-gradient(linear, left top, right top, from(var(--color-accent-end)), to(var(--color-accent-start)));
        background: linear-gradient(90deg, var(--color-accent-end) 0, var(--color-accent-start) 100%);
        position: absolute;
        top: -.125rem;
        right: -.125rem;
        bottom: -.125rem;
        left: -.125rem;
        border-radius: .625rem;
        z-index: -1
    }
}

@media (max-width:61.99875em) {
    .hero {
        padding: 6.25rem 0
    }

    .need {
        padding: 6.25rem 0
    }

    .need__body {
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr
    }

    .reviews {
        padding: 3.75rem 0
    }

    .reviews__container {
        gap: 1.75rem
    }

    .supports {
        padding: 3.75rem 0
    }

    .diary {
        padding: 3.75rem 0
    }

    .diary__body {
        gap: 1.25rem
    }

    .diary__media {
        gap: 1.25rem
    }

    .free {
        padding: 3.75rem 0
    }

    .footer__top {
        padding: 1.875rem 0
    }

    .footer__logo {
        max-width: 9.375rem
    }
}

@media (max-width:47.99875em) {
    .menu {
        overflow: auto;
        background-color: var(--color-bg-section);
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 5rem .9375rem 1.25rem .9375rem;
        text-align: center;
        -webkit-transition: right .5s ease;
        transition: right .5s ease;
        z-index: 7
    }

    .menu-open .menu {
        right: 0
    }

    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: .625rem
    }

    .menu__item {
        width: 100%
    }

    .menu__link {
        font-size: 1rem;
        font-weight: 600;
        background: var(--color-white);
        border-radius: .4375rem;
        width: 100%;
        padding: .625rem;
        text-align: left
    }

    .burger-menu {
        display: block;
        width: 1.375rem;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1.375rem;
        flex: 0 0 1.375rem;
        height: .875rem;
        position: relative;
        z-index: 8
    }

    .burger-menu::before {
        display: block;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: .125rem;
        width: 100%;
        background-color: var(--color-text-primary);
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        border-radius: 1.25rem
    }

    .burger-menu::after {
        display: block;
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: .125rem;
        width: 100%;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        background-color: var(--color-text-primary);
        border-radius: 1.25rem
    }

    .burger-menu span {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        height: .125rem;
        width: 100%;
        background-color: var(--color-text-primary);
        border-radius: 1.25rem;
        opacity: 1;
        -webkit-transition: opacity .3s ease 0s;
        transition: opacity .3s ease 0s
    }

    .header {
        padding: 1.5625rem 0
    }

    .header::before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: -100%;
        -webkit-transition: right .5s ease 0s;
        transition: right .5s ease 0s;
        background-color: var(--color-bg-section);
        z-index: 7
    }

    .menu-open .header::before {
        right: 0
    }

    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto
    }

    .hero {
        padding-top: 5.3125rem;
        padding-bottom: 1.875rem
    }

    .hero__title {
        font-size: 1.5625rem;
        margin-bottom: 1.875rem
    }

    .hero__text {
        font-size: .8125rem;
        max-width: 25rem;
        margin: 0 auto .625rem
    }

    .hero__image {
        margin-bottom: 1.25rem
    }

    .hero__decor {
        top: 40%
    }

    .hero__decor svg {
        width: 41.25rem;
        height: 37.5rem
    }

    .hero__links {
        gap: .625rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .hero__pair {
        gap: .625rem
    }

    .hero__pair:nth-child(1) .hero__link:nth-child(1) {
        max-width: 10rem
    }

    .hero__pair:nth-child(1) .hero__link:nth-child(2) {
        max-width: 11.25rem
    }

    .hero__pair:nth-child(2) .hero__link:nth-child(1) {
        max-width: 9.375rem
    }

    .hero__pair:nth-child(2) .hero__link:nth-child(2) {
        max-width: 8.75rem
    }

    .hero__link {
        height: 2.875rem
    }

    .need {
        padding: 1.75rem 0
    }

    .need__title {
        font-size: 1.5625rem;
        margin-bottom: 1rem
    }

    .need__sub-title {
        font-size: .8125rem;
        margin-bottom: 2.9375rem
    }

    .need__body {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 1.6875rem 1.375rem
    }

    .need__item:nth-child(1) .need__icon {
        padding-left: .125rem
    }

    .need__item:nth-child(1) .need__icon svg {
        max-width: 1rem
    }

    .need__item:nth-child(4) .need__icon svg {
        max-width: .875rem
    }

    .need__icon {
        width: 1.875rem;
        height: 1.875rem;
        margin-bottom: .8125rem;
        border-radius: .5625rem
    }

    .need__icon svg {
        max-width: 1.125rem
    }

    .need__caption {
        font-size: .8125rem;
        margin-bottom: .8125rem
    }

    .need__text {
        font-size: .625rem
    }

    .reviews {
        padding: 1.75rem 0
    }

    .reviews__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .reviews__item {
        max-width: 100%;
        padding: .8125rem;
        border-radius: .75rem;
        -webkit-box-shadow: .0625rem .0625rem .5rem 0 rgba(0, 0, 0, .1);
        box-shadow: .0625rem .0625rem .5rem 0 rgba(0, 0, 0, .1)
    }

    .reviews__stars {
        gap: .8125rem;
        margin-bottom: .8125rem
    }

    .reviews__stars img {
        width: 1.0625rem
    }

    .reviews__text {
        font-size: .8125rem;
        margin-bottom: .8125rem
    }

    .reviews__row {
        gap: .8125rem
    }

    .reviews__avatar {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 1.1875rem;
        flex: 0 0 1.1875rem
    }

    .reviews__name {
        font-size: .75rem
    }

    .supports {
        padding: 1.75rem 0
    }

    .supports__title {
        font-size: 1.5625rem;
        margin-bottom: 1rem
    }

    .supports__sub-title {
        font-size: .9375rem;
        max-width: 100%;
        margin-bottom: 1.9375rem
    }

    .supports__image {
        margin-bottom: 1.9375rem
    }

    .supports__text {
        font-size: .8125rem;
        margin: 0 auto 1.5625rem
    }

    .supports__link {
        padding: .5625rem .75rem;
        border-radius: .5625rem
    }

    .diary {
        padding: 1.75rem 0
    }

    .diary__title {
        font-size: 1.5625rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: .9375rem
    }

    .diary__sub-title {
        font-size: .8125rem;
        margin-bottom: 1.9375rem
    }

    .diary__content {
        max-width: 100%;
        text-align: center
    }

    .diary__item:not(:last-child) {
        margin-bottom: 1.9375rem
    }

    .diary__caption {
        font-size: 1.1875rem;
        margin-bottom: .8125rem;
        text-align: center
    }

    .diary__text {
        font-size: .8125rem;
        text-align: center;
        max-width: 13.75rem;
        margin: 0 auto 1.3125rem
    }

    .diary__media {
        display: none
    }

    .diary__decor-mobile {
        display: block
    }

    .diary__image-mobile {
        display: inline-block;
        -webkit-box-shadow: 0 .125rem .5rem .125rem rgba(0, 0, 0, .25);
        box-shadow: 0 .125rem .5rem .125rem rgba(0, 0, 0, .25);
        border-radius: 1.0625rem;
        overflow: hidden;
        text-align: center;
        margin: 0 .625rem
    }

    .free {
        padding: 1.75rem 0
    }

    .free__title {
        font-size: 1.5625rem;
        margin-bottom: 1rem
    }

    .free__text {
        font-size: .9375rem;
        max-width: 100%;
        margin-bottom: 1.9375rem
    }

    .footer__top {
        padding: .875rem 0
    }

    .footer__body {
        gap: 1.75rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer__logo {
        max-width: none
    }

    /* gridified footer: 2 cols by default; 3 cols on wider mobile */
    .footer__content {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 1rem;
        justify-content: start;
        justify-items: start
    }

    .footer__pair {
        display: contents
    }
}

@media (min-width:23.5em) and (max-width:47.99875em) {
    .footer__content {
        grid-template-columns: repeat(3, auto)
    }

    .footer__title {
        font-size: .75rem;
        margin-bottom: .6875rem
    }

    .footer__item:not(:last-child) {
        margin-bottom: .5rem
    }

    .footer__link {
        font-size: .75rem
    }

    .footer__bottom {
        padding: .4375rem 0
    }

    .footer__copy {
        font-size: .625rem
    }
}

@media (max-width:34.375em) {
    .footer__pair {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: .8125rem
    }

    .footer__column_pc {
        display: none
    }

    .footer__column_mobile {
        display: block
    }
}

@media (max-width:29.99875em) {
    .hero__decor svg {
        width: 30rem;
        height: 28.75rem
    }

    .hero__pair:nth-child(1) .hero__link:nth-child(1) {
        max-width: 7.5rem
    }

    .hero__pair:nth-child(1) .hero__link:nth-child(2) {
        max-width: 8.75rem
    }

    .hero__pair:nth-child(2) .hero__link:nth-child(1) {
        max-width: 6.875rem
    }

    .hero__pair:nth-child(2) .hero__link:nth-child(2) {
        max-width: 6.25rem
    }

    .hero__link {
        height: 2rem
    }
}

@media (any-hover:hover) {
    .menu__link:hover {
        color: var(--color-accent-end)
    }

    .hero__link:hover {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95)
    }

    .supports__link:hover {
        color: var(--color-accent-end)
    }

    .free__link:hover {
        opacity: .8
    }

    .footer__link:hover {
        color: var(--color-accent-end)
    }
}

.error-404 {
    text-align: center;
    padding: 10rem 0;
}

.error-404__container {
    max-width: 45rem;
    margin: 0 auto;
}

.error-404__text h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-accent-start);
    /* Яркий цвет для заголовка */
    margin-bottom: 1.5rem;
}

.error-404__text p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.error-404__button {
    font-size: 1.25rem;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-accent-start) 0%, var(--color-accent-alt) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 1.1875rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

.error-404__button:hover {
    background: linear-gradient(135deg, var(--color-hover-dark) 0%, var(--color-hover-dark) 100%);
    transform: translateY(-1px);
    box-shadow: 0 0.375rem 0.75rem rgba(220, 66, 40, 0.25);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 7rem 0;
    }

    .error-404__text h1 {
        font-size: 2.5rem;
    }

    .error-404__text p {
        font-size: 1rem;
    }

    .error-404__button {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }
}

/* theme switch removed */