@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Regular.woff2') format('woff2'),
         url('../fonts/TildaSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Medium.woff2') format('woff2'),
         url('../fonts/TildaSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Semibold.woff2') format('woff2'),
         url('../fonts/TildaSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tilda Sans';
    src: url('../fonts/TildaSans-Bold.woff2') format('woff2'),
         url('../fonts/TildaSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

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

body {
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Tilda Sans', Arial, sans-serif;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

.kvaris-container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.kvaris-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2f4b5d;
    z-index: 1000;
}

.kvaris-header__inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.kvaris-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.kvaris-logo span {
    font-size: 39px;
    color: #3bd4cf;
    font-weight: 700;
    letter-spacing: 2px;
}

.kvaris-logo small {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}

.kvaris-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.kvaris-nav a,
.kvaris-nav__drop-btn {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.kvaris-nav__drop-btn span,
.kvaris-mobile-dropdown-btn span {
    font-size: 8px;
    margin-left: 4px;
}

.kvaris-nav__dropdown {
    position: relative;
    padding: 30px 0;
}

.kvaris-submenu {
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: #fff;
    border-radius: 4px;
    padding: 18px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
}

.kvaris-submenu:before {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 22px;
    height: 22px;
    background: #fff;
}

.kvaris-nav__dropdown:hover .kvaris-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.kvaris-submenu__item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 16px;
}

.kvaris-submenu__item:last-child {
    margin-bottom: 0;
}

.kvaris-submenu__img img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.kvaris-submenu__item strong {
    display: block;
    color: #111;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.kvaris-submenu__item small {
    display: block;
    color: #aaa;
    font-size: 14px;
    line-height: 1.25;
    margin-top: 2px;
}

.kvaris-header__actions {
    display: flex;
    gap: 10px;
}

.kvaris-btn {
    min-width: 125px;
    height: 40px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.kvaris-btn--whatsapp {
    background: #3bd4cf;
    border: 1px solid #fff;
}

.kvaris-btn--outline {
    border: 1px solid #3bd4cf;
    background: transparent;
}

.kvaris-burger {
    display: none;
}

.kvaris-mobile-menu {
    display: none;
}

body.admin-bar .kvaris-header {
    top: 32px;
}

@media (max-width: 991px) {
    .kvaris-header {
        display: none;
    }

    .kvaris-mobile-menu {
        position: fixed;
        inset: 0;
        background: #2f4b5d;
        z-index: 2000;
        display: block;
        transform: translateX(100%);
        transition: .3s ease;
        overflow-y: auto;
    }

    .kvaris-mobile-menu.is-open {
        transform: translateX(0);
    }

    .kvaris-mobile-menu__top {
        height: 62px;
        padding: 8px 15px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .kvaris-mobile-menu__top .kvaris-logo span {
        font-size: 31px;
    }

    .kvaris-mobile-menu__top .kvaris-logo small {
        color: #d9d9d9;
        font-size: 11px;
    }

    .kvaris-mobile-close {
        position: relative;
        width: 28px;
        height: 28px;
        border: 0;
        background: transparent;
    }

    .kvaris-mobile-close:before,
    .kvaris-mobile-close:after {
        content: "";
        position: absolute;
        top: 13px;
        left: 2px;
        width: 25px;
        height: 2px;
        background: #2f4b5d;
    }

    .kvaris-mobile-close:before {
        transform: rotate(45deg);
    }

    .kvaris-mobile-close:after {
        transform: rotate(-45deg);
    }

    .kvaris-mobile-nav {
        padding: 28px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 21px;
    }

    .kvaris-mobile-nav > a,
    .kvaris-mobile-dropdown-btn {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        background: transparent;
        border: 0;
        font-family: inherit;
    }

    .kvaris-mobile-submenu {
        width: 100%;
        background: #fff;
        border-radius: 4px;
        padding: 14px 13px;
        display: none;
    }

    .kvaris-mobile-submenu.is-open {
        display: block;
    }

    .kvaris-mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding-bottom: 28px;
    }

    .kvaris-mobile-actions .kvaris-btn {
        min-width: 102px;
        height: 31px;
        font-size: 11px;
    }

    body.admin-bar .kvaris-mobile-menu {
        top: 46px;
    }
}





.kvaris-container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.kvaris-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2f4b5d;
    z-index: 1000;
}

.kvaris-header__inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.kvaris-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.kvaris-logo span {
    font-size: 39px;
    color: #3bd4cf;
    font-weight: 700;
    letter-spacing: 2px;
}

.kvaris-logo small {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
}

.kvaris-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.kvaris-nav a,
.kvaris-nav__drop-btn {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.kvaris-nav__drop-btn span,
.kvaris-mobile-dropdown-btn span {
    font-size: 8px;
    margin-left: 4px;
}

.kvaris-nav__dropdown {
    position: relative;
    padding: 30px 0;
}

.kvaris-submenu {
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: #fff;
    border-radius: 4px;
    padding: 18px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
    overflow: hidden;
}

.kvaris-submenu:before {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 22px;
    height: 22px;
    background: #fff;
}

.kvaris-nav__dropdown:hover .kvaris-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.kvaris-submenu__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    text-decoration: none;
    margin-bottom: 16px;
    align-items: start;
}

.kvaris-submenu__item > span:last-child {
    width: 100%;
    min-width: 0;
}

.kvaris-submenu__item:last-child {
    margin-bottom: 0;
}

.kvaris-submenu__img img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.kvaris-submenu__item strong {
    display: block;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 1px;
}

.kvaris-submenu__excerpt,
.kvaris-submenu__item small {
    display: -webkit-box;
    width: 100%;
    max-width: 100%;
    max-height: 35px;
    overflow: hidden;
    color: #9f9f9f;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.kvaris-header__actions {
    display: flex;
    gap: 10px;
}

.kvaris-btn {
    min-width: 125px;
    height: 40px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.kvaris-btn--whatsapp {
    background: #3bd4cf;
    border: 1px solid #fff;
}

.kvaris-btn--outline {
    border: 1px solid #3bd4cf;
    background: transparent;
}

.kvaris-header,
.kvaris-mobile-header {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

body.kvaris-header-scrolled .kvaris-header {
    background: rgba(47, 75, 93, 0.84);
    box-shadow: 0 8px 24px rgba(18, 35, 48, 0.12);
    backdrop-filter: blur(8px);
}

body.kvaris-header-scrolled .kvaris-mobile-header {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 24px rgba(18, 35, 48, 0.08);
    backdrop-filter: blur(8px);
}

.kvaris-mobile-header,
.kvaris-mobile-menu {
    display: none;
}

body.admin-bar .kvaris-header {
    top: 32px;
}

@media (max-width: 991px) {
    .kvaris-header {
        display: none;
    }

    .kvaris-mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 62px;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        padding: 8px 15px;
    }

    body.admin-bar .kvaris-mobile-header {
        top: 46px;
    }

    .kvaris-mobile-header .kvaris-logo span,
    .kvaris-mobile-menu__top .kvaris-logo span {
        font-size: 31px;
        color: #3bd4cf;
        line-height: .85;
    }

    .kvaris-mobile-header .kvaris-logo small,
    .kvaris-mobile-menu__top .kvaris-logo small {
        color: #d9d9d9;
        font-size: 11px;
    }

    .kvaris-mobile-toggle {
        margin-right: 2rem;
        position: relative;
        width: 30px;
        height: 25px;
        border: 0;
        background: transparent;
        padding: 0;
    }

    .kvaris-mobile-toggle span {
        position: absolute;
        left: 0;
        width: 28px;
        height: 2px;
        background: #2f4b5d;
    }

    .kvaris-mobile-toggle span:first-child {
        top: 6px;
    }

    .kvaris-mobile-toggle span:last-child {
        bottom: 6px;
    }

    .kvaris-mobile-menu {
        position: fixed;
        inset: 0;
        background: #2f4b5d;
        z-index: 2000;
        display: block;
        transform: translateX(100%);
        transition: .3s ease;
        overflow-y: auto;
    }

    .kvaris-mobile-menu.is-open {
        transform: translateX(0);
    }

    body.admin-bar .kvaris-mobile-menu {
        top: 46px;
    }

    .kvaris-mobile-menu__top {
        height: 62px;
        padding: 8px 15px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .kvaris-mobile-close {
        position: relative;
        width: 28px;
        height: 28px;
        border: 0;
        background: transparent;
        padding: 0;
    }

    .kvaris-mobile-close:before,
    .kvaris-mobile-close:after {
        content: "";
        position: absolute;
        top: 13px;
        left: 1px;
        width: 27px;
        height: 2px;
        background: #2f4b5d;
    }

    .kvaris-mobile-close:before {
        transform: rotate(45deg);
    }

    .kvaris-mobile-close:after {
        transform: rotate(-45deg);
    }

    .kvaris-mobile-nav {
        padding: 28px 8px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 21px;
    }

    .kvaris-mobile-nav > a,
    .kvaris-mobile-dropdown-btn {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        background: transparent;
        border: 0;
        font-family: inherit;
        padding: 0;
    }

    .kvaris-mobile-submenu {
        width: 100%;
        background: #fff;
        border-radius: 4px;
        padding: 14px 13px;
        display: none;
    }

    .kvaris-mobile-submenu.is-open {
        display: block;
    }

    .kvaris-mobile-submenu .kvaris-submenu__item {
        margin-bottom: 13px;
    }

    .kvaris-mobile-submenu .kvaris-submenu__item strong {
        font-size: 14px;
    }

    .kvaris-mobile-submenu .kvaris-submenu__item small {
        font-size: 12px;
        max-height: 30px;
    }

    .kvaris-mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding-bottom: 28px;
    }

    .kvaris-mobile-actions .kvaris-btn {
        min-width: 102px;
        height: 31px;
        font-size: 11px;
    }

    body.menu-open {
        overflow: hidden;
    }
}


.kvaris-submenu__item strong {
    display: block;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 1px;
}

.kvaris-submenu__excerpt,
.kvaris-submenu__item small {
    display: -webkit-box;
    width: 100%;
    max-width: 100%;
    max-height: 35px;
    overflow: hidden;
    color: #9f9f9f;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}


.kv-director {
    background: #efefef;
    padding: 85px 0;
}

.kv-director__inner {
    display: grid;
    grid-template-columns: 560px 1fr;
    align-items: center;
    gap: 90px;
}

.kv-director__image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.kv-director__content {
    text-align: center;
    color: #000;
}

.kv-director__content h2 {
    margin: 0;
    color: rgb(48, 71, 89);
    font-size: 42px;
    line-height: 1.23;
    font-weight: 700;
}

.kv-director__content h2 span {
    display: block;
    color: rgb(63, 210, 204);
}

.kv-director__line {
    width: 50px;
    height: 3px;
    background: #6b6b6b;
    margin: 22px auto 30px;
}

.kv-director__intro,
.kv-director__bottom {
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-director strong {
    font-weight: 700;
}

.kv-director__intro strong {
    color: rgb(63, 210, 204);
}

.kv-director__list {
    margin: 38px 0 80px;
    padding-left: 24px;
    text-align: left;
    font-size: 22px;
    line-height: 1.55;
}

.kv-director__bottom {
    text-align: center;
}

@media (max-width: 991px) {
   .kv-director {
    background: #efefef;
    padding: 0 0 55px;
}



.kv-director__image {
    background: #efefef;
    padding: 40px 10px;
}

.kv-director__image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
}

    .kv-director__inner {
        width: 100%;
        display: block;
    }

    .kv-director__image img {
        height: auto;
        max-height: 360px;
        object-fit: cover;
        object-position: center top;
    }

    .kv-director__content {
        padding: 28px 15px 0;
    }

    .kv-director__content h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .kv-director__line {
        width: 50px;
        height: 3px;
        margin: 14px auto 24px;
    }

    .kv-director__intro,
    .kv-director__list,
    .kv-director__bottom {
        font-size: 14px;
        line-height: 1.55;
    }

    .kv-director__list {
        margin: 26px 0 48px;
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
   

    .kv-director__content h2 {
        font-size: 22px;
    }

    .kv-director__bottom {
        max-width: 290px;
        margin: 0 auto;
    }
}

/* top object css */

.kv-object-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: #fff;
    background: #111;
}

.kv-object-hero__slider,
.kv-object-hero__slide,
.kv-object-hero__overlay {
    position: absolute;
    inset: 0;
}

.kv-object-hero__slide {
    opacity: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.15);
    transition: opacity 1.2s ease;
}

.kv-object-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
    animation: kvObjectHeroZoomOut 3s linear forwards;
}

@keyframes kvObjectHeroZoomOut {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1);
    }
}

