/* ============================================================
   VARIABLES / RESET
   ============================================================ */

:root {
    --blue: #2678ff;
    --blue-dark: #145ed0;
    --blue-light: #edf4ff;

    --dark: #17212b;
    --dark-soft: #273440;

    --text: #27313a;
    --muted: #68737e;

    --white: #fff;
    --bg: #f6f8fa;
    --border: #e2e7eb;

    --container: 1220px;

    --radius: 24px;
    --radius-small: 14px;

    --shadow: 0 24px 65px rgba(28, 43, 58, .10);

    --transition: .22s ease;
}


* {
    box-sizing: border-box;
    outline: none;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--text);
    background: #fff;

    font-family: Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(
            calc(100% - 48px),
            var(--container)
    );

    margin-inline: auto;
}


.section {
    padding: 90px 0;
}


.section-label {
    display: block;

    margin-bottom: 14px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .11em;
    text-transform: uppercase;
}


.section-label--light {
    color: #b8d3ff;
}


h1,
h2,
h3,
p {
    margin-top: 0;
}


h2 {
    margin-bottom: 0;

    color: var(--dark);

    font-size: clamp(34px, 4.2vw, 56px);

    font-weight: 770;
    line-height: 1.04;

    letter-spacing: -.045em;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 22px;

    gap: 22px;

    border: 0;
    border-radius: 13px;

    font-size: 14px;
    font-weight: 750;

    transition: transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}


.button:hover {
    transform: translateY(-2px);
}


.button--large {
    min-height: 62px;

    padding-inline: 27px;

    font-size: 15px;
}


.button--small {
    min-height: 43px;

    padding-inline: 17px;
}


.button--primary {
    color: #fff;

    background: var(--blue);

    box-shadow: 0 14px 32px rgba(38, 120, 255, .24);
}


.button--primary:hover {
    background: var(--blue-dark);
}


.button--glass {
    color: #fff;
    display: none;
    border: 1px solid rgba(255, 255, 255, .28);

    background: rgba(0, 0, 0, .7);

    backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .button--glass {
        display: flex;
    }
}


.button--outline {
    color: #fff;
    display: none;

    border: 1px solid rgba(255, 255, 255, .32);

    background: transparent;
}


.button--white {
    color: var(--dark);

    background: #fff;
}


.button--dark {
    color: #fff;

    background: var(--dark);
}


.button--wide {
    width: 100%;
}


/* ============================================================
   HEADER
   ============================================================ */

.header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;

    width: 100%;

    color: #10283d;

    border-bottom: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
}


.header__inner {
    display: flex;
    align-items: center;

    min-height: 82px;

    gap: 32px;
}


.logo {
    flex: 0 0 auto;
}


.logo img {
    width: 174px;
    max-height: 52px;

    object-fit: contain;

    filter: brightness(0) invert(1);
}


.header__nav {
    display: flex;

    margin-left: auto;

    gap: 28px;
}


.header__nav a {
    font-size: 13px;
    font-weight: 650;

    opacity: .82;

    transition: opacity var(--transition);
}


.header__nav a:hover {
    opacity: 1;
}


.header__phone {
    display: flex;
    flex-direction: column;

    text-align: right;
}


.header__phone strong {
    font-size: 17px;
}


.header__phone span {
    font-size: 10px;

    opacity: .6;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 740px;

    overflow: hidden;

    color: #13283d;
}

.hero::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 0;
    bottom: 0;
    left: 0;

    width: min(59vw, 920px);

    background-image: url("/img/gzhel-pattern2.png");
    background-position: left 43%;
    background-size: 230px auto;

    opacity: .2;

    mask-image: linear-gradient(
            90deg,
            #000 0%,
            #000 48%,
            rgba(0, 0, 0, .58) 72%,
            transparent 100%
    );

    pointer-events: none;
}

.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 154px;
    color: #fff;
    line-height: 1;
}

.brand-logo__name {
    position: relative;
    font-size: 25px;
    font-weight: 900;
    line-height: .92;
    letter-spacing: .06em;
}

.brand-logo__name::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;

    height: 4px;
    border-radius: 100px;

    background: linear-gradient(
            90deg,
            #2b78ef,
            #77c4f4,
            #214bd0,
            #69bdf1,
            #2e6de5
    );
}

.brand-logo__caption {
    margin-top: 13px;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.hero__background {
    position: absolute;
    inset: 0;

    background: url("/img/hero.png") 27% center / cover no-repeat;
}


.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
            90deg,
            rgba(246, 250, 255, .97) 0%,
            rgba(240, 247, 255, .94) 32%,
            rgba(235, 245, 255, .78) 52%,
            rgba(235, 245, 255, .28) 72%,
            rgba(255, 255, 255, .04) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 2;

    padding-top: 80px;
}


