*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 64px 0; }
.section--cream { background: var(--cream); }

.section__head { max-width: 720px; margin-bottom: 36px; }
.section__head--center { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }

.section__title {
    font-size: clamp(26px, 4.2vw, 40px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.section__title--light { color: #fff; }

.section__subtitle {
    margin-top: 14px;
    font-size: 17px;
    color: var(--muted);
}
.section__subtitle--light { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: var(--eyebrow-case);
    color: var(--accent);
}
.eyebrow--light { color: rgba(255, 255, 255, 0.92); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.24); }
.btn--outline-light { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { width: 100%; }

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}
.link-btn:hover { color: var(--accent-dark); }
.link-btn__icon { width: 16px; height: 16px; transition: transform .2s ease; }
.link-btn:hover .link-btn__icon { transform: translateX(3px); }

.header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    z-index: 60;
}
.header--sticky { position: sticky; top: 0; }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    flex: none;
}
.logo__icon { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__line1 { font-size: 15px; font-weight: 700; letter-spacing: 0.08em; }
.logo__line2 { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; color: var(--muted); }
.logo--light .logo__line2 { color: rgba(255, 255, 255, 0.6); }
.logo--light { color: #fff; }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { display: flex; flex-direction: column; text-align: right; }
.header__phone-value { font-size: 17px; font-weight: 700; white-space: nowrap; }
.header__phone-note { font-size: 11px; color: var(--muted); }

.hero {
    --hero-overlay: 0.5;
    --hero-focus: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 660px;
    padding: 120px 0 60px;
    color: #fff;
    background: var(--dark);
    overflow: hidden;
}
.hero--plain { min-height: 520px; }

.hero__media { position: absolute; inset: 0; }
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-focus);
    filter: brightness(0.9) saturate(1.04);
    animation: hero-in 1.4s cubic-bezier(.22, .61, .36, 1) both;
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 0.78)) 0%,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 0.42)) 16%,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 0.16)) 32%,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 0.28)) 52%,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 0.62)) 74%,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 0.92)) 88%,
            rgba(13, 20, 16, calc(var(--hero-overlay) * 1.08)) 100%);
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse var(--hero-scrim-w, 52%) var(--hero-scrim-h, 58%) at var(--hero-scrim-x, 23%) var(--hero-scrim-y, 72%),
            rgba(8, 14, 11, calc(var(--hero-overlay) * 1.28)) 0%,
            rgba(8, 14, 11, calc(var(--hero-overlay) * 1.14)) 26%,
            rgba(8, 14, 11, calc(var(--hero-overlay) * 0.84)) 46%,
            rgba(8, 14, 11, calc(var(--hero-overlay) * 0.5)) 64%,
            rgba(8, 14, 11, calc(var(--hero-overlay) * 0.22)) 80%,
            rgba(8, 14, 11, calc(var(--hero-overlay) * 0.06)) 92%,
            rgba(8, 14, 11, 0) 100%),
        linear-gradient(96deg,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.72)) 0%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.64)) 18%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.52)) 34%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.36)) 48%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.2)) 62%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.08)) 76%,
            rgba(11, 18, 14, 0) 90%),
        radial-gradient(130% 100% at 50% 40%,
            rgba(11, 18, 14, 0) 52%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.16)) 78%,
            rgba(11, 18, 14, calc(var(--hero-overlay) * 0.42)) 100%);
}

@keyframes hero-in {
    from { opacity: 0; transform: scale(1.06); }
    to { opacity: 1; transform: none; }
}

.hero__inner { position: relative; z-index: 2; }
.hero__inner > * { animation: hero-rise .8s cubic-bezier(.22, .61, .36, 1) both; }
.hero__inner > *:nth-child(1) { animation-delay: .15s; }
.hero__inner > *:nth-child(2) { animation-delay: .24s; }
.hero__inner > *:nth-child(3) { animation-delay: .33s; }
.hero__inner > *:nth-child(4) { animation-delay: .42s; }
.hero__inner > *:nth-child(5) { animation-delay: .51s; }

@keyframes hero-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

.hero .eyebrow--light { text-shadow: 0 1px 14px rgba(8, 14, 10, 0.72), 0 1px 3px rgba(8, 14, 10, 0.5); }

