:root {
    /* Новая розовая палитра */
    --c-cream: #fafafa; /* Фон */
    --c-cream-2: #f0e6e8; /* Легкий акцентный фон */
    --c-g-950: #9e5578; 
    --c-g-900: #C24A75; /* Яркий розовый (Основной брендовый цвет) */
    --c-g-700: #D87093; /* Более светлый розовый (Акцент) */
    --c-g-500: #E6A7BB; /* Средний розовый */
    --c-ink: #332228; /* Темный текст */
    --mw: 1200px
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--c-cream); /* Обновлено */
    color: var(--c-ink); /* Обновлено */
    font-family: Roboto, Inter, system-ui, Segoe UI, Arial, sans-serif; /* Новый шрифт */
    line-height: 1.5;
    max-width: 100vw;
    overflow-x: hidden
}

.q-84110 {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(120%) blur(8px);
    /* Обновлено: Розовый градиент */
    background: linear-gradient(180deg, rgba(250, 250, 250, .85), rgba(250, 250, 250, .55))
}

.q-84110 .ct {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--c-cream-2); /* Обновлено */
}

.q-84110 .br {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none
}

.q-84110 .lg {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: conic-gradient(from 90deg, var(--c-g-900), var(--c-g-500)); /* Обновлено */
}

.q-84110 .lg svg {
    width: 24px;
    height: 24px
}

.q-84110 .nm {
    font-weight: 700;
    color: var(--c-g-900); /* Обновлено */
}

nav a {
    color: var(--c-ink); /* Обновлено */
    text-decoration: none;
    padding: .5rem .75rem;
    border-radius: 10px
}

nav a:hover {
    background: var(--c-cream-2); /* Обновлено */
}

.bg {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: 0 0;
    cursor: pointer
}

.bg span,
.bg::after,
.bg::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    background: var(--c-ink); /* Обновлено */
    top: 19px;
    transition: .3s
}

.bg::before {
    top: 12px
}

.bg::after {
    top: 26px
}

.bg.is-open span {
    opacity: 0
}

.bg.is-open::before {
    transform: translateY(7px) rotate(45deg)
}

.bg.is-open::after {
    transform: translateY(-7px) rotate(-45deg)
}

.mov {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(194, 74, 117, .7); /* Обновлено */
    backdrop-filter: blur(6px);
    z-index: 40
}

.mov nav {
    background: var(--c-cream); /* Обновлено */
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem
}

main {
    min-height: 100vh;
    display: grid;
    align-content: center
}

.wrap {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 2.2rem 1rem
}

.thx {
    background: #fff;
    border: 1px solid var(--c-cream-2); /* Обновлено */
    border-radius: 18px;
    padding: 1.6rem;
    /* Обновлена тень */
    box-shadow: 0 20px 40px rgba(194, 74, 117, .06);
}

.thx h1 {
    margin: .2rem 0 .6rem;
    color: var(--c-g-900); /* Обновлено */
    font-size: clamp(2rem, 3.5vw, 2.6rem)
}

.thx p {
    margin: .5rem 0
}

.cta {
    display: flex;
    gap: .6rem;
    margin-top: .8rem;
    flex-wrap: wrap
}

.cta a {
    display: inline-block;
    border-radius: 14px;
    padding: .8rem 1rem;
    text-decoration: none
}

.cta .p {
    background: var(--c-g-900); /* Обновлено: Основной CTA */
    color: #fff
}

.cta .s {
    border: 1.5px solid var(--c-g-900); /* Обновлено: Вторичный CTA */
    color: var(--c-g-900);
    background: 0 0
}

footer {
    border-top: 1px solid var(--c-cream-2); /* Обновлено */
    background: var(--c-cream-2); /* Обновлено */
}

.f {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem
}

[role=button],
a,
button {
    cursor: pointer
}

@media (max-width:900px) {
    .bg {
        display: block
    }

    nav.h {
        display: none
    }
}

.elem--inl-a5fdbc {
    display: flex;
    gap: 1rem
}