.hero__content {
    max-width: 740px;
}


.hero h1 {
    margin-bottom: 24px;

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 790;
    line-height: .98;

    letter-spacing: -.055em;
}


.hero h1 span {
    display: block;

    color: #a9ccff;
}

.hero h1 {
    color: #13283d;

    text-shadow: none;
}

.hero h1 span {
    color: #2678ff;
}


.hero__lead {
    max-width: 610px;

    padding: 18px 20px;

    color: #46586a;

    border: 1px solid rgba(38, 120, 255, .12);
    border-radius: 16px;

    background: rgba(255, 255, 255, .82);

    box-shadow: 0 14px 40px rgba(32, 62, 94, .10);

    backdrop-filter: blur(14px);
}

.hero__lead strong {
    color: #13283d;
}


.hero__actions {
    display: flex;

    gap: 12px;
}


.hero__facts {
    display: grid;

    grid-template-columns:
        repeat(3, max-content);

    margin-top: 38px;

    gap: 34px;
}


.hero__facts > div {
    display: flex;
    flex-direction: column;
}


.hero__facts strong {
    font-size: 14px;
}


.hero__facts span {
    margin-top: 3px;

    color: #2678ff;

    font-size: 11px;
}


/* ============================================================
   QUICK ACTIONS
   ============================================================ */

.quick {
    position: relative;
    z-index: 10;

    margin-top: -48px;
}


.quick__grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: #fff;

    box-shadow: var(--shadow);
}


.quick-card {
    display: flex;
    align-items: center;

    min-height: 108px;

    padding: 24px 26px;

    gap: 17px;

    border-right: 1px solid var(--border);

    transition: background var(--transition);
}


.quick-card:last-child {
    border-right: 0;
}


.quick-card:hover {
    background: var(--blue-light);
}


.quick-card__number {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    border: 1px solid #d7e5ff;

    border-radius: 50%;

    background: var(--blue-light);
}


.quick-card > div {
    display: flex;
    flex-direction: column;

    min-width: 0;
}


.quick-card strong {
    color: var(--dark);

    font-size: 15px;
}


.quick-card div span {
    margin-top: 4px;

    color: var(--muted);

    font-size: 12px;
}


.quick-card > b {
    margin-left: auto;

    color: var(--blue);

    font-size: 22px;
    font-weight: 400;
}


/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 38px;

    gap: 40px;
}


.section-head > div {
    max-width: 710px;
}


/* ============================================================
   PLOTS
   ============================================================ */

.plots {
    padding-top: 105px;

    background: #fff;
}


.plot-map {
    position: relative;

    display: block;

    height: 610px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--bg);

    box-shadow: var(--shadow);
}


.plot-map > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}


.plot-map:hover > img {
    transform: scale(1.015);
}


.plot-map__action {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 22px;

    gap: 30px;

    color: #fff;

    border-radius: 15px;

    background: rgba(18, 30, 42, .86);

    backdrop-filter: blur(14px);
}


.plot-map__action > div {
    display: flex;
    flex-direction: column;
}


.plot-map__action span {
    font-size: 11px;

    opacity: .65;
}


.plot-map__action strong {
    margin-top: 4px;

    font-size: 16px;
}


.plot-map__button {
    flex: 0 0 auto;

    padding: 10px 14px;

    color: #fff;

    font-weight: 750;

    border: 1px solid rgba(255, 255, 255, .22);

    border-radius: 10px;

    opacity: 1 !important;
}


/* ============================================================
   FACTS
   ============================================================ */

.facts {
    padding: 0 0 80px;
}


.facts__grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.fact {
    padding: 27px;

    border-right: 1px solid var(--border);
}


.fact:first-child {
    padding-left: 0;
}


.fact:last-child {
    padding-right: 0;

    border-right: 0;
}


.fact {
    display: flex;
    flex-direction: column;
}


.fact strong {
    color: var(--dark);

    font-size: 16px;
}


.fact span {
    margin-top: 7px;

    color: var(--muted);

    font-size: 12px;
}


/* ============================================================
   AERIAL
   ============================================================ */

.aerial {
    background: var(--bg);
}


.aerial__grid {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    align-items: center;

    gap: 65px;
}


.aerial__content p {
    max-width: 440px;

    margin: 22px 0 28px;

    color: var(--muted);

    font-size: 17px;
}


.aerial__actions {
    display: flex;
    align-items: center;

    gap: 24px;
}


.text-action {
    color: var(--dark);

    font-size: 14px;
    font-weight: 750;
}


