@import url(https://fonts.googleapis.com/css?family=Roboto&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&display=swap);

:root {
    --color-text-primary: #000;
    --color-text-secondary: #595959;
    --color-text-gray: #6b6b6b;
    --color-accent-start: #da0788;
    --color-accent-end: #7702da;
    --color-accent-alt: #c207a4;
    --color-hover-dark: #a20575;
    --color-bg-body: #fefcfe;
    --color-bg-section: #fbf3fb;
    --color-white: #fff;
}

.dark-theme {
    --color-text-primary: #fff;
    --color-text-secondary: #d7d7d7;
    --color-text-gray: #a0a0a0;
    --color-bg-body: #1a1a1a;
    --color-bg-section: #222;
    --color-white: #333;
}

* {
    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: Roboto, 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: Roboto, sans-serif;
    font-weight: 400;
    color: var(--color-text-primary);
    font-size: 1rem;
    background-color: var(--color-bg-body)
}

/* =========================================
   Smooth Animation Utilities
   -----------------------------------------
   Usage:
   Add class .anim-on-load or .anim-on-scroll to elements.
   They start hidden (opacity 0 / slight transform) and
   become visible when JS adds .is-visible.
   Optional modifier classes:
     .anim-fade   -> fade only
     .anim-scale  -> slight scale in
     .anim-delay-[1-6] -> incremental delays
   Parallax: add [data-parallax="ratio"] to element (e.g. 0.15)
   Stagger: add [data-anim-stagger] to parent; children animate sequentially.
   Reduced motion respected via prefers-reduced-motion.
========================================= */
.anim-on-load,
.anim-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .75s cubic-bezier(.22, .61, .36, 1), transform .75s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.anim-on-load.anim-scale,
.anim-on-scroll.anim-scale {
    transform: scale(.92);
}

.anim-on-load.anim-fade,
.anim-on-scroll.anim-fade {
    transform: none;
}

.anim-on-load.is-visible,
.anim-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.anim-on-load.anim-scale.is-visible,
.anim-on-scroll.anim-scale.is-visible {
    transform: scale(1);
}

/* Delays (can extend if needed) */
.anim-delay-1 {
    transition-delay: .05s;
}

.anim-delay-2 {
    transition-delay: .15s;
}

.anim-delay-3 {
    transition-delay: .25s;
}

.anim-delay-4 {
    transition-delay: .35s;
}

.anim-delay-5 {
    transition-delay: .45s;
}

.anim-delay-6 {
    transition-delay: .55s;
}

/* Parallax placeholder so element has its own stacking context */
[data-parallax] {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

    .anim-on-load,
    .anim-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    [data-parallax] {
        transform: none !important;
    }
}

.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;
    -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 8.1875rem;
    flex: 0 0 8.1875rem
}

.header__logo img {
    max-width: 100%
}

.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;
    /* Ensure the subtitle text is selectable and above any potential overlay */
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
    position: relative;
    z-index: 1
}

.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;
    /* Consistent selection behavior */
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text
}

.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: var(--color-bg-body);
    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
}

.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);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    white-space: nowrap
}

.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: var(--color-bg-section);
    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
    }

    .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: 500;
        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 6.25rem;
        flex: 0 0 6.25rem
    }

    .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
    }

    .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-color 0.3s ease;
}

.error-404__button:hover {
    background-color: var(--color-hover-dark);
    /* Темнее при наведении */
}

@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 {
    position: relative;
    display: inline-block;
    width: 2.5rem;
    height: 1.375rem
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.theme-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 1.375rem
}

.theme-switch .slider:before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    left: .1875rem;
    bottom: .1875rem;
    background-color: #fff;
    transition: .4s;
    border-radius: 50%
}

.theme-switch input:checked+.slider {
    background: linear-gradient(90deg, var(--color-accent-end) 0%, var(--color-accent-start) 100%)
}

.theme-switch input:checked+.slider:before {
    -webkit-transform: translateX(1.125rem);
    -ms-transform: translateX(1.125rem);
    transform: translateX(1.125rem)
}

/* Legal pages */
.legal {
    background: var(--color-bg-section);
    padding: 3rem 0
}

.legal__title {
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    background: linear-gradient(315deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.legal__content {
    max-width: 48rem
}

.legal p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin: .75rem 0 .5rem
}

/* Last updated label */
.legal__meta {
    color: var(--color-text-gray);
    font-size: .875rem;
    margin-top: -.25rem;
    margin-bottom: 1rem
}

.legal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: .5rem;
    color: var(--color-text-primary)
}

.legal h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: .25rem;
    color: var(--color-text-primary)
}

.legal ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: .5rem 0 1rem
}

.legal li {
    margin: .25rem 0
}

.legal a {
    color: var(--color-accent-start);
    text-decoration: underline
}

@media (max-width:47.99875em) {
    .legal {
        padding: 1.75rem 0
    }

    .legal__title {
        font-size: 1.75rem;
        margin-bottom: .75rem
    }

    .legal p {
        font-size: .9375rem
    }

    .legal h2 {
        font-size: 1.25rem;
        margin-top: 1.25rem
    }

    .legal h3 {
        font-size: 1.0625rem
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: .75rem;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0 .75rem;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .45s ease, opacity .45s ease
}

.cookie-banner.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1
}

.cookie-banner__card {
    max-width: 52rem;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
    border-radius: 14px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .75rem 1rem;
    align-items: center
}

.cookie-banner__text {
    font-size: .9375rem;
    color: var(--color-text-secondary)
}

.cookie-banner__text a {
    color: var(--color-accent-start);
    text-decoration: underline
}

.cookie-banner__actions {
    display: flex;
    gap: .5rem
}

.cookie-banner__btn {
    font-weight: 600;
    font-size: .9375rem;
    border-radius: 10px;
    padding: .6rem .9rem;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform .2s ease, opacity .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease
}

.cookie-banner__btn:active {
    transform: translateY(1px)
}

.cookie-banner__btn--accept {
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent-start) 0, var(--color-accent-alt) 100%)
}

.cookie-banner__btn--reject {
    background: var(--color-bg-body);
    color: var(--color-text-primary);
    border-color: rgba(0, 0, 0, .08)
}

@media (any-hover:hover) {
    .cookie-banner__btn--accept:hover {
        opacity: .9
    }

    .cookie-banner__btn--reject:hover {
        border-color: rgba(0, 0, 0, .2)
    }
}

@media (max-width:47.99875em) {
    .cookie-banner__card {
        grid-template-columns: 1fr;
        text-align: left
    }

    .cookie-banner__actions {
        justify-content: flex-start
    }
}

/* --- Cookie banner retains existing transitions above --- */

/* Optional keyframes (not strictly required but available for future) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gentle floating for hero image once visible */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-6px);
    }
}

.hero__image.anim-on-load.is-visible img,
.hero__image.anim-on-scroll.is-visible img {
    animation: floatY 8s ease-in-out infinite alternate;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

    .hero__image.anim-on-load.is-visible img,
    .hero__image.anim-on-scroll.is-visible img {
        animation: none !important;
    }
}