.kv-object-hero__overlay {
    z-index: 3;
    background: linear-gradient(to bottom, rgb(48, 71, 89), rgba(48, 71, 89, 0.4));
}

.kv-object-hero__container {
    position: relative;
    z-index: 4;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 80px;
}

.kv-object-hero__content {
    max-width: 760px;
}

.kv-object-hero__content h1 {
    margin: 0 0 46px;
    color: #fff;
    font-size: 60px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.kv-object-hero__content h1 span {
    color: rgb(63, 210, 204);
}

.kv-object-hero__subtitle {
    margin: 0 0 42px;
    font-size: 28px;
    line-height: 1.45;
    font-weight: 400;
}

.kv-object-hero__content p {
    margin: 0 0 48px;
    font-size: 28px;
    line-height: 1.65;
    font-weight: 400;
}

.kv-object-hero__content ul,
.kv-object-hero__content ol {
    margin: 0 0 48px;
    padding-left: 22px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.kv-object-hero__content li {
    margin: 0 0 8px;
}

.kv-object-hero__content li:last-child {
    margin-bottom: 0;
}

.kv-object-hero__content strong {
    font-weight: 700;
    color: #fff;
}

.kv-object-hero__btn {
    min-width: 344px;
    min-height: 58px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 4px;
    color: #fff;
    background: rgb(63, 210, 204);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.kv-object-hero__btn:hover,
.kv-object-hero__btn:focus-visible {
    border-color: rgb(63, 210, 204);
    background: #35bdb8;
    transform: translateY(-1px);
}

.kv-object-hero__btn:focus-visible {
    outline: 3px solid rgba(63, 210, 204, 0.35);
    outline-offset: 4px;
}

.kv-object-hero__down {
    position: absolute;
    left: 50%;
    bottom: 38px;
    width: 30px;
    height: 30px;
    border: 0;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    background: transparent;
    cursor: pointer;
    transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 991px) {
    .kv-object-hero__container {
        align-items: center;
        /* padding-top: 115px;
        padding-bottom: 70px; */
    }

    .kv-object-hero__content {
        max-width: 100%;
    }

    .kv-object-hero__content h1 {
        margin-bottom: 32px;
        font-size: 40px;
        line-height: 1.2;
    }

    .kv-object-hero__subtitle {
        margin-bottom: 30px;
        font-size: 22px;
    }

    .kv-object-hero__content p {
        margin-bottom: 34px;
        font-size: 20px;
        line-height: 1.55;
    }

    .kv-object-hero__content ul,
    .kv-object-hero__content ol {
        margin-bottom: 34px;
        font-size: 18px;
        line-height: 1.5;
    }

    .kv-object-hero__btn {
        min-width: 290px;
        min-height: 54px;
        padding: 0 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
  

    .kv-object-hero__content h1 {
        font-size: 32px;
    }

    .kv-object-hero__subtitle,
    .kv-object-hero__content p {
        font-size: 25px;
    }

    .kv-object-hero__content ul,
    .kv-object-hero__content ol {
        padding-left: 18px;
        font-size: 14px;
        line-height: 1.45;
    }

    .kv-object-hero__btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        font-size: 13px;
    }

    .kv-object-hero__down {
        width: 24px;
        height: 24px;
        bottom: 28px;
    }
}

.kv-object-stats {
    padding: 30px 0 118px;
    color: #111;
    background: #fff;
}

.kv-object-stats__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 36px;
}

.kv-object-stats__item {
    min-width: 0;
    display: grid;
    justify-items: center;
    text-align: center;
}

.kv-object-stats__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
}

.kv-object-stats__icon-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.kv-object-stats__text {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

.kv-object-stats__text p {
    margin: 0;
}

.kv-object-stats__text strong {
    font-weight: 700;
}

@media (max-width: 991px) {
    .kv-object-stats {
        padding: 34px 0 78px;
    }

    .kv-object-stats__container {
        gap: 24px;
    }

    .kv-object-stats__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

    .kv-object-stats__text {
        font-size: 16px;
    }
}

@media (max-width: 680px) {
    .kv-object-stats {
        padding: 34px 0 56px;
    }

    .kv-object-stats__container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .kv-object-stats__item {
        grid-template-columns: 52px 1fr;
        justify-items: start;
        align-items: center;
        gap: 18px;
        text-align: left;
    }

    .kv-object-stats__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 0;
    }
}

.kv-object-about {
    padding: 92px 0 78px;
    color: #111;
    background: #fff;
}

.kv-object-about__title {
    margin: 0 0 42px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.kv-object-about__title span {
    color: #3fd2cc;
}

.kv-object-about__content {
    font-size: 21px;
    line-height: 1.58;
    font-weight: 400;
}

.kv-object-about__content p {
    margin: 0 0 30px;
}

.kv-object-about__content p:last-child {
    margin-bottom: 0;
}

.kv-object-about__content strong {
    font-weight: 700;
}

@media (max-width: 991px) {
     .kv-object-hero{
        min-height: 400px;
    }
    .kv-object-about {
        padding: 70px 0 60px;
    }

    .kv-object-about__title {
        margin-bottom: 32px;
        font-size: 34px;
    }

    .kv-object-about__content {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .kv-object-about {
        padding: 52px 0 46px;
    }

    .kv-object-about__title {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .kv-object-about__content {
        font-size: 17px;
        line-height: 1.55;
    }

    .kv-object-about__content p {
        margin-bottom: 22px;
    }
}

.kv-object-benefits {
    padding: 66px 0 76px;
    color: #0b0b0b;
    background: #fff;
}

.kv-object-benefits__title {
    margin: 0 0 60px;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.kv-object-benefits__title p {
    display: inline;
    margin: 0;
}

.kv-object-benefits__title span,
.kv-object-benefits__accent,
.kv-object-benefits__text span {
    color: #3fd2cc;
}

.kv-object-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(72px, 10vw, 142px);
    row-gap: 92px;
}

.kv-object-benefits__item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.kv-object-benefits__icon {
    width: 96px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.kv-object-benefits__icon-image {
    width: 100%;
    max-width: 96px;
    max-height: 96px;
    display: block;
    object-fit: contain;
}

.kv-object-benefits__text {
    max-width: 470px;
    font-size: 25px;
    line-height: 1.42;
    font-weight: 700;
    letter-spacing: 0.005em;
}

.kv-object-benefits__text p {
    margin: 0;
}

.kv-object-benefits__text p + p {
    margin-top: 10px;
}

.kv-object-benefits__text strong {
    font-weight: 700;
}

@media (max-width: 991px) {
    .kv-object-benefits {
        padding: 56px 0 62px;
    }

    .kv-object-benefits__title {
        margin-bottom: 44px;
        font-size: 32px;
    }

    .kv-object-benefits__grid {
        column-gap: 42px;
        row-gap: 56px;
    }

    .kv-object-benefits__item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 22px;
    }

    .kv-object-benefits__icon {
        width: 68px;
        min-height: 68px;
    }

    .kv-object-benefits__icon-image {
        max-width: 68px;
        max-height: 68px;
    }

    .kv-object-benefits__text {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .kv-object-benefits {
        padding: 34px 0 42px;
    }

    .kv-object-benefits__title {
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 1.2;
    }

    .kv-object-benefits__title span {
        font-size: 0.55em;
        vertical-align: baseline;
    }

    .kv-object-benefits__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kv-object-benefits__item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
    }

    .kv-object-benefits__icon {
        width: 31px;
        min-height: 31px;
        padding-top: 2px;
    }

    .kv-object-benefits__icon-image {
        max-width: 31px;
        max-height: 31px;
    }

    .kv-object-benefits__text {
        max-width: none;
        font-size: 14px;
        line-height: 1.55;
    }
}

.kv-object-inspection {
    padding: 30px 0 42px;
    background: #f1f1f1;
    color: #080808;
    overflow: hidden;
}

.kv-object-inspection__title {
    margin: 0 0 72px;
    font-size: clamp(30px, 3.1vw, 42px);
    line-height: 1.18;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.01em;
}

.kv-object-inspection__title p {
    display: inline;
    margin: 0;
}

.kv-object-inspection__slider {
    position: relative;
    width: min(100%, 860px);
    margin: 0 auto;
}

.kv-object-inspection__viewport {
    position: relative;
    aspect-ratio: 860 / 575;
    min-height: 360px;
    background: #ddd;
    overflow: visible;
    user-select: none;
    touch-action: pan-y;
}

.kv-object-inspection__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.kv-object-inspection__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.kv-object-inspection__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.kv-object-inspection__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.kv-object-inspection__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #111;
    border-right: 1.5px solid #111;
    transform-origin: center;
}

.kv-object-inspection__arrow--prev {
    left: -72px;
}

.kv-object-inspection__arrow--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.kv-object-inspection__arrow--next {
    right: -72px;
}

.kv-object-inspection__arrow--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.kv-object-inspection__arrow:hover,
.kv-object-inspection__arrow:focus-visible {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.kv-object-inspection__arrow:focus-visible,
.kv-object-inspection__dot:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: 3px;
}

.kv-object-inspection__dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
}

.kv-object-inspection__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.kv-object-inspection__dot.is-active {
    background: #3fd2cc;
    transform: scale(1.15);
}

.kv-object-inspection--static {
    padding: 28px 0 46px;
}

.kv-object-inspection--static .kv-object-inspection__title {
    margin-bottom: 72px;
}

.kv-object-inspection__single {
    width: min(100%, 860px);
    margin: 0 auto;
}

.kv-object-inspection__single-image {
    width: 100%;
    display: block;
    aspect-ratio: 860 / 646;
    object-fit: cover;
    background: #ddd;
}

.kv-object-inspection__caption {
    margin: 20px 0 0 49px;
    color: #080808;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

@media (max-width: 1120px) {
    .kv-object-inspection__slider {
        width: min(calc(100% - 96px), 860px);
    }

    .kv-object-inspection__arrow--prev {
        left: -54px;
    }

    .kv-object-inspection__arrow--next {
        right: -54px;
    }
}

@media (max-width: 767px) {
    .kv-object-inspection {
        padding: 22px 0 28px;
    }

    .kv-object-inspection__title {
        margin-bottom: 28px;
        font-size: 22px;
        line-height: 1.2;
    }

    .kv-object-inspection__slider {
        width: 100%;
    }

    .kv-object-inspection__viewport {
        min-height: 0;
        aspect-ratio: 1.36 / 1;
    }

    .kv-object-inspection__arrow {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .kv-object-inspection__arrow::before {
        width: 7px;
        height: 7px;
    }

    .kv-object-inspection__arrow--prev {
        left: 8px;
    }

    .kv-object-inspection__arrow--next {
        right: 8px;
    }

    .kv-object-inspection__dots {
        bottom: 10px;
        gap: 7px;
    }

    .kv-object-inspection__dot {
        width: 6px;
        height: 6px;
    }

    .kv-object-inspection--static {
        padding: 24px 0 34px;
    }

    .kv-object-inspection--static .kv-object-inspection__title {
        margin-bottom: 28px;
    }

    .kv-object-inspection__single {
        width: min(100%, 560px);
    }

    .kv-object-inspection__single-image {
        aspect-ratio: 1.36 / 1;
    }

    .kv-object-inspection__caption {
        margin: 14px 0 0;
        font-size: 14px;
        line-height: 1.35;
    }
}

@media (max-width: 420px) {
    .kv-object-inspection__title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .kv-object-inspection__viewport {
        aspect-ratio: 1.18 / 1;
    }
}

.kv-object-infrastructure {
    padding: 58px 0 70px;
    color: #0b0b0b;
    background: #fff;
}

.kv-object-infrastructure__container {
    max-width: 1180px;
}

.kv-object-infrastructure__title {
    margin: 0 0 34px;
    font-size: clamp(34px, 3.55vw, 48px);
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.kv-object-infrastructure__title p {
    display: inline;
    margin: 0;
}

.kv-object-infrastructure__title span,
.kv-object-infrastructure__accent,
.kv-object-infrastructure__content span {
    color: #3fd2cc;
}

.kv-object-infrastructure__content {
    max-width: 980px;
    font-size: 21px;
    line-height: 1.62;
    font-weight: 400;
}

.kv-object-infrastructure__content p {
    margin: 0 0 18px;
}

.kv-object-infrastructure__content p:last-child {
    margin-bottom: 0;
}

.kv-object-infrastructure__content ul,
.kv-object-infrastructure__content ol {
    margin: 0 0 14px;
    padding-left: 28px;
}

.kv-object-infrastructure__content li {
    margin: 0 0 2px;
    padding-left: 3px;
}

.kv-object-infrastructure__content li::marker {
    color: #0b0b0b;
    font-size: 0.9em;
}

.kv-object-infrastructure__content strong {
    font-weight: 700;
}

@media (max-width: 767px) {
    .kv-object-infrastructure {
        padding: 28px 0 34px;
    }

    .kv-object-infrastructure__title {
        margin-bottom: 24px;
        font-size: 19px;
        line-height: 1.12;
    }

    .kv-object-infrastructure__title span {
        display: inline-block;
        color: #3fd2cc;
    }

    .kv-object-infrastructure__content {
        font-size: 16px;
        line-height: 1.42;
    }

    .kv-object-infrastructure__content ul,
    .kv-object-infrastructure__content ol {
        margin-bottom: 14px;
        padding-left: 14px;
    }

    .kv-object-infrastructure__content li {
        margin-bottom: 1px;
        padding-left: 0;
    }

    .kv-object-infrastructure__content p {
        margin-bottom: 13px;
    }
}

.kv-object-investment-cta {
    padding: 38px 0;
    background: #c4dfdc;
    color: #0b0b0b;
}

.kv-object-investment-cta__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(44px, 9vw, 128px);
}

.kv-object-investment-cta__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.kv-object-investment-cta__button {
    min-width: 266px;
    min-height: 60px;
    padding: 14px 34px;
    border: 2px solid #fff;
    border-radius: 4px;
    background: #3fd2cc;
    color: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.kv-object-investment-cta__button:hover,
.kv-object-investment-cta__button:focus-visible {
    background: #2fbfba;
    transform: translateY(-1px);
}

.kv-object-investment-cta__button:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .kv-object-investment-cta {
        padding: 28px 0;
    }

    .kv-object-investment-cta__container {
        flex-direction: column;
        gap: 18px;
    }

    .kv-object-investment-cta__title {
        max-width: 320px;
        font-size: 18px;
    }

    .kv-object-investment-cta__button {
        width: min(100%, 260px);
        min-width: 0;
        min-height: 46px;
        padding: 12px 22px;
        font-size: 13px;
    }
}

.kv-object-map-info {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    min-height: 835px;
    background: #304759;
}

.kv-object-map-info__map {
    position: relative;
    min-height: 835px;
    background: #e7eef0;
    overflow: hidden;
}

#kvaris-yandex-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.kv-object-map-info__content {
    display: flex;
    align-items: center;
    min-height: 835px;
    padding: 80px clamp(34px, 5.2vw, 92px);
    color: #fff;
    background: #304759;
}

.kv-object-map-info__inner {
    max-width: 720px;
}

.kv-object-map-info__eyebrow {
    margin: 0 0 20px;
    color: #3fd2cc;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.kv-object-map-info__title {
    margin: 0 0 58px;
    color: #fff;
    font-size: clamp(34px, 3.1vw, 44px);
    line-height: 1.22;
    font-weight: 400;
}

.kv-object-map-info__text {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.kv-object-map-info__text p {
    margin: 0 0 28px;
}

.kv-object-map-info__text p:last-child {
    margin-bottom: 0;
}

.kv-object-map-info__button {
    min-width: 208px;
    min-height: 46px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 3px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.kv-object-map-info__button:hover,
.kv-object-map-info__button:focus-visible {
    color: #304759;
    background: #fff;
    border-color: #fff;
}

.kv-object-map-info__button:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .kv-object-map-info {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .kv-object-map-info__map {
        min-height: 430px;
    }

    .kv-object-map-info__content {
        min-height: 0;
        padding: 56px 24px 62px;
    }

    .kv-object-map-info__inner {
        max-width: none;
    }

    .kv-object-map-info__title {
        margin-bottom: 34px;
    }

    .kv-object-map-info__text p {
        margin-bottom: 20px;
    }
}

@media (max-width: 520px) {
    .kv-object-map-info__map {
        min-height: 310px;
    }

    .kv-object-map-info__content {
        padding: 38px 18px 44px;
    }

    .kv-object-map-info__eyebrow {
        margin-bottom: 12px;
        font-size: 29px;
    }

    .kv-object-map-info__title {
        margin-bottom: 26px;
        font-size: 28px;
    }

    .kv-object-map-info__text {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.6;
    }

    .kv-object-map-info__text p {
        margin-bottom: 16px;
    }

    .kv-object-map-info__button {
        width: 100%;
        min-height: 44px;
        font-size: 13px;
    }
}

.kv-object-question {
    padding: 32px 0 34px;
    background: #c4dfdc;
    color: #0b0b0b;
}

.kv-object-question__container {
    max-width: 1160px;
    text-align: center;
}

.kv-object-question__title {
    margin: 0 0 24px;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.kv-object-question__subtitle {
    margin: 0 0 76px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-object-question__form {
    width: 100%;
}

.kv-object-question__form br {
    display: none;
}

.kv-object-question__form p {
    margin: 0;
}

.kv-object-question-cf7 {
    display: grid;
    gap: 46px;
}

.kv-object-question-cf7__row {
    display: grid;
    grid-template-columns: minmax(320px, 440px) minmax(190px, 204px);
    justify-content: space-between;
    align-items: start;
    gap: 32px;
}

.kv-object-question-cf7__field {
    position: relative;
    display: block;
    width: 100%;
}

.kv-object-question-cf7__phone-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0b0b0b;
    font-size: 14px;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.kv-object-question-cf7__phone-prefix i {
    width: 0;
    height: 0;
    border-top: 4px solid #6b7a7a;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.kv-object-question .wpcf7-form-control-wrap {
    display: block;
}

.kv-object-question input[type="tel"],
.kv-object-question input[type="text"],
.kv-object-question input[type="email"] {
    width: 100%;
    height: 58px;
    padding: 0 18px 0 56px;
    border: 1px solid transparent;
    border-bottom-color: #111;
    border-radius: 0;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.kv-object-question input[type="tel"]::placeholder,
.kv-object-question input[type="text"]::placeholder,
.kv-object-question input[type="email"]::placeholder {
    color: rgba(17, 17, 17, 0.55);
}

.kv-object-question input[type="tel"]:focus,
.kv-object-question input[type="text"]:focus,
.kv-object-question input[type="email"]:focus {
    border-color: #3fd2cc;
    background: rgba(255, 255, 255, 0.15);
}

.kv-object-question input.wpcf7-not-valid {
    border-color: #ff5750;
}

.kv-object-question .wpcf7-submit {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border: 2px solid #fff;
    border-radius: 4px;
    background: #3fd2cc;
    color: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.kv-object-question .wpcf7-submit:hover,
.kv-object-question .wpcf7-submit:focus-visible {
    background: #2fbfba;
    transform: translateY(-1px);
}

.kv-object-question .wpcf7-submit:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

.kv-object-question .wpcf7-spinner {
    position: absolute;
    right: 8px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
}

.kv-object-question .wpcf7-form > p:last-of-type {
    position: relative;
}

.kv-object-question .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #ff5750;
    font-size: 13px;
    line-height: 1.25;
    text-align: left;
}

.kv-object-question .wpcf7-response-output {
    width: 100%;
    margin: -20px 0 4px;
    padding: 24px 20px;
    border: 0;
    background: #ff5750;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
    text-align: center;
    box-sizing: border-box;
}

.kv-object-question .wpcf7 form.sent .wpcf7-response-output {
    background: #3fd2cc;
}

.kv-object-question-cf7__policy {
    color: rgba(17, 17, 17, 0.78);
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
}

.kv-object-question-cf7__policy a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #3fd2cc;
    text-underline-offset: 4px;
}

.kv-object-question--villa {
    padding: 30px 0 34px;
}

.kv-object-question--villa .kv-object-question__title {
    margin-bottom: 46px;
    font-size: clamp(38px, 4vw, 48px);
    line-height: 1.15;
}

.kv-object-question--villa .kv-object-question__subtitle {
    max-width: 680px;
    margin: 0 auto 118px;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.45;
}

.kv-object-question--villa .kv-object-question__form {
    max-width: 940px;
    margin: 0 auto;
}

.kv-object-question--villa .kv-object-question-cf7 {
    gap: 38px;
}

.kv-object-question--villa .kv-object-question-cf7__row {
    grid-template-columns: minmax(320px, 560px) minmax(220px, 310px);
    justify-content: center;
    align-items: start;
    gap: 68px;
}

.kv-object-question--villa .kv-object-question-cf7__phone-prefix {
    display: none;
}

.kv-object-question--villa input[type="tel"],
.kv-object-question--villa input[type="text"],
.kv-object-question--villa input[type="email"] {
    height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #111;
    font-size: 18px;
}

.kv-object-question--villa input[type="tel"]::placeholder,
.kv-object-question--villa input[type="text"]::placeholder,
.kv-object-question--villa input[type="email"]::placeholder {
    color: #8a8a8a;
}

.kv-object-question--villa input[type="tel"]:focus,
.kv-object-question--villa input[type="text"]:focus,
.kv-object-question--villa input[type="email"]:focus {
    border: 0;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(63, 210, 204, 0.35);
}

.kv-object-question--villa .wpcf7-submit {
    min-height: 58px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #42d0ca;
    font-size: 16px;
}

.kv-object-question--villa .kv-object-question-cf7__policy {
    font-size: 20px;
    line-height: 1.45;
}

.kv-object-question--villa .kv-object-question-cf7__policy a {
    color: #304759;
    text-decoration-color: #304759;
}

.kv-object-question--villa .wpcf7-form > p {
    margin: 0;
}

.kv-object-question--villa .kv-object-question-form > p:has(input[type="tel"]) {
    display: grid;
    grid-template-columns: minmax(320px, 560px) minmax(220px, 310px);
    justify-content: center;
    align-items: start;
    gap: 68px;
}

.kv-object-question--villa .kv-object-question-form > p:has(input[type="tel"]) .wpcf7-form-control-wrap {
    min-width: 0;
}

.kv-object-question--villa .wpcf7-response-output {
    margin: 20px 0 0;
}

@media (max-width: 767px) {
    .kv-object-question {
        padding: 30px 0 28px;
    }

    .kv-object-question__title {
        margin-bottom: 24px;
        font-size: 18px;
    }

    .kv-object-question__subtitle {
        margin-bottom: 28px;
        font-size: 12px;
    }

    .kv-object-question-cf7 {
        gap: 20px;
    }

    .kv-object-question-cf7__row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .kv-object-question input[type="tel"],
    .kv-object-question input[type="text"],
    .kv-object-question input[type="email"] {
        height: 34px;
        padding-right: 0;
        padding-left: 42px;
        font-size: 11px;
    }

    .kv-object-question-cf7__phone-prefix {
        left: 0;
        gap: 5px;
        font-size: 11px;
    }

    .kv-object-question-cf7__phone-prefix i {
        border-top-width: 3px;
        border-right-width: 3px;
        border-left-width: 3px;
    }

    .kv-object-question .wpcf7-submit {
        min-height: 34px;
        border-width: 1px;
        font-size: 10px;
    }

    .kv-object-question .wpcf7-spinner {
        right: 8px;
    }

    .kv-object-question .wpcf7-response-output {
        margin: 0;
        padding: 14px 12px;
        font-size: 12px;
    }

    .kv-object-question .wpcf7-not-valid-tip {
        font-size: 10px;
    }

    .kv-object-question-cf7__policy {
        max-width: 235px;
        margin: 0 auto;
        font-size: 8px;
        line-height: 1.45;
    }

    .kv-object-question--villa {
        padding: 30px 0 30px;
    }

    .kv-object-question--villa .kv-object-question__title {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .kv-object-question--villa .kv-object-question__subtitle {
        max-width: 340px;
        margin-bottom: 44px;
        font-size: 20px;
        line-height: 1.45;
    }

    .kv-object-question--villa .kv-object-question-cf7 {
        gap: 22px;
    }

    .kv-object-question--villa .kv-object-question-cf7__row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kv-object-question--villa .kv-object-question-form > p:has(input[type="tel"]) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kv-object-question--villa input[type="tel"],
    .kv-object-question--villa input[type="text"],
    .kv-object-question--villa input[type="email"] {
        height: 50px;
        padding: 0 16px;
        border: 0;
        background: #fff;
        font-size: 15px;
    }

    .kv-object-question--villa .wpcf7-submit {
        min-height: 50px;
        border-width: 2px;
        font-size: 13px;
    }

    .kv-object-question--villa .kv-object-question-cf7__policy {
        max-width: 340px;
        font-size: 13px;
    }
}

.kv-object-complex-gallery {
    padding: 54px 0 52px;
    overflow: hidden;
    background: #fff;
}

.kv-object-complex-gallery__title {
    margin: 0 0 42px;
    color: #000;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.kv-object-complex-gallery__carousel {
    position: relative;
}

.kv-object-complex-gallery__track {
    position: relative;
    height: clamp(360px, 32vw, 492px);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.kv-object-complex-gallery__slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(46vw, 860px);
    height: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(-50% + (var(--gallery-offset, 0) * 56vw)));
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.kv-object-complex-gallery__slide.is-active,
.kv-object-complex-gallery__slide.is-prev,
.kv-object-complex-gallery__slide.is-next {
    visibility: visible;
    opacity: 1;
}

.kv-object-complex-gallery__slide.is-prev,
.kv-object-complex-gallery__slide.is-next {
    opacity: 0.28;
}

.kv-object-complex-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.kv-object-complex-gallery__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.kv-object-complex-gallery__arrow::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 14px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #111;
    border-left: 1px solid #111;
}

.kv-object-complex-gallery__arrow--prev {
    left: 18px;
}

.kv-object-complex-gallery__arrow--prev::before {
    transform: rotate(-45deg);
}

.kv-object-complex-gallery__arrow--next {
    right: 18px;
}

.kv-object-complex-gallery__arrow--next::before {
    left: 8px;
    transform: rotate(135deg);
}

.kv-object-complex-gallery__arrow:focus-visible,
.kv-object-complex-gallery__dot:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: 3px;
}

.kv-object-complex-gallery__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.kv-object-complex-gallery__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}

.kv-object-complex-gallery__dot.is-active {
    background: #111;
}

@media (max-width: 991px) {
    .kv-object-complex-gallery {
        padding: 44px 0 44px;
    }

    .kv-object-complex-gallery__title {
        margin-bottom: 32px;
        font-size: 34px;
    }

    .kv-object-complex-gallery__track {
        height: clamp(300px, 45vw, 430px);
    }

    .kv-object-complex-gallery__slide {
        width: min(76vw, 760px);
        transform: translateX(calc(-50% + (var(--gallery-offset, 0) * 84vw)));
    }
}

@media (max-width: 600px) {
    .kv-object-complex-gallery {
        padding: 30px 0 32px;
    }

    .kv-object-complex-gallery__title {
        width: calc(100% - 24px);
        margin: 0 auto 18px;
        font-size: 17px;
        text-align: left;
    }

    .kv-object-complex-gallery__track {
        height: 550px;
    }

    .kv-object-complex-gallery__slide {
        width: 100%;
        transform: translateX(calc(-50% + (var(--gallery-offset, 0) * 100vw)));
    }

    .kv-object-complex-gallery__slide.is-prev,
    .kv-object-complex-gallery__slide.is-next {
        opacity: 0;
    }

    .kv-object-complex-gallery__arrow {
        display: none;
    }

    .kv-object-complex-gallery__dots {
        bottom: 9px;
        gap: 7px;
    }

    .kv-object-complex-gallery__dot {
        width: 6px;
        height: 6px;
    }
}

.kv-object-gallery {
    padding: 10px 0 90px;
    background: #fff;
}

.kv-object-gallery__container {
    display: grid;
    gap: 20px;
}

.kv-object-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
}

.kv-object-gallery__grid.is-complete {
    grid-template-rows: repeat(4, clamp(160px, 24vw, 290px));
}

.kv-object-gallery__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #e9e9e9;
}

.kv-object-gallery__grid.is-complete .kv-object-gallery__item--1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.kv-object-gallery__grid.is-complete .kv-object-gallery__item--2 {
    grid-column: 2;
    grid-row: 1;
}

.kv-object-gallery__grid.is-complete .kv-object-gallery__item--3 {
    grid-column: 2;
    grid-row: 2;
}

.kv-object-gallery__grid.is-complete .kv-object-gallery__item--4 {
    grid-column: 1;
    grid-row: 3 / span 2;
}

.kv-object-gallery__grid.is-complete .kv-object-gallery__item--5 {
    grid-column: 2;
    grid-row: 3;
}

.kv-object-gallery__grid.is-complete .kv-object-gallery__item--6 {
    grid-column: 2;
    grid-row: 4;
}

.kv-object-gallery__grid.is-partial .kv-object-gallery__item {
    aspect-ratio: 16 / 10;
}

.kv-object-gallery__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 767px) {

 .kv-object-hero{
        min-height: 400px;
    }


    .kv-object-gallery {
        padding: 6px 0 60px;
    }

    .kv-object-gallery__container {
        gap: 10px;
    }

    .kv-object-gallery__grid,
    .kv-object-gallery__grid.is-complete {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 10px;
    }

    .kv-object-gallery__grid.is-complete .kv-object-gallery__item {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .kv-object-gallery__grid.is-complete .kv-object-gallery__item--1,
    .kv-object-gallery__grid.is-complete .kv-object-gallery__item--4 {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    .kv-object-gallery {
        padding-bottom: 46px;
    }
    .kv-object-hero{
        min-height: 400px;
    }
}

.kv-object-price {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background: #304556;
}

.kv-object-price__background,
.kv-object-price__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.kv-object-price__background {
    display: block;
    object-fit: cover;
    object-position: center;
}

.kv-object-price__overlay {
    background: rgba(34, 55, 71, 0.76);
}

.kv-object-price__container {
    position: relative;
    z-index: 1;
    min-height: 720px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 76px;
}

.kv-object-price__content {
    width: 100%;
    max-width: 1040px;
}

.kv-object-price__title {
    max-width: 980px;
    margin: 0 0 34px;
    font-size: 50px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.kv-object-price__title-main,
.kv-object-price__title-bottom {
    display: block;
}

.kv-object-price__title-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
}

.kv-object-price__title-accent {
    color: #3fd2cc;
}

.kv-object-price__text {
    max-width: 1020px;
    margin-bottom: 62px;
    font-size: 20px;
    line-height: 1.62;
    font-weight: 400;
}

.kv-object-price__text p {
    margin: 0 0 4px;
}

.kv-object-price__text ul,
.kv-object-price__text ol {
    margin: 0;
    padding-left: 22px;
}

.kv-object-price__text li {
    margin-bottom: 2px;
    padding-left: 2px;
}

.kv-object-price__text li:last-child {
    margin-bottom: 0;
}

.kv-object-price__text strong {
    font-weight: 700;
}

.kv-object-price__action {
    position: relative;
    width: fit-content;
}

.kv-object-price__button {
    min-width: 265px;
    min-height: 60px;
    padding: 14px 30px;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    background: rgba(31, 51, 67, 0.26);
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.kv-object-price__button:hover,
.kv-object-price__button:focus-visible {
    border-color: #3fd2cc;
    color: #173541;
    background: #3fd2cc;
}

.kv-object-price__button:focus-visible {
    outline: 3px solid rgba(63, 210, 204, 0.35);
    outline-offset: 4px;
}

.kv-object-price__arrow {
    position: absolute;
    top: -25px;
    left: calc(100% + 27px);
    width: 52px;
    height: 66px;
    overflow: visible;
    fill: none;
    stroke: #3fd2cc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991px) {
    .kv-object-price,
    .kv-object-price__container {
        min-height: 620px;
    }

    .kv-object-price__container {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .kv-object-price__content {
        max-width: 760px;
    }

    .kv-object-price__title {
        max-width: 760px;
        margin-bottom: 30px;
        font-size: 40px;
    }

    .kv-object-price__text {
        margin-bottom: 50px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .kv-object-price,
    .kv-object-price__container {
        min-height: 560px;
    }

    .kv-object-price__background {
        object-position: center;
    }

    .kv-object-price__overlay {
        background: rgba(34, 55, 71, 0.8);
    }

    .kv-object-price__container {
        width: calc(100% - 30px);
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .kv-object-price__title {
        margin-bottom: 26px;
        font-size: 30px;
        line-height: 1.16;
    }

    .kv-object-price__title-bottom {
        gap: 0 8px;
    }

    .kv-object-price__text {
        margin-bottom: 38px;
        font-size: 16px;
        line-height: 1.5;
    }

    .kv-object-price__text p {
        margin-bottom: 10px;
    }

    .kv-object-price__text ul,
    .kv-object-price__text ol {
        padding-left: 19px;
    }

    .kv-object-price__text li {
        margin-bottom: 7px;
        padding-left: 0;
    }

    .kv-object-price__button {
        min-width: 230px;
        min-height: 54px;
        padding: 12px 24px;
        font-size: 15px;
    }

    .kv-object-price__arrow {
        top: -19px;
        left: calc(100% + 12px);
        width: 40px;
        height: 54px;
    }
}

@media (max-width: 360px) {
    .kv-object-price__title {
        font-size: 27px;
    }

    .kv-object-price__text {
        font-size: 15px;
    }

    .kv-object-price__button {
        min-width: 210px;
    }

    .kv-object-price__arrow {
        display: none;
    }
}

.kv-object-faq {
    padding: 56px 0 76px;
    color: #080808;
    background: #fff;
}

.kv-object-faq__list {
    border-top: 1px solid #e7e7e7;
}

.kv-object-faq__item {
    border-bottom: 1px solid #e7e7e7;
}

.kv-object-faq__question {
    width: 100%;
    min-height: 98px;
    padding: 27px 8px 27px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 0;
    color: #080808;
    background: transparent;
    text-align: left;
    font: inherit;
    font-size: 32px;
    line-height: 1.28;
    font-weight: 600;
    cursor: pointer;
}

.kv-object-faq__question:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: -2px;
}

.kv-object-faq__question i {
    position: relative;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}

.kv-object-faq__question i::before,
.kv-object-faq__question i::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 25px;
    height: 1px;
    background: #718190;
    transition: transform 0.3s ease;
}

.kv-object-faq__question i::after {
    transform: rotate(90deg);
}

.kv-object-faq__item.is-open .kv-object-faq__question i::before {
    transform: rotate(45deg);
}

.kv-object-faq__item.is-open .kv-object-faq__question i::after {
    transform: rotate(135deg);
}

.kv-object-faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.kv-object-faq__item.is-open .kv-object-faq__answer {
    max-height: 1000px;
    opacity: 1;
}

.kv-object-faq__answer-inner {
    max-width: 1110px;
    padding: 4px 70px 38px 0;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-object-faq__answer-inner p {
    margin: 0 0 4px;
}

.kv-object-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

.kv-object-faq__answer-inner ul,
.kv-object-faq__answer-inner ol {
    margin: 8px 0 0;
    padding-left: 24px;
}

.kv-object-faq__answer-inner li {
    margin-bottom: 4px;
}

.kv-object-faq__answer-inner strong {
    font-weight: 700;
}

@media (max-width: 991px) {
    .kv-object-faq {
        padding: 48px 0 64px;
    }

    .kv-object-faq__question {
        min-height: 88px;
        padding: 24px 4px 24px 0;
        font-size: 28px;
    }

    .kv-object-faq__answer-inner {
        padding: 0 55px 34px 0;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .kv-object-faq {
        padding: 38px 0 50px;
    }

    .kv-object-faq__container {
        width: calc(100% - 30px);
    }

    .kv-object-faq__question {
        min-height: 74px;
        padding: 20px 2px 20px 0;
        gap: 18px;
        font-size: 22px;
        line-height: 1.25;
    }

    .kv-object-faq__question i {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }

    .kv-object-faq__question i::before,
    .kv-object-faq__question i::after {
        top: 10px;
        width: 21px;
    }

    .kv-object-faq__answer-inner {
        padding: 0 28px 28px 0;
        font-size: 17px;
        line-height: 1.55;
    }

    .kv-object-faq__answer-inner ul,
    .kv-object-faq__answer-inner ol {
        padding-left: 20px;
    }
}

@media (max-width: 360px) {
    .kv-object-faq__question {
        font-size: 20px;
    }

    .kv-object-faq__answer-inner {
        padding-right: 10px;
        font-size: 16px;
    }
}

.kv-object-agency {
    padding: 44px 0 74px;
    color: #0b0b0b;
    background: #fff;
}

.kv-object-agency__container {
    max-width: 1180px;
}

.kv-object-agency__title {
    margin: 0 0 30px;
    font-size: clamp(34px, 3.55vw, 42px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.kv-object-agency__title span {
    color: #3fd2cc;
}

.kv-object-agency__subtitle {
    margin: 0 0 70px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
}

.kv-object-agency__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(56px, 9vw, 118px);
    row-gap: 88px;
}

.kv-object-agency__item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.kv-object-agency__icon {
    width: 92px;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kv-object-agency__icon img {
    width: 100%;
    max-width: 92px;
    max-height: 92px;
    display: block;
    object-fit: contain;
}

.kv-object-agency__text {
    font-size: 25px;
    line-height: 1.45;
    font-weight: 700;
}

@media (max-width: 991px) {
    .kv-object-agency {
        padding: 38px 0 58px;
    }

    .kv-object-agency__subtitle {
        margin-bottom: 48px;
    }

    .kv-object-agency__grid {
        column-gap: 40px;
        row-gap: 52px;
    }

    .kv-object-agency__item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 20px;
    }

    .kv-object-agency__icon {
        width: 62px;
        min-height: 62px;
    }

    .kv-object-agency__icon img {
        max-width: 62px;
        max-height: 62px;
    }

    .kv-object-agency__text {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .kv-object-agency {
        padding: 26px 0 36px;
    }

    .kv-object-agency__title {
        margin-bottom: 26px;
        font-size: 20px;
        line-height: 1.18;
    }

    .kv-object-agency__title span {
        display: block;
    }

    .kv-object-agency__subtitle {
        margin-bottom: 28px;
        font-size: 10px;
        line-height: 1.6;
    }

    .kv-object-agency__grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .kv-object-agency__item {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 13px;
        align-items: start;
    }

    .kv-object-agency__icon {
        width: 25px;
        min-height: 25px;
        padding-top: 2px;
    }

    .kv-object-agency__icon img {
        max-width: 25px;
        max-height: 25px;
    }

    .kv-object-agency__text {
        font-size: 13px;
        line-height: 1.45;
    }
}

.kv-object-plan {
    padding: 64px 0 76px;
    color: #111;
    background: #fff;
}

.kv-object-plan__title {
    margin: 0 0 42px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.kv-object-plan__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 40px;
    align-items: start;
}

.kv-object-plan__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f7f7f7;
}

.kv-object-plan__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.kv-object-plan__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.kv-object-plan__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.kv-object-plan__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transform: translateY(-50%);
}

.kv-object-plan__arrow::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 13px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #111;
    border-left: 1px solid #111;
}

.kv-object-plan__arrow--prev {
    left: 18px;
}

.kv-object-plan__arrow--prev::before {
    transform: rotate(-45deg);
}

.kv-object-plan__arrow--next {
    right: 18px;
}

.kv-object-plan__arrow--next::before {
    left: 10px;
    transform: rotate(135deg);
}

.kv-object-plan__arrow:focus-visible,
.kv-object-plan__thumb:focus-visible,
.kv-object-plan__button:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: 3px;
}

.kv-object-plan__thumbs {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.kv-object-plan__thumb {
    width: 62px;
    height: 42px;
    flex: 0 0 auto;
    padding: 0;
    border: 2px solid transparent;
    background: #f2f2f2;
    cursor: pointer;
}

.kv-object-plan__thumb.is-active {
    border-color: #111;
}

.kv-object-plan__thumb-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.kv-object-plan__content {
    padding-top: 14px;
}

.kv-object-plan__note {
    margin: 0 0 28px;
    color: #8c8c8c;
    font-size: 18px;
    line-height: 1.4;
}

.kv-object-plan__text {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.75;
    font-weight: 400;
}

.kv-object-plan__text p {
    margin: 0 0 14px;
}

.kv-object-plan__text p:last-child {
    margin-bottom: 0;
}

.kv-object-plan__button {
    min-width: 194px;
    min-height: 40px;
    padding: 10px 22px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #3fd2cc;
    font: inherit;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.kv-object-plan__button:hover {
    background: #2dbab5;
}

@media (max-width: 991px) {
    .kv-object-plan {
        padding: 54px 0 64px;
    }

    .kv-object-plan__title {
        margin-bottom: 34px;
        font-size: 36px;
    }

    .kv-object-plan__container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kv-object-plan__content {
        padding-top: 0;
    }

    .kv-object-plan__note {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .kv-object-plan__text {
        font-size: 18px;
        line-height: 1.65;
    }
}

@media (max-width: 600px) {
    .kv-object-plan {
        padding: 36px 0 48px;
    }

    .kv-object-plan__title {
        margin-bottom: 24px;
        font-size: 26px;
    }

    .kv-object-plan__container {
        width: calc(100% - 24px);
        gap: 22px;
    }

    .kv-object-plan__stage {
        aspect-ratio: 1 / 1;
    }

    .kv-object-plan__arrow {
        width: 28px;
        height: 28px;
    }

    .kv-object-plan__arrow--prev {
        left: 8px;
    }

    .kv-object-plan__arrow--next {
        right: 8px;
    }

    .kv-object-plan__arrow::before {
        top: 9px;
        left: 11px;
        width: 8px;
        height: 8px;
    }

    .kv-object-plan__arrow--next::before {
        left: 8px;
    }

    .kv-object-plan__thumb {
        width: 45px;
        height: 32px;
    }

    .kv-object-plan__note {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .kv-object-plan__text {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.65;
    }

    .kv-object-plan__button {
        min-width: 150px;
        min-height: 34px;
        padding: 8px 15px;
        font-size: 12px;
    }
}

.kv-object-investment-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.kv-object-investment-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.kv-object-investment-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 54, 70, 0.88);
}

.kv-object-investment-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 660px);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #fff;
    color: #111;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.kv-object-investment-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}

.kv-object-investment-modal__close::before,
.kv-object-investment-modal__close::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 8px;
    width: 18px;
    height: 1px;
    background: #1b2f3c;
}

.kv-object-investment-modal__close::before {
    transform: rotate(45deg);
}

.kv-object-investment-modal__close::after {
    transform: rotate(-45deg);
}

.kv-object-investment-modal__close:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: 3px;
}

.kv-object-investment-modal__body {
    padding: 48px 45px 40px;
}

.kv-object-investment-modal__title {
    margin: 0 0 16px;
    color: #3fd2cc;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.kv-object-investment-modal__subtitle {
    margin: 0 0 42px;
    font-size: 16px;
    line-height: 1.45;
}

.kv-object-investment-modal__form br,
.kv-object-investment-modal__form p:empty {
    display: none;
}

.kv-object-investment-modal__form p {
    margin: 0;
}

.kv-object-investment-cf7 {
    display: grid;
    gap: 28px;
}

.kv-object-investment-cf7__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    align-items: start;
}

.kv-object-investment-cf7__field,
.kv-object-investment-cf7__field .wpcf7-form-control-wrap {
    display: block;
}

.kv-object-investment-cf7__field--phone {
    position: relative;
}

.kv-object-investment-cf7__phone-prefix {
    position: absolute;
    left: 8px;
    top: 23px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #111;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
}

.kv-object-investment-cf7__phone-prefix i {
    width: 0;
    height: 0;
    border-top: 4px solid #758189;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.kv-object-investment-modal__form input[type="text"],
.kv-object-investment-modal__form input[type="tel"],
.kv-object-investment-modal__form input[type="email"] {
    width: 100%;
    height: 48px;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    border-radius: 0;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 16px;
    outline: none;
}

.kv-object-investment-cf7__field--phone input[type="tel"] {
    padding-left: 68px;
}

.kv-object-investment-modal__form input::placeholder {
    color: #8e8e8e;
}

.kv-object-investment-modal__form input[type="text"]:focus,
.kv-object-investment-modal__form input[type="tel"]:focus,
.kv-object-investment-modal__form input[type="email"]:focus {
    border-bottom-color: #3fd2cc;
}

.kv-object-investment-cf7__label {
    margin: 4px 0 -14px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-object-investment-cf7__radio .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
}

.kv-object-investment-modal__form .wpcf7-list-item {
    margin: 0;
}

.kv-object-investment-modal__form .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.kv-object-investment-cf7__radio input[type="radio"] {
    width: 21px;
    height: 21px;
    margin: 0;
    accent-color: #111;
    flex: 0 0 21px;
}

.kv-object-investment-cf7__radio .wpcf7-list-item-label,
.kv-object-investment-cf7__acceptance .wpcf7-list-item-label {
    font-size: 16px;
    line-height: 1.35;
}

.kv-object-investment-cf7__acceptance .wpcf7-acceptance .wpcf7-list-item label {
    align-items: flex-start;
}

.kv-object-investment-cf7__acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    accent-color: #111;
    flex: 0 0 20px;
}

.kv-object-investment-modal__form .wpcf7-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 5px;
    background: #3fd2cc;
    color: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.kv-object-investment-modal__form .wpcf7-spinner {
    position: absolute;
    right: 12px;
    bottom: 15px;
    margin: 0;
}

.kv-object-investment-modal__form .wpcf7-submit:hover,
.kv-object-investment-modal__form .wpcf7-submit:focus-visible {
    background: #2dbab5;
}

.kv-object-investment-modal__form a {
    color: #62707a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kv-object-investment-modal__form .wpcf7-not-valid-tip {
    position: static;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.25;
}

.kv-object-investment-modal__form .wpcf7-response-output {
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
}

.kv-object-investment-modal__form .wpcf7-form > p:last-of-type {
    position: relative;
    margin: 0;
}

@media (max-width: 767px) {
    .kv-object-investment-modal {
        align-items: flex-start;
        padding: 18px 12px;
    }

    .kv-object-investment-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 36px);
    }

    .kv-object-investment-modal__body {
        padding: 38px 20px 28px;
    }

    .kv-object-investment-modal__title {
        font-size: 20px;
    }

    .kv-object-investment-modal__subtitle {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .kv-object-investment-cf7 {
        gap: 22px;
    }

    .kv-object-investment-cf7__fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .kv-object-investment-cf7__label {
        margin-bottom: -8px;
        font-size: 18px;
    }

    .kv-object-investment-cf7__radio .wpcf7-radio {
        justify-content: flex-start;
        gap: 14px 22px;
    }
}

@media (max-width: 420px) {
    .kv-object-investment-modal__body {
        padding-right: 16px;
        padding-left: 16px;
    }

    .kv-object-investment-cf7__radio .wpcf7-radio {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .kv-object-investment-modal__form .wpcf7-submit {
        min-height: 50px;
        font-size: 14px;
    }
}

.kv-object-prices-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.kv-object-prices-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.kv-object-prices-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 54, 70, 0.88);
}

.kv-object-prices-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 660px);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #fff;
    color: #111;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.kv-object-prices-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}

.kv-object-prices-modal__close::before,
.kv-object-prices-modal__close::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 8px;
    width: 18px;
    height: 1px;
    background: #1b2f3c;
}