.aerial__image {
    height: 520px;

    overflow: hidden;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}


.aerial__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ============================================================
   CONDITIONS
   ============================================================ */

.conditions {
    color: #fff;

    background: linear-gradient(
            135deg,
            #1465de,
            #2678ff 60%,
            #438fff
    );
}


.conditions h2 {
    color: #fff;
}


.conditions__top {
    display: grid;

    grid-template-columns:
        1.1fr .7fr;

    align-items: end;

    gap: 70px;
}


.conditions__top > p {
    margin-bottom: 3px;

    color: rgba(255, 255, 255, .72);

    font-size: 17px;
}


.conditions__numbers {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    margin-top: 46px;

    border-top: 1px solid rgba(255, 255, 255, .22);

    border-bottom: 1px solid rgba(255, 255, 255, .22);
}


.condition-number {
    display: flex;
    flex-direction: column;

    padding: 34px 0;
}


.condition-number:first-child {
    border-right: 1px solid rgba(255, 255, 255, .22);
}


.condition-number:last-child {
    padding-left: 55px;
}


.condition-number span {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, .65);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.condition-number strong {
    font-size: clamp(42px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -.05em;
}


.conditions__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 34px;

    gap: 35px;
}


.conditions__steps {
    display: flex;
    align-items: center;

    flex: 1;

    gap: 18px;
}


.conditions__steps > div {
    display: flex;
    align-items: center;

    gap: 10px;
}


.conditions__steps b {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    font-size: 10px;

    border: 1px solid rgba(255, 255, 255, .30);

    border-radius: 50%;
}


.conditions__steps span {
    font-size: 12px;
    font-weight: 650;
}


.conditions__steps i {
    display: block;

    flex: 1;

    max-width: 75px;

    height: 1px;

    background: rgba(255, 255, 255, .25);
}


/* ============================================================
   PHOTOS
   ============================================================ */

.photos {
    background: #fff;
}


.gallery {
    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-auto-rows: 180px;

    gap: 12px;
}


.gallery__item {
    position: relative;

    grid-column: span 4;
    grid-row: span 2;

    margin: 0;

    overflow: hidden;

    border-radius: 17px;

    background: #e8ecef;
}


.gallery__item--wide {
    grid-column: span 8;
}


.gallery__item--portrait {
    grid-column: span 4;
    grid-row: span 3;
}


.gallery__item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}


.gallery__item:hover img {
    transform: scale(1.025);
}


.gallery__item::after {
    position: absolute;
    inset: auto 0 0;

    height: 42%;

    content: "";

    background: linear-gradient(
            to top,
            rgba(12, 22, 32, .58),
            transparent
    );

    pointer-events: none;
}


.gallery__item figcaption {
    position: absolute;
    z-index: 2;
    right: 17px;
    bottom: 14px;
    left: 17px;

    color: #fff;

    font-size: 13px;
    font-weight: 700;
}


.photos__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
    padding: 22px 24px;

    gap: 30px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: var(--bg);
}


.photos__cta > div {
    display: flex;
    flex-direction: column;
}


.photos__cta strong {
    color: var(--dark);

    font-size: 17px;
}


.photos__cta span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}


/* ============================================================
   CALLBACK
   ============================================================ */

.callback {
    padding: 20px 0 90px;
}


.callback__card {
    display: grid;

    grid-template-columns:
        1fr 420px;

    align-items: center;

    padding: 55px;

    gap: 70px;

    color: #fff;

    border-radius: var(--radius);

    background: var(--dark);
}


.callback__content h2 {
    max-width: 670px;

    color: #fff;

    font-size: clamp(34px, 4vw, 53px);
}


.callback__content p {
    margin: 18px 0 27px;

    color: rgba(255, 255, 255, .60);
}


.callback__phone {
    display: inline-flex;
    flex-direction: column;

    font-size: 26px;
    font-weight: 800;

    line-height: 1.1;
}


.callback__phone small {
    margin-top: 5px;

    color: rgba(255, 255, 255, .5);

    font-size: 10px;
    font-weight: 500;
}


.callback-form {
    padding: 28px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 18px;

    background: rgba(255, 255, 255, .07);
}


.callback-form label {
    display: flex;
    flex-direction: column;

    margin-bottom: 13px;

    gap: 7px;
}


.callback-form label span {
    color: rgba(255, 255, 255, .67);

    font-size: 11px;
    font-weight: 700;
}


.callback-form input {
    width: 100%;
    height: 56px;

    padding: 0 15px;

    border: 0;
    outline: none;

    border-radius: 11px;

    background: #fff;
}