.hero__title {
    max-width: 900px;
    font-size: clamp(30px, 5.6vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(8, 14, 10, 0.62), 0 1px 4px rgba(8, 14, 10, 0.42);
}
.hero__subtitle {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 20px rgba(8, 14, 10, 0.6), 0 1px 3px rgba(8, 14, 10, 0.35);
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__buttons .btn--primary { box-shadow: 0 10px 30px rgba(10, 16, 12, 0.35); }

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(14, 22, 17, 0.46);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero__badge-icon { width: 17px; height: 17px; flex: none; color: rgba(255, 255, 255, 0.75); }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.feature {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}
.feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature__title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature__text { font-size: 15px; color: var(--muted); }

.family { background: var(--dark); color: #fff; }
.family__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}
.family-card {
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}
.family-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
}
.family-card__icon svg { width: 26px; height: 26px; }
.family-card__label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.family-card__value { margin: 8px 0 6px; font-size: clamp(26px, 4vw, 38px); font-weight: 700; line-height: 1.1; }
.family-card__text { font-size: 15px; color: rgba(255, 255, 255, 0.78); }

.family__note {
    max-width: 700px;
    margin: 26px auto 0;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
}
.family__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.stat {
    padding: 24px 20px;
    border-radius: var(--radius);
    background: var(--cream);
    text-align: center;
}
.section--cream .stat { background: var(--surface); }
.stat__value { display: block; font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; color: var(--accent); }
.stat__label { display: block; margin-top: 6px; font-size: 14px; color: var(--muted); }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.gallery__item { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 16px 12px;
    background: linear-gradient(180deg, transparent, rgba(15, 22, 17, 0.78));
    color: #fff;
    font-size: 13px;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.review {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}
.review__text { font-size: 15px; color: var(--text); }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.review__name { font-size: 15px; font-weight: 600; }
.review__role { font-size: 13px; color: var(--muted); }

.formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.format {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}
.format__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.format__body { padding: 26px; }
.format__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
}
.format__icon svg { width: 22px; height: 22px; }
.format__title { font-size: 19px; font-weight: 600; }
.format__price { margin-top: 4px; font-size: 15px; font-weight: 600; color: var(--accent); }
.format__text { margin-top: 10px; font-size: 15px; color: var(--muted); }

.genplan__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.genplan__list { margin: 22px 0 28px; display: grid; gap: 10px; }
.genplan__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.genplan__check { width: 20px; height: 20px; color: var(--accent); flex: none; }
.genplan__preview { position: relative; display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.genplan__preview img { width: 100%; object-fit: cover; }
.genplan__preview-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 600;
}
.genplan__preview-icon { width: 18px; height: 18px; color: var(--accent); }

.cta__inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.cta__media { margin-top: 26px; border-radius: var(--radius); overflow: hidden; }
.cta__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cta__form {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(29, 38, 32, 0.08);
}

.lead-form__row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field { display: block; margin-bottom: 14px; }
.field__label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 500; color: var(--muted); }
.field__input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) - 4px);
    background: var(--surface);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.field__input--area { resize: vertical; min-height: 90px; }
.field--error .field__input { border-color: #c0483c; }

.lead-form__row .field { margin-bottom: 0; }
.lead-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; gap: 10px; margin: 16px 0 18px; font-size: 12px; line-height: 1.5; color: var(--muted); }
.consent input { margin-top: 2px; accent-color: var(--accent); flex: none; }
.consent a { color: var(--accent); text-decoration: underline; }