.kv-object-prices-modal__close::before {
    transform: rotate(45deg);
}

.kv-object-prices-modal__close::after {
    transform: rotate(-45deg);
}

.kv-object-prices-modal__close:focus-visible {
    outline: 2px solid #3fd2cc;
    outline-offset: 3px;
}

.kv-object-prices-modal__image img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.kv-object-prices-modal__body {
    padding: 38px 45px 40px;
}

.kv-object-prices-modal__title {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.kv-object-prices-modal__title span {
    color: #3fd2cc;
}

.kv-object-prices-modal__subtitle {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
}

.kv-object-prices-modal__form br {
    display: none;
}

.kv-object-prices-cf7 {
    display: grid;
    gap: 26px;
}

.kv-object-prices-cf7 p {
    margin: 0;
}

.kv-object-prices-cf7__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    align-items: start;
}

.kv-object-prices-cf7__fields label,
.kv-object-prices-cf7__fields .wpcf7-form-control-wrap {
    display: block;
}

.kv-object-prices-modal__form input[type="text"],
.kv-object-prices-modal__form input[type="tel"],
.kv-object-prices-modal__form input[type="email"] {
    width: 100%;
    height: 48px;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    border-radius: 0;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.kv-object-prices-modal__form input[type="text"]::placeholder,
.kv-object-prices-modal__form input[type="tel"]::placeholder,
.kv-object-prices-modal__form input[type="email"]::placeholder {
    color: #8e8e8e;
}

.kv-object-prices-modal__form input[type="text"]:focus,
.kv-object-prices-modal__form input[type="tel"]:focus,
.kv-object-prices-modal__form input[type="email"]:focus {
    border-bottom-color: #3fd2cc;
}

.kv-object-prices-cf7__label {
    margin: 2px 0 -12px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-object-prices-cf7__radio .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 32px;
}

.kv-object-prices-modal__form .wpcf7-list-item {
    margin: 0;
}

.kv-object-prices-modal__form .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.kv-object-prices-cf7__radio input[type="radio"] {
    width: 21px;
    height: 21px;
    margin: 0;
    accent-color: #111;
    flex: 0 0 21px;
}

.kv-object-prices-cf7__radio .wpcf7-list-item-label,
.kv-object-prices-cf7__acceptance .wpcf7-list-item-label {
    font-size: 16px;
    line-height: 1.35;
}

.kv-object-prices-cf7__acceptance {
    margin-top: 2px;
}

.kv-object-prices-cf7__acceptance .wpcf7-acceptance .wpcf7-list-item label {
    align-items: flex-start;
}

.kv-object-prices-cf7__acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    accent-color: #111;
    flex: 0 0 20px;
}