.callback-form > small {
    display: block;

    margin-top: 11px;

    color: rgba(255, 255, 255, .42);

    font-size: 9px;
}

.callback-form > small > a {
    color: #FFFFFF;
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    padding: 36px 0;

    color: rgba(255, 255, 255, .55);

    background: #101820;
}


.footer__inner {
    display: flex;
    align-items: center;

    gap: 35px;
}


.footer__logo {
    width: 145px;

    filter: brightness(0) invert(1);
}


.footer__legal {
    display: flex;
    flex-direction: column;

    max-width: 590px;

    gap: 5px;

    font-size: 10px;
}


.footer__phone {
    margin-left: auto;

    color: #fff;

    font-size: 17px;
    font-weight: 750;
}

.hero-call {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 62px;
    padding: 7px 18px 7px 8px;

    gap: 11px;

    color: #16324a;

    border: 1px solid rgba(38, 120, 255, .18);
    border-radius: 16px;

    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, .96),
            rgba(239, 247, 255, .94)
    );

    box-shadow: 0 12px 30px rgba(34, 76, 120, .10);

    backdrop-filter: blur(14px);

    transition: transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.hero-call:hover {
    transform: translateY(-2px);

    border-color: rgba(38, 120, 255, .35);

    box-shadow: 0 17px 38px rgba(34, 76, 120, .16);
}

.hero-call__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    color: #fff;

    border-radius: 13px;

    background: linear-gradient(
            145deg,
            #3b91ff,
            #1769e7
    );

    box-shadow: 0 8px 20px rgba(38, 120, 255, .28);
}

.hero-call__icon svg {
    width: 21px;
    height: 21px;
}

