/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 140%;
    color: #000000;
}

:root {
    --container-w: 1420px;
    --container-p: 20px;
    --color-primary: #151b50;
    /* тёмно-синий */
    --color-secondary: #bcc2ff;
    /* светло-сиреневый */
    --color-secondary-05: #bcc2ff80;
    --color-dark: #1a1a1a;
    /* почти чёрный */
    --text-dark: var(--color-dark);
    --color-light: #f5f6ff;
    /* очень светлый сине-белый */
    --color-accent: #5f67b7;
    /* средне-синий */
    --color-bg-input: #f4f5ff;
    --color-white: #ffffff;
    --border-radius: 10px;

    --range-active: var(--color-accent);
    --range-inactive: var(--color-secondary);
    --track-height: 3px;
    --thumb-w: 36px;
    --thumb-h: 17px;
    --thumb-border: 2px;
    --thumb-grad-l: var(--color-accent);
    --thumb-grad-r: #919bff;
}

* {
    box-sizing: border-box;
}

main {
    overflow-x: hidden;
}
/* Medium — 500 */
@font-face {
    font-family: "Geometria";
    src: url("../font/geometria_medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Regular — 400 (обычный) */
@font-face {
    font-family: "Geometria";
    src: url("../font/geometria_light.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Bold — 700 */
@font-face {
    font-family: "Geometria";
    src: url("../font/geometria_bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 16px;
}
body {
    font-family: "Geometria", Arial, sans-serif;
    font-weight: 400;
    color: var(--color-dark);
    overflow-x: hidden;
}

p,
a,
span {
    color: var(--color-dark);
}

h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 6rem;
    line-height: 96%;
    letter-spacing: -1.52px;
    color: var(--color-white);
}

h2 {
    font-weight: 700;
    font-size: clamp(28px, 2.8125rem, 45px);
    line-height: 100%;
    letter-spacing: -0.56px;
    color: var(--color-dark);
}

img {
    width: 100%;
}
input:focus-visible,
select:focus-visible {
    outline: var(--color-accent) auto 1px;
}
[data-role="slider"] {
    width: calc(100vw - 40px);
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

[data-role="slider-track"] {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y pinch-zoom;
}

[data-role="slider-track"]::-webkit-scrollbar {
    display: none;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--container-p);
}

.mobile {
    display: none;
}
.background {
    background-color: var(--color-light);
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.button {
    max-width: 200px;
    max-height: 50px;
    background: var(--color-primary);
    border-radius: var(--border-radius);
    border: none;
    padding: 16px 39.5px;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-white);
    cursor: pointer;
}

.button:hover {
    background-color: #333a77;
}

.button:active {
    background-color: #2d3aa4;
}

.button-3d {
    position: relative;
    padding: 1.875rem 2.5rem;
    background: linear-gradient(87.61deg, var(--color-accent) -13.27%, var(--thumb-grad-r) 137.1%);
    border: none;
    border-radius: var(--border-radius);
    box-shadow:
        0 4px 0 var(--color-primary),
        0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
    isolation: isolate;

    /* Центрирование содержимого */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    /* Стили только для текста */
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 19px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.button-3d p {
    margin: 0;
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    white-space: inherit;
    text-align: inherit;
}

/* Псевдоэлемент для плавного перехода к сплошному цвету */
.button-3d::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--thumb-grad-r);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.button-3d:hover::before {
    opacity: 1;
}

.button-3d:hover {
    box-shadow:
        0 3px 0 var(--color-primary),
        0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.button-3d:active {
    transform: translateY(3px);
    background: var(--color-accent);
    transition: all 0.05s ease;
}

.button-3d:active::before {
    opacity: 0;
    /* или transition: none */
}

.transparent-button {
    max-width: max-content;
    display: flex;
    gap: 14px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
    padding: 33.5px 43.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    justify-content: center;
    justify-content: center;
    align-items: center;
}

.transparent-button svg {
    stroke-width: 1.5px;
    stroke: var(--color-primary);
    fill: var(--color-primary);
    transition: all 0.3s ease;
}

.transparent-button:hover {
    border: 1px solid var(--color-secondary);
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.transparent-button:hover svg {
    fill: var(--color-white);
    stroke: var(--color-white);
}

.transparent-button:active {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.transparent-button:active svg {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}

.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

button.tab-item {
    font: inherit;
    margin: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}

.tab-item {
    padding: 10px 19px;
    border: 1px solid var(--color-secondary);
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.tab-item:hover,
.tab-item[data-active="true"] {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.tab-item:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}
.tab-content {
    margin-top: 30px;
}
[data-role="tab-content"][data-active="true"] {
    display: block;
    visibility: visible;
}

[data-role="tab-content"][data-active="false"] {
    display: none;
    visibility: hidden;
}

.form {
    background-color: #fff;
    max-width: 540px;
    position: relative;
    z-index: 2;
    padding: 20px 60px;
    border: 10px solid var(--color-accent);
    border-radius: 20px;
    box-shadow: 0px 30px 30px 0px #151b501a;
}

.form-title {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 38px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.form-subtitle {
    font-weight: 400;
    font-size: 1rem;
    line-height: 160%;
    color: var(--color-dark);
    opacity: 0.5;
    margin-bottom: 27px;
}

.form-field__input input,
.form-field__input select {
    background-color: var(--color-bg-input);
    border: none;
    padding: 28px 30px;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    line-height: 160%;
    color: var(--color-dark);
}

.form-field__input select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 82px;
    padding-right: 62px;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--color-accent) 50%),
        linear-gradient(135deg, var(--color-accent) 50%, transparent 50%);
    background-position:
        calc(100% - 30px) calc(50% - 3px),
        calc(100% - 22px) calc(50% - 3px);
    background-size:
        8px 8px,
        8px 8px;
    background-repeat: no-repeat;
}

.form-field__input select::-ms-expand {
    display: none;
}
:root {
    --active-bg: #5c6ac4;
    --inactive-bg: #edeef3;
    --active-text: var(--color-white);
    --inactive-text: #8c8f99;
    --radius: 18px;
}
.form-field__input[role="radiogroup"] {
    display: inline-flex;
    gap: 14px;
}

.form-field__input[role="radiogroup"] input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form-field__input[role="radiogroup"] label {
    min-width: 90px;
    height: 46px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    background: var(--inactive-bg);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}
.form-field__input[role="radiogroup"] label span {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 20px;
    text-align: center;
    opacity: 0.5;
}
.form-field__input[role="radiogroup"] input[type="radio"]:checked + label {
    background: var(--color-accent);
}
.form-field__input[role="radiogroup"] input[type="radio"]:checked + label span {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 20px;
    text-align: center;
    color: var(--color-white);
    opacity: 1;
}

.form-field__input[role="radiogroup"] label:hover {
    transform: translateY(-1px);
}

.form-fields {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-consent p {
    font-weight: 300;
    font-size: 10px;
    line-height: 140%;
    text-align: center;
    color: var(--color-dark);
    opacity: 0.5;
}

.form-consent a {
    text-decoration: underline;
}

.form .button-3d {
    width: 100%;
    line-height: 26px;
    margin-bottom: 13px;
}

.form-field__label {
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.landing-form-modal {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 12, 20, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.landing-form-modal[data-open="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-form-modal__dialog {
    position: relative;
    width: min(500px, 100%);
    max-height: calc(100vh - 48px);
    overflow: visible;
}

.landing-form-modal__dialog .form {
    max-width: none;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.landing-form-modal__close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 32px;
    line-height: 36px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.landing-form-modal__close:hover {
    opacity: 0.85;
    transform: scale(1.04);
}

.landing-form-modal-open {
    overflow: hidden;
}

.landingtest-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.btn-tabs__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-tabs__tab {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    padding: 25px 0;
    background-color: var(--color-light);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 16px;
    text-align: center;
    color: #555555;
    border-right: 1px solid var(--color-secondary-05);
    cursor: pointer;
}

.btn-tabs__tab:first-child {
    border-radius: 10px 0 0 10px;
}

.btn-tabs__tab:last-child {
    border-radius: 0 10px 10px 0;
    border: none;
}

.btn-tabs__tab[data-active="true"] {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    justify-content: space-between;
    align-items: stretch;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 37px 48px;
    box-shadow: 0px 30px 20px 0px #151b501a;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-secondary);
    max-width: 450px;
    min-height: 100%;
}

.card-image {
    width: 100%;
    max-width: 355px;
    flex: 0 0 350px;
    min-height: 350px;
    max-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    align-self: center;
    overflow: hidden;
}

.card-image__media {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}

.card-name p {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: var(--color-dark);
    opacity: 0.5;
    margin-bottom: 10px;
}

.card-quadrature p {
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 24px;
    color: var(--color-dark);
    opacity: 1;
    margin-bottom: 10px;
}

.card-price p.strong {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 25px;
    color: var(--color-dark);
    opacity: 1;
    margin-bottom: 6px;
}

.card-price p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 18px;
    color: var(--color-dark);
    opacity: 0.5;
}

.card-button {
    margin-top: auto;
    padding-top: 20px;
}

.mortgage-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calc-row__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.calc-row__label {
    line-height: 1.3;
    max-width: 58%;
    font-weight: 700;
    font-size: 12px;
    line-height: 13px;
    text-transform: uppercase;
    color: var(--color-dark);
    opacity: 0.5;
}

.calc-row__value {
    color: var(--color-dark);
    text-align: right;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1rem;
    line-height: 12px;
    text-align: right;
    opacity: 1;
}

.calc-row__slider {
    width: 100%;
    padding: 0;
}

.dual-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 18px;
    background: transparent;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    margin: 0;
    --pct: 50%;
}

.dual-range::-webkit-slider-runnable-track {
    width: 100%;
    height: var(--track-height);
    border-radius: 999px;
    border: none;
    background: linear-gradient(
        to right,
        var(--range-active) 0%,
        var(--range-active) var(--pct),
        var(--range-inactive) var(--pct),
        var(--range-inactive) 100%
    );
}

.dual-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: var(--thumb-w);
    height: var(--thumb-h);
    border-radius: 999px;
    margin-top: calc((var(--track-height) - var(--thumb-h)) / 2);
    border: var(--thumb-border) solid #fff;
    box-shadow: 0 3px 10px rgba(55, 60, 120, 0.18);
    cursor: grab;
    background: linear-gradient(90deg, var(--thumb-grad-l) 0%, var(--thumb-grad-r) 100%);
}

.dual-range:active::-webkit-slider-thumb {
    cursor: grabbing;
}

.dual-range::-moz-range-track {
    width: 100%;
    height: var(--track-height);
    background: var(--range-inactive);
    border-radius: 999px;
    border: none;
}

.dual-range::-moz-range-progress {
    height: var(--track-height);
    background: var(--range-active);
    border-radius: 999px;
}

.dual-range::-moz-range-thumb {
    box-sizing: border-box;
    width: var(--thumb-w);
    height: var(--thumb-h);
    border-radius: 999px;
    border: var(--thumb-border) solid #fff;
    box-shadow: 0 3px 10px rgba(55, 60, 120, 0.18);
    cursor: grab;
    background: linear-gradient(90deg, var(--thumb-grad-l) 0%, var(--thumb-grad-r) 100%);
}

.dual-range:active::-moz-range-thumb {
    cursor: grabbing;
}

.dual-range:focus-visible::-webkit-slider-thumb {
    outline: 2px solid var(--range-active);
    outline-offset: 3px;
}

.dual-range:focus-visible::-moz-range-thumb {
    outline: 2px solid var(--range-active);
    outline-offset: 3px;
}

.calc-row__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
    padding: 0 1px;
    user-select: none;
    font-weight: 400;
    font-size: 11px;
    line-height: 12px;
}

/* header start */
.header {
    background-color: var(--color-light);
    height: 5.625rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}
.logo {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    width: max-content;
    max-width: 220px;
    text-align: center;
    margin-right: 10px;
    flex: 0 1 220px;
}

.logo__link {
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
}
.nav__list {
    display: flex;
    gap: 38px;
    padding: 10px;
}
.menu-burger {
    cursor: pointer;
}
.nav__item a {
    font-size: 1rem;
    line-height: 20px;
    color: var(--color-dark);
    opacity: 0.9;
    white-space: nowrap;
}

.nav__item {
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.nav__item:hover {
    border-bottom-color: var(--color-accent);
}

.nav__item[data-active="true"] {
    border-bottom: 2px solid var(--color-accent);
}

.contact-block__phone {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    white-space: nowrap;
    display: inline-block;
}

.contact-block__phone::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-right: 14px;
    vertical-align: middle;
    margin-top: -2px;
}

.contact-block {
    display: flex;
    gap: clamp(10px, 4em, 40px);
    align-items: center;
}

/* Бургер меню */
.menu-burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 36px;
    gap: 5px;
    justify-content: space-between;
    z-index: 100;
    position: relative;
}

.menu-burger span {
    width: 68px;
    height: 5px;
    border-radius: var(--border-radius);
    background-color: var(--color-accent);
    transition: all 0.3s ease;
}

/* Анимация для активного бургера */
.menu-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 12px);
    width: 36px;
}
.menu-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -12px);
    width: 36px;
}
.menu-burger.active span:nth-child(2) {
    opacity: 0;
    display: none;
}

.menu-burger.active span:nth-child(4) {
    opacity: 0;
    display: none;
}

/* Стили меню */
.mobile_menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.3s ease;
    z-index: 99;
}
.mobile_menu.active {
    display: block;
}