.lead-form__note { margin-top: 12px; font-size: 12px; text-align: center; color: var(--muted); }
.lead-form__message { margin-top: 14px; font-size: 14px; text-align: center; }
.lead-form__message--success { color: var(--accent); font-weight: 600; }
.lead-form__message--error { color: #c0483c; }
.lead-form.is-sent .lead-form__row,
.lead-form.is-sent .field,
.lead-form.is-sent .consent,
.lead-form.is-sent .btn,
.lead-form.is-sent .lead-form__note { display: none; }

.footer { padding: 56px 0 28px; background: var(--dark); color: rgba(255, 255, 255, 0.78); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer__about { margin-top: 16px; font-size: 14px; max-width: 320px; }
.footer__heading { margin-bottom: 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.footer__contacts { display: grid; gap: 12px; }
.footer__contacts li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.footer__icon { width: 18px; height: 18px; margin-top: 3px; color: var(--accent); flex: none; }
.footer__contacts a:hover { color: #fff; }
.footer__links { display: grid; gap: 10px; font-size: 15px; }
.footer__links a:hover { color: #fff; }
.footer__socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer__social {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 13px;
    transition: background-color .2s ease;
}
.footer__social:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 14px; }
.footer__meta { display: flex; flex-wrap: wrap; gap: 14px; }
.footer__meta a:hover { color: #fff; }

.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(15, 22, 17, 0.66); backdrop-filter: blur(3px); }
.modal__box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    animation: modal-in .22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: var(--muted);
}
.modal__close:hover { background: var(--cream); }
.modal__title { font-size: 22px; font-weight: 700; }
.modal__text { margin: 8px 0 22px; font-size: 15px; color: var(--muted); }

.floating { position: fixed; right: 16px; bottom: 16px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.floating__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    transition: transform .18s ease;
}
.floating__btn:hover { transform: scale(1.06); }
.floating__btn--wa { background: #25d366; }
.floating__btn--tg { background: #2ba0da; }
.floating__btn--call { background: var(--accent); }
.floating__icon { width: 22px; height: 22px; }

.cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.cookie[hidden] { display: none; }
.cookie__text { font-size: 13px; color: var(--muted); flex: 1 1 340px; }
.cookie__text a { color: var(--accent); text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.page { padding: 56px 0 72px; }
.page__title { font-size: clamp(26px, 4vw, 38px); font-weight: 700; margin-bottom: 24px; }
.page__content { max-width: 820px; font-size: 16px; color: var(--text); }
.page__content h2 { margin: 28px 0 12px; font-size: 20px; font-weight: 600; }
.page__content p { margin-bottom: 12px; }
.page__content ul { margin: 0 0 12px 18px; list-style: disc; }
.page__content li { margin-bottom: 6px; }

@media (min-width: 640px) {
    .lead-form__row { grid-template-columns: 1fr 1fr; }
    .section { padding: 80px 0; }
}

@media (min-width: 900px) {
    .genplan__inner { grid-template-columns: 1fr 1.05fr; gap: 48px; }
    .cta__inner { grid-template-columns: 1.05fr 1fr; gap: 48px; }
    .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
    .section { padding: 96px 0; }
}

@media (max-width: 1100px) {
    .hero {
        --hero-scrim-w: 84%;
        --hero-scrim-h: 82%;
        --hero-scrim-x: 42%;
        --hero-scrim-y: 62%;
    }
}

@media (max-width: 900px) {
    .hero { --hero-overlay: calc(var(--hero-overlay-base, 0.5) * 1.22); }
}

@media (max-width: 860px) {
    .header__phone-note { display: none; }
}

@media (max-width: 620px) {
    .header__inner { min-height: 64px; }
    .header__phone-value { font-size: 15px; }
    .header__actions .btn { display: none; }
    .hero {
        min-height: 560px;
        min-height: 78svh;
        padding: 64px 0 40px;
        --hero-overlay: calc(var(--hero-overlay-base, 0.5) * 1.56);
        --hero-scrim-w: 104%;
        --hero-scrim-h: 112%;
        --hero-scrim-x: 50%;
        --hero-scrim-y: 54%;
    }
    .hero__badges { gap: 8px; margin-top: 26px; padding-top: 20px; }
    .hero__badge { padding: 8px 13px; font-size: 12px; }
    .hero__buttons .btn { width: 100%; }
    .family__buttons .btn { width: 100%; }
    .cta__form { padding: 24px 20px; }
    .cookie {
        left: 10px;
        right: 10px;
        bottom: 10px;
        gap: 10px;
        padding: 12px 14px;
        align-items: center;
    }
    .cookie__text { flex: 1 1 100%; font-size: 12px; line-height: 1.45; }
    .cookie .btn { width: 100%; padding: 9px 16px; }
    .floating { bottom: 12px; right: 12px; }
    .floating__btn { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero__media img, .hero__inner > * { animation: none; opacity: 1; transform: none; }
}