.hero-call__content {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.hero-call__content strong {
    font-size: 14px;
    font-weight: 800;
}

.hero-call__content small {
    margin-top: 4px;

    color: #6b7d8d;

    font-size: 10px;
    font-weight: 600;
}

.hero-call__status {
    position: absolute;

    top: 8px;
    right: 9px;

    width: 7px;
    height: 7px;

    border: 2px solid #fff;
    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 0 3px rgba(34, 197, 94, .12);
}

/* ============================================================
   MOBILE BAR
   ============================================================ */

.mobile-bar {
    display: none;
}

.footer__legal-link {
    color: #FFF;
    font-size: 14px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1024px) {

    .header__nav {
        display: none;
    }


    .header__phone {
        margin-left: auto;
    }


    .quick__grid {
        grid-template-columns:
            1fr;
    }


    .quick-card {
        min-height: 86px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }


    .quick-card:last-child {
        border-bottom: 0;
    }


    .facts__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .fact:nth-child(2) {
        border-right: 0;
    }


    .fact:nth-child(3),
    .fact:nth-child(4) {
        border-top: 1px solid var(--border);
    }


    .aerial__grid {
        grid-template-columns:
            .8fr 1.2fr;

        gap: 35px;
    }


    .conditions__bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .callback__card {
        grid-template-columns:
            1fr 360px;

        gap: 40px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .container {
        width: min(
                calc(100% - 30px),
                var(--container)
        );
    }

    .section {
        padding: 64px 0;
    }


    h2 {
        font-size: clamp(32px, 10vw, 43px);
    }


    /* HEADER */
    .header {
        backdrop-filter: none;
        border: 0;
        position: relative;
    }

    .header__inner {
        min-height: 68px;
    }


    .logo img {
        width: 138px;
    }


    .header__phone,
    .header__call {
        display: none;
    }


    /* HERO */
    .hero {
        min-height: 690px;

        align-items: flex-end;

        padding: 120px 0 74px;
    }


    .hero__background {
        background-position: 67% center;
    }

    .hero::before {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 470px;

        background-image: url('/img/gzhel-pattern2.png');
        background-size: 270px auto;
        background-position: center bottom;

        opacity: .18;

        mask-image: linear-gradient(
                180deg,
                transparent 0%,
                rgba(0, 0, 0, .55) 35%,
                #000 70%,
                #000 100%
        );

        -webkit-mask-image: linear-gradient(
                180deg,
                transparent 0%,
                rgba(0, 0, 0, .55) 35%,
                #000 70%,
                #000 100%
        );
    }


    .hero__container {
        padding-top: 0;
    }

    .hero__overlay {
        background: linear-gradient(360deg, rgba(246, 250, 255, .97) 0%, rgba(240, 247, 255, .94) 32%, rgba(235, 245, 255, .78) 52%, rgba(235, 245, 255, .28) 72%, rgba(255, 255, 255, .04) 100%);
    }

    .hero__background {
        height: 36%;
        top: -55px;
    }


    .hero h1 {
        margin-bottom: 19px;
        text-shadow: 1px 1px rgba(255, 255, 255, .67);

        font-size: clamp(43px, 13vw, 58px);
    }


    .hero__lead {
        margin-bottom: 24px;

        font-size: 17px;
    }


    .hero__actions {
        flex-direction: column;
    }


    .hero__actions .button {
        width: 100%;
    }


    .hero__facts {
        grid-template-columns:
            1fr 1fr;

        margin-top: 27px;

        gap: 18px;
    }


    .hero__facts > div:last-child {
        grid-column: span 2;
    }


    .hero-call {
        width: 100%;
        min-height: 58px;
    }

    .hero-call__content strong {
        font-size: 15px;
    }


    /* QUICK */
    .quick {
        margin-top: 0;

        padding-top: 15px;

        background: #fff;
    }


    .quick__grid {
        border-radius: 16px;

        box-shadow: 0 10px 32px rgba(28, 43, 58, .08);
    }


    /* SECTION HEADER */
    .section-head {
        align-items: stretch;
        flex-direction: column;

        margin-bottom: 28px;

        gap: 20px;
    }


    .section-head .button {
        align-self: stretch;
    }


    /* PLOTS */
    .plots {
        padding-top: 64px;
    }


    .plot-map {
        height: 460px;

        border-radius: 18px;
    }


    .plot-map__action {
        right: 12px;
        bottom: 12px;
        left: 12px;

        align-items: stretch;
        flex-direction: column;

        padding: 16px;

        gap: 12px;
    }


    .plot-map__button {
        text-align: center;
    }


    /* FACTS */
    .facts {
        padding-bottom: 56px;
    }


    .facts__grid {
        grid-template-columns:
            1fr;
    }


    .fact,
    .fact:first-child,
    .fact:last-child {
        padding: 21px 0;

        border-right: 0;
        border-top: 0;
        border-bottom: 1px solid var(--border);
    }


    .fact:last-child {
        border-bottom: 0;
    }


    /* AERIAL */
    .aerial__grid {
        grid-template-columns:
            1fr;

        gap: 32px;
    }


    .aerial__image {
        order: -1;

        height: 360px;

        border-radius: 18px;
    }


    .aerial__actions {
        align-items: stretch;
        flex-direction: column;
    }


    .aerial__actions .button {
        width: 100%;
    }


    /* CONDITIONS */
    .conditions__top {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .conditions__numbers {
        grid-template-columns:
            1fr;

        margin-top: 30px;
    }


    .condition-number {
        padding: 27px 0;
    }


    .condition-number:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }


    .condition-number:last-child {
        padding-left: 0;
    }


    .condition-number strong {
        font-size: 50px;
    }


    .conditions__steps {
        align-items: flex-start;
        flex-direction: column;

        gap: 13px;
    }


    .conditions__steps i {
        display: none;
    }


    .conditions__bottom .button {
        width: 100%;
    }


    /* PHOTOS */
    .gallery {
        display: flex;
        flex-direction: column;

        gap: 9px;
    }


    .gallery__item,
    .gallery__item--wide,
    .gallery__item--portrait {
        width: 100%;
        height: 260px;
    }


    .gallery__item:nth-child(2),
    .gallery__item:nth-child(4) {
        height: 340px;
    }


    .photos__cta {
        align-items: stretch;
        flex-direction: column;
    }


    .photos__cta .button {
        width: 100%;
    }


    /* CALLBACK */
    .callback {
        padding: 10px 0 64px;
    }


    .callback__card {
        grid-template-columns:
            1fr;

        padding: 27px;

        gap: 30px;

        border-radius: 18px;
    }


    .callback__content h2 {
        font-size: 36px;
    }


    .callback-form {
        padding: 19px;
    }


    /* FOOTER */
    .footer__inner {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }


    .footer__phone {
        margin-left: 0;
    }


    /* MOBILE BAR */
    .mobile-bar {
        position: fixed;
        z-index: 1000;
        right: 0;
        bottom: 0;
        left: 0;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));

        gap: 7px;

        border-top: 1px solid var(--border);

        background: rgba(255, 255, 255, .97);

        backdrop-filter: blur(16px);
    }


    .mobile-bar a {
        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 52px;

        font-size: 13px;
        font-weight: 800;

        border-radius: 11px;
    }


    .mobile-bar__plots {
        color: var(--dark);

        background: #edf1f5;
    }


    .mobile-bar__call {
        color: #fff;

        background: var(--blue);

        box-shadow: 0 8px 22px rgba(38, 120, 255, .25);
    }

}