.mobile_menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2px;
    background: #00000000;
    flex-direction: column;
}
.mobile_menu li {
    width: 320px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-accent);
    cursor: pointer;
}
.mobile_menu li a {
    white-space: nowrap;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--color-dark);
    opacity: 0.9;
    height: 60px;
    width: 320px;
    align-content: center;
}

/* Оверлей (затемнение фона) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* header end */

/* hero block start */
.hero {
    max-height: 930px;
    overflow: hidden;
}

.hero__bg-wrapper {
    position: relative;
}

.hero .transparent-button {
    background-color: #0000004d;
    border: 1px solid var(--color-secondary);
    color: var(--color-white);
}

.hero .transparent-button svg {
    fill: var(--color-white);
    stroke: var(--color-white);
}

.hero .transparent-button:active svg {
    fill: var(--color-primary);
    stroke: var(--color-primary);
}

.hero .transparent-button:hover {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: var(--color-white);
}

.hero .transparent-button:active {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: var(--color-primary);
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(77.09deg, #000000 -24.47%, rgba(0, 0, 0, 0) 125.93%);
    pointer-events: none;
}

/* Контент должен быть выше градиента */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    padding: 127px 0;
    position: relative;
    z-index: 99;
}

.hero-window {
    position: absolute;
    z-index: 99;
    width: 180px;
    height: 160px;
    background-color: var(--color-secondary);
    background: linear-gradient(205deg, var(--color-secondary) 15.69%, var(--color-accent) 100%);
    border: 1px solid var(--color-light);

    border-radius: 10px 0 10px 10px;
    padding: 26px 19px 24px 20px;
    top: 27%;
    right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-window__text p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 140%;
    color: var(--color-white);
}
.hero-window__text p span {
    color: var(--color-white);
    font-weight: 700;
}
.hero-window__icon {
    color: var(--color-primary);
    flex-shrink: 0;
}
.hero-window__icon circle {
    fill: var(--color-white) !important;
}
.hero-window__icon path {
    fill: currentColor !important;
}

.hero-label {
    padding: 20px 22px;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 5px;
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 10px;
}

.hero-label p {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
    opacity: 1;
}
.hero-label__icon {
    color: var(--color-white) !important;
}
.hero-label__icon [fill]:not([fill="none"]) {
    fill: currentColor !important;
}
.hero-label__icon [stroke]:not([stroke="none"]) {
    stroke: currentColor !important;
}

.hero-title {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding-bottom: 60px;
}

.hero-title__subtitle {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 135%;
    color: var(--color-white);
    max-height: 72px;
    max-width: 530px;
}

.hero-info__item {
    color: var(--color-white);
}

.hero-info__title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 28px;
    padding-bottom: 10px;
}

.hero-info__subtitle {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 14px;
}

.hero-info {
    display: flex;
    gap: 36px;
}

.hero-info__line {
    width: 1px;
    background-color: var(--color-white);
}

.hero-button {
    display: flex;
    gap: 26px;
    padding-top: 54px;
}

.circle:first-child {
    position: absolute;
    width: 1660px;
    height: 1660px;
    opacity: 0.25;
    top: -34%;
    left: 67%;
    border: 140px solid var(--color-secondary);
    border-radius: 50%;
    background-color: transparent;
    z-index: 3;
}
.circle:last-child {
    position: absolute;
    width: 1234px;
    height: 1234px;
    opacity: 0.5;
    top: -12%;
    left: 80%;
    border: 110px solid var(--color-secondary);
    border-radius: 50%;
    background-color: transparent;
    z-index: 3;
}
.hero-window__text {
    white-space: nowrap;
}

/* hero block end */

/* icons block start */

.icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    overflow-x: hidden;
    position: relative;
    z-index: 4;
}

.wrapper_icon {
    position: relative;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.wrapper_icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    width: 2px;
    height: 100%;
    background: var(--color-dark);
    opacity: 0.08;
    pointer-events: none;
}
.wrapper_icon:last-child::before {
    content: "";
    position: absolute;
    top: -2px;
    right: 1px;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    opacity: 0.08;
    pointer-events: none;
}
.wrapper_icon:nth-last-child(2)::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    width: 100%;
    height: 2px;
    background: var(--color-dark);
    opacity: 0.08;
    pointer-events: none;
}
.icon-svg svg,
.icon-svg img {
    height: 50px;
    width: 50px;
    display: block;
    object-fit: contain;
}
.wrapper_icon:last-child {
    border-right: none;
}

.icon {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-text {
    max-width: 250px;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 150%;
    color: var(--color-dark);
}

/* icons block end */

/* project block start */

.project {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.project__inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 77px;
    overflow: visible;
    padding-right: 0;
}
.project-image {
    width: 50vw;
    flex: 0 0 50vw;
    max-width: 50vw;
    flex-shrink: 0;
    min-height: 100%;
    align-self: stretch;
    display: flex;
    overflow: hidden;
    margin-left: calc(-1 * max(0px, (100vw - var(--container-w)) / 2) - 40px);
}

.project-image img {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.project-info {
    padding: 30px 0;
    max-width: 45vw;
}

.project-label {
    padding: 24px 33px;
    margin-left: 5px;
    margin-bottom: 30px;
    max-width: max-content;
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-secondary);
    white-space: nowrap;
}

.project-dash {
    width: 28px;
    height: 1px;
    background-color: var(--color-secondary);
}

.project-title {
    max-width: 640px;
    padding-bottom: 39px;
}

.project-text {
    max-width: 568px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.project-text p {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 140%;
    color: #484848;
    opacity: 0.6;
}

.project-button {
    margin-bottom: 32px;
}

.project-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    gap: 18px;
}

.project-icon {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    border: 1px dashed var(--color-secondary);
    border-radius: var(--border-radius);
}

.project-svg {
    max-height: 27px;
}
.project-svg svg,
.project-svg img {
    display: block;
    width: auto;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.project-number {
    font-weight: 700;
    font-size: 2.125rem;
    line-height: 30px;
    text-align: center;
    color: var(--color-dark);
}

.project-icon__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: #555555;
}

/* project block end */

/* advantages block start */
.advantages__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    overflow: visible;
    padding-right: 0;
}

.advantages-title {
    margin-bottom: 70px;
}

.advantages-image {
    flex-shrink: 0;
    width: 41vw;
    max-width: 780px;
    align-self: stretch;
    overflow: hidden;
    margin-right: calc(-1 * max(0px, (100vw - var(--container-w)) / 2));
}
.advantages-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.advantages-info {
    padding: 50px 0;
}

.advantages-card__title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.advantages-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 21px;
}

.advantages-card {
    padding: 30px 30px 40px 30px;
    background-color: white;
    max-height: 229px;
    border-radius: var(--border-radius);
}

.advantages-card__text p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 140%;
    color: var(--color-dark);
    opacity: 0.6;
}

.advantages-icon {
    margin-bottom: 23px;
}
.advantages-icon svg,
.advantages-icon img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* advantages block end */

/* photo block start */

.photogallery {
    padding-top: 8.125rem;
    padding-bottom: 7.8125rem;
}

.photogallery-title {
    margin-bottom: 50px;
}

.photogallery-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.photogallery-card {
    flex-basis: 42%;
    max-width: 580px;
    position: relative;
    display: block;
    overflow: hidden;
    /* Обрезаем содержимое, выходящее за пределы карточки */
    border-radius: var(--border-radius);
    color: inherit;
    text-decoration: none;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

/* Эффект тени при наведении на карточку */
.photogallery-card:hover {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.photogallery-card:first-child,
.photogallery-card:nth-child(4) {
    max-width: 780px;
    flex-basis: 56%;
}

.photogallery-card:nth-child(5),
.photogallery-card:nth-child(6),
.photogallery-card:nth-child(7) {
    max-width: 446px;
    flex-basis: 32%;
}

.photogallery-card:nth-child(5) img,
.photogallery-card:nth-child(6) img,
.photogallery-card:nth-child(7) img {
    height: 371px;
}

.photogallery-card img {
    border-radius: var(--border-radius);
    height: 500px;
    width: 100%;
    object-fit: cover;
    transition:
        transform 0.4s ease-in-out,
        filter 0.3s ease;
}

/* Эффект увеличения и легкого затемнения изображения при наведении на карточку */
.photogallery-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Градиент — плавное появление при наведении */
.photogallery-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000d7 129.07%);
    border-radius: 0 0 10px 10px;
    transition: opacity 0.3s ease;
}

/* При наведении на карточку градиент становится чуть насыщеннее */
.photogallery-card:hover .photogallery-gradient {
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.041) 0%, #000000 129.07%);
}

.photogallery-name {
    font-weight: 500;
    font-size: 1rem;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white);
    position: absolute;
    bottom: 40px;
    left: 35px;
    z-index: 2;
    transition:
        transform 0.3s ease,
        letter-spacing 0.2s ease;
    opacity: 1;
}

/* Текст поднимается и слегка расширяется при наведении */
.photogallery-card:hover .photogallery-name {
    transform: translateY(-5px);
    letter-spacing: 0.5px;
}

.photogallery-hidden {
    display: none;
}

.landing-gallery-modal-open {
    overflow: hidden;
}

.landing-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 12, 20, 0.88);
}

.landing-gallery-modal__figure {
    margin: 0;
    max-width: min(1120px, 90vw);
    max-height: 90vh;
}

.landing-gallery-modal__image {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    border-radius: 16px;
    object-fit: contain;
}

.landing-gallery-modal__caption {
    margin-top: 14px;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
}

.landing-gallery-modal__close,
.landing-gallery-modal__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.landing-gallery-modal__close:hover,
.landing-gallery-modal__nav:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.04);
}

.landing-gallery-modal__close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 36px;
    line-height: 38px;
}

.landing-gallery-modal__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 44px;
    line-height: 42px;
    transform: translateY(-50%);
}

.landing-gallery-modal__nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.landing-gallery-modal__nav--prev {
    left: 24px;
}

.landing-gallery-modal__nav--next {
    right: 24px;
}

/* Ссылка "смотреть все фото" */
.photogallery-link a {
    font-size: 1rem;
    line-height: 19px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: var(--color-dark);
    transition:
        color 0.2s ease,
        letter-spacing 0.2s ease,
        text-decoration-thickness 0.2s ease;
}

/* Эффект при наведении на ссылку */
.photogallery-link a:hover {
    color: #000000;
    letter-spacing: 0.8px;
    text-decoration-thickness: 2px;
}

.photogallery-link {
    text-align: center;
    margin-top: 60px;
}

/* photo block end */

/* map block start */

.map {
    padding: 106px 0;
}

.map-flex {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(520px, 760px);
    gap: 70px;
    align-items: start;
}

.map-map {
    width: 100%;
    max-width: 760px;
}

.map-title {
    margin-bottom: 30px;
}

.map-text {
    max-width: 410px;
    margin-bottom: 40px;
}

.map-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.map-tab__icon svg,
.map-tab__icon img {
    display: block;
    object-fit: contain;
    width: auto !important;
    height: auto !important;
    max-width: 34px !important;
    max-height: 34px !important;
    flex: 0 0 auto;
}

.map-tab__icon {
    display: flex;
    padding: 10px;
    width: 100%;
    max-width: 34px;
    height: 34px;
    background-color: var(--color-secondary-05);
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.map-tab__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-tab__items {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.map-tab__item {
    padding: 17px 21px;
    display: flex;
    gap: 16px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
}

.map-tab__label p {
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
    color: var(--color-white);
    opacity: 1;
}

.map-tab__label {
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    white-space: nowrap;
    border-radius: 12px;
    max-height: 24px;
    align-self: center;
}

.map-tab__title p {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 20px;
    color: var(--color-dark);
    opacity: 1;
}

.map-tab__text p {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--color-dark);
}

.map-tab__item_info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
}

.map-cards {
    display: flex;
    gap: 8px;
    grid-column: 1 / -1;
    width: 100%;
}

.map-card {
    background-color: var(--color-white);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
    max-width: 270px;
    height: 180px;
    border-radius: 18px;
}

.map .container {
    display: flex;
    flex-direction: column;
    gap: 78px;
}