.kv-object-prices-modal__form .wpcf7-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 5px;
    background: #3fd2cc;
    color: #fff;
    font: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.kv-object-prices-modal__form .wpcf7-spinner {
    position: absolute;
    right: 12px;
    bottom: 15px;
    margin: 0;
}

.kv-object-prices-modal__form .wpcf7-submit:hover,
.kv-object-prices-modal__form .wpcf7-submit:focus-visible {
    background: #2dbab5;
}

.kv-object-prices-modal__form a {
    color: #62707a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kv-object-prices-modal__form .wpcf7-not-valid-tip {
    position: static;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.25;
}

.kv-object-prices-modal__form .wpcf7-response-output {
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
}

.kv-object-prices-modal__form .wpcf7-form > p:last-of-type {
    position: relative;
    margin: 0;
}

body.kv-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .kv-object-prices-modal {
        align-items: flex-start;
        padding: 18px 12px;
    }

    .kv-object-prices-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 36px);
    }

    .kv-object-prices-modal__image img {
        height: clamp(190px, 56vw, 300px);
    }

    .kv-object-prices-modal__body {
        padding: 26px 20px 28px;
    }

    .kv-object-prices-modal__title {
        font-size: 18px;
    }

    .kv-object-prices-modal__subtitle {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .kv-object-prices-cf7 {
        gap: 22px;
    }

    .kv-object-prices-cf7__fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .kv-object-prices-cf7__label {
        margin-bottom: -8px;
        font-size: 18px;
    }

    .kv-object-prices-cf7__radio .wpcf7-radio {
        justify-content: flex-start;
        gap: 14px 22px;
    }
}