@media (max-width: 390px) {

    .hero h1 {
        font-size: 41px;
        text-align: center;
        line-height: 50px;
    }


    .condition-number strong {
        font-size: 43px;
    }

}


/* ============================================================
   EXISTING LANDING JS INTEGRATION
   ============================================================ */

.start-home-form__message {
    min-height: 0;
    margin-top: 12px;
    padding: 0;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.4;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .25s ease,
    transform .25s ease,
    margin .25s ease;
}

.start-home-form__message:empty {
    margin-top: 0;
}

.start-home-form__message.is-success,
.start-home-form__message.is-error {
    padding: 10px 12px;
    border-radius: 10px;
}

.start-home-form__message.is-success {
    color: #dff9e5;
    border: 1px solid rgba(92, 211, 120, .25);
    background: rgba(92, 211, 120, .12);
}

.start-home-form__message.is-error {
    color: #ffe2e2;
    border: 1px solid rgba(255, 111, 111, .25);
    background: rgba(255, 111, 111, .12);
}

.start-home-form__message.is-hide {
    opacity: 0;
    transform: translateY(-5px);
}


/* ============================================================
   COOKIE POPUP
   ============================================================ */

.cookie-popup {
    position: fixed;
    z-index: 1200;
    right: 22px;
    bottom: 22px;

    display: flex;
    align-items: center;

    max-width: 470px;
    padding: 14px 14px 14px 17px;

    gap: 16px;

    color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 15px 45px rgba(25, 39, 54, .15);
    backdrop-filter: blur(14px);
}

.cookie-popup[hidden] {
    display: none;
}

.cookie-popup__text {
    color: var(--muted);
    font-size: 11px;
}

.cookie-popup__button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;

    color: #fff;
    border: 0;
    border-radius: 9px;
    background: var(--blue);

    font-size: 11px;
    font-weight: 750;
}


/* ============================================================
   MOBILE FLOATING CALL
   ============================================================ */

.mobile-call-float {
    display: none;
}


@media (max-width: 767px) {

    .mobile-bar {
        display: none !important;
    }

    .mobile-call-float {
        position: fixed;
        z-index: 1100;

        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));

        display: flex;
        align-items: center;

        min-height: 60px;
        padding: 7px 17px 7px 8px;

        gap: 10px;

        color: #fff;

        border-radius: 100px;
        background: var(--blue);

        box-shadow: 0 12px 32px rgba(38, 120, 255, .38);

        animation: mobileCallPulse 2.8s ease-in-out infinite;
    }

    .mobile-call-float__icon {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        flex: 0 0 44px;

        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .mobile-call-float__text {
        display: flex;
        flex-direction: column;

        line-height: 1.12;
    }

    .mobile-call-float__text strong {
        font-size: 14px;
        font-weight: 800;
    }

    .mobile-call-float__text small {
        margin-top: 3px;

        color: rgba(255, 255, 255, .72);

        font-size: 11px;
    }

    .cookie-popup {
        right: 12px;
        bottom: calc(86px + env(safe-area-inset-bottom));
        left: 12px;

        max-width: none;

        padding: 12px;
    }

}


@keyframes mobileCallPulse {

    0%,
    100% {
        box-shadow: 0 12px 32px rgba(38, 120, 255, .38),
        0 0 0 0 rgba(38, 120, 255, .20);
    }

    50% {
        box-shadow: 0 12px 32px rgba(38, 120, 255, .38),
        0 0 0 9px rgba(38, 120, 255, 0);
    }

}


@media (prefers-reduced-motion: reduce) {

    .mobile-call-float {
        animation: none;
    }

}


/* ============================================================
   VISUAL REFRESH V5
   ============================================================ */

body {
    background: radial-gradient(1200px 600px at 0% 0%, rgba(38, 120, 255, .05), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(38, 120, 255, .04), transparent 45%),
    #fff;
}

.hero__background {
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.03);
}

.hero__content {
    padding: 12px 0;
}

.hero h1 {
    text-wrap: balance;
}

.hero__lead {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.hero__facts > div {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(8px);
}

.quick__grid {
    border: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 251, 255, 1) 100%);
    box-shadow: 0 25px 60px rgba(27, 43, 58, .10);
}

.quick-card {
    position: relative;
}

.quick-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), #76a9ff);
    opacity: 0;
    transition: opacity var(--transition);
}

.quick-card:hover::before {
    opacity: 1;
}

.plot-map,
.aerial__image,
.callback__card,
.gallery__item,
.plot-map__action,
.photos__cta,
.cookie-popup,
.callback-form,
.quick__grid {
    border-radius: 22px;
}

.plot-map {
    overflow: hidden;
}

.plot-map::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: inherit;
    pointer-events: none;
}