.map-card__title p {
    font-weight: 700;
    font-size: 2rem;
    line-height: 32px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-accent);
    opacity: 1;
}

.map-card__title {
    margin-bottom: 4px;
}

.map-card__text p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: var(--color-dark);
    opacity: 1;
}

.map-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.map-card__icon svg,
.map-card__icon img {
    width: 31px;
    height: 31px;
    display: block;
    object-fit: contain;
}

.map iframe {
    width: 100%;
    height: 700px;
}

/* map block end */

/* openform block start */
.openform {
    padding-top: 7.25rem;
    padding-bottom: 10rem;
    position: relative;
    overflow: hidden;
}

.openform-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 1;
    width: min(56vw, 920px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateX(-50%);
}

.openform-image__media {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
}

.openform-info {
    position: relative;
    z-index: 2;
}

.openform .container {
    display: flex;
    justify-content: space-between;
}

.openform-title {
    margin-bottom: 40px;
}

.openform-text p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 17px;
    color: var(--color-dark);
    opacity: 1;
}

.openform-text {
    margin-bottom: 37px;
}

.point-icon svg {
    fill: var(--color-accent);
}

.openform-point {
    font-size: 1rem;
    line-height: 35px;
    color: var(--color-dark);
}

span.point-icon {
    margin-right: 13px;
}

ul.openform-points {
    padding: 26px 39px 33px 29px;
    border: 1px solid var(--color-secondary);
    border-radius: 10px 10px 0 10px;
    max-width: 380px;
    background-color: #fff;
    box-shadow: 0px 30px 20px 0px #151b501a;
}

.openform-bg {
    position: absolute;
    background: transparent;
    height: 1234px;
}

.openform-bg .elipse:first-child {
    position: absolute;
    width: 1234px;
    height: 1234px;
    border: 110px solid var(--color-secondary);
    opacity: 50%;
    border-radius: 50%;
    top: -17%;
    left: 50%;
    transform: translate(-28%, -40%);
    rotate: 28deg;
}
.openform-bg .elipse:last-child {
    position: absolute;
    width: 1600px;
    height: 1600px;
    border-radius: 50%;
    border: 140px solid var(--color-secondary);
    opacity: 20%;
    top: -27%;
    left: 49%;
    transform: translate(-34%, -16%);
    rotate: 44deg;
}

/* openform block end */

/* facts block start */
.facts {
    padding-top: 6.25rem;
    padding-bottom: 7.8125rem;
}

.facts-title {
    margin-bottom: 65px;
}

.facts-items {
    display: flex;
    gap: 8px 19px;
    flex-wrap: wrap;
}

.facts-item {
    padding: 21px 20px 23px 27px;
    background-color: var(--color-white);
    flex-basis: calc(50% - 10px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: var(--border-radius);
}

.facts-item p:first-child {
    flex-basis: 27%;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 20px;
    color: var(--color-dark);
    opacity: 0.5;
}

.facts-item .strong {
    font-weight: 700;
    font-size: 1rem;
    line-height: 21px;
    color: var(--color-dark);
    opacity: 1;
}

/* facts block end */

/* apartments block start */
.apartments {
    padding-top: 7.5rem;
    padding-bottom: 90px;
}

.apartaments-title {
    margin-bottom: 50px;
}

/* apartments block end */

/* repair block start */
.repair {
    padding-top: 5.5rem;
    padding-bottom: 7.8125rem;
}

.repair-title {
    margin-bottom: 30px;
}
.repair-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 129.07%);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    transition: all 0.8s ease;
}

.repair-subtitle {
    margin-bottom: 50px;
}

.repair-subtitle p {
    font-weight: 400;
    line-height: 18px;
    color: var(--color-dark);
    opacity: 1;
}

.repair-photos {
    display: flex;
    gap: 18px;
}

.repair-photo {
    position: relative;
    flex-basis: 33.3%;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: all 0.05s ease;
}
.repair-photo__image img {
    transition: all 0.5s ease;
}
.repair-photo:hover .repair-photo__image img {
    scale: 1.06;
}
.repair-photo:hover .repair-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 110.07%);
}

.repair-photo__title p {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 21px;
    color: var(--color-white);
    opacity: 1;
    margin-bottom: 10px;
}

.repair-photo__subtitle p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 18px;
    color: var(--color-white);
    opacity: 1;
}

.repair-photo__text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    transition: all 0.5s ease;
}

/* repair block end */

/* photo block start */
.photo {
    padding-top: 6.875rem;
    padding-bottom: 7.5rem;
}

.photo-title {
    margin-bottom: 40px;
}

.photo-tabs .tabs {
    gap: 14px;
}

.photo-tabs .tab-item {
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 16px;
}

.photo-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.photo-item {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.photo-item img:hover {
    scale: 1.06;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 110.07%);
}
/* photo block end */

/* payment block start */

.payment {
    padding-top: 90px;
    padding-bottom: 115px;
    position: relative;
    overflow: hidden;
}

.payment-title {
    margin-bottom: 50px;
}

.payment-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 5;
    justify-content: space-between;
}

.payment-calculator {
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius);
    box-shadow: 0px 20px 30px 0px #151b501a;
    padding: 47px 52px 64px 52px;
    width: 100%;
    max-width: 635px;
}

.payment-calculator__label {
    margin-bottom: 15px;
}

.payment-calculator__label p {
    font-weight: 700;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    opacity: 0.5;
}

.payment-calculator .button-3d {
    margin-top: 15px;
}

.payment-result {
    background-color: var(--color-primary);
    border: 1px solid var(--color-secondary);
    padding: 42px 40px 80px 40px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 690px;
    height: min-content;
    overflow: hidden;
    position: relative;
    height: 577px;
}

.payment-result__supertitle p {
    font-weight: 400;
    line-height: 15px;
    color: var(--color-white);
    opacity: 0.6;
    margin-bottom: 14px;
}

.payment-sum p {
    font-weight: 700;
    font-size: 52px;
    line-height: 40px;
    color: var(--color-white);
    opacity: 1;
}

.payment-result__field_label p {
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    opacity: 1;
}

.payment-result__field_value p {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 25px;
    text-align: right;
    color: var(--color-white);
    opacity: 1;
}

.payment-result__field {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    height: 63px;
    align-items: center;
    border-bottom: 1px solid var(--color-secondary-05);
}

.payment-result__total {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 53px;
}

.payment-result__total_label p {
    font-weight: 400;
    font-size: 0.8125rem;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    opacity: 1;
}

.payment-result__total_value p {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 25px;
    text-align: right;
    color: var(--color-white);
    opacity: 1;
}

.payment-elipses {
    position: absolute;
    top: 0;
}

.payment-elipses .elipse:first-child {
    position: absolute;
    width: 1167px;
    height: 1167px;
    border: 110px solid var(--color-secondary);
    opacity: 50%;
    top: 0;
    border-radius: 50%;
    transform: translate(77%, -55%);
}

.payment-elipses .elipse:last-child {
    position: absolute;
    width: 1533px;
    height: 1533px;
    border-radius: 50%;
    border: 140px solid var(--color-secondary);
    opacity: 20%;
    top: 0;
    transform: translate(44%, -51%);
}

.payment-result__content {
    position: relative;
    z-index: 10;
}

.payment-result__elipses .elipse:first-child {
    position: absolute;
    width: 1274px;
    height: 1274px;
    border: 140px solid var(--color-secondary);
    opacity: 10%;
    top: -60px;
    rotate: -33deg;
    border-radius: 50%;
    transform: translate(6%, 7%);
    z-index: 1;
}

.payment-result__elipses .elipse:last-child {
    position: absolute;
    width: 970px;
    height: 970px;
    border: 110px solid var(--color-secondary);
    opacity: 10%;
    top: -68px;
    border-radius: 50%;
    transform: translate(30%, 23%);
    z-index: 1;
}

.payment-result__elipses {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 450px;
    overflow: hidden;
}

/* payment block end */

/* reviews block start */
.reviews {
    padding-top: 7.5rem;
    padding-bottom: 8.125rem;
    box-sizing: border-box;
    --reviews-bg-filter: #ecf0f4;
    --reviews-accent: #7938e6;
    --reviews-border: #e5e5e5;
    --reviews-star: #f8ce26;
    --reviews-text: var(--color-dark);
    --reviews-text-muted: #64748b;
    --reviews__nav-btn-s: 42px;
    --reviews__nav-btn-m: 14px;
}

.reviews *,
.reviews *::before,
.reviews *::after {
    box-sizing: border-box;
}

.reviews-title {
    margin-bottom: 34px;
}