@media (max-width: 420px) {
    .kv-object-prices-modal__body {
        padding-right: 16px;
        padding-left: 16px;
    }

    .kv-object-prices-cf7__radio .wpcf7-radio {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .kv-object-prices-modal__form .wpcf7-submit {
        min-height: 50px;
        font-size: 14px;
    }
}

.kv-catalog-archive {
    padding: 114px 0 86px;
    color: #0b0b0b;
    background: #fff;
}

.kv-catalog-archive__header {
    margin-bottom: 38px;
}

.kv-catalog-archive__title {
    margin: 0 0 28px;
    font-size: clamp(34px, 3.2vw, 42px);
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.kv-catalog-archive__title span {
    color: #3fd2cc;
}

.kv-catalog-archive__subtitle {
    max-width: 1000px;
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-catalog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    justify-content: space-between;
    gap: 72px 30px;
}

.kv-catalog-card {
    width: 100%;
    max-width: 360px;
    
    display: flex;
    flex-direction: column;
    background: #fff;
}

.kv-catalog-card__image {
    width: 100%;
    height: 185px;
    position: relative;
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    background: #f1f1f1;
    text-decoration: none;
}

.kv-catalog-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kv-catalog-card__image:hover .kv-catalog-card__img {
    transform: scale(1.04);
}

.kv-catalog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3fd2cc;
    background: #eef6f5;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.kv-catalog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.kv-catalog-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.kv-catalog-card__title a {
    color: inherit;
    text-decoration: none;
}

.kv-catalog-card__title a:hover,
.kv-catalog-card__title a:focus-visible {
    color: #3fd2cc;
}

.kv-catalog-card__description {
    min-height: 22px;
    margin: 0 0 7px;
    color: #4c4c4c;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.kv-catalog-card__meta {
    margin: 0 0 6px;
    color: #222;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 400;
}

.kv-catalog-card__meta strong {
    color: #0b0b0b;
    font-weight: 700;
}

.kv-catalog-card__button {
    min-width: 100px;
    min-height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 9px 20px;
    border-radius: 4px;
    color: #fff;
    background: #3fd2cc;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.kv-catalog-card__button:hover,
.kv-catalog-card__button:focus-visible {
    background: #2dbab5;
}

.kv-catalog-archive__empty {
    margin: 0;
    font-size: 18px;
}

.kv-villa-archive-hero {
    position: relative;
    min-height: 840px;
    overflow: hidden;
    color: #fff;
    background: #304759;
}

.kv-villa-archive-hero__bg,
.kv-villa-archive-hero__overlay {
    position: absolute;
    inset: 0;
}

.kv-villa-archive-hero__bg {
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.kv-villa-archive-hero__overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(48, 71, 89, 0.88) 0%, rgba(48, 71, 89, 0.66) 45%, rgba(48, 71, 89, 0.5) 100%),
        linear-gradient(180deg, rgba(48, 71, 89, 0.72) 0%, rgba(48, 71, 89, 0.36) 52%, rgba(48, 71, 89, 0.8) 100%);
}

.kv-villa-archive-hero__container {
    position: relative;
    z-index: 3;
    min-height: 840px;
    display: flex;
    align-items: center;
    padding-top: 92px;
    padding-bottom: 70px;
}

.kv-villa-archive-hero__content {
    max-width: 850px;
}

.kv-villa-archive-hero h1 {
    max-width: 820px;
    margin: 0 0 46px;
    color: #fff;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.kv-villa-archive-hero h1 span,
.kv-villa-archive-hero strong {
    color: #42d0ca;
}

.kv-villa-archive-hero__text {
    max-width: 760px;
    margin-bottom: 54px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
}

.kv-villa-archive-hero__text p {
    margin: 0 0 8px;
}

.kv-villa-archive-hero__text ul {
    margin: 0;
    padding-left: 20px;
}

.kv-villa-archive-hero__text li {
    margin-bottom: 8px;
    padding-left: 2px;
}

.kv-villa-archive-hero__note {
    max-width: 780px;
    margin: 0 0 38px;
    font-size: 20px;
    line-height: 1.6;
}

.kv-villa-archive-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 344px);
    min-height: 60px;
    padding: 16px 28px;
    border: 2px solid #fff;
    border-radius: 5px;
    background: #42d0ca;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.kv-villa-archive-hero__btn:hover,
.kv-villa-archive-hero__btn:focus-visible {
    background: #35bdb8;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .kv-villa-archive-hero,
    .kv-villa-archive-hero__container {
        min-height: 760px;
    }

    .kv-villa-archive-hero__container {
        padding-top: 112px;
        padding-bottom: 54px;
    }

    .kv-villa-archive-hero h1 {
        max-width: 680px;
        margin-bottom: 34px;
        font-size: 42px;
    }

    .kv-villa-archive-hero__text,
    .kv-villa-archive-hero__note {
        max-width: 650px;
        font-size: 18px;
    }

    .kv-villa-archive-hero__text {
        margin-bottom: 38px;
    }
}

@media (max-width: 620px) {
    .kv-villa-archive-hero,
    .kv-villa-archive-hero__container {
        min-height: 720px;
    }

    .kv-villa-archive-hero__bg {
        background-position: center top;
    }

    .kv-villa-archive-hero__overlay {
        background:
            linear-gradient(90deg, rgba(48, 71, 89, 0.88) 0%, rgba(48, 71, 89, 0.7) 100%),
            linear-gradient(180deg, rgba(48, 71, 89, 0.58) 0%, rgba(48, 71, 89, 0.76) 100%);
    }

    .kv-villa-archive-hero__container {
        align-items: flex-start;
        padding-top: 118px;
        padding-bottom: 44px;
    }

    .kv-villa-archive-hero h1 {
        margin-bottom: 28px;
        font-size: 34px;
        line-height: 1.16;
        letter-spacing: 0;
    }

    .kv-villa-archive-hero__text {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.45;
    }

    .kv-villa-archive-hero__text ul {
        padding-left: 18px;
    }

    .kv-villa-archive-hero__text li {
        margin-bottom: 7px;
    }

    .kv-villa-archive-hero__note {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.55;
    }

    .kv-villa-archive-hero__btn {
        min-height: 54px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .kv-villa-archive-hero,
    .kv-villa-archive-hero__container {
        min-height: 680px;
    }

    .kv-villa-archive-hero h1 {
        font-size: 30px;
    }

    .kv-villa-archive-hero__text,
    .kv-villa-archive-hero__note {
        font-size: 15px;
    }
}

.kv-villa-expert {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #efefef;
}

.kv-villa-expert__container {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    align-items: center;
    gap: 78px;
}

.kv-villa-expert__image {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.kv-villa-expert__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
}

.kv-villa-expert__content {
    max-width: 610px;
    color: #111;
    text-align: center;
}

.kv-villa-expert__title {
    margin: 0;
    color: #304759;
    font-size: 40px;
    line-height: 1.32;
    font-weight: 700;
}

.kv-villa-expert__title span {
    display: block;
    color: #42d0ca;
}

.kv-villa-expert__line {
    width: 50px;
    height: 3px;
    margin: 20px auto 34px;
    background: #777;
}

.kv-villa-expert__intro {
    margin: 0 0 42px;
    font-size: 20px;
    line-height: 1.6;
}

.kv-villa-expert__intro strong {
    color: #42d0ca;
}

.kv-villa-expert__list {
    display: inline-block;
    margin: 0 0 72px;
    padding-left: 22px;
    text-align: left;
    font-size: 20px;
    line-height: 1.4;
}

.kv-villa-expert__list li {
    margin-bottom: 10px;
    padding-left: 6px;
}

.kv-villa-expert__list li:last-child {
    margin-bottom: 0;
}

.kv-villa-expert__list strong {
    font-weight: 700;
}

.kv-villa-expert__quote {
    max-width: 650px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.55;
}

@media (max-width: 1120px) {
    .kv-villa-expert__container {
        grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
        gap: 46px;
    }

    .kv-villa-expert__title {
        font-size: 36px;
    }

    .kv-villa-expert__intro,
    .kv-villa-expert__list,
    .kv-villa-expert__quote {
        font-size: 18px;
    }
}

@media (max-width: 860px) {
    .kv-villa-expert {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .kv-villa-expert__container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .kv-villa-expert__image {
        max-width: 520px;
        margin: 0 auto;
    }

    .kv-villa-expert__content {
        max-width: 620px;
        margin: 0 auto;
    }

    .kv-villa-expert__list {
        margin-bottom: 42px;
    }
}

@media (max-width: 520px) {
    .kv-villa-expert {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .kv-villa-expert__container {
        gap: 28px;
    }

    .kv-villa-expert__title {
        font-size: 30px;
        line-height: 1.22;
    }

    .kv-villa-expert__line {
        width: 42px;
        margin: 16px auto 24px;
    }

    .kv-villa-expert__intro {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.5;
    }

    .kv-villa-expert__list {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 1.45;
    }

    .kv-villa-expert__list li {
        margin-bottom: 8px;
    }

    .kv-villa-expert__quote {
        font-size: 16px;
        line-height: 1.5;
    }
}

.kv-villa-quiz {
    padding: 82px 0 92px;
    background: #fff;
}

.kv-villa-quiz__shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    max-width: 960px;
    min-height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: #eef9f1;
    box-shadow: 0 22px 48px rgba(48, 71, 89, 0.12);
}

.kv-villa-quiz__aside {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    padding: 24px 24px 30px;
}

.kv-villa-quiz__avatar {
    width: 54px;
    height: 54px;
    margin-left: 2px;
    border-radius: 4px;
    object-fit: cover;
}

.kv-villa-quiz__manager {
    position: relative;
    margin-top: 16px;
    padding: 15px 12px;
    border-radius: 4px;
    background: #e5f4e8;
}

.kv-villa-quiz__manager::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 20px;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #e5f4e8;
    border-left: 10px solid transparent;
}

.kv-villa-quiz__manager strong {
    display: block;
    margin-bottom: 4px;
    color: #111;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-villa-quiz__manager span {
    display: block;
    margin-bottom: 18px;
    color: #9b9b9b;
    font-size: 14px;
    line-height: 1.55;
}

.kv-villa-quiz__manager p {
    display: none;
    margin: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
}

.kv-villa-quiz__manager p.is-active {
    display: block;
}

.kv-villa-quiz__aside-note {
    margin: auto 0 0;
    color: #111;
    font-size: 15px;
    line-height: 1.65;
}

.kv-villa-quiz__main {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 590px;
    margin: 10px 10px 10px 0;
    padding: 76px 46px 34px;
    border-radius: 6px;
    background: #fff;
}

.kv-villa-quiz__progress {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    background: #ddfaf7;
}

.kv-villa-quiz__progress span {
    display: block;
    width: 20%;
    height: 100%;
    background: #42d0ca;
    transition: width 0.25s ease;
}

.kv-villa-quiz__step {
    display: none;
}

.kv-villa-quiz__step.is-active {
    display: block;
}

.kv-villa-quiz__step h2 {
    margin: 0 0 28px;
    color: #111;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-villa-quiz__regions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kv-villa-quiz__region,
.kv-villa-quiz__options label {
    cursor: pointer;
}

.kv-villa-quiz__region input,
.kv-villa-quiz__options input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.kv-villa-quiz__region span {
    display: block;
    color: #111;
    font-size: 15px;
    line-height: 1.25;
}

.kv-villa-quiz__region img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
    border: 2px solid transparent;
    border-radius: 4px;
    object-fit: cover;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kv-villa-quiz__region input:checked + span img {
    border-color: #42d0ca;
    box-shadow: 0 0 0 2px rgba(66, 208, 202, 0.18);
}

.kv-villa-quiz__region em {
    display: block;
    font-style: normal;
}

.kv-villa-quiz__hint {
    margin: 28px 0 0;
    color: #969696;
    font-size: 14px;
    font-style: italic;
    line-height: 1.4;
}

.kv-villa-quiz__step.has-error .kv-villa-quiz__hint {
    color: #e74d4d;
}

.kv-villa-quiz__step.has-error .kv-villa-quiz__hint::after {
    content: " Выберите минимум 1 вариант";
}

.kv-villa-quiz__step.has-error .kv-villa-quiz__options::after {
    content: "Выберите минимум 1 вариант";
    display: block;
    grid-column: 1 / -1;
    color: #e74d4d;
    font-size: 14px;
    font-style: italic;
    line-height: 1.4;
}

.kv-villa-quiz__step.has-error .kv-villa-quiz__region img,
.kv-villa-quiz__step.has-error .kv-villa-quiz__options label span {
    border-color: rgba(231, 77, 77, 0.55);
}

.kv-villa-quiz__options {
    display: grid;
    gap: 16px;
}

.kv-villa-quiz__options--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kv-villa-quiz__options--stack {
    grid-template-columns: 1fr;
}

.kv-villa-quiz__options label span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 12px 18px 12px 44px;
    border: 1px solid #d8e8dc;
    border-radius: 4px;
    color: #222;
    font-size: 16px;
    line-height: 1.25;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.kv-villa-quiz__options label span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 18px;
    height: 18px;
    border: 2px solid #7fddd9;
    transform: translateY(-50%);
}

.kv-villa-quiz__options input[type="radio"] + span::before {
    border-radius: 50%;
}

.kv-villa-quiz__options input:checked + span {
    border-color: #42d0ca;
    background: #f4fffd;
}

.kv-villa-quiz__options input:checked + span::before {
    background: radial-gradient(circle, #42d0ca 0 45%, transparent 48%);
}

.kv-villa-quiz__options input[type="checkbox"]:checked + span::before {
    background: #42d0ca;
    box-shadow: inset 0 0 0 4px #fff;
}

.kv-villa-quiz__form-text {
    max-width: 620px;
    margin: -12px 0 28px;
    color: #111;
    font-size: 17px;
    line-height: 1.65;
}

.kv-villa-quiz-cf7 {
    max-width: 586px;
}

.kv-villa-quiz-cf7 p {
    margin: 0 0 20px;
}

.kv-villa-quiz-cf7 label {
    display: block;
    color: #222;
    font-size: 16px;
    line-height: 1.4;
}

.kv-villa-quiz-cf7 .wpcf7-form-control-wrap {
    display: block;
    margin-top: 10px;
}

.kv-villa-quiz-cf7 input[type="text"],
.kv-villa-quiz-cf7 input[type="tel"],
.kv-villa-quiz-cf7 input[type="email"] {
    width: 100%;
    height: 60px;
    padding: 0 22px;
    border: 1px solid #d8e8dc;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.kv-villa-quiz-cf7 input::placeholder {
    color: #8d8d8d;
}

.kv-villa-quiz-cf7 input:focus {
    border-color: #42d0ca;
}

.kv-villa-quiz-cf7 .wpcf7-submit,
.kv-villa-quiz-cf7 .wpcf7-spinner {
    display: none;
}

.kv-villa-quiz-cf7 .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
}

.kv-villa-quiz-cf7 .wpcf7-response-output {
    margin: 14px 0 0;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 14px;
}

.kv-villa-quiz__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 28px;
}

.kv-villa-quiz__counter {
    color: #a4a4a4;
    font-size: 16px;
}

.kv-villa-quiz__counter b {
    font-weight: 400;
}

.kv-villa-quiz__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kv-villa-quiz__back,
.kv-villa-quiz__next,
.kv-villa-quiz__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.kv-villa-quiz__back {
    width: 52px;
    border: 1px solid #dfece4;
    background: #fff;
    color: #59b873;
}

.kv-villa-quiz__back:disabled {
    opacity: 0.45;
    cursor: default;
}

.kv-villa-quiz__next,
.kv-villa-quiz__submit {
    min-width: 130px;
    padding: 0 24px;
    border: 0;
    background: linear-gradient(90deg, #42d0ca 0%, #2fa04e 100%);
    color: #fff;
}

.kv-villa-quiz__submit {
    display: none;
}

.kv-villa-quiz__success {
    display: none;
}

.kv-villa-quiz.is-success .kv-villa-quiz__aside,
.kv-villa-quiz.is-success .kv-villa-quiz__progress,
.kv-villa-quiz.is-success .kv-villa-quiz__step,
.kv-villa-quiz.is-success .kv-villa-quiz__bottom {
    display: none;
}

.kv-villa-quiz.is-success .kv-villa-quiz__shell {
    display: block;
    max-width: 960px;
    min-height: 640px;
    padding: 0;
    background: #fff;
}

.kv-villa-quiz.is-success .kv-villa-quiz__main {
    min-height: 640px;
    margin: 0;
    padding: 0 45px;
    align-items: center;
    justify-content: center;
}

.kv-villa-quiz.is-success .kv-villa-quiz__success {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 870px);
    min-height: 74px;
    padding: 18px 28px;
    background: #62c782;
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 980px) {
    .kv-villa-quiz {
        padding: 58px 0 68px;
    }

    .kv-villa-quiz__shell {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .kv-villa-quiz__main {
        padding: 58px 28px 28px;
    }

    .kv-villa-quiz__regions,
    .kv-villa-quiz__options--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .kv-villa-quiz__shell {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .kv-villa-quiz__aside {
        min-height: 0;
        padding: 18px 18px 20px;
    }

    .kv-villa-quiz__manager {
        margin-bottom: 18px;
    }

    .kv-villa-quiz__aside-note {
        margin-top: 0;
    }

    .kv-villa-quiz__main {
        min-height: 560px;
        margin: 0 10px 10px;
        padding: 46px 20px 22px;
    }

    .kv-villa-quiz__step h2 {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .kv-villa-quiz {
        padding: 42px 0 54px;
    }

    .kv-villa-quiz__regions,
    .kv-villa-quiz__options--grid {
        grid-template-columns: 1fr;
    }

    .kv-villa-quiz__regions {
        gap: 14px;
    }

    .kv-villa-quiz__region span {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .kv-villa-quiz__region img {
        margin-bottom: 0;
    }

    .kv-villa-quiz__step h2 {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .kv-villa-quiz__form-text,
    .kv-villa-quiz__options label span,
    .kv-villa-quiz-cf7 label {
        font-size: 15px;
    }

    .kv-villa-quiz__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .kv-villa-quiz__actions {
        width: 100%;
    }

    .kv-villa-quiz__next,
    .kv-villa-quiz__submit {
        flex: 1;
    }

    .kv-villa-quiz.is-success .kv-villa-quiz__main {
        min-height: 420px;
        padding: 0 18px;
    }

    .kv-villa-quiz.is-success .kv-villa-quiz__success {
        min-height: 64px;
        font-size: 16px;
    }
}

.kv-villa-catalog {
    padding: 28px 0 86px;
    background: #fff;
    color: #0b0b0b;
}

.kv-villa-catalog__header {
    margin-bottom: 50px;
}

.kv-villa-catalog__title {
    margin: 0 0 42px;
    color: #42d0ca;
    font-size: clamp(34px, 3.3vw, 42px);
    line-height: 1.14;
    font-weight: 700;
}

.kv-villa-catalog__subtitle {
    max-width: 1180px;
    margin: 0;
    color: #111;
    font-size: 20px;
    line-height: 1.7;
}

.kv-villa-catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    justify-content: space-between;
    gap: 62px 38px;
}

.kv-villa-catalog .kv-catalog-card {
    max-width: 360px;
}

.kv-villa-catalog .kv-catalog-card__image {
    height: 249px;
    margin-bottom: 22px;
}

.kv-villa-catalog .kv-catalog-card__title {
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.15;
}

.kv-villa-catalog .kv-catalog-card__description {
    margin-bottom: 8px;
    color: #333;
    font-size: 20px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
}

.kv-villa-catalog .kv-catalog-card__meta {
    margin-bottom: 4px;
    color: #222;
    font-size: 19px;
    line-height: 1.35;
}

.kv-villa-catalog .kv-catalog-card__button {
    width: 132px;
    min-height: 45px;
    margin-top: 22px;
}

.kv-villa-catalog__empty {
    margin: 0;
    font-size: 18px;
}

@media (max-width: 1160px) {
    .kv-villa-catalog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 52px 24px;
    }

    .kv-villa-catalog .kv-catalog-card__image {
        height: auto;
        aspect-ratio: 360 / 249;
    }
}

@media (max-width: 900px) {
    .kv-villa-catalog {
        padding-bottom: 66px;
    }

    .kv-villa-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 360px));
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .kv-villa-catalog {
        padding: 12px 0 54px;
    }

    .kv-villa-catalog__header {
        margin-bottom: 30px;
    }

    .kv-villa-catalog__title {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .kv-villa-catalog__subtitle {
        font-size: 16px;
        line-height: 1.55;
    }

    .kv-villa-catalog__grid {
        grid-template-columns: minmax(0, 360px);
        gap: 42px;
    }

    .kv-villa-catalog .kv-catalog-card {
        max-width: none;
    }

    .kv-villa-catalog .kv-catalog-card__title {
        font-size: 22px;
    }

    .kv-villa-catalog .kv-catalog-card__description,
    .kv-villa-catalog .kv-catalog-card__meta {
        font-size: 16px;
    }

    .kv-villa-catalog .kv-catalog-card__button {
        margin-top: 16px;
    }
}

.kv-villa-director {
    padding: 56px 0 64px;
    background: #fff;
    color: #111;
}

.kv-villa-director__container {
    display: grid;
    grid-template-columns: minmax(0, 820px) 150px;
    justify-content: center;
    align-items: start;
    gap: 90px;
}

.kv-villa-director__content {
    font-size: 20px;
    line-height: 1.6;
}

.kv-villa-director__content p {
    margin: 0 0 4px;
}

.kv-villa-director__content ul {
    margin: 0;
    padding-left: 20px;
}

.kv-villa-director__content li {
    margin-bottom: 4px;
    padding-left: 2px;
}

.kv-villa-director__content li:last-child {
    margin-bottom: 0;
}

.kv-villa-director__content strong {
    font-weight: 700;
}

.kv-villa-director__person {
    margin: 0;
    padding-top: 2px;
    text-align: center;
}

.kv-villa-director__person img {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 16px;
    border-radius: 50%;
    object-fit: cover;
}

.kv-villa-director__person figcaption strong {
    display: block;
    margin-bottom: 5px;
    color: #111;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.kv-villa-director__person figcaption span {
    display: block;
    color: #6f6f6f;
    font-size: 11px;
    line-height: 1.3;
}

@media (max-width: 980px) {
    .kv-villa-director__container {
        grid-template-columns: minmax(0, 1fr) 130px;
        gap: 42px;
    }

    .kv-villa-director__content {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .kv-villa-director {
        padding: 44px 0 50px;
    }

    .kv-villa-director__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kv-villa-director__content {
        font-size: 16px;
        line-height: 1.55;
    }

    .kv-villa-director__person {
        order: -1;
        padding-top: 0;
    }
}

@media (max-width: 1180px) {
    .kv-catalog-archive__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 56px 24px;
    }
}

@media (max-width: 900px) {
    .kv-catalog-archive {
        padding: 92px 0 64px;
    }

    .kv-catalog-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 360px));
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .kv-catalog-archive {
        padding: 82px 0 48px;
    }

    .kv-catalog-archive__header {
        margin-bottom: 30px;
    }

    .kv-catalog-archive__title {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .kv-catalog-archive__subtitle {
        font-size: 15px;
    }

    .kv-catalog-archive__grid {
        grid-template-columns: minmax(0, 360px);
        gap: 42px;
    }

    .kv-catalog-card {
        max-width: none;
        min-height: 0;
    }

    .kv-catalog-card__image {
        height: auto;
        aspect-ratio: 360 / 185;
    }

    .kv-catalog-card__title {
        font-size: 21px;
    }

    .kv-catalog-card__description {
        min-height: 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .kv-catalog-card__meta {
        font-size: 16px;
    }
}

.kv-policy-page {
    padding: 120px 0 80px;
    background: #fff;
    color: #111;
}

.kv-policy-page__container {
    max-width: 1160px;
}

.kv-policy-page__title {
    margin: 0 0 36px;
    color: rgb(63, 210, 204);
    font-size: 52px;
    line-height: 1.16;
    font-weight: 700;
}

.kv-policy-page__content {
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
}

.kv-policy-page__content p,
.kv-policy-page__content ul,
.kv-policy-page__content ol {
    margin-top: 0;
    margin-bottom: 24px;
}

.kv-policy-page__content li {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .kv-policy-page {
        padding: 92px 0 54px;
    }

    .kv-policy-page__title {
        margin-bottom: 24px;
        font-size: 34px;
    }

    .kv-policy-page__content {
        font-size: 17px;
        line-height: 1.55;
    }
}

.kv-hot-button {
    position: fixed;
    right: clamp(14px, 3vw, 34px);
    bottom: clamp(14px, 3vw, 28px);
    z-index: 999;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.kv-hot-button__trigger,
.kv-hot-button__panel,
.kv-hot-button__row,
.kv-hot-button__action {
    pointer-events: auto;
}

.kv-hot-button__trigger {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.kv-hot-button__text {
    left: -24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 26px 0 14px;
    border-radius: 5px 0 0 5px;
    color: #fff;
    background: rgba(63, 210, 204, 0.94);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.kv-hot-button__text::after {
    content: "";
    position: absolute;
    top: 0;
    right: -19px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid rgba(63, 210, 204, 0.94);
}

.kv-hot-button__logo {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    margin-left: 0;
    display: grid;
    place-items: center;
    border: 2px solid #54e4df;
    border-radius: 50%;
    background: rgba(48, 71, 89, 0.92);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.kv-hot-button__logo img {
    width: 78%;
    height: 78%;
    display: block;
    object-fit: contain;
}

.kv-hot-button__panel {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.kv-hot-button.is-open .kv-hot-button__trigger {
    display: none;
}

.kv-hot-button.is-open .kv-hot-button__panel {
    display: flex;
}

.kv-hot-button__action {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kv-hot-button__action:hover,
.kv-hot-button__action:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.kv-hot-button__action:focus-visible,
.kv-hot-button__trigger:focus-visible {
    outline: 3px solid rgba(63, 210, 204, 0.55);
    outline-offset: 4px;
}

.kv-hot-button__action i {
    font-size: 27px;
    line-height: 1;
}

.kv-hot-button__action--whatsapp {
    background: #24d366;
}

.kv-hot-button__action--phone {
    background: #050505;
}

.kv-hot-button__action--telegram {
    background: #2ca4df;
}

.kv-hot-button__row {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.kv-hot-button__row .kv-hot-button__action {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.kv-hot-button__action--close {
    width: 56px;
    height: 56px;
    border: 2px solid #54e4df;
    color: #111;
    background: #fff;
}

.kv-hot-button__action--close span {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

.kv-hot-button__action--close span::before,
.kv-hot-button__action--close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 99px;
    transform-origin: center;
}

.kv-hot-button__action--close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.kv-hot-button__action--close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
    .kv-hot-button {
        right: 12px;
        bottom: 14px;
    }

    .kv-hot-button__text {
        min-height: 36px;
        padding: 0 24px 0 12px;
        font-size: 13px;
    }

    .kv-hot-button__text::after {
        right: -18px;
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-left-width: 18px;
    }

    .kv-hot-button__logo {
        width: 56px;
        height: 56px;
        border-width: 2px;
    }

    .kv-hot-button__panel {
        gap: 9px;
    }

    .kv-hot-button__action {
        width: 48px;
        height: 48px;
    }

    .kv-hot-button__action i {
        font-size: 25px;
    }

    .kv-hot-button__action--close {
        width: 54px;
        height: 54px;
        border-width: 2px;
    }

    .kv-hot-button__action--close span,
    .kv-hot-button__action--close span::before,
    .kv-hot-button__action--close span::after {
        width: 22px;
    }
}









/* thankyou  */




.kv-thanks-page {
	padding-top: 78px;
	background: #fff;
}

.kv-thanks {
	font-family: 'Tilda Sans', Arial, sans-serif;
	color: #111;
}

.kv-thanks__top {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 82px;
	align-items: start;
	padding-top: 28px;
	padding-bottom: 38px;
}

.kv-thanks__content {
	text-align: center;
}

.kv-thanks__content h1 {
	margin: 0 0 34px;
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
	color: #000;
}

.kv-thanks__intro {
	max-width: 455px;
	margin: 0 auto 78px;
	font-size: 26px;
	line-height: 1.55;
	color: #222;
}

.kv-thanks__intro span {
	color: #3fd2cc;
	font-weight: 700;
}

.kv-thanks__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 28px;
	text-align: left;
}

.kv-thanks__list li {
	position: relative;
	padding-left: 48px;
	font-size: 21px;
	line-height: 1.55;
	color: #242424;
}

.kv-thanks__list li::before {
	content: "✓";
	position: absolute;
	top: 7px;
	left: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #3fd2cc;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.kv-thanks__image {
	height: 626px;
	overflow: hidden;
}

.kv-thanks__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.kv-thanks__bottom {
	background: #f2f2f2;
	padding: 30px 0;
}

.kv-thanks__bottom-inner {
	display: grid;
	grid-template-columns: 1fr 310px;
	align-items: center;
	gap: 90px;
	max-width: 1120px;
}

.kv-thanks__bottom p {
	margin: 0;
	font-size: 24px;
	line-height: 1.55;
	color: #222;
}

.kv-thanks__bottom a {
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #42d0ca;
	border-radius: 5px;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.kv-thanks-page {
		padding-top: 62px;
	}

	.kv-thanks__top {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.kv-thanks__image {
		order: -1;
		height: auto;
		max-height: 420px;
	}

	.kv-thanks__content h1 {
		font-size: 30px;
	}

	.kv-thanks__intro {
		margin-bottom: 42px;
		font-size: 22px;
	}

	.kv-thanks__list li {
		font-size: 18px;
	}

	.kv-thanks__bottom-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}

	.kv-thanks__bottom a {
		width: 100%;
		max-width: 310px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.kv-thanks__content h1 {
		font-size: 25px;
	}

	.kv-thanks__intro {
		font-size: 18px;
	}

	.kv-thanks__list li {
		padding-left: 34px;
		font-size: 15px;
	}

	.kv-thanks__bottom p {
		font-size: 17px;
	}

	.kv-thanks__bottom a {
		min-height: 52px;
		font-size: 13px;
	}
}