.facts__grid {
    border-top: 0;
    border-bottom: 0;
    gap: 14px;
}

.fact,
.fact:first-child,
.fact:last-child {
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
    box-shadow: 0 10px 28px rgba(27, 43, 58, .04);
}

.aerial__content p {
    line-height: 1.65;
}

.conditions {
    position: relative;
    overflow: hidden;
}

.conditions::before,
.conditions::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(2px);
    pointer-events: none;
}

.conditions::before {
    width: 280px;
    height: 280px;
    top: -120px;
    right: -60px;
}

.conditions::after {
    width: 220px;
    height: 220px;
    bottom: -100px;
    left: -40px;
}

.conditions__numbers,
.conditions__bottom {
    position: relative;
    z-index: 1;
}

.conditions__numbers {
    padding: 0 8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.gallery__item figcaption {
    font-size: 14px;
    letter-spacing: .01em;
}

.photos__cta {
    border: 1px solid rgba(38, 120, 255, .10);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.callback__card {
    background: radial-gradient(450px 220px at 90% 10%, rgba(75, 145, 255, .20), transparent 60%),
    linear-gradient(135deg, #17212b 0%, #1a2633 45%, #20344a 100%);
    box-shadow: 0 30px 70px rgba(19, 31, 43, .14);
}

.callback-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .06) 100%);
}

.button--primary {
    background: linear-gradient(180deg, #2c83ff 0%, #1e6ef0 100%);
}

.button--dark {
    background: linear-gradient(180deg, #223142 0%, #17212b 100%);
}

@media (max-width: 767px) {
    .hero__lead {
        padding: 14px;
    }

    .hero__facts {
        grid-template-columns: 1fr;
    }

    .hero__facts > div:last-child {
        grid-column: auto;
    }

    .facts__grid {
        gap: 10px;
    }

    .fact,
    .fact:first-child,
    .fact:last-child {
        padding: 18px 16px;
    }
}


/* ============================================================
   APPROVED GZHEL BRANDING V7
   Uses /img/gzhel-pattern2.png made from the approved artwork.
   ============================================================ */

/* Header/footer logo — preserve real colors */
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 28px rgba(18, 31, 42, .10);
    backdrop-filter: blur(12px);
}

.logo img,
.footer__logo {
    width: auto;
    height: auto;
    max-width: 176px;
    max-height: 56px;
    object-fit: contain;
    filter: none !important;
}

.footer__brand {
    background: #fff;
    border-color: rgba(255, 255, 255, .10);
}

.footer__logo {
    width: 176px;
    max-height: 60px;
}

/* Main approved-pattern ribbon under hero */
.gzhel-band {
    position: relative;
    z-index: 8;
    height: 74px;
    margin-top: -1px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    border-bottom: 1px solid rgba(38, 120, 255, .08);
}

.gzhel-band::before {
    content: "";
    position: absolute;
    inset: -170px -30px -170px -30px;
    background-image: url("/img/gzhel-pattern2.png");
    background-repeat: repeat-x;
    background-size: 430px auto;
    background-position: center 47%;
    opacity: .27;
    filter: saturate(1.03);
}

/* Narrow ornamental separators */
.gzhel-divider-thin {
    position: relative;
    height: 46px;
    overflow: hidden;
    background: #fff;
}

.gzhel-divider-thin::before {
    content: "";
    position: absolute;
    inset: -185px 0;
    background-image: url("/img/gzhel-pattern2.png");
    background-repeat: repeat-x;
    background-size: 360px auto;
    background-position: center 50%;
    opacity: .16;
}

.gzhel-divider-thin--reverse::before {
    transform: scaleX(-1);
}

/* Decorative approved-pattern corner on white sections */
.section--gzhel-corner {
    position: relative;
    overflow: hidden;
}

.section--gzhel-corner > .container {
    position: relative;
    z-index: 1;
}

/* Gzhel on finance block — subtle, does not reduce CTA contrast */
.conditions--gzhel {
    position: relative;
    overflow: hidden;
}

.conditions--gzhel::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -90px;
    right: -120px;
    width: 560px;
    height: 560px;
    background-image: url("/img/gzhel-pattern2.png");
    background-repeat: no-repeat;
    background-size: 610px auto;
    background-position: center;
    opacity: .11;
    filter: brightness(1.55) saturate(.72);
    mix-blend-mode: screen;
    pointer-events: none;
}

.conditions--gzhel::after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -190px;
    left: -160px;
    width: 500px;
    height: 500px;
    background-image: url("/img/gzhel-pattern2.png");
    background-repeat: no-repeat;
    background-size: 560px auto;
    background-position: center;
    opacity: .075;
    filter: brightness(1.65) saturate(.65);
    mix-blend-mode: screen;
    transform: rotate(180deg);
    pointer-events: none;
}