/* Элемент: reviews__header */
.reviews__header {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(
        var(--container-w) - 2 * var(--container-p) - 2 *
            (0.75rem + var(--reviews__nav-btn-s) + 2 * var(--reviews__nav-btn-m))
    );
}

.reviews__header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Элемент: reviews__filters */
.reviews__filters {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.25rem;
    background: var(--reviews-bg-filter);
    border-radius: 999px;
}

/* Элемент: reviews__filter-item */
.reviews__filter-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    background: transparent;
    color: var(--reviews-text);
    font: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    height: 40px;
}

.reviews__filter-item:hover {
    filter: brightness(0.98);
}

.reviews__filter-item--active {
    background: var(--color-white);
}

/* Элемент: reviews__source */
.reviews__source {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    background: transparent;
    border-radius: 999px;
    font-size: 0.8125rem;
    color: var(--reviews-text-muted);
}

.reviews__source-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.reviews__source-icon--yandex {
    background: #fc3f1d;
    font-family: inherit;
}

.reviews__source-icon--vk {
    background: #0077ff;
    font-size: 0.55rem;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    font-weight: 600;
}

.reviews__source-icon--google {
    background: linear-gradient(135deg, #4285f4 0%, #ea4335 40%, #fbbc04 70%, #34a853 100%);
    font-size: 0.75rem;
    font-weight: 700;
}

.reviews__source-rating {
    font-weight: 600;
    color: var(--reviews-text);
}

/* Элемент: reviews__summary */
.reviews__summary {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--reviews-text-muted);
}

/* Элемент: reviews__cta-button */
.reviews__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.35rem;
    background: var(--reviews-accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition:
        background 0.15s ease,
        transform 0.1s ease;
    white-space: nowrap;
}

.reviews__cta-button:hover {
    background: #7638d4;
}

.reviews__cta-button:active {
    transform: scale(0.98);
}

/* Элемент: reviews__carousel */
.reviews__carousel {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Элемент: reviews__card-list */
.reviews__card-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
}

.review-card--hidden {
    display: none !important;
}

/* Элемент: reviews__nav-btn */
.reviews__nav-btn {
    margin: 0 var(--reviews__nav-btn-m) 0 var(--reviews__nav-btn-m);
    flex-shrink: 0;
    align-self: center;
    width: var(--reviews__nav-btn-s);
    height: var(--reviews__nav-btn-s);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--reviews-border);
    border-radius: 50%;
    background: #fff;
    color: var(--reviews-text-muted);
    cursor: pointer;
    transition:
        border-color 0.15s,
        color 0.15s,
        background 0.15s;
}

.reviews__nav-btn:hover {
    border-color: #cbd5e1;
    color: var(--reviews-text);
    background: #fafafa;
}

.reviews__nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews__nav-btn:disabled:hover {
    border-color: var(--reviews-border);
    color: var(--reviews-text-muted);
    background: #fff;
}

.reviews__nav-icon {
    display: block;
}

/* Элемент: reviews__pagination */
.reviews__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Элемент: reviews__dot */
.reviews__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition:
        background 0.15s,
        transform 0.15s;
}

.reviews__dot:hover {
    background: #9ca3af;
}

.reviews__dot--active {
    background: var(--reviews-accent);
    transform: scale(1.15);
}

/* ——— Блок: review-card ——— */
.review-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--reviews-border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    min-height: 100%;
    height: 400px;
}

.review-card--ai {
    border-color: rgb(138 74 243 / 0.25);
}

/* Элемент: review-card__header */
.review-card__header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 0.65rem;
    align-items: start;
    margin-bottom: 0.85rem;
}

.review-card__header .review-card__rating {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 0.35rem;
}

.review-card:not(.review-card--ai) .review-card__header {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
}

.review-card:not(.review-card--ai) .review-card__rating {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
}

/* Элемент: review-card__avatar */
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    grid-row: 1 / span 2;
}

.review-card:not(.review-card--ai) .review-card__avatar {
    grid-row: 1;
}

.review-card__avatar--ai {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #a855f7 0%, var(--reviews-accent) 100%);
    color: #fff;
    grid-row: 1 / span 2;
}

.review-card--ai .review-card__header {
    grid-template-columns: auto 1fr;
}

.review-card--ai .review-card__avatar--ai {
    grid-row: 1;
}

/* Элемент: review-card__author-info */
.review-card__author-info {
    min-width: 0;
}

.review-card__name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.25;
}

.review-card__title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.25;
}
.review-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.review-card__date {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: var(--reviews-text-muted);
}

/* Элемент: review-card__rating */
.review-card__rating {
    display: flex;
    gap: 2px;
    font-size: 0.95rem;
    line-height: 1;
}
span.review-card__star {
    font-size: 35px;
}
span.review-card__star svg {
    stroke: var(--reviews-star);
    stroke-width: 2px;
}
.review-card__star--full svg {
    fill: var(--reviews-star);
}

.review-card__star--empty {
    fill: transparent;
}

/* Элемент: review-card__body */
.review-card__body {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--reviews-text);
}

.review-card__text {
    margin: 0;
}

.review-card__more {
    color: var(--reviews-accent);
    font-weight: 500;
    margin-left: 0.25rem;
    text-decoration: none;
}

.review-card__more:hover {
    text-decoration: underline;
}

/* Элемент: review-card__list (AI) */
.review-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-card__list-item {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.45;
}

.review-card__list-item:last-child {
    margin-bottom: 0;
}

.review-card__list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

/* Элемент: review-card__thumbs */
.review-card__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.review-card__thumb {
    padding: 0;
    border: 1px solid var(--reviews-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #f9fafb;
    line-height: 0;
    transition: border-color 0.15s;
}

.review-card__thumb:hover {
    border-color: #cbd5e1;
}

.review-card__thumb img {
    display: block;
    vertical-align: middle;
}

/* Элемент: review-card__footer */
.review-card__footer {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    font-size: 0.75rem;
    text-decoration: underline;
}

/* reviews block end */

/* about block start */

.about {
    position: relative;
}
.about-docs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-doc {
    background-color: var(--color-white);
    padding: 13px 20px 14px 17px;
    display: flex;
    gap: 18px;
    align-items: center;
    width: 100%;
    max-width: 548px;
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius);
}
.about-title {
    margin-bottom: 40px;
}
.about-text {
    margin-bottom: 45px;
}
.about-text p {
    line-height: 125%;
    color: var(--color-dark);
    opacity: 0.8;
}
.about-banks {
    margin-bottom: 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.about-bank {
    padding: 10px 15px;
    background-color: var(--color-white);
    border-radius: 50px;
    border: 1px solid var(--color-secondary);
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: var(--color-accent);
}
.about-doc__name {
    width: 100%;
}
.about-doc__name p {
    line-height: 23px;
    color: var(--color-dark);
    opacity: 1;
}
.about .container {
    display: flex;
}
.about-content {
    flex-basis: 50%;
    max-width: 560px;
    padding-top: 6.875rem;
    padding-bottom: 75px;
}
.about-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 53.907vw;
    max-width: 1035px;
}
.about-bg__shadow {
    height: 360px;
    width: 100%;
}
.about-bg__shadow {
    height: 360px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 129.07%);
}
.about-bg__title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 30px;
    color: var(--color-white);
    margin-bottom: 20px;
}
.about-bg__subtitle {
    line-height: 21px;
    color: var(--color-white);
}
.about-bg__text {
    position: absolute;
    bottom: 67px;
    z-index: 100;
    left: 56px;
}
/* about block end */

/* excursion block start */
.excursion {
    padding: 8.125rem 0;
}
.excursion .container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.excursion-content {
    flex-basis: 45vw;
    display: flex;
    flex-direction: column;
}
.excursion-title {
    margin-bottom: 14px;
}
.excursion-text p {
    line-height: 150%;
    opacity: 0.6;
}
.excursion-text {
    max-width: 650px;
    margin-bottom: 45px;
}
.excursion-image {
    flex: 1 1 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.excursion-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* excursion block end */

/* offers block start */
.offers {
    padding-top: 7.5rem;
    padding-bottom: 8.125rem;
}
.offers-title {
    margin-bottom: 30px;
}

.offers-text p {
    line-height: 26px;
    opacity: 1;
}
.offers-text {
    margin-bottom: 60px;
}
.offers-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}
.offers-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    box-shadow: 0px 20px 30px 0px #151b501a;
}
.offers-card__image {
    border-radius: var(--border-radius);
    height: 250px;
    overflow: hidden;
    margin-bottom: 26px;
}
.offers-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.offers-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding-left: 38px;
    padding-right: 38px;
    padding-bottom: 40px;
}
.offers-card__button {
    max-width: 340px;
}
.offers-card__label span {
    font-weight: 400;
    font-size: 12px;
    line-height: 26px;
    text-align: center;
    color: var(--color-dark);
    opacity: 0.5;
    white-space: nowrap;
}
.offers-card__label {
    padding: 5px 15px;
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    max-width: max-content;
    margin-bottom: 20px;
}
.offers-card__title p {
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 24px;
    opacity: 1;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Подберите: 3 или 4 строки, чтобы влезло в 80px */
    -webkit-box-orient: vertical;
}
.offers-card__title {
    margin-bottom: 12px;
    height: 48px;
}
.offers-card__text {
    margin-bottom: 30px;
    max-width: 360px;
    height: 65px;
}
.offers-card__text p {
    line-height: 1.4; /* 140% */
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Подберите: 3 или 4 строки, чтобы влезло в 80px */
    -webkit-box-orient: vertical;
}
.offers-card__text {
    margin-bottom: 30px;
    max-width: 360px;
}
/* offers block end */
/* faq block start */

.faq {
    padding-top: 6.875rem;
    padding-bottom: 150px;
}
.faq-title {
    margin-bottom: 64px;
}
.faq__item {
    border-bottom: 1px dashed #4f4f4fb2;
}

.faq__button {
    width: 100%;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 30px;
    color: var(--color-dark);
}

.faq__icon {
    width: 65px;
    height: 65px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    flex: 0 0 65px;
    display: grid;
    place-items: center;
    transition:
        background-color 0.35s ease,
        transform 0.35s ease;
}

.faq__icon svg {
    width: 30px;
    height: 30px;
    fill: none !important;
    stroke: currentColor !important;
}

.faq__icon svg [fill]:not([fill="none"]) {
    fill: none !important;
}

.faq__icon svg [stroke]:not([stroke="none"]) {
    stroke: currentColor !important;
}

.faq__button:hover .faq__icon {
    background: var(--color-accent);
    opacity: 0.8;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item[open] .faq__answer {
    max-height: none;
}

.faq__answer p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--color-dark);
    font-size: 1.125rem;
    line-height: 1.45;
    max-width: 760px;
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
}
/* faq block end */

/* news block start */

.news {
    padding-top: 5.75rem;
    padding-bottom: 7.8125rem;
}
.news-title {
    margin-bottom: 3.125rem;
}
.news-slider {
    width: 100%;
    max-width: 100%;
}
.news-cards {
    display: flex;
    gap: 15px;
}
.news-cards--static {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-cards--slider {
    display: flex;
}
.news-card {
    flex: 0 0 calc((100% - 30px) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    background-color: var(--color-white);
    box-shadow: 0px 20px 30px 0px #151b501a;
}
.news-image {
    height: 250px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.news-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 27px 38px 38px 38px;
}
.news-card__title p {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 120%;
    opacity: 1;
    max-width: 310px;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Подберите: 3 или 4 строки, чтобы влезло в 80px */
    -webkit-box-orient: vertical;
}
.news-card__title {
    margin-bottom: 20px;
}
.news-card__text p {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 140%;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Подберите: 3 или 4 строки, чтобы влезло в 80px */
    -webkit-box-orient: vertical;
}
.news-card,
.news-image {
    border-radius: var(--border-radius);
}
.news-card__text {
    margin-bottom: 37px;
}
.news-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-card__date {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-dark);
    opacity: 0.5;
}
.news-card__link {
    font-weight: 700;
    font-size: 1rem;
    line-height: 20px;
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    transition: all 0.3s ease;
}
.news-card__link:hover {
    letter-spacing: 1px;
    margin-right: -10px;
}
/* news block end */

/* complexes block start */
.complexes {
    padding-top: 6.25rem;
    padding-bottom: 8.125rem;
}
.complexes-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.complexes-title {
    margin-bottom: 30px;
}

.complexes-text p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 25px;
    opacity: 1;
}
.complexes-text {
    margin-bottom: 40px;
}
.complexes-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}
.complexes-item:not(:last-child) {
    aspect-ratio: 360 / 440;
}
.complexes-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.8s ease;
}
.complexes-item a {
    display: block;
    width: 100%;
    height: 100%;
}
.complexes-item:last-child {
    background-color: var(--color-accent);
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.complexes-item:last-child a {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
}
.complexes-item:hover .complexes-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100.07%);
}
.complexes-item:hover img {
    scale: 1.06;
}
.complexes-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 129.07%);
    transition: all 0.8s ease;
}
.complexes-info {
    position: absolute;
    bottom: 40px;
    left: 32px;
    color: var(--color-white);
}
.complexes-info p {
    color: inherit;
    opacity: 1;
}
p.complexes-city {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 18px;
}
p.complexes-name {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 36px;
    margin-bottom: 0px;
}
p.complexes-price {
    font-weight: 700;
    font-size: 1rem;
    line-height: 25px;
}
.complexes-all__icon {
    background-color: var(--color-white);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.complexes-all__icon span {
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 25px;
    width: 25px;
    text-align: center;
    color: var(--color-dark);
    opacity: 0.7;
}
.complexes-all__title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 30px;
    text-align: center;
    color: var(--color-white);
}
.complexes-all__text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 20px;
    text-align: center;
    color: var(--color-white);
}
/* complexes block end */

/* footer block start */

.footer {
    position: relative;
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 30px;
    background-color: var(--color-primary);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 58px;
}

.footer__title {
    font-weight: 700;
    font-size: 21px;
    line-height: 35px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer__text,
.footer__link,
.footer__item {
    margin: 0;
    color: rgba(217, 220, 255, 0.72);
    font-size: 0.875rem;
    line-height: 1;
    text-decoration: none;
    opacity: 1;
}
.footer__text {
    max-width: 260px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 140%;
    color: var(--color-white);
    opacity: 0.6;
    margin-bottom: 18px;
}

.footer__text:hover {
    opacity: 0.8;
}
.not-public-offer:hover {
    opacity: 0.6;
}
.not-public-offer {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-white);
    opacity: 0.25;
    max-width: 210px;
}
.footer__link:hover {
    color: var(--color-white);
}

.footer__col-title {
    margin: 0 0 14px;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 22px;
    opacity: 0.6;
}

.footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: max-content;
}
.footer__contacts {
    max-width: max-content;
}
nav.footer__nav {
    max-width: max-content;
}
.footer__list li {
    margin-bottom: 15px;
}

.footer__list li:last-child {
    margin-bottom: 0;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(217, 220, 255, 0.14);
    position: relative;
    z-index: 100;
}