.conditions--gzhel > .container {
    position: relative;
    z-index: 1;
}

/* Final conversion card gets a restrained branded edge */
.callback--gzhel {
    position: relative;
}

.callback--gzhel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
    height: 56px;
    background-image: url("/img/gzhel-pattern2.png");
    background-repeat: repeat-x;
    background-size: 320px auto;
    background-position: center 44%;
    opacity: .09;
    pointer-events: none;
}

.callback__card {
    position: relative;
    overflow: hidden;
}

.callback__card::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -110px;
    bottom: -150px;
    width: 390px;
    height: 390px;
    background-image: url("/img/gzhel-pattern2.png");
    background-repeat: no-repeat;
    background-size: 430px auto;
    background-position: center;
    opacity: .09;
    filter: brightness(1.45);
    mix-blend-mode: screen;
    pointer-events: none;
}

.callback__card > * {
    position: relative;
    z-index: 1;
}

/* Small brand motif next to section labels */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aerial__map {
    display: block;
    margin-top: 2em;
}

.aerial__map-img {
    border-radius: 1em;
}

/* Keep all main UI clean — ornament never sits under input text */
.callback-form,
.quick__grid,
.plot-map__action,
.photos__cta {
    backdrop-filter: blur(10px);
}

/* Slightly more premium visual hierarchy */
.quick__grid,
.plot-map,
.aerial__image,
.callback__card {
    box-shadow: 0 24px 64px rgba(28, 43, 58, .10);
}

.hero__background {
    filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 767px) {
    .logo {
        padding: 7px 9px;
        border-radius: 13px;
    }

    .logo img {
        max-width: 132px;
        max-height: 42px;
        transform: scale(1.5);
    }

    .footer__brand {
        padding: 9px 11px;
    }

    .footer__logo {
        width: 145px;
        max-height: 50px;
    }

    .gzhel-band {
        height: 48px;
    }

    .gzhel-band::before {
        inset: -180px -10px;
        background-size: 330px auto;
        opacity: .22;
    }

    .gzhel-divider-thin {
        height: 32px;
    }

    .gzhel-divider-thin::before {
        inset: -190px 0;
        background-size: 290px auto;
        opacity: .13;
    }

    .conditions--gzhel::before {
        right: -210px;
        width: 430px;
        height: 430px;
        background-size: 470px auto;
        opacity: .085;
    }

    .conditions--gzhel::after {
        display: none;
    }

    .callback__card::after {
        right: -170px;
        bottom: -170px;
        opacity: .065;
    }

    .section-label::after {
        width: 42px;
        height: 15px;
        background-size: 110px auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__background {
        filter: none;
    }
}


/* ============================================================
   HERO — RESTORED TO APPROVED SCREENSHOT
   ============================================================ */

.hero__content {
    max-width: 740px;
    padding-top: 130px;
}

.hero h1 {
    max-width: none;
    margin-bottom: 24px;
    color: #13283d;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 790;
    line-height: .98;
    letter-spacing: -.055em;
    text-shadow: none;
}

.hero h1 span {
    display: block;
    color: #2678ff;
}

.hero__lead {
    max-width: 610px;
    margin: 0 0 24px;
    padding: 18px 20px;
    color: #46586a;
    border: 1px solid rgba(38, 120, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 40px rgba(32, 62, 94, .10);
    backdrop-filter: blur(14px);
    font-size: 17px;
}

.hero__lead strong {
    color: #13283d;
}

.hero__actions {
    display: flex;
    gap: 12px;
}

.hero__facts {
    margin-top: 38px;
}

@media (max-width: 767px) {
    .hero {
        min-height: 690px;
        align-items: flex-end;
        padding: 120px 0 74px;
    }

    .hero__container {
        padding-top: 0;
    }

    .hero h1 {
        margin-bottom: 19px;
        font-size: clamp(43px, 13vw, 58px);
        line-height: .98;
        text-align: center;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, .55);
    }

    .hero__lead {
        margin-bottom: 18px;
        padding: 14px;
        font-size: 14px;
        line-height: 1.45;
        background: rgba(255, 255, 255, .82);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__facts {
        grid-template-columns: 1fr 1fr;
        margin-top: 27px;
        gap: 18px;
    }

    .hero__facts > div:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 390px) {
    .hero h1 {
        font-size: 35px;
        line-height: 1.02;
        background: rgba(255, 255, 255, .35);
        backdrop-filter: blur(2px);
        padding: 15px;
        border-radius: 15px;
    }
}