.footer__copyright,
.footer__policy {
    margin: 0;
    color: rgba(217, 220, 255, 0.62);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer__policy {
    text-decoration: none;
}

.footer__policy:hover {
    color: var(--color-white);
}
.footer__elipse .elipse:first-child {
    box-sizing: border-box;
    position: absolute;
    opacity: 0.1;
    border: 110px solid var(--color-secondary);
    transform: translate(68%, 14%);
    width: 929px;
    height: 870px;
    border-radius: 50%;
    top: 0;
    right: 0;
}
.footer__elipse .elipse:last-child {
    box-sizing: border-box;
    position: absolute;
    opacity: 0.1;
    border: 140px solid var(--color-secondary);
    transform: translate(60%, -4%);
    width: 1220px;
    height: 1143px;
    border-radius: 50%;
    top: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer__about {
        grid-column: 1 / -1;
    }
    .hero-window {
        right: 15%;
    }
    .hero-title__subtitle {
        max-width: 460px;
    }
}

@media (max-width: 768px) {
    .hero-window {
        padding: 6px 7px 10px 7px;
        height: 90px;
        width: 140px;
        left: 68vw;
        border: none;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 36px;
    }

    .footer__title {
        font-size: 1.5rem;
    }

    .footer__text,
    .footer__link,
    .footer__item {
        font-size: 1rem;
        line-height: 1.6;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* footer block end */

@media (max-width: 1600px) {
    :root {
        --container-w: 1200px;
    }
    html {
        font-size: 15px;
    }
    .form {
        max-width: 500px;
        padding: 20px 30px;
        margin: 0 auto;
    }
    .project__inner {
        gap: 40px;
    }
    .button-3d {
        padding: 1.5rem 2rem;
        max-height: 65px;
    }
    .hero-title {
        gap: 40px;
        padding-bottom: 40px;
    }

    .hero__content {
        padding: 100px 0;
    }
    .hero-button {
        gap: 20px;
        padding-top: 50px;
    }
    .hero-label {
        margin-bottom: 30px;
    }
    .transparent-button {
        padding: 22px 20px;
    }
    .about-bg {
        width: 50vw;
    }
    .faq__button {
        padding: 15px 0;
    }
    .faq__icon {
        width: 45px;
        height: 45px;
        flex: 0 0 45px;
    }
    .photogallery-card img {
        height: 420px;
    }
    /* .openform-bg .elipse:first-child {
        transform: translate(-8%, -50%);
    }
    .openform-bg .elipse:last-child {
        transform: translate(-17%, -39%);
    } */
    .openform-image {
        right: -60px;
        top: -118px;
    }
    .about-banks {
        margin-bottom: 50px;
    }
    .about-content {
        flex-basis: 45%;
    }
    .circle:first-child {
        top: -38%;
        left: 63%;
    }
}
@media (max-width: 1200px) {
    :root {
        --container-w: 1000px;
    }
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 4rem;
    }

    .nav__list,
    .contact-block {
        gap: 15px;
    }
    .button {
        padding: 16px 20px;
    }
    .advantages-image {
        width: 45vw;
    }
    .hero-title {
        gap: 20px;
        padding-bottom: 20px;
    }
    .hero__content {
        padding: 80px 0;
    }
    .hero-button {
        gap: 20px;
        padding-top: 50px;
    }
    .hero-label {
        margin-bottom: 20px;
    }
    .about-content {
        max-width: 450px;
    }
    .faq__button {
        padding: 10px 0;
    }
    .complexes-info {
        bottom: 25px;
        left: 25px;
    }
    p.complexes-name {
        line-height: 24px;
        margin-bottom: 5px;
    }
    .wrapper_icon {
        height: 135px;
    }
    .form-field__input input,
    .form-field__input select {
        padding: 20px;
    }
    .form-field__input select {
        min-height: 62px;
        padding-right: 54px;
        background-position:
            calc(100% - 26px) calc(50% - 3px),
            calc(100% - 18px) calc(50% - 3px);
    }
    .reviews__card-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .payment-result,
    .payment-calculator {
        padding: 30px;
    }
    .advantages-card {
        padding: 20px 20px 30px 20px;
        max-height: none;
    }
    .offers-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .advantages-cards {
        gap: 15px;
    }
    .photogallery-card:first-child,
    .photogallery-card:nth-child(4) {
        flex-basis: 55%;
    }
    .photogallery-cards {
        gap: 16px;
    }
    .photogallery-card:nth-child(5),
    .photogallery-card:nth-child(6),
    .photogallery-card:nth-child(7) {
        flex-basis: calc((var(--container-w) - 2 * var(--container-p) - 2 * 16px) / 3);
    }
    .photogallery-card img {
        max-height: 350px;
    }

    .photogallery-card:nth-child(5) img,
    .photogallery-card:nth-child(6) img,
    .photogallery-card:nth-child(7) img {
        max-height: 290px;
    }
    .icon {
        gap: 15px;
    }
    .icon-svg svg {
        height: 40px;
        width: 40px;
    }
    .circle:first-child {
        top: -44%;
        left: 62%;
    }
}
@media (max-width: 1000px) {
    :root {
        --container-w: 900px;
    }
    .nav__list,
    .contact-block {
        gap: 10px;
    }
    .reviews__card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .photogallery-card img {
        max-height: 290px;
    }
    .photogallery-card:nth-child(5) img,
    .photogallery-card:nth-child(6) img,
    .photogallery-card:nth-child(7) img {
        max-height: 235px;
    }
    .icon-text {
        font-size: 1rem;
    }
    .wrapper_icon {
        height: 110px;
    }
    .map-flex {
        gap: 30px;
    }
    .card {
        padding: 30px;
    }
    .photo-items {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .complexes-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .contact-block,
    .header .nav {
        display: none;
    }
    .header .mobile {
        display: block;
    }
    .circle:first-child {
        display: none;
    }
    .circle:last-child {
        top: -35%;
        left: 75%;
    }
    .button-3d {
        /* white-space: pre-wrap; */
    }
}
@media (max-width: 900px) {
    .photo-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .icons {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .button-3d {
        white-space: wrap;
    }

    .hero__circle {
        display: none;
    }

    .photogallery-card:nth-child(5),
    .photogallery-card:nth-child(6),
    .photogallery-card:nth-child(7) {
        max-width: unset;
        flex-basis: 100%;
    }
    .hero__gradient {
        background: linear-gradient(77.09deg, #000000 -24.47%, rgba(0, 0, 0, 0) 125.93%);
    }
    .circle:last-child {
        width: 100vw;
        height: 100vw;
        top: -5%;
        left: 80%;
        opacity: 0.4;
    }
    .reviews {
        --reviews__nav-btn-s: 36px;
    }
    h2 {
        font-size: 24px;
    }
    .icon {
        gap: 5px;
        flex-direction: column;
    }
    .icon-svg svg {
        height: 30px;
        width: 30px;
    }
    .project-label {
        padding: 16px 14px;
        line-height: 12px;
    }
    .icon-text {
        text-align: center;
        line-height: 120%;
    }
    .project-text p {
        font-size: 1rem;
    }
    .project-icons {
        gap: 10px;
    }
    .project__inner {
        gap: 0;
    }
    .project-title {
        max-width: 300px;
        padding-bottom: 20px;
    }
    .project-text {
        gap: 20px;
    }
    .transparent-button {
        width: 100%;
        max-width: unset;
    }
    .project-image {
        width: calc(100vw + 40px);
        max-width: unset;
        margin-left: -20px;
    }
    .project-icon {
        padding: 15px;
        gap: 4px;
    }

    .mobile {
        display: block;
    }
    .header .container.flex {
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
        position: relative;
    }
    .logo {
        padding: 8px 10px;
        flex: 0 1 clamp(128px, 32vw, 180px);
        max-width: clamp(128px, 32vw, 180px);
    }
    .header {
        height: unset;
        padding: 11px 0 19px 0;
    }
    .logo img {
        max-height: 36px;
    }
    .contact-block__phone::before {
        display: none;
    }
    .mobile--phone {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        z-index: 1;
    }
    .mobile--burger {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
    }
    .mobile.btn {
        display: none;
    }
    .menu-burger {
        height: 22px;
        gap: 4px;
        width: 34px;
    }
    .menu-burger span {
        width: 34px;
        height: 3px;
        border-radius: 999px;
    }
    .menu-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        width: 24px;
    }
    .menu-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        width: 24px;
    }
    h1 {
        font-size: 2.5rem;
    }
    .hero-title__text {
        max-width: 205px;
    }
    .hero-label {
        padding: 10px 12px;
        max-width: min(100%, 320px);
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }
    .hero-label p {
        line-height: 16px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .project__inner {
        flex-direction: column-reverse;
        padding-right: 20px;
    }
    .project-info {
        max-width: 100%;
    }
    .project-label {
        margin-bottom: 12px;
    }
    .advantages__inner {
        flex-direction: column;
        padding-right: 20px;
        gap: 0;
    }
    .advantages-info {
        padding-bottom: 30px;
    }
    .advantages-image {
        width: calc(100vw + 40px);
        max-width: unset;
        margin-left: -20px;
    }
    .advantages-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .advantages-title {
        margin-bottom: 40px;
    }
    .advantages-icon {
        margin-bottom: 10px;
    }
    h3 {
        font-size: 18px;
    }
    .advantages-card__title {
        margin-bottom: 10px;
    }
    .photogallery {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .photogallery-cards {
        gap: 10px;
        flex-direction: column;
    }
    .photogallery-card {
        flex-basis: auto !important;
    }
    .photogallery-card img {
        max-height: 205px !important;
    }
    .photogallery-name {
        bottom: 20px;
        left: 20px;
        font-size: 16px;
    }
    .photogallery-title {
        margin-bottom: 30px;
    }
    .photogallery-link {
        margin-top: 30px;
    }
    .photogallery-link a {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }
    .map {
        padding: 35px 0 40px 0;
    }
    .map-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .map-flex {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .map-tab__icon {
        max-width: 44px;
        height: 44px;
    }
    .tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
        gap: 10px 20px;
    }
    .map-tab__title p {
        font-weight: 500;
        font-size: 14px;
        line-height: 23px;
    }
    .map-tab__text p {
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        opacity: 0.5;
    }
    .map-tab__item {
        padding: 20px 10px;
    }
    .map-tab__items {
        gap: 2px;
    }
    .map-map {
        width: 100vw;
        margin-left: -20px;
    }
    .map iframe {
        height: 270px;
    }
    .map .container {
        gap: 20px;
    }
    .map-card__icon {
        margin-bottom: 3px;
    }
    .map-card__icon svg {
        width: 20px;
        height: auto;
    }
    .map-card {
        height: unset;
    }
    .map-card__text p {
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        max-width: 110px;
    }
    .map-card__title p {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
    }
    .openform-image {
        width: 200vw;
        left: calc(-40vw);
        top: 56vw;
    }
    .openform .container {
        flex-direction: column;
    }
    .openform {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .openform-form {
        width: calc(100vw);
        margin-left: -20px;
    }
    .form {
        padding: 20px 25px;
    }
    .openform-info {
        margin-bottom: 200px;
    }
    .openform-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
    }
    ul.openform-points {
        padding: 13px 13px 18px 18px;
    }
    .openform-point {
        font-weight: 400;
        font-size: 12px;
        line-height: 30px;
    }
    .facts {
        padding-top: 33px;
        padding-bottom: 40px;
    }
    .facts-items {
        gap: 4px;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .facts-item {
        padding: 20px 20px 20px 17px;
        max-height: 60px;
    }
    .facts-title {
        margin-bottom: 20px;
        max-width: 280px;
    }
    .facts-item .strong {
        width: 40vw;
        font-weight: 700;
        font-size: 14px;
        line-height: 14px;
    }
    .facts-item p:first-child {
        flex-basis: 30%;
        font-size: 1rem;
    }
    .btn-tabs__tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
        gap: 6px;
    }
    .btn-tabs__tab {
        border-radius: var(--border-radius) !important;
        min-width: 100%;
    }
    .cards {
        display: flex;
        gap: 10px;
    }
    .apartments {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .card {
        padding: 20px;
        max-width: 280px;
    }
    .card-image {
        flex: 0 0 280px;
        min-height: 280px;
        max-height: 280px;
        margin-bottom: 14px;
    }
    .btn-tabs__content {
        width: max-content;
    }
    .repair {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .repair-photos {
        gap: 10px;
        flex-direction: column;
    }
    .repair-title {
        margin-bottom: 20px;
    }
    .repair-subtitle {
        margin-bottom: 30px;
    }
    .repair-photo__image {
        height: 400px;
    }
    .repair-photo__title p {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .repair-photo__subtitle p {
        line-height: 12px;
        font-size: 1rem;
    }
    .photo {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .photo-tabs .tabs {
        gap: 14px 19px;
    }
    .photo-title {
        margin-bottom: 30px;
    }

    .payment {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .payment-title {
        margin-bottom: 20px;
    }
    .payment-result,
    .payment-calculator {
        padding: 24px 20px;
    }
    .payment-content {
        gap: 10px;
        justify-content: space-between;
        flex-direction: column;
    }
    .payment .tabs {
        display: flex;
        gap: 4px;
    }
    .payment .tab-item {
        font-size: 10px;
        padding: 9px 4.5px;
    }
    .payment-calculator__label {
        margin-bottom: 10px;
    }
    .tab-content {
        margin-top: 15px;
    }
    .calc-row__label {
        font-size: 10px;
    }
    .calc-row__value {
        font-size: 12px;
    }
    .calc-row__footer {
        margin-top: -1px;
    }
    .mortgage-form {
        gap: 24px;
    }
    .hero-label p {
        font-size: 10px;
    }
    .button-3d p {
        font-size: 15px;
        letter-spacing: 1px;
        white-space: normal;
        text-align: center;
        word-break: normal;
    }

    .payment-sum p {
        font-size: 28px;
    }
    .payment-result__supertitle p {
        margin-bottom: 3px;
    }
    .payment-result__field {
        height: 38px;
    }
    .payment-result__field_value p {
        font-size: 16px;
    }
    .payment-result__total {
        margin-top: 22px;
    }
    .reviews {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .reviews__filters {
        flex-wrap: nowrap;
    }
    .reviews__filter-item {
        padding: 4px 10px;
        height: 30px;
    }
    .reviews__card-list {
        display: flex;
    }
    .reviews__nav-btn {
        margin: 0;
    }
    .review-card {
        height: 300px;
    }
    .about-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .about-title {
        margin-bottom: 20px;
    }
    .about-text {
        margin-bottom: 20px;
    }
    .about-bank {
        padding: 4px 8px;
    }
    .about .container {
        flex-direction: column;
    }
    .about-banks {
        margin-bottom: 20px;
        gap: 4px 0;
    }
    .about-bg {
        position: relative;
        background-image: unset;
        width: 100vw;
        margin-left: -20px;
    }
    .about-bg img {
        height: 370px;
        object-fit: cover;
    }
    .about-bg__text {
        bottom: 20px;
        left: 30px;
    }
    .about-bg__title {
        margin-bottom: 10px;
    }
    .excursion {
        padding: 30px 0;
    }
    .excursion .container {
        gap: 20px;
        flex-direction: column;
    }
    .excursion-image {
        display: none;
    }
    .mobile .excursion-image {
        display: block;
    }
    .mobile .excursion-image {
        display: block;
        width: 100vw;
        margin-left: -20px;
    }
    .excursion-text {
        margin-bottom: 10px;
    }
    .excursion-content {
        flex-basis: unset;
    }
    .excursion-form {
        width: calc(100vw);
        margin-left: -20px;
    }
    .form-title {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: 120%;
    }
    .form-subtitle {
        margin-bottom: 24px;
    }
    .offers {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .offers-title {
        margin-bottom: 20px;
    }
    .offers-text {
        margin-bottom: 30px;
    }
    .offers-cards {
        gap: 10px;
        grid-template-columns: 1fr;
    }
    .offers-card__content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
    }
    .faq {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .faq-title {
        margin-bottom: 30px;
    }
    .faq__button {
        font-size: 16px;
        line-height: 16px;
    }
    .faq__answer p {
        font-size: 1rem;
    }
    .news {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .news-title {
        margin-bottom: 30px;
    }
    .news-cards {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .news-cards--static {
        display: flex;
    }
    .news-cards--slider {
        display: flex;
    }
    .news-cards--slider .news-card,
    .news-cards--static .news-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .news-card__content {
        padding: 20px 17px 30px 17px;
    }
    .news-card__link {
        font-size: 16px;
    }
    .complexes {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .complexes-title {
        margin-bottom: 20px;
    }
    .complexes-text p {
        font-size: 16px;
    }
    .complexes-text {
        margin-bottom: 30px;
    }
    .complexes-items {
        display: flex;
        width: 100%;
        gap: 10px;
    }
    .complexes-item {
        min-width: 240px;
        height: 350px;
    }
    .complexes-info {
        left: 20px;
    }
    .footer__elipse .elipse:first-child {
        transform: translate(71%, 79%);
    }
    .footer__elipse .elipse:last-child {
        opacity: 0.03;
        transform: translate(63%, 46%);
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
    }
    .footer__about {
        flex-basis: calc(100vw - 40px);
    }
    .hero__content {
        padding: 40px 0;
    }
    .hero-window svg {
        width: 10px;
        height: 10px;
    }

    .hero-window__text p {
        font-size: 12px;
        line-height: 12px;
        white-space: nowrap;
    }
    .hero-window {
        padding: 6px 7px 10px 7px;
        height: 56px;
        width: 95px;
        left: 68vw;
        top: 20%;
        border: none;
    }
    .hero-title__subtitle {
        font-weight: 400;
        font-size: 12px;
        line-height: 130%;
    }
    .hero-info {
        gap: 18px;
    }
    .hero-info__title {
        font-size: 24px;
        white-space: nowrap;
    }
    .hero-button {
        gap: 20px;
        padding-top: 20px;
        flex-direction: column;
    }
    .payment .button-3d p {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

.landing-lead-notice {
    position: fixed;
    z-index: 100010;
    top: 24px;
    left: 50%;
    width: min(620px, calc(100% - 32px));
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(21, 27, 80, 0.18);
    transform: translateX(-50%);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.landing-lead-notice--success {
    background: #ecfff5;
    color: #09633b;
    border: 1px solid rgba(9, 99, 59, 0.18);
}

.landing-lead-notice--error {
    background: #fff3f0;
    color: #9a2b17;
    border: 1px solid rgba(154, 43, 23, 0.18);
}

@media (max-width: 425px) {
    .repair-photo__image {
        height: 300px;
    }
    .photo-items {
        gap: 10px;
        grid-template-columns: 1fr;
    }
    .photo-item img {
        object-position: center;
        object-fit: cover;
    }
}
@media (max-width: 370px) {
    .hero-info {
        gap: 16px;
    }
}
@media (max-width: 360px) {
    .hero-info {
        gap: 14px;
    }
}
@media (max-width: 350px) {
    .hero-info {
        gap: 12px;
    }
}
