/* Design Variables from Figma */
:root {
    --color-primary: #FECC17;
    --color-primary-dark: #3D392A;
    --color-text-secondary: #A6A6A6;
    --color-bg-light: #FAFAFA;
    --color-bg-lighter: #F6F6F6;
    --color-white: #FFFFFF;
    --font-family: 'Montserrat', sans-serif;
}

/* ---------- Loader для кнопок отправки (/start/*) ---------- */
.p7-loading {
    opacity: 0.75;
    pointer-events: none;
    cursor: progress !important;
}

button.p7-loading,
input.p7-loading {
    position: relative;
    padding-right: 44px !important;
}

button.p7-loading::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(61, 57, 42, 0.25);
    border-top-color: rgba(61, 57, 42, 0.85);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: p7spin 0.7s linear infinite;
}

input.p7-loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='6.5' fill='none' stroke='rgba(61,57,42,0.25)' stroke-width='2'/%3E%3Cpath d='M8 1.5a6.5 6.5 0 0 1 6.5 6.5' fill='none' stroke='rgba(61,57,42,0.85)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    background-size: 16px 16px;
}

@keyframes p7spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--color-primary-dark);
	line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Скрытие скроллбара */
    -ms-overflow-style: none;  /* IE и Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Скрытие скроллбара для Chrome, Safari и Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Скрытие скроллбара для всех элементов */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ---------- Документные страницы (/start/opd_consent.php, /start/marketing_consent.php и т.п.) ---------- */
.doc_page {
    max-width: 1000px;
    margin: 113px auto 0;
    padding: 40px 25px 80px;
    color: var(--color-primary-dark);
    font-size: 16px;
    line-height: 1.6;
}

.doc_page h1 {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.doc_page p {
    margin: 0 0 14px;
}

.doc_page ul,
.doc_page ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.doc_page li {
    margin: 0 0 8px;
}

.doc_page a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 768px) {
    .doc_page {
        padding: 28px 16px 60px;
        font-size: 15px;
    }

    .doc_page h1 {
        font-size: 20px;
    }
}

.mobile-break {
    display: none;
}

.wrappc {
	max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    box-sizing: border-box;
}

/* Tablet breakpoint (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .wrappc {
        padding: 0 20px;
    }
}

/* Mobile breakpoint (до 768px) */
@media (max-width: 768px) {
    .wrappc {
        padding: 0 16px;
    }
}

/* Small mobile breakpoint (до 480px) */
@media (max-width: 480px) {
    .wrappc {
        padding: 0 12px;
    }
}

/* Header Styles */
.top_nav,
.top_nav.transition {
    background: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    height: 113px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible;
    min-height: 113px !important;
    max-height: 113px !important;
}

.header_new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 49px !important;
    padding: 0 25px !important;
    box-sizing: border-box;
    min-height: 49px !important;
    max-height: 49px !important;
    margin-top: 32px !important;
    margin-bottom: 32px !important;
}

/* Header responsive styles to match content width */
@media (max-width: 1024px) and (min-width: 769px) {
    .header_new {
        padding: 0 20px !important;
    }
}

@media (max-width: 768px) {
    .header_new {
        padding: 0 16px !important;
    }
}

/* Cookie Alert (migrated from old styles) */
.cookie_alert {
    width: auto;
    height: auto;
    position: fixed;
    right: 24px;
    bottom: -300px;
    z-index: 99;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}

.cookie_alert .wrap_alert {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #F6F6F6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cookie_alert .cookie_icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.cookie_alert .cookie_icon_img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.cookie_alert .mess_alert {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    width: 366px;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.cookie_alert a {
    color: #A6A6A6;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.cookie_alert a::after { content: none; }

.cookie_alert .cookie_buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie_alert .kn_ok_alert {
    color: #3D392A;
    background-color: #F6F6F6;
    padding: 12px 16px;
    height: 44px;
    cursor: pointer;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    border: none;
}

.cookie_alert .kn_ok_alert:hover {
    background-color: #E8E8E8;
}

.cookie_alert .cookie_close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 12px;
    background-color: #F6F6F6;
    transition: background-color 0.2s;
    flex-shrink: 0;
    border: none;
    box-sizing: border-box;
}

.cookie_alert .cookie_close:hover {
    background-color: #E8E8E8;
}

@media (max-width: 768px) {
    .cookie_alert {
        width: calc(100% - 48px);
        left: 24px;
        right: 24px;
    }

    .cookie_alert .wrap_alert {
        flex-wrap: wrap;
        padding: 16px;
        justify-content: flex-start;
    }

    .cookie_alert .cookie_icon {
        order: 1;
    }

    .cookie_alert .mess_alert {
        order: 2;
        width: 100%;
        max-width: 366px;
        margin-bottom: 12px;
    }

    .cookie_alert .cookie_buttons {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 455px) {
    .cookie_alert .wrap_alert {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .cookie_alert .cookie_icon {
        align-self: flex-start;
    }

    .cookie_alert .mess_alert {
        text-align: left;
        margin-bottom: 12px;
        width: 100%;
        max-width: 100%;
    }

    .cookie_alert .cookie_buttons {
        width: 100%;
        justify-content: space-between;
    }
}

.header_left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header_logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header_logo_icon {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header_logo_icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.header_logo_text {
    width: 80.098px;
    height: 24.362px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header_logo_text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header_logo_link {
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.header_nav {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--color-bg-light);
    padding: 4px;
    border-radius: 12px;
    position: relative;
}

.header_nav.p7-nav-init .nav_indicator,
.header_nav.p7-nav-init .nav_item {
    transition: none !important;
}

.nav_indicator {
    position: absolute;
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.nav_item {
    padding: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-primary-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: font-weight 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.nav_item_active {
    font-weight: 600;
}

.nav_item:hover {
    font-weight: 600;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header_phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-primary-dark);
}

.header_phone img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header_buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn_header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    height: 44px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn_header_primary {
    background: var(--color-primary);
    color: var(--color-primary-dark);
    border: none;
}

.btn_header_primary:hover {
    opacity: 0.9;
}

.btn_header_secondary {
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary-dark);
    box-sizing: border-box;
}

.btn_header_secondary:hover {
    background: var(--color-primary);
}

/* Mobile Menu */
.menu-btn {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.menu-icon {
    display: none;
}

/* Mobile Menu - hidden by default */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 57, 42, 0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #FFFFFF;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #FFFFFF;
    border-bottom: 1px solid #F0F0F0;
    flex-shrink: 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-menu-logo img:first-child {
    width: 32px;
    height: 32px;
}

.mobile-menu-logo img:last-child {
    width: 65px;
    height: auto;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    background: #F5F5F5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    background: #E8E8E8;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    flex: 1;
    overflow-y: auto;
    gap: 0;
}

.mobile-menu-item {
    display: block;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
    color: #3D392A;
    text-decoration: none;
    border-bottom: 1px solid #F0F0F0;
    transition: color 0.2s ease;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    color: #FFC700;
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FAFAFA;
    flex-shrink: 0;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #3D392A;
    text-decoration: none;
}

.mobile-menu-phone img {
    width: 20px;
    height: 20px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-btn {
    display: block;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu-btn-primary {
    background: #FFC700;
    color: #3D392A;
    border: none;
}

.mobile-menu-btn-primary:hover {
    background: #E6B400;
}

.mobile-menu-btn-secondary {
    background: #FFFFFF;
    border: 2px solid #FFC700;
    color: #3D392A;
}

.mobile-menu-btn-secondary:hover {
    background: #FFF8E0;
}

/* Hero Section */
.hero_section {
    padding: 0;
    padding-top: 133px;
    background: var(--color-white);
    margin-bottom: 140px;
    position: relative;
    z-index: 1;
}

.hero_container {
    display: grid;
    grid-template-columns: 635px 596px;
    grid-template-rows: auto auto;
    column-gap: 40px;
    row-gap: 0;
    align-items: start;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 0;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

@media (max-width: 1400px) {
    .hero_container {
        grid-template-columns: minmax(0, 635px) minmax(0, 596px);
    }
}

.hero_content {
    grid-column: 1;
    grid-row: 1;
    flex: 0 0 auto;
    width: 635px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    z-index: 2;
}

.hero_integrations {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 36px;
}

.hero_image {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: start;
    justify-self: end;
    flex: 0 0 auto;
    width: 596px;
    position: relative;
    height: 435px;
    margin-left: auto;
    flex-shrink: 0;
    overflow: visible;
}

/* Мобильное изображение - скрыто на десктопе */
.hero_image_mobile {
    display: none;
}


.hero_title {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary-dark);
    position: relative;
    margin: 0 0 36px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero_title br {
    display: block;
    content: "";
    margin-bottom: 0;
}

.hero_title_highlight {
    position: relative;
    display: inline-block;
}

.hero_title_wave {
    position: absolute;
    width: 184px;
    height: 67px;
    left: 306px;
    top: 42px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.hero_integrations {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 585px;
    max-width: 100%;
}

.integrations_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: #3d392a;
    margin: 0;
    width: 100%;
}

.integrations_grid {
    background: var(--color-white);
    border: 1px solid #f6f6f6;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.integrations_row {
    display: flex;
    align-items: center;
    width: 100%;
}

.integrations_item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 57px;
    padding: 0 18px;
    min-width: 0;
    min-height: 57px;
    box-sizing: border-box;
}

.integrations_item img {
    max-width: 100%;
    max-height: 50%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(100%);
}

.integrations_img_opacity_70 {
    opacity: 0.7 !important;
    filter: grayscale(100%);
}

.integrations_img_opacity_98 {
    opacity: 0.98 !important;
    filter: grayscale(100%);
}

.integrations_img_yandex_realty {
    width: auto !important;
    height: 16px !important;
    margin-bottom: 6px;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}

.integrations_divider {
    height: 0;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.integrations_divider_inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: -1px;
}

.integrations_divider img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}


.hero_image_bg {
    position: absolute;
    left: 71px;
    top: 31px;
    width: 464px;
    height: 404px;
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    z-index: 1;
    max-width: calc(100% - 142px);
}

.hero_image_content {
    position: absolute;
    right: 61px;
    bottom: 0;
    width: 440px;
    height: 369px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    z-index: 2;
}

.hero_image_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_floor_selector {
    position: absolute;
    left: -40px;
    top: -22px;
    background: var(--color-white);
    padding: 12px;
    border-radius: 7px;
    box-shadow: 0px 10px 35px -10px rgba(172, 171, 163, 0.4);
    min-width: 258px;
    max-width: calc(100% - 12px);
    z-index: 4;
}

.floor_selector_title {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    line-height: normal;
}

.floor_selector_buttons {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
}

.floor_btn {
    width: 39px;
    padding: 10px 4px;
    border: none;
    border-radius: 12px;
    background: transparent;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floor_btn.active {
    background: var(--color-white);
    border: 1px solid var(--color-bg-lighter);
    color: var(--color-primary-dark);
}

.floor_selector_date {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: normal;
}

.hero_apartment_card {
    position: absolute;
    right: 6px;
    top: 183.5px;
    width: 204px;
    max-width: calc(100% - 12px);
    background: var(--color-white);
    border: 1px solid #F6F6F6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 35px -10px rgba(172, 171, 163, 0.4);
    z-index: 4;
}

.apartment_card_inner {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.apartment_image {
    width: 101.198px;
    height: 172.188px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.apartment_image img {
    position: absolute;
    height: 100%;
    left: -6.05%;
    max-width: none;
    top: 0;
    width: 115.08%;
    object-fit: cover;
}

.apartment_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: flex-start;
}

.apartment_info_main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: flex-start;
    position: relative;
    flex-shrink: 0;
}

.apartment_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-primary-dark);
    width: 100%;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.apartment_number,
.apartment_id {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-primary-dark);
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.apartment_promo {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    line-height: 0;
    position: relative;
    flex-shrink: 0;
}

.apartment_promo_bg {
    grid-area: 1 / 1;
    height: 18px;
    width: 153px;
    margin: 0;
    position: relative;
}

.apartment_promo_bg img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0.66%;
    top: 0;
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.apartment_promo_text {
    grid-area: 1 / 1;
    font-family: var(--font-family);
    font-size: 8px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-primary-dark);
    margin-left: 12px;
    margin-top: 3.81px;
    position: relative;
    white-space: nowrap;
}

.apartment_price {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-primary-dark);
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.apartment_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: normal;
    width: 100%;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.apartment_area {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.apartment_price_per_meter {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.apartment_status {
    background: #FAFAFA;
    padding: 4px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
}

.apartment_status span {
    font-family: var(--font-family);
    font-size: 10px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-text-secondary);
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.hero_floor_badge {
    position: absolute;
    right: 184px;
    top: 3px;
    width: 50px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero_floor_badge img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero_floor_badge span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    line-height: normal;
    text-align: center;
    padding-bottom: 10px;
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero_container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero_content {
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        grid-row: auto;
    }
    
    .hero_integrations {
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        grid-row: auto;
        order: 3;
    }
    
    .hero_image {
        width: 100%;
        max-width: 596px;
        margin: 0 auto;
        height: 435px;
        position: relative;
        grid-column: auto;
        grid-row: auto;
        order: 2;
    }
    
    .hero_image_bg {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 464px;
        height: auto;
        min-height: 300px;
    }
    
    .hero_image_content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-40%, -50%);
        width: 75%;
        max-width: 440px;
        height: auto;
        min-height: 280px;
    }
    
    .hero_floor_selector {
        position: absolute;
        left: 10px;
        top: 10px;
        margin: 0;
        width: auto;
        max-width: 258px;
    }
    
    .hero_apartment_card {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        width: auto;
        max-width: 204px;
        left: auto;
    }
    
    .hero_floor_badge {
        position: absolute;
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        margin: 0;
    }
    
    .header_nav {
        display: none;
    }
    
    .menu-icon.mmenu {
        display: block !important;
    }
    
    .menu-icon {
        display: block;
    }
    
    /* Show mobile menu on tablets/mobile */
    .mobile-menu {
        display: block;
    }
    
    /* Burger Icon Animation */
    .menu-icon.active .navicon,
    #menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }
    
    .menu-icon.active .navicon::before,
    #menu-btn:checked ~ .menu-icon .navicon::before {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .menu-icon.active .navicon::after,
    #menu-btn:checked ~ .menu-icon .navicon::after {
        transform: rotate(45deg);
        bottom: 0;
    }
}

/* Suitable For Section */
.suitable_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.suitable_header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metrics_label {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary-dark);
}

.section_title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary-dark);
    margin: 0 0 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section_title_free {
    width: 453px !important;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .section_title_free {
        width: 100% !important;
    }
}

.section_title_decor {
    width: 99px;
    height: 17px;
    margin-top: 30px;
    position: absolute;
    z-index: -1;
}

.section_title_decor_free {
    width: 255px;
    height: 60px;
    margin-top: 50px;
    position: absolute;
    left: 8px;
    z-index: -1;
    transform: rotate(6deg);
}

.suitable_tabs {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    width: 100%;
}

.tab_item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-bg-lighter);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 193.333px;
    justify-content: flex-start;
    flex-shrink: 0;
}

.tab_item_active {
    background: var(--color-primary);
    font-weight: 600;
    border-color: var(--color-primary);
}

.tab_icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab_icon svg {
    width: 100%;
    height: 100%;
}

.suitable_cards {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    overflow-x: auto;
    overflow-y: visible;
    padding: 30px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.suitable_cards::-webkit-scrollbar {
    display: none;
}

.suitable_cards {
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: none;    /* Firefox */
}

.suitable_card {
    flex: 0 0 390px;
    min-width: 390px;
    height: 580px;
    background: var(--color-bg-lighter);
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Эффект при наведении курсора */
.suitable_card:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1;
    background: #F6F6F6 !important;
}

.suitable_card:hover .card_decorative {
    overflow: visible;
}

.suitable_card_active {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1;
    background: #F6F6F6 !important;
}

.suitable_card_active .card_decorative {
    overflow: visible;
}

.suitable_card_inactive {
    opacity: 0.95;
}

.suitable_card:first-child .card_content {
    position: relative;
    z-index: 2;
}

.card_decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}


.suitable_card .card_decor_ellipse {
    position: absolute;
    width: 262px;
    height: 294px;
    left: 164px;
    top: -8px;
    z-index: 0;
    overflow: visible;
}

.suitable_card .card_decor_ellipse_wrap {
    position: absolute;
    inset: -55.78% -62.6%;
}

.suitable_card .card_decor_ellipse_img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
}

.suitable_card:first-child .card_decor_ellipse9,
.suitable_card:first-child .card_decor_ellipse10,
.suitable_card:first-child .card_decor_ellipse11 {
    z-index: 0;
}

/* Плашка 1: Интерактивный каталог - дуги с обертками */
.suitable_card:first-child .card_decor_ellipse9_wrap {
    position: absolute;
    width: 294px;
    height: 179px;
    left: 95px;
    top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.suitable_card:first-child .card_decor_ellipse9_wrap img {
    width: 276px;
    height: 138px;
    transform: rotate(8.966deg);
    display: block;
}

.suitable_card:first-child .card_decor_ellipse10_wrap {
    position: absolute;
    width: 213px;
    height: 119px;
    left: 106px;
    top: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.suitable_card:first-child .card_decor_ellipse10_wrap img {
    width: 206px;
    height: 103px;
    transform: rotate(355.583deg);
    display: block;
}

.suitable_card:first-child .card_decor_ellipse11 {
    position: absolute;
    width: 146px;
    height: 73px;
    left: 140px;
    top: 207px;
    z-index: 0;
    display: block;
}
.suitable_card:first-child .card_decor_ellipse11 img {
    width: 100%;
    height: 100%;
    display: block;
}

.suitable_card:nth-child(2) .card_decor_ellipse img,
.suitable_card:nth-child(3) .card_decor_ellipse img,
.suitable_card:nth-child(4) .card_decor_ellipse img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Плашка 2: Экономия ресурса - полигоны с обертками */
.card_decor_polygon3_wrap {
    position: absolute;
    width: 157px;
    height: 157px;
    left: 19px;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.card_decor_polygon3_wrap img {
    width: 136px;
    height: 157px;
    transform: rotate(270deg);
    display: block;
}

.card_decor_polygon1_wrap {
    position: absolute;
    width: 176px;
    height: 182px;
    left: 118px;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.card_decor_polygon1_wrap img {
    width: 182px;
    height: 176px;
    transform: rotate(270deg);
    display: block;
}

.card_decor_polygon2_wrap {
    position: absolute;
    width: 114px;
    height: 118px;
    left: 237px;
    top: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.card_decor_polygon2_wrap img {
    width: 118px;
    height: 114px;
    transform: rotate(270deg);
    display: block;
}

.card_decor_polygon2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.suitable_card:nth-child(3) .card_decor_ellipse {
    position: absolute;
    width: 230px;
    height: 256px;
    left: 121px;
    top: 77px;
    opacity: 1;
    z-index: 1;
}


/* Плашка 3: Интеграция с CRM */
.card_decor_ellipse12 {
    position: absolute;
    width: 298px;
    height: 149px;
    left: 71px;
    top: 65px;
    z-index: 1;
}
.card_decor_ellipse12 img {
    width: 100%;
    height: 100%;
    display: block;
}

.card_decor_ellipse13_wrap {
    position: absolute;
    width: 204px;
    height: 102px;
    left: 118px;
    top: 187px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.card_decor_ellipse13_wrap img {
    width: 204px;
    height: 102px;
    transform: scaleY(-1);
    display: block;
}

.suitable_card:nth-child(4) .card_decor_ellipse {
    position: absolute;
    width: 230px;
    height: 256px;
    left: 121px;
    top: 77px;
    opacity: 1;
    z-index: 1;
}

/* Плашка 4: Гибкость - вертикальные дуги */
.card_decor_vector1 {
    position: absolute;
    width: 57px;
    height: 169px;
    left: 310px;
    top: 119px;
    z-index: 1;
}
.card_decor_vector1 img {
    width: 100%;
    height: 100%;
    display: block;
}

.card_decor_vector2 {
    position: absolute;
    width: 57px;
    height: 169px;
    left: 208px;
    top: 119px;
    z-index: 1;
}
.card_decor_vector2 img {
    width: 100%;
    height: 100%;
    display: block;
}

.card_decor_vector3 {
    position: absolute;
    width: 57px;
    height: 169px;
    left: 259px;
    top: 119px;
    z-index: 1;
}
.card_decor_vector3 img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Плашка 5: Дуги/арки (маркетинг) - с обертками */
.suitable_card_marketing .card_decor_vector_wrap_1 {
    position: absolute;
    width: 176px;
    height: 86px;
    left: 112px;
    top: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card_marketing .card_decor_vector_wrap_1 img {
    width: 57px;
    height: 169px;
    transform: rotate(259.93deg);
    display: block;
}

.suitable_card_marketing .card_decor_vector_wrap_2 {
    position: absolute;
    width: 177px;
    height: 126px;
    left: 4px;
    top: 183px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card_marketing .card_decor_vector_wrap_2 img {
    width: 57px;
    height: 169px;
    transform: rotate(296.14deg);
    display: block;
}

.suitable_card_marketing .card_decor_vector_wrap_3 {
    position: absolute;
    width: 178px;
    height: 117px;
    left: 235px;
    top: 183px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card_marketing .card_decor_vector_wrap_3 img {
    width: 57px;
    height: 169px;
    transform: rotate(247.432deg);
    display: block;
}

/* Плашка 6: Горизонтальные полигоны (агрегаторы) - шестиугольники */
.suitable_card_aggregators .card_decor_polygon_h1 {
    position: absolute;
    width: 157px;
    height: 157px;
    left: -1px;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card_aggregators .card_decor_polygon_h1 img {
    width: 136px;
    height: 157px;
    transform: rotate(270deg);
    display: block;
}

.suitable_card_aggregators .card_decor_polygon_h2 {
    position: absolute;
    width: 157px;
    height: 157px;
    left: 105px;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card_aggregators .card_decor_polygon_h2 img {
    width: 136px;
    height: 157px;
    transform: rotate(270deg);
    display: block;
}

.suitable_card_aggregators .card_decor_polygon_h3 {
    position: absolute;
    width: 157px;
    height: 157px;
    left: 212px;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suitable_card_aggregators .card_decor_polygon_h3 img {
    width: 136px;
    height: 157px;
    transform: rotate(270deg);
    display: block;
}

/* Плашка 7: Прямоугольники (аналитика) */
.suitable_card_analytics .card_decor_rect1 {
    position: absolute;
    width: 130px;
    height: 130px;
    left: -10px;
    top: 167px;
    opacity: 0.78;
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.30) 100%);
    border: 2px white solid;
}

.suitable_card_analytics .card_decor_rect2 {
    position: absolute;
    width: 130px;
    height: 130px;
    left: 154px;
    top: 106px;
    opacity: 0.78;
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.30) 100%);
    border: 2px white solid;
}

.suitable_card_analytics .card_decor_rect3 {
    position: absolute;
    width: 130px;
    height: 130px;
    left: 259px;
    top: 179px;
    opacity: 0.78;
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.30) 100%);
    border: 2px white solid;
}

/* Плашка 8: Диагональные полигоны (продажи) */
.suitable_card_sales .card_decor_sales_wrap_1 {
    position: absolute;
    width: 230px;
    height: 234px;
    left: -48px;
    top: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suitable_card_sales .card_decor_sales_wrap_2 {
    position: absolute;
    width: 230px;
    height: 234px;
    left: 57px;
    top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suitable_card_sales .card_decor_sales_wrap_3 {
    position: absolute;
    width: 230px;
    height: 234px;
    left: 200px;
    top: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suitable_card_sales .card_decor_sales_wrap_1 img,
.suitable_card_sales .card_decor_sales_wrap_2 img,
.suitable_card_sales .card_decor_sales_wrap_3 img {
    width: 182px;
    height: 176px;
    transform: rotate(68.523deg);
    display: block;
}

.card_content {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.card_content_top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card_title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: normal;
    width: 270px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.suitable_card:nth-child(2) .card_title,
.suitable_card:nth-child(4) .card_title {
    width: 350px;
}

.card_price {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    margin: 0;
    box-sizing: border-box;
}

.suitable_card:first-child .card_price {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.card_features {
    position: absolute;
    left: 20px;
    top: 310px;
    right: 20px;
    width: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    box-sizing: border-box;
    height: 250px;
}

.card_features > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
}

.card_features p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-dark);
    line-height: 1.3;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.card_features .card_button {
    margin-top: auto;
}

.card_features p strong {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Плашка 6: Агрегаторы - особые стили (без исключений по позиционированию — кнопки должны быть на одном уровне) */
.suitable_card_aggregators .card_features > div:first-child {
    gap: 2px !important;
}

/* Список агрегаторов */
.aggregators_list {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

.aggregators_list p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-dark);
    line-height: 1.3;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.crm_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    margin: 0;
}

.crm_badge {
    background: var(--color-primary);
    padding: 4px 8px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    box-sizing: border-box;
    line-height: 1;
    vertical-align: middle;
}

.crm_badge img {
    height: auto;
    max-height: 14px;
    width: auto;
    max-width: 51px;
    object-fit: contain;
}

.crm_item:first-child .crm_badge img {
    max-height: 10px;
}

.crm_item:nth-child(2) .crm_badge img {
    max-height: 27px;
}

.card_button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 0;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-decoration: none;
    width: auto;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.card_button span {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card_button span::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--color-primary-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card_button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: none;
}

/* Показать стрелочку и подчёркивание для активной карточки или при наведении */
.suitable_card_active .card_button span::after,
.suitable_card:hover .card_button span::after {
    transform: scaleX(1);
}

.suitable_card_active .card_button svg,
.suitable_card:hover .card_button svg {
    display: block !important;
}

/* Сменить цвет кнопки на активный при hover или активном состоянии */
.suitable_card_active .card_button,
.suitable_card:hover .card_button {
    color: var(--color-primary-dark) !important;
}

/* Стили для неактивных карточек (без hover) */
.suitable_card:not(:hover):not(.suitable_card_active) .card_button {
    color: var(--color-text-secondary);
}

.suitable_card:not(:hover):not(.suitable_card_active) .card_button span::after {
    transform: scaleX(0);
}

.suitable_card:not(:hover):not(.suitable_card_active) .card_button svg {
    display: none;
}

.card_button:hover {
    opacity: 0.8;
}

.suitable_nav {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 10px;
}

.nav_arrow {
    width: 52px;
    height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav_arrow:hover {
    background: var(--color-primary);
}

/* Management Section */
.management_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.section_title_large {
    font-size: 38px;
    font-weight: 800;
    line-height: normal;
    color: var(--color-primary-dark);
    margin-bottom: 40px;
    width: 590px;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1024px) {
    .section_title_large {
        width: 100%;
    }
}

.management_content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.management_image {
    flex: 0 0 630px;
    position: relative;
    order: 1;
    width: 630px;
    max-width: 100%;
}

.management_list {
    flex: 0 0 575px;
    display: flex;
    flex-direction: column;
    order: 2;
    width: 575px;
    max-width: 100%;
    height: 489px;
}

@media (max-width: 1024px) {
    .management_image {
        flex: 1;
        width: 100%;
    }
    
    .management_list {
        flex: 1;
        width: 100%;
    }
}

.management_image_bg {
    width: 100%;
    height: 489px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--color-primary);
    position: relative;
}

.management_decor_polygon1 {
    position: absolute;
    left: -69px;
    top: 89px;
    width: 277.564px;
    height: 269.042px;
    transform: rotate(315deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.management_decor_polygon1 img {
    width: 79%;
    height: 100%;
    display: block;
    padding-top: 67px;
    opacity: 0.7;
}

.management_decor_polygon2 {
    position: absolute;
    left: 42.04px;
    top: 200.05px;
    width: 180.173px;
    height: 174.086px;
    transform: rotate(315deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.management_decor_polygon2 img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.7;
}

.management_main_image {
    position: absolute;
    left: 199px;
    top: 79px;
    width: 437px;
    height: 493px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.management_image_overlay {
    position: absolute;
    top: 153px;
    left: 302px;
    width: 328px;
    height: 92px;
    overflow: clip;
}

.management_image_overlay img {
    width: 321.221px;
    height: 84.835px;
    position: absolute;
    left: 10.43px;
    top: 3.66px;
    mix-blend-mode: hard-light;
}

.management_building_info {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 258px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.building_badge {
    border: 1px solid var(--color-primary-dark);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    width: fit-content;
    box-sizing: border-box;
    white-space: pre;
}

.building_title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: normal;
    width: min-content;
    min-width: 100%;
}

.management_house_info {
    position: absolute;
    left: 430px;
    top: 29px;
    width: 173px;
    background: var(--color-white);
    padding: 8px;
    border-radius: 7px;
    box-shadow: 0px 10px 35px -10px rgba(172, 171, 163, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.house_title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    line-height: normal;
    width: 100%;
    margin: 0;
}

.house_divider {
    height: 0;
    width: 100%;
    position: relative;
    margin: 0;
}

.house_divider img {
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: -1px;
}

.house_apartments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 38px;
}

.house_apt_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: normal;
    white-space: pre;
    width: 100%;
}

.house_apt_item span:first-child {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.house_apt_item span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.management_item {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 0;
    min-height: 0;
}

.management_item:first-child {
    padding-top: 0;
}

.management_item_title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: normal;
    margin: 0;
    width: min-content;
    min-width: 100%;
}

.management_item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: normal;
    width: 534px;
    margin: 0;
}

.management_item_accent {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.management_divider {
    height: 1px;
    margin: 0;
    flex-shrink: 0;
}

.management_divider img {
    width: 100%;
    height: 1px;
}

.management_button {
    position: absolute;
    left: 20px;
    top: 405px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-white);
    padding: 12px 16px;
    border-radius: 12px;
    width: 590px;
    height: 64px;
    text-decoration: none;
    box-shadow: 0px 10px 35px -10px rgba(172, 171, 163, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
    box-sizing: border-box;
}

.management_button span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: normal;
    white-space: pre;
}

.management_button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    overflow: clip;
}

.management_button svg path {
    stroke: var(--color-primary-dark);
}

.management_button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 40px -10px rgba(172, 171, 163, 0.5);
}

/* Features Section */
.features_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.features_grid {
    display: grid;
    grid-template-columns: 608px 607px;
    gap: 10px;
    margin-top: 40px;
}

.features_left,
.features_right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature_card {
    background: var(--color-bg-lighter);
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 0;
    padding-right: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature_card:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1;
    background: #F6F6F6 !important;
}

.feature_card_large {
    height: 438px;
    width: 608px;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
}

.feature_card_medium {
    height: 276px;
    width: 607px;
    position: relative;
}

.feature_card:not(.feature_card_large):not(.feature_card_medium):not(.feature_card_large_bg) {
    height: auto;
    width: 608px;
    padding-bottom: 20px;
}

.feature_card_integrations {
    height: 282px;
    width: 608px;
    position: relative;
    padding-right: 20px;
}

.features_right .feature_card:not(.feature_card_medium):not(.feature_card_large_bg) {
    width: 607px;
}

.feature_card_large_bg {
    background: var(--color-bg-lighter);
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 607px;
}

.feature_card_large_bg .feature_card_title {
    position: absolute;
    z-index: 2;
    width: 385px;
    left: 20px;
    top: 20px;
    line-height: normal;
}

.feature_card_large_bg p {
    position: absolute;
    z-index: 2;
    width: 385px;
    left: 20px;
    top: 85px;
    line-height: normal;
}

.feature_card_title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: normal;
    margin: 0;
}

.feature_card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
	line-height: 1.3;
    padding-bottom: 23px;
}

.feature_card_image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-top: auto;
    position: relative;
}

.feature_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature_card_large .feature_card_image img {
    width: 222%;
    height: auto;
    position: relative;
    top: -594px;
    left: -321px;
}

.feature_card_large .feature_card_image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 608px;
    height: 267px;
    border-radius: 0 0 9px 9px;
}

.feature_card_large_text {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 405px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature_integrations {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 19px;
    width: 100%;;
    flex-direction: column;
    gap: 0;
    padding-top: 30px;
}

.feature_integrations_row {
    display: flex;
    gap: 0;
    align-items: center;
    height: 57px;
}

.feature_integrations_row > * {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    min-width: 0;
    min-height: 57px;
    box-sizing: border-box;
}

.feature_integrations_row img {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.8;
}

.feature_aggregators_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: visible;
}

.feature_aggregators_bg img {
    position: absolute;
    left: 0;
    top: 25px;
    width: 607px;
    height: 276px;
    display: block;
}

.feature_aggregators {
    position: absolute;
    z-index: 2;
    left: 38px;
    top: 49px;
    width: 549px;
    height: 225px;
}

.aggregator_item {
    position: absolute;
}

.aggregator_item:nth-child(1) {
    left: 317px;
    top: 173px;
    width: 40px;
    height: 44px;
}

.aggregator_item:nth-child(1) .aggregator_bg {
    left: -10px;
    top: -8px;
    width: 60px;
    height: 60px;
}

.aggregator_item:nth-child(1) img {
    width: 40px;
    height: 44px;
}

.aggregator_item:nth-child(2) {
    left: 229px;
    top: 179px;
    width: 36px;
    height: 36px;
}

.aggregator_item:nth-child(2) .aggregator_bg {
    left: -12px;
    top: -12px;
    width: 60px;
    height: 60px;
}

.aggregator_item:nth-child(2) img {
    width: 36px;
    height: 36px;
}

.aggregator_item:nth-child(3) {
    left: 500px;
    top: 89px;
    width: 38px;
    height: 34px;
}

.aggregator_item:nth-child(3) .aggregator_bg {
    left: -11px;
    top: -13px;
    width: 60px;
    height: 60px;
}

.aggregator_item:nth-child(3) img {
    width: 38px;
    height: 34px;
    opacity: 1;
}

.aggregator_item:nth-child(4) {
    left: 138px;
    top: 178px;
    width: 31px;
    height: 38px;
}

.aggregator_item:nth-child(4) .aggregator_bg {
    left: -14.5px;
    top: -11px;
    width: 60px;
    height: 60px;
}

.aggregator_item:nth-child(4) img {
    width: 31px;
    height: 38px;
}

.aggregator_item:nth-child(5) {
    left: 0px;
    top: 166px;
    width: 92px;
    height: 54px;
}

.aggregator_item:nth-child(5) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(5) img {
    width: 92px;
    height: 54px;
}

.aggregator_item:nth-child(6) {
    left: 406px;
    top: 174px;
    width: 33px;
    height: 33px;
}

.aggregator_item:nth-child(6) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(6) img {
    width: 33px;
    height: 33px;
}

.aggregator_item:nth-child(7) {
    left: 477px;
    top: 171px;
    width: 38px;
    height: 38px;
}

.aggregator_item:nth-child(7) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(7) img {
    width: 38px;
    height: 38px;
}

.aggregator_item:nth-child(8) {
    left: 486px;
    top: 0px;
    width: 40px;
    height: 38px;
}

.aggregator_item:nth-child(8) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(8) img {
    width: 40px;
    height: 38px;
}

.aggregator_item:nth-child(9) {
    left: 407px;
    top: 3px;
    width: 35px;
    height: 35px;
}

.aggregator_item:nth-child(9) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(9) img {
    width: 35px;
    height: 35px;
    border-radius: 19px;
}

.aggregator_item:nth-child(10) {
    left: 430px;
    top: 89px;
    width: 34px;
    height: 34px;
}

.aggregator_item:nth-child(10) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(10) img {
    width: 34px;
    height: 34px;
    border-radius: 18.5px;
}

.aggregator_item:nth-child(11) {
    left: 483px;
    top: 222px;
    width: 54px;
    height: 39px;
}

.aggregator_item:nth-child(11) .aggregator_bg {
    display: none;
}

.aggregator_item:nth-child(11) img {
    width: 54px;
    height: 39px;
}

.aggregator_bg {
    position: absolute;
    background: var(--color-white);
    border-radius: 7px;
    box-shadow: 0px 7.552px 26.432px -7.552px rgba(172, 171, 163, 0.4);
}

.aggregator_item img {
    position: relative;
    z-index: 1;
    opacity: 1;
}

.feature_card_medium .feature_card_title {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 270px;
    z-index: 3;
}

.feature_card_medium p {
    position: absolute;
    left: 20px;
    top: 52px;
    width: 270px;
    z-index: 3;
}

.feature_tablet_wrapper {
    position: absolute;
    left: 324px;
    top: 82px;
    width: 245.495px;
    height: 320.602px;
    z-index: 1;
}

.feature_tablet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(270deg);
    z-index: 1;
}

.feature_tablet_screen {
    display: none;
}

.feature_tablet_screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature_tablet_rectangle {
    position: absolute;
    left: 120px;
    top: 139px;
    transform: translate(-50%, -50%);
    width: 145%;
    height: 80%;
    z-index: 2;
    border-radius: 3px;
    overflow: hidden;
}

.feature_tablet_rectangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature_card_small {
    position: absolute;
    right: 18px;
    top: 0px;
    width: 98px;
    height: 193px;
    background: var(--color-white);
    border-radius: 7px;
    box-shadow: 0px 7.552px 26.432px -7.552px rgba(172, 171, 163, 0.4);
    overflow: hidden;
    z-index: 2;
}

.feature_card_small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5.779px;
}

/* Demo Section */
.demo_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.demo_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.demo_tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.demo_tag {
    padding: 12px 16px;
    background: var(--color-white);
    border: 1px solid #f6f6f6;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 44px;
    display: flex;
    align-items: center;
    line-height: normal;
    text-decoration: none;
}

.demo_tag_active {
    background: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.demo_devices {
    position: relative;
    width: 980px;
    height: 590px;
}

.demo_tablet {
    position: absolute;
    left: 0;
    top: 0;
}

.demo_tablet_device {
    position: relative;
    width: 780px;
    height: 580px;
}

.demo_tablet_frame1 {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 780px;
    width: 580px;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 2;
    pointer-events: none;
}

.demo_tablet_frame2 {
    display: none;
}

.demo_tablet_screen {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    /* Чтобы при contain не было белых полей */
    background: #000;
}

.demo_tablet_screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo_tablet_screen iframe {
    /* Десктопная версия внутри планшета — масштабируем без искажения. */
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1445px;   /* базовая “десктопная” ширина для расчёта масштаба */
    height: 876px;   /* базовая “десктопная” высота для расчёта масштаба */
    transform: translate(-50%, -50%) scale(var(--demo-tablet-scale, 1));
    transform-origin: center;
    display: block;
    border: none;
    background: #000;
    will-change: transform;
}

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

.demo_tablet_rectangle img {
    width: 936px;
    height: 563px;
    object-fit: cover;
    transform: rotate(90deg);
    left: -187px;
    top: 150px;
}

.demo_phone {
    position: absolute;
    left: 960px;
    top: 70px;
}

.demo_phone_device {
    position: relative;
    width: 249px;
    height: 510px;
}

.demo_phone_frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

.demo_phone_screen {
    position: absolute;
    inset: 1.76% 4.42% 1.96% 4.42%;
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
}

.demo_phone_screen iframe::-webkit-scrollbar {
    display: none;
}

.demo_phone_screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo_phone_screen iframe {
    width: calc(375px + 20px);
    height: 812px;
    border: none;
    background: #fff;
    transform: scale(0.59);
    transform-origin: top left;
    margin-right: -20px;
}

.demo_phone_overlay {
    position: absolute;
    left: 0;
    top: -3px;
    width: 228px;
    height: 494px;
    object-fit: cover;
    z-index: 1;
}

.demo_phone_island {
    position: absolute;
    left: 91px;
    top: 17px;
    width: 66px;
    height: 20px;
    background: #000;
    border-radius: 50px;
    z-index: 3;
}

/* Tariffs Section */
.tariffs_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.tariffs_section .section_title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tariffs_section .section_title_decor {
    width: 248px;
    height: 22px;
    margin-top: 31px;
}


.section_title_decor_package {
    width: 99px;
    height: 17px;
    margin-top: 30px;
    position: absolute;
    z-index: -1;
}

.tariffs_packages,
.tariffs_licenses {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 24px;
}

.tariffs_licenses_title {
    margin-top: 40px;
}

.tariff_card {
    background: var(--color-bg-lighter);
    border: 1px solid #E5E5E5;
    border-radius: 10.785px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 165px;
    width: 607px;
    position: relative;
    overflow: hidden;
}

.tariff_card_clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tariff_card_clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tariff_card_clickable:active {
    transform: translateY(0);
}

.tariff_card_decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}

.tariff_glow {
    position: absolute;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.tariff_card:hover .tariff_glow {
    opacity: 1;
}

.tariff_decor_group {
    position: absolute;
    opacity: 1;
    z-index: 0;
    transform: scaleX(-1);
    transform-origin: center center;
}

.tariff_card:nth-child(1) .tariff_glow,
.tariff_card:nth-child(1) .tariff_decor_group {
    left: 285.5px;
    top: -45px;
    width: 326px;
    height: 256px;
}

.tariff_card:nth-child(1) .tariff_glow {
    transform: scaleX(1);
}

.tariff_card:nth-child(1) .tariff_decor_group {
    transform: scaleX(1);
}

.tariff_card:nth-child(1) .tariff_decor_group_second {
    left: 280px;
    top: -20px;
    width: 230px;
    height: 256px;
    transform: scaleX(1);
}

.tariff_card:nth-child(2) .tariff_glow,
.tariff_card:nth-child(2) .tariff_decor_group {
    left: 304px;
    top: -104px;
    width: 500px;
    height: 500px;
}

.tariff_card:nth-child(3) .tariff_glow,
.tariff_card:nth-child(3) .tariff_decor_group {
    left: 360px;
    top: -110px;
    width: 400px;
    height: 400px;
}

.tariff_card_calculate .tariff_glow,
.tariff_card_calculate .tariff_decor_group {
    left: 321px;
    top: -151px;
    width: 500px;
    height: 500px;
}

.tariff_card_calculate .tariff_decor_group {
    transform: rotate(180deg);
}

.tariffs_licenses .tariff_card:nth-child(1) .tariff_glow,
.tariffs_licenses .tariff_card:nth-child(1) .tariff_decor_group {
    left: 308px;
    top: -184px;
    width: 500px;
    height: 500px;
}

.tariffs_licenses .tariff_card:nth-child(1) .tariff_decor_group {
    transform: rotate(180deg);
}

.tariffs_licenses .tariff_card:nth-child(2) .tariff_glow,
.tariffs_licenses .tariff_card:nth-child(2) .tariff_decor_group {
    left: 216px;
    top: -143px;
    width: 500px;
    height: 500px;
}

.tariffs_licenses .tariff_card:nth-child(2) .tariff_decor_group {
    transform: rotate(0deg);
}

.tariffs_licenses .tariff_card:nth-child(3) .tariff_glow,
.tariffs_licenses .tariff_card:nth-child(3) .tariff_decor_group {
    left: 302px;
    top: -188px;
    width: 526px;
    height: 509px;
}

.tariffs_licenses .tariff_card:nth-child(3) .tariff_decor_group {
    transform: rotate(180deg);
}

.tariff_card_free .tariff_glow,
.tariff_card_free .tariff_decor_group {
    left: 129px;
    top: -128px;
    width: 690.986px;
    height: 439.457px;
}

.tariff_card_free .tariff_decor_group {
    transform: rotate(342deg);
}

.tariff_card_calculate .tariff_card_header,
.tariff_card_free .tariff_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tariff_card_calculate svg,
.tariff_card_free svg {
    flex-shrink: 0;
}

.tariff_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.tariff_card_title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.tariff_card_price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: right;
}

.price_bold {
    font-size: 22px;
    font-weight: 800;
}

.tariff_card_content {
    font-size: 14px;
    font-weight: 500;
    color: #A6A6A6;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 553px;
    bottom: 20px;
    position: absolute;
}

.tariff_card_content p {
    color: #A6A6A6;
}

/* Responsive */
/* Tablet breakpoint (1024px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    .features_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .management_content {
        flex-direction: row;
        gap: 30px;
    }
    
    .management_image {
        flex: 0 0 50%;
        width: 50%;
    }
    
    .management_list {
        flex: 0 0 50%;
        width: 50%;
        height: auto;
    }
    
    .suitable_cards {
        flex-wrap: wrap;
    }
    
    .suitable_card {
        flex: 1;
        min-width: 300px;
    }
}

/* Tablet breakpoint (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .features_grid {
        grid-template-columns: 1fr;
    }
    
    .management_content {
        flex-direction: column;
        gap: 30px;
    }
    
    .management_image {
        width: 100%;
    }
    
    .management_list {
        width: 100%;
        height: auto;
    }
    
    .suitable_cards {
        flex-wrap: wrap;
    }
    
    .suitable_card {
        flex: 1;
        min-width: 300px;
    }
    
    .hero_container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero_content {
        width: 100%;
    }
    
    .hero_image {
        width: 100%;
        max-width: 596px;
        margin: 0 auto;
    }
    
    .section_title {
        font-size: 32px;
    }
    
    .section_title_large {
        font-size: 32px;
        width: 100%;
    }
    
    .tariff_card_content {
        width: 100%;
        max-width: 100%;
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
    
    .try_free_container {
        flex-direction: column;
        gap: 30px;
    }
    
    .try_free_cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .try_free_card {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
    
    .footer_questions_content_wrapper {
        padding: 40px 40px;
        gap: 40px;
    }
    
    .footer_questions_description {
        width: 100%;
        max-width: 454px;
    }
    
    .footer_bottom {
        padding: 40px 40px;
    }
    
    .footer_bottom_content {
        gap: 60px;
    }
}

/* Desktop to tablet transition (1200px) */
@media (max-width: 1200px) {
    .features_grid {
        grid-template-columns: 1fr;
    }
    
    .management_content {
        flex-direction: column;
    }
    
    .management_image {
        flex: 1;
        width: 100%;
    }
    
    .management_list {
        width: 100%;
        height: auto;
    }
    
    .suitable_cards {
        flex-wrap: wrap;
    }
    
    .suitable_card {
        flex: 1;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .header_right {
        gap: 8px;
        position: relative;
        overflow: visible !important;
    }
    
    .header_phone {
        display: none;
    }
    
    .btn_header {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .hero_section {
        padding-top: 80px;
        margin-bottom: 40px;
    }
    
    .hero_container {
        flex-direction: column;
        gap: 30px;
        padding-top: 20px;
    }
    
    .hero_title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .hero_title_wave {
        width: 120px;
        height: 40px;
        left: auto;
        right: 0;
        top: 20px;
    }
    
    .hero_integrations {
        width: 100%;
    }
    
    .hero_image {
        width: 100%;
        max-width: 100%;
        height: 400px;
        position: relative;
        margin: 0;
    }
    
    .hero_image_bg {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        max-width: 400px;
        height: auto;
        min-height: 280px;
        aspect-ratio: 464/404;
    }
    
    .hero_image_content {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-45%, -50%);
        width: 80%;
        max-width: 380px;
        height: auto;
        min-height: 260px;
        aspect-ratio: 440/369;
    }
    
    .hero_floor_selector {
        position: absolute;
        left: 5px;
        top: 5px;
        margin: 0;
        min-width: auto;
        width: auto;
        transform: scale(0.85);
        transform-origin: top left;
    }
    
    .hero_apartment_card {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%) scale(0.85);
        margin: 0;
        width: auto;
        max-width: 180px;
        left: auto;
    }
    
    .hero_floor_badge {
        position: absolute;
        left: 50%;
        top: 5px;
        transform: translateX(-50%) scale(0.85);
        margin: 0;
    }
    
    .section_title {
        font-size: 24px;
    }
    
    .section_title_free {
        width: 100% !important;
    }
    
    .section_title_large {
        font-size: 24px;
        width: 100%;
    }
    
    .suitable_tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .suitable_tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab_item {
        flex-shrink: 0;
        min-width: 160px;
    }
    
    .suitable_cards {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .suitable_cards::-webkit-scrollbar {
        display: none;
    }
    
    .suitable_card {
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 400px;
    }
    
    .demo_devices {
        flex-direction: column;
        gap: 20px;
    }
    
    .demo_phone {
        width: 100%;
        max-width: 249px;
        margin: 0 auto;
    }
    
    .tariffs_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tariff_card {
        width: 100%;
    }
    
    .tariff_card_content {
        width: 100%;
        max-width: 100%;
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
    
    .active_catalogs_carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .active_catalogs_carousel::-webkit-scrollbar {
        display: none;
    }
    
    .active_catalog_card {
        flex-shrink: 0;
        width: 85%;
        max-width: 350px;
    }
    
    .active_catalog_card_large {
        width: 85%;
        max-width: 400px;
    }
    
    .try_free_container {
        flex-direction: column;
        gap: 30px;
    }
    
    .try_free_cards {
        flex-direction: column;
        gap: 12px;
    }
    
    .try_free_card {
        width: 100%;
        height: auto;
        min-height: 143px;
    }
    
    .footer_questions_content_wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .footer_questions_left {
        width: 100%;
    }
    
    .footer_questions_form {
        width: 100%;
    }
    
    .footer_questions_right {
        width: 100%;
    }
    
    .footer_bottom_content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_bottom_right {
        flex-direction: column;
        gap: 30px;
    }
    
    .management_image_bg {
        height: auto;
        min-height: 300px;
    }
    
    .partners_carousel {
        height: auto;
        min-height: 57px;
    }
    
    .active_catalogs_nav {
        right: 0;
        justify-content: flex-end;
        margin-top: 20px;
    }
    
    .footer_questions_description {
        width: 100%;
        max-width: 100%;
    }
    
    .footer_bottom {
        padding: 30px 16px;
    }
    
    .footer_copyright_badge {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Partners Section */
.partners_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.partners_title {
    max-width: 872px;
    margin: 0;
    display: block;
    position: relative;
}

@media (max-width: 1024px) {
    .partners_title {
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .partners_title {
        max-width: 100%;
        padding: 0;
    }
}

.text_with_wave {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .text_with_wave {
        white-space: normal;
    }
}

.wave_underline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100%;
    height: auto;
    max-width: 342px;
    pointer-events: none;
}

.catalog {
    width: 196px;
    height: 50px;
    margin-top: -35px;
    position: absolute;
    z-index: -1;
}

.partners_carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    height: 57px;
}

.partners_carousel::before,
.partners_carousel::after {
	content: '';
	position: absolute;
	top: 0;
	width: 251px;
	height: 57px;
	pointer-events: none;
	z-index: 2;
}

.partners_carousel::before {
	left: 0;
	transform: rotate(180deg);
	background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.partners_carousel::after {
	right: 0;
	background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.partners_track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scroll 30s linear infinite;
}

.partner_logo {
    flex-shrink: 0;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.partner_logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer Section */
.footer_section {
    background: var(--color-white);
    width: 100%;
}

/* Questions Section with Background Image */
.footer_questions_wrapper {
    position: relative;
    width: 100%;
    height: 531px;
    overflow: hidden;
}

.footer_questions_background {
    position: absolute;
    inset: 0;
    background-color: #272727;
    background-image: url('../start/rule/img/figma/rectangle27173.png');
    background-size: cover;
    background-position: center 40%;
    transform: rotate(180deg) scaleY(-1);
}

.footer_questions_background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.5) 0%, rgba(39, 39, 39, 0.8) 50%, #272727 100%);
}

.footer_questions_content_wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 47px 25px;
    display: flex;
    gap: 120px;
    align-items: flex-start;
    height: 100%;
}

@media (max-width: 1024px) {
    .footer_questions_content_wrapper {
        padding: 40px 40px;
        gap: 40px;
    }
}

/* Left: Form Content */
.footer_questions_left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer_questions_content_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer_questions_header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer_questions_title {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.footer_questions_description {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    width: 454px;
    max-width: 100%;
}

.footer_questions_form {
    width: 382px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch !important;
    justify-content: flex-start !important;
    margin: 0 !important;
}

.footer_questions_form_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer_questions_form_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_questions_form_label {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
}

.footer_questions_form_input {
    width: 100%;
    height: 44px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(246, 246, 246, 0.4);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.footer_questions_form_input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.footer_questions_form_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

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

.footer_questions_form_toggle span {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
}

.toggle_switch {
    position: relative;
    width: 51px;
    height: 31px;
    display: inline-block;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle_switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.toggle_slider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 51px;
    height: 31px;
    background-color: rgba(254, 204, 23, 0.5);
    border-radius: 31px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.toggle_slider::before {
    position: absolute;
    content: '';
    width: 27px;
    height: 27px;
    left: 2px;
    top: 2px;
    background-color: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(0, 0, 0, 0.15);
}

.toggle_switch input:checked + .toggle_slider {
    background-color: #FECC17;
}

.toggle_switch input:checked + .toggle_slider::before {
    left: 22px;
    top: 2px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2), 0px 1px 1px rgba(0, 0, 0, 0.15);
}

.toggle_switch:hover .toggle_slider {
    box-shadow: 0px 4px 8px rgba(254, 204, 23, 0.3), 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle_switch:hover .toggle_slider::before {
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25), 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.toggle_switch:active .toggle_slider::before {
    transform: scale(0.95);
}

.footer_questions_form_checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.footer_questions_checkbox_input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #FECC17;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.footer_questions_checkbox_input:checked {
    background-color: transparent;
    border-color: #FECC17;
}

.footer_questions_checkbox_input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #FECC17;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.footer_questions_checkbox_label {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-white);
    cursor: pointer;
}

.footer_questions_checkbox_label a {
    color: var(--color-white);
    text-decoration: underline;
}

.footer_questions_form_submit {
    width: 382px;
    max-width: 100%;
    height: 56px;
    padding: 12px 16px;
    background: #FECC17;
    border: none;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #3D392A;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.footer_questions_form_submit:hover {
    background: #F5C000;
    transform: translateY(-2px);
}

/* Right: Contact Info */
.footer_questions_right {
    flex: 0 0 419px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 149.5px;
}

.footer_questions_contacts_title {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
}

.footer_questions_phone_group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    position: relative;
}

.footer_questions_phone_link {
    font-family: var(--font-family);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
}

.footer_questions_phone_underline {
    width: 100%;
    height: 2px;
    display: block;
    object-fit: contain;
}

.footer_questions_contact_items {
    display: flex;
    gap: 12px;
    width: 100%;
}

.footer_questions_contact_item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer_questions_contact_item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer_questions_contact_item span {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    white-space: nowrap;
}

/* Bottom Footer Section */
.footer_bottom {
    background: #272727;
    padding: 40px 77px;
}

@media (max-width: 1024px) {
    .footer_bottom {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .footer_bottom {
        padding: 30px 16px;
    }
}

.footer_bottom_inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_bottom_content {
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

.footer_bottom_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.footer_bottom_logo {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
}

.footer_logo_icon {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
}

.footer_logo_text {
    width: 80.098px;
    height: 24.362px;
}

.footer_bottom_buttons {
    display: flex;
    gap: 12px;
    width: 293px;
}

.footer_bottom_button {
    flex: 1;
    height: 44px;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.footer_bottom_button_primary {
    background: var(--color-white);
    color: #3D392A;
}

.footer_bottom_button_primary:hover {
    background: #F5F5F5;
}

.footer_bottom_button_secondary {
    border: 1px solid #FECC17;
    background: transparent;
    color: var(--color-white);
}

.footer_bottom_button_secondary:hover {
    background: rgba(254, 204, 23, 0.1);
}

.footer_bottom_button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer_bottom_contact_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_bottom_contact_text {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #A6A6A6;
    margin: 0;
}

.footer_bottom_contact_phone {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    text-decoration: none;
}

.footer_bottom_contact_phone:hover {
    color: var(--color-primary);
}

.footer_bottom_contact_items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_bottom_contact_item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer_bottom_contact_item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer_bottom_contact_item span {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
}

.footer_bottom_social_icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.footer_bottom_social_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
}

.footer_bottom_social_icon:hover {
    background: #5A5A5A;
    opacity: 0.9;
}

.footer_bottom_social_icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer_bottom_social_icon svg {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

/* Переопределение правила, скрывающего ссылки на Дзен */
a[href^="https://dzen.ru"],
a[href*="dzen.ru"] {
    display: flex !important;
}

.footer_mobile_social_icon_link[href^="https://dzen.ru"],
.footer_mobile_social_icon_link[href*="dzen.ru"] {
    display: flex !important;
}

.footer_bottom_right {
    display: flex;
    justify-content: space-between;
    flex: 1;
    max-width: 606px;
}

.footer_bottom_links_column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_bottom_links_column:first-child {
    width: 365px;
}

.footer_bottom_links_title {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #A6A6A6;
    margin: 0;
}

.footer_bottom_links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_bottom_links a {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_bottom_links a:hover {
    color: var(--color-primary);
}

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

.footer_copyright_text {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #A6A6A6;
    text-align: center;
    margin: 0;
}

a.footer_copyright_badge,
.footer_copyright_badge {
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a.footer_copyright_badge:hover {
    opacity: 0.8;
}

.footer_copyright_badge_icon {
    width: 60px;
    height: 60px;
    background: #FECC17;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.footer_copyright_badge_icon img {
    width: 51.2px;
    height: 32.04px;
    object-fit: contain;
    transform: scaleY(-1);
}

.footer_copyright_badge_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer_copyright_badge_title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    margin: 0;
}

.footer_copyright_badge_subtitle {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #A6A6A6;
    margin: 0;
    white-space: nowrap;
}

.footer_form_section {
    margin-bottom: 60px;
}

.footer_form_title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 40px;
    text-align: center;
}

.footer_form {
    max-width: 600px;
    margin: 0 auto;
}

.footer_form_row {
    margin-bottom: 20px;
    position: relative;
}

.footer_form_input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-bg-lighter);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-primary-dark);
    background: var(--color-white);
    transition: all 0.3s ease;
}

.footer_form_input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.footer_form_label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.footer_form_input:focus + .footer_form_label,
.footer_form_input:not(:placeholder-shown) + .footer_form_label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    background: var(--color-white);
    padding: 0 4px;
    color: var(--color-primary);
}

.footer_form_button {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.footer_form_button:hover {
    background: #F5C000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 204, 23, 0.3);
}

.footer_form_checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.footer_form_checkbox input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.footer_form_checkbox label {
    cursor: pointer;
}

.footer_form_checkbox a {
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}

.footer_form_checkbox a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 2px;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer_form_checkbox a:hover::after {
    transform: scaleX(1);
}

.footer_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-bg-lighter);
}

.footer_logo_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_logo {
    width: 133px;
    height: 37px;
}

.footer_logo img {
    width: 100%;
    height: auto;
}

.footer_contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_contact_item {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.footer_contact_item a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_contact_item a:hover {
    color: var(--color-primary);
}

.footer_partner_button {
    padding: 16px 32px;
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer_partner_button:hover {
    background: #F5C000;
    transform: translateY(-2px);
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.footer_links a {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--color-primary-dark);
}

.footer_copyright {
    padding-top: 30px;
    border-top: 1px solid var(--color-bg-lighter);
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
}

.footer_copyright a {
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}

.footer_copyright a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 2px;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer_copyright a:hover::after {
    transform: scaleX(1);
}

/* Active Catalogs Section */
.active_catalogs_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.active_catalogs_wrapper {
    margin-top: 40px;
}

.active_catalogs_carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.active_catalogs_carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.active_catalog_card {
    position: relative;
    width: 307px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.active_catalog_link {
    position: absolute;
    inset: 0;
    display: block;
    color: inherit;
    text-decoration: none;
}

.active_catalog_link:focus-visible {
    outline: 2px solid #FECC17;
    outline-offset: 2px;
}

.active_catalog_card_large {
    width: 490px;
}

.catalog_card_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.catalog_card_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.catalog_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 50%, rgba(15, 15, 15, 0.5) 100%);
    z-index: 2;
}

.active_catalog_card_large .catalog_card_overlay {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 50%, #0f0f0f 100%);
}

.catalog_card_badge {
    position: relative;
    z-index: 3;
    display: inline-block;
    background: var(--color-white);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    width: fit-content;
}

.catalog_card_content {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: flex-end;
}

.catalog_card_title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.catalog_card_description {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    margin: 0;
}

.catalog_card_button {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    width: fit-content;
}

.catalog_card_button::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-white);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.catalog_card_decor {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    width: 54px;
    height: 39px;
}

.catalog_card_decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.active_catalogs_nav {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    right: 0px;
    position: relative;
}

/* Hover states (Desktop) */
@media (hover: hover) and (pointer: fine) {
    .active_catalog_card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        will-change: transform;
    }

    .active_catalog_link .catalog_card_bg img {
        transition: transform 0.35s ease;
        transform-origin: center center;
        will-change: transform;
    }

    .active_catalog_link .catalog_card_overlay {
        transition: background 0.2s ease, opacity 0.2s ease;
    }

    .active_catalog_card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    }

    .active_catalog_card:hover .catalog_card_bg img {
        transform: scale(1.04);
    }

    .active_catalog_card:hover .catalog_card_overlay {
        background: linear-gradient(to bottom, rgba(15, 15, 15, 0.06) 45%, rgba(15, 15, 15, 0.70) 100%);
    }

    .active_catalog_card_large:hover .catalog_card_overlay {
        background: linear-gradient(to bottom, rgba(15, 15, 15, 0.06) 42%, rgba(15, 15, 15, 0.92) 100%);
    }

    .active_catalog_card:hover .catalog_card_button::after {
        transform: scaleX(1);
    }
}

/* Accessibility: показываем подчёркивание при фокусе с клавиатуры */
.active_catalog_link:focus-visible .catalog_card_button::after {
    transform: scaleX(1);
}

/* Try Free Section */
.try_free_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.try_free_container {
    display: flex;
    gap: 47px;
    align-items: center;
}

.try_free_content {
    flex: 1;
    max-width: 688px;
    text-align: -webkit-center;
}

.try_free_cards {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.try_free_card {
    position: relative;
    width: 221.333px;
    height: 143px;
    background: var(--color-bg-lighter);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try_free_card:hover,
.try_free_card:active {
    background: linear-gradient(180deg, rgba(254, 204, 23, 0.6) 0%, rgba(254, 204, 23, 0.15) 50%, #F6F6F6 100%);
}

.try_free_card_clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.try_free_card_clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.try_free_card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
    text-align: center;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.try_free_decor_ellipse {
    position: absolute;
    left: 21px;
    top: -202px;
    width: 230px;
    height: 256px;
    opacity: 1;
    transform: rotate(180deg);
}

.try_free_decor_vector1 {
    position: absolute;
    left: 97.32px;
    top: 50%;
    transform: translateY(-50%) rotate(267.042deg);
    width: 126.969px;
    height: 156.393px;
    opacity: 1;
}

.try_free_decor_vector2 {
    position: absolute;
    left: -23px;
    top: calc(50% + 17.86px);
    transform: translateY(-50%) rotate(282.005deg);
    width: 126.969px;
    height: 156.393px;
    opacity: 1;
}

.try_free_decor_vector3 {
    position: absolute;
    left: 41px;
    top: 110px;
    width: 135px;
    height: 23px;
    opacity: 1;
    transform: rotate(180deg) scaleY(-1);
}

.try_free_decor_image {
    position: absolute;
    left: 136px;
    top: 37px;
    width: 54px;
    height: 39px;
    opacity: 0;
    display: none;
}

.try_free_decor_polygon1 {
    position: absolute;
    left: -0.33px;
    top: -44px;
    width: 116px;
    height: 112px;
    opacity: 1;
    transform: rotate(180deg);
}

.try_free_decor_polygon2 {
    position: absolute;
    left: 57.67px;
    top: 2px;
    width: 116px;
    height: 112px;
    opacity: 1;
    transform: rotate(180deg);
}

.try_free_decor_polygon3 {
    position: absolute;
    left: 135.67px;
    top: -40px;
    width: 116px;
    height: 112px;
    opacity: 1;
    transform: rotate(180deg);
}

.try_free_decor_vector4 {
    position: absolute;
    left: 21.67px;
    top: 92px;
    width: 84px;
    height: 23px;
    opacity: 1;
    transform: rotate(180deg) scaleY(-1);
}

.try_free_decor_vector5 {
    position: absolute;
    left: 82.33px;
    top: 0;
    width: 53.985px;
    height: 160.06px;
    opacity: 1;
    transform: rotate(75deg);
}

.try_free_decor_vector6 {
    position: absolute;
    left: -27.67px;
    top: -22px;
    width: 53.985px;
    height: 160.06px;
    opacity: 1;
    transform: rotate(75deg);
}

.try_free_decor_vector7 {
    position: absolute;
    left: 30.33px;
    top: 93px;
    width: 158px;
    height: 23px;
    opacity: 1;
    transform: rotate(180deg) scaleY(-1);
}

.try_free_form {
    flex: 0 0 490px;
    background: var(--color-bg-light);
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 20px;
    outline: 1px solid #E5E5E5;
    outline-offset: -1px;
}

.try_free_form_inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.try_free_form_fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.try_free_form_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.try_free_form_label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.try_free_input_wrapper {
    width: 100%;
    height: 44px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    outline: 1px solid #E5E5E5;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.try_free_form_input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-primary-dark);
    padding: 0;
    outline: none;
}

.try_free_form_input:focus {
    outline: none;
}

.try_free_form_input::placeholder {
    color: var(--color-text-secondary);
}

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

.try_free_form_toggle span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.toggle_switch {
    position: relative;
    width: 51px;
    height: 31px;
    display: inline-block;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle_switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}

.try_free_form_checkbox {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.try_free_form_fields + .try_free_form_checkbox {
    margin-top: 12px;
}

.try_free_checkbox_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 2px;
}

.try_free_checkbox_input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.try_free_checkbox_svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.try_free_checkbox_svg polyline {
    display: none;
}

.try_free_checkbox_input:checked + .try_free_checkbox_svg path {
    fill: #FECC17;
}

.try_free_checkbox_input:checked + .try_free_checkbox_svg polyline {
    display: block;
}

.try_free_checkbox_label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.3;
    cursor: pointer;
    flex: 1;
    padding-bottom: 24px;
}

.try_free_checkbox_label a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.try_free_form_submit {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-primary);
    border: none;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 64px;
}

.try_free_form_submit:hover {
    background: #F5C000;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq_section {
    padding: 0;
    margin-bottom: 60px;
    background: var(--color-white);
}

.faq_container {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.faq_column {
    flex: 1;
    max-width: 594px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq_item {
    background: var(--color-bg-lighter);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq_item_open {
    padding-bottom: 24px;
}

.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq_question p {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
    flex: 1;
}

.faq_icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
}

.faq_icon path {
    pointer-events: auto;
}

.faq_item_open .faq_icon {
    transform: rotate(0deg);
}

.faq_answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E5E5;
    display: none;
}

.faq_item_open .faq_answer {
    display: block;
}

.faq_answer p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.3;
    margin: 0;
}

.faq_answer ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.faq_answer ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.3;
    margin-bottom: 4px;
}

.faq_decor {
    position: absolute;
    right: -1.41px;
    top: -65px;
    width: 315px;
    height: 315.412px;
    opacity: 0;
    transform: rotate(0deg);
    mix-blend-mode: darken;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.faq_item_open .faq_decor {
    opacity: 1;
}

.faq_decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Styles для устройств до 480px */
@media (max-width: 480px) {
    /* Global Mobile Fixes */
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .wrappc {
        padding: 0 12px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Mobile Header */
    .top_nav,
    .top_nav.transition {
        height: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;
        padding: 5px 12px !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .header_new {
        width: 100% !important;
        max-width: 100% !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }
    
    .header_left {
        gap: 8px;
    }
    
    .header_logo_link {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 10;
        cursor: pointer;
    }
    
    .header_logo {
        gap: 10.404px;
    }
    
    .header_logo_icon {
        width: 24.06px;
        height: 24.06px;
    }
    
    .header_logo_text {
        width: 52.085px;
        height: 15.842px;
    }
    
    .header_nav {
        display: none;
    }
    
    .header_phone {
        display: none;
    }
    
    .header_right {
        gap: 8px;
    }
    
    .header_buttons {
        display: flex;
        gap: 8px;
    }
    
    .btn_header {
        padding: 12px 16px;
        height: 44px;
        font-size: 14px;
    }
    
    .btn_header_primary,
    .btn_header_secondary {
        white-space: nowrap;
    }
    
    /* Burger Menu Checkbox */
    .menu-btn {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }
    
    /* Burger Menu Icon */
    .menu-icon.mmenu {
        display: block !important;
    }
    
    .menu-icon {
        display: block;
        width: 52px;
        height: 44px;
        background: #FFFFFF;
        border-radius: 12px;
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
    }
    
    .menu-icon .hamb {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-icon .navicon {
        display: block;
        width: 15px;
        height: 2px;
        background: #3D392A;
        position: relative;
    }
    
    .menu-icon .navicon::before,
    .menu-icon .navicon::after {
        content: '';
        display: block;
        width: 15px;
        height: 2px;
        background: #3D392A;
        position: absolute;
        left: 0;
    }
    
    .menu-icon .navicon::before {
        top: -5px;
    }
    
    .menu-icon .navicon::after {
        bottom: -5px;
    }
    
    /* Show mobile menu on small screens */
    .mobile-menu {
        display: block;
    }
    
    /* Burger Icon Animation */
    .menu-icon.active .navicon,
    #menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }
    
    .menu-icon.active .navicon::before,
    #menu-btn:checked ~ .menu-icon .navicon::before {
        transform: rotate(-45deg);
        top: 0;
    }
    
    .menu-icon.active .navicon::after,
    #menu-btn:checked ~ .menu-icon .navicon::after {
        transform: rotate(45deg);
        bottom: 0;
    }
    
    /* Global Section Fixes */
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Mobile Hero Section */
    .hero_section {
        padding-top: 20px;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }
    
    .hero_container {
        display: flex;
        flex-direction: column;
        gap: 52px;
        padding: 24px 12px 0;
        align-items: center;
    }
    
    .hero_content {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        max-width: 366px;
        position: relative;
        z-index: 2;
    }
    
    .hero_integrations {
        grid-column: auto;
        grid-row: auto;
        order: 3;
    }
    
    .hero_image {
        grid-column: auto;
        grid-row: auto;
        order: 2;
    }
    
    .hero_title {
        font-size: 22px;
        margin-bottom: 24px;
        max-width: 366px;
    }
    
    .hero_title br {
        display: inline;
    }
    
    /* Hero стили перенесены в конец файла */
    
    /* Mobile Suitable Section */
    .suitable_section {
        margin-bottom: 40px;
    }
    
    .section_title {
        font-size: 22px;
        width: 100%;
        max-width: 100%;
    }
    
    .suitable_section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .suitable_tabs {
        gap: 13px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .suitable_tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab_item {
        flex-shrink: 0;
        width: auto;
        min-width: 144px;
    }
    
    .suitable_cards {
        padding: 20px 0;
        margin: 0;
        gap: 12px;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .suitable_cards::-webkit-scrollbar {
        display: none;
    }
    
    .suitable_card {
        flex: 0 0 calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        width: calc(100vw - 48px);
        max-width: 366px;
    }
    
    .card_title {
        font-size: 22px;
    }
    
    /* Mobile Management Section */
    .management_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .section_title_large {
        font-size: 22px;
        width: 100%;
    }
    
    .management_content {
        flex-direction: column;
        gap: 20px;
    }
    
    .management_image {
        width: 100%;
        order: 1;
    }
    
    .management_list {
        width: 100%;
        height: auto;
        order: 2;
    }
    
    .management_image_bg {
        height: 469px;
    }
    
    /* Mobile Features Section */
    .features_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature_card {
        width: 100% !important;
    }
    
    .feature_card_large {
        width: 100% !important;
        height: auto;
    }
    
    .feature_card_medium {
        width: 100% !important;
    }
    
    /* Mobile Demo Section */
    .demo_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .demo_tags {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .demo_tag {
        flex-shrink: 0;
    }
    
    .demo_devices {
        width: 100%;
        height: auto;
    }
    
    /* Mobile Tariffs Section */
    .tariffs_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .tariffs_packages,
    .tariffs_licenses {
        flex-direction: column;
    }
    
    .tariff_card {
        width: 100%;
    }
    
    /* Mobile Partners Section */
    .partners_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .partners_carousel {
        margin-top: 20px;
    }
    
    /* Mobile Footer Questions Section */
    .footer_questions_wrapper {
        height: auto;
        min-height: 531px;
    }
    
    .footer_questions_content_wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 34.98px 12px;
    }
    
    .footer_questions_left {
        width: 100%;
    }
    
    .footer_questions_title {
        font-size: 30px;
    }
    
    .footer_questions_description {
        width: 100%;
        font-size: 14px;
    }
    
    .footer_questions_form {
        width: 100%;
    }
    
    .footer_questions_form_input {
        width: 100%;
    }
    
    .footer_questions_form_submit {
        width: 100%;
        height: 56px;
    }
    
    .footer_questions_right {
        flex: 1;
        width: 100%;
        margin-top: 0;
    }
    
    .footer_questions_phone_link {
        font-size: 22px;
    }
    
    .footer_questions_contact_items {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Mobile Bottom Footer */
    .footer_bottom {
        padding: 40px 12px;
    }
    
    .footer_bottom_content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer_bottom_left {
        width: 100%;
    }
    
    .footer_bottom_buttons {
        width: 100%;
    }
    
    .footer_bottom_right {
        flex-direction: column;
        max-width: 100%;
        gap: 20px;
    }
    
    .footer_bottom_links_column {
        width: 100%;
    }
    
    .footer_bottom_links_column:first-child {
        width: 100%;
    }
    
    /* Mobile Try Free Section */
    .try_free_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .try_free_container {
        flex-direction: column;
        gap: 20px;
    }
    
    .try_free_content {
        max-width: 100%;
    }
    
    .try_free_cards {
        flex-direction: column;
        gap: 12px;
    }
    
    .try_free_card {
        width: 100%;
    }
    
    .try_free_form {
        width: 100%;
        max-width: 100%;
    }
    
    /* Mobile FAQ Section */
    .faq_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .faq_container {
        flex-direction: column;
        gap: 12px;
    }
    
    .faq_column {
        max-width: 100%;
        width: 100%;
    }
    
    /* Mobile Active Catalogs */
    .active_catalogs_section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .active_catalogs_carousel {
        overflow-x: auto;
        gap: 8px;
    }
    
    .active_catalog_card {
        flex-shrink: 0;
        width: calc(100vw - 48px);
        max-width: 342px;
    }
    
    .active_catalog_card_large {
        width: calc(100vw - 48px);
        max-width: 366px;
    }
}

@media (max-width: 768px) {
    .footer_info {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer_partner_button {
        width: 100%;
    }
    
    .footer_form_title {
        font-size: 28px;
    }
    
    .try_free_container {
        flex-direction: column;
    }
    
    .try_free_form {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .faq_container {
        flex-direction: column;
    }
    
    .faq_column {
        max-width: 100%;
    }
    
    .active_catalogs_carousel {
        overflow-x: auto;
    }
    
    .active_catalog_card {
        flex-shrink: 0;
    }
}

/* Global Mobile Footer Styles */
.footer_mobile_wrapper {
    display: none !important;
}

@media (max-width: 768px) {
    .footer_section {
        display: none !important;
    }

    .footer_mobile_wrapper {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: #272727;
    }

    /* Questions Section */
    .footer_mobile_questions {
        position: relative;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .footer_mobile_questions_bg {
        position: absolute;
        inset: 0;
        background-image: url('../start/rule/img/figma/rectangle27173.png');
        background-size: cover;
        background-position: center;
        transform: rotate(180deg) scaleY(-1);
        z-index: 0;
    }
    
    .footer_mobile_questions_bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(39, 39, 39, 0.3) 0%, #272727 100%);
    }

    .footer_mobile_questions_content {
        position: relative;
        z-index: 1;
        padding: 40px 12px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer_mobile_questions_title {
        font-size: 30px;
        font-weight: 800;
        color: #FFFFFF;
        margin-bottom: 12px;
        line-height: 1;
        font-family: 'Montserrat', sans-serif;
    }

    .footer_mobile_questions_desc {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        line-height: 1.4;
        font-family: 'Montserrat', sans-serif;
    }

    .footer_mobile_questions_form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .footer_mobile_input_group label {
        font-size: 12px;
        font-weight: 500;
        color: #A6A6A6;
        margin-bottom: 8px;
        display: block;
        font-family: 'Montserrat', sans-serif;
    }

    .footer_mobile_input_wrapper {
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(246, 246, 246, 0.4);
        border-radius: 12px;
        backdrop-filter: blur(7px);
        display: flex;
        align-items: center;
        padding: 0 12px;
    }
    
    .footer_mobile_input_wrapper input {
        background: transparent;
        border: none;
        width: 100%;
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
        outline: none;
    }
    .footer_mobile_input_wrapper input::placeholder {
        color: rgba(255,255,255,0.5);
    }

    .footer_mobile_toggle_group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
    }
    .footer_mobile_toggle_group span {
        font-size: 12px;
        font-weight: 600;
        color: #FFFFFF;
        font-family: 'Montserrat', sans-serif;
    }

    .footer_mobile_checkbox_group {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        margin-top: 8px;
    }
    
    .footer_mobile_checkbox_custom {
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    .footer_mobile_checkbox_custom input {
        opacity: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 2;
    }
    .footer_mobile_checkbox_custom label {
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        border: 2px solid #FECC17;
        border-radius: 4px;
        cursor: pointer;
        z-index: 1;
    }
    .footer_mobile_checkbox_custom input:checked + label {
        background-color: #FECC17;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='%233D392A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
    }

    .footer_mobile_checkbox_text {
        font-size: 12px;
        color: #FFFFFF;
        line-height: 1.4;
        font-family: 'Montserrat', sans-serif;
    }
    .footer_mobile_checkbox_text a {
        color: #FFFFFF;
        text-decoration: underline;
    }

    .footer_mobile_submit_btn {
        height: 56px;
        background: #FECC17;
        border-radius: 12px;
        border: none;
        width: 100%;
        font-size: 14px;
        font-weight: 600;
        color: #3D392A;
        margin-top: 8px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
    }

    /* Info Section - Figma Design */
    .footer_mobile_info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: #272727;
        padding: 10px;
        width: 100%;
    }

    .footer_mobile_main_content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    .footer_mobile_left_column {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
        max-width: 233px;
    }

    .footer_mobile_logo {
        display: flex;
        gap: 16px;
        align-items: center;
    }
    .footer_mobile_logo_icon { 
        width: 37px; 
        height: 37px; 
        flex-shrink: 0;
    }
    .footer_mobile_logo_text { 
        display: flex; 
        flex-direction: column; 
        gap: 3px; 
        height: 37px;
    }
    .footer_mobile_logo_text img { 
        width: 80px; 
        height: auto; 
    }

    .footer_mobile_buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 140.5px;
    }

    .footer_mobile_button {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 12px 16px;
        border-radius: 12px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: opacity 0.2s ease;
    }

    .footer_mobile_button:hover {
        opacity: 0.9;
    }

    .footer_mobile_button_primary {
        background: #FFFFFF;
        color: #3D392A;
    }

    .footer_mobile_button_secondary {
        border: 1px solid #FECC17;
        color: #FFFFFF;
        background: transparent;
    }

    .footer_mobile_button svg {
        flex-shrink: 0;
    }

    .footer_mobile_contact { 
        display: flex; 
        flex-direction: column; 
        gap: 24px; 
        width: 100%;
    }

    .footer_mobile_phone_block { 
        display: flex; 
        flex-direction: column; 
        gap: 4px; 
        width: 100%;
    }

    .footer_mobile_phone_label { 
        font-size: 14px; 
        font-weight: 400; 
        color: #A6A6A6; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
    }

    .footer_mobile_phone { 
        font-size: 22px; 
        font-weight: 800; 
        color: #FFFFFF; 
        text-decoration: none; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
        white-space: pre-wrap;
    }

    .footer_mobile_socials { 
        display: flex; 
        flex-direction: column; 
        gap: 12px; 
        justify-content: center;
    }

    .footer_mobile_social_item { 
        display: flex; 
        gap: 16px; 
        align-items: center; 
        font-size: 14px; 
        font-weight: 500; 
        color: #FFFFFF; 
        font-family: 'Montserrat', sans-serif; 
        line-height: 0;
    }

    .footer_mobile_social_icon { 
        width: 32px; 
        height: 32px; 
        flex-shrink: 0;
    }

    .footer_mobile_social_icons {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: 12px;
    }

    .footer_mobile_social_icon_link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background-color 0.3s ease, opacity 0.3s ease;
        flex-shrink: 0;
    }

    .footer_mobile_social_icon_link:hover {
        background: #5A5A5A;
        opacity: 0.9;
    }

    .footer_mobile_social_icon_img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .footer_mobile_social_icon_link svg {
        width: 32px;
        height: 32px;
        display: block;
    }

    .footer_mobile_nav { 
        display: flex; 
        flex-direction: column; 
        gap: 20px; 
        width: 100%;
    }

    .footer_mobile_nav_label { 
        font-size: 14px; 
        font-weight: 400; 
        color: #A6A6A6; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
        white-space: pre;
    }

    .footer_mobile_nav_links { 
        display: flex; 
        flex-direction: column; 
        gap: 12px; 
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 0;
    }

    .footer_mobile_nav_links a { 
        font-size: 14px; 
        font-weight: 500; 
        color: #FFFFFF; 
        text-decoration: none; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
    }

    .footer_mobile_right_column {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 372px;
    }

    .footer_mobile_docs { 
        display: flex; 
        flex-direction: column; 
        gap: 20px; 
        width: 100%; 
    }

    .footer_mobile_docs_label { 
        font-size: 14px; 
        font-weight: 400; 
        color: #A6A6A6; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
        white-space: pre;
    }

    .footer_mobile_docs_links { 
        display: flex; 
        flex-direction: column; 
        gap: 12px; 
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 0;
    }

    .footer_mobile_docs_links a { 
        font-size: 14px; 
        font-weight: 500; 
        color: #FFFFFF; 
        text-decoration: none; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
    }

    .footer_mobile_bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    a.footer_mobile_badge,
    .footer_mobile_badge { 
        display: flex; 
        gap: 20px; 
        align-items: center; 
        text-decoration: none; 
        color: inherit; 
        transition: opacity 0.2s ease; 
    }

    a.footer_mobile_badge:hover { 
        opacity: 0.8; 
    }

    .footer_mobile_badge_icon { 
        width: 60px; 
        height: 60px; 
        background: #FECC17; 
        border-radius: 12px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        flex-shrink: 0;
        overflow: hidden;
    }

    .footer_mobile_badge_icon img { 
        width: 51.2px; 
        height: 32.04px; 
        object-fit: contain;
        transform: scaleY(-1);
    }

    .footer_mobile_badge_text { 
        display: flex; 
        flex-direction: column; 
        gap: 4px; 
    }

    .footer_mobile_badge_title { 
        font-size: 20px; 
        font-weight: 800; 
        color: #FFFFFF; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
        min-width: min-content;
    }

    .footer_mobile_badge_subtitle { 
        font-size: 12px; 
        font-weight: 500; 
        color: #A6A6A6; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
        white-space: pre;
    }

    .footer_mobile_copyright { 
        font-size: 12px; 
        font-weight: 500; 
        color: #A6A6A6; 
        font-family: 'Montserrat', sans-serif; 
        line-height: normal;
        white-space: pre;
    }
}

/* ==========================================================================
   MOBILE STYLES FOR FIGMA DESIGN (390px width)
   Точное соответствие дизайну из Figma для мобильной версии
   ========================================================================== */

@media (max-width: 480px) {
    /* Hero Section - Mobile Figma Design */
    .hero_section {
        padding-top: 68px;
        margin-bottom: 60px;
    }
    
    .hero_container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 12px;
        max-width: 390px;
        margin: 0 auto;
    }
    
    .hero_content {
        width: 100%;
        max-width: 366px;
        order: 1;
    }
    
    .hero_title {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 0;
        max-width: 366px;
        position: relative;
    }
    
    .hero_title_wave {
        width: 106px;
        height: 29px;
        position: absolute;
        left: 127px;
        top: 26px;
        right: auto;
    }
    
    /* Hero Image Block - Mobile */
    .hero_image {
        width: 100%;
        max-width: 366px;
        height: auto;
        position: relative;
        margin: 20px auto 0;
        order: 2;
    }
    
    /* Показываем мобильное изображение house.svg */
    .hero_image_mobile {
        display: block !important;
        width: 100%;
        max-width: 366px;
        margin: 0 auto;
    }
    
    .hero_image_mobile img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* Скрываем десктопные элементы на мобильных */
    .hero_image_bg {
        display: none !important;
    }
    
    .hero_image_content {
        display: none !important;
    }
    
    .hero_floor_selector {
        display: none !important;
    }
    
    .hero_apartment_card {
        display: none !important;
    }
    
    .hero_floor_badge {
        display: none !important;
    }
    
    /* Integrations Block - Mobile */
    .hero_integrations {
        width: 100%;
        max-width: 366px;
        margin: 52px auto 0;
        order: 3;
    }
    
    .integrations_title {
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        color: #3D392A;
        margin-bottom: 12px;
    }
    
    .integrations_grid {
        background: #FFFFFF;
        border: 1px solid #F6F6F6;
        padding: 12px;
        gap: 4px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .integrations_row {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        width: 100%;
        overflow: hidden;
    }
    
    .integrations_item {
        height: 30px;
        min-height: 30px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .integrations_item img {
        max-height: 20px;
        width: auto;
        opacity: 0.8;
        width: 185% !important;
    }
    
    .integrations_divider {
        height: 0;
        width: 100%;
        position: relative;
    }
    
    .integrations_divider_inner {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: -1px;
    }
    
    .integrations_divider img {
        display: block;
        width: 100%;
        height: 1px;
    }
    
    /* Suitable Section - Mobile */
    .suitable_section {
        margin-bottom: 60px;
    }
    
    .suitable_header {
        margin-bottom: 20px;
    }
    
    .section_title {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 0;
        flex-wrap: wrap;
    }
    
    .section_title_decor {
        width: 120px;
        height: 19px;
        position: absolute;
        left: 1px;
        top: -12px;
    }
    
    /* Suitable Tabs - Mobile Horizontal Scroll */
    .suitable_tabs {
        display: flex;
        gap: 13px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
        margin-top: 20px;
    }
    
    .suitable_tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab_item {
        flex-shrink: 0;
        min-width: 144px;
        height: 44px;
        padding: 12px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .tab_icon {
        width: 30px;
        height: 30px;
    }
    
    .tab_icon svg {
        width: 30px;
        height: 30px;
    }
    
    .tab_item span {
        font-size: 14px;
    }
    
    /* Suitable Cards - Mobile Horizontal Scroll */
    .suitable_cards {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0 20px;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .suitable_cards::-webkit-scrollbar {
        display: none;
    }
    
    .suitable_card {
        flex: 0 0 366px;
        width: 366px;
        min-width: 366px;
        max-width: 366px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .card_content {
        margin-bottom: 20px;
    }
    
    .card_content_top {
        gap: 10px;
    }
    
    .card_title {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.1;
    }
    
    .card_price {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .card_features {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        top: auto;
        height: auto;
    }
    
    .card_features p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .card_button {
        height: 44px;
        padding: 12px 0px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    /* Suitable Nav - Mobile */
    .suitable_nav {
        display: flex;
        gap: 8px;
        margin-top: 20px;
    }
    
    .nav_arrow {
        width: 52px;
        height: 44px;
        border-radius: 12px;
        font-size: 20px;
    }
    
    /* Management Section - Mobile (Figma Design) */
    .management_section {
        margin-bottom: 60px;
    }
    
    .section_title_large {
        font-size: 22px;
        font-weight: 800;
        line-height: normal;
        color: #3D392A;
        margin-bottom: 20px;
    }
    
    .management_content {
        flex-direction: column;
        gap: 20px;
    }
    
    .management_image {
        /* width: 366px !important; */
        max-width: 100% !important;
        height: 469px !important;
        position: relative !important;
        order: 1;
        overflow: hidden !important;
    }
    
    .management_image_bg {
        /* width: 366px !important; */
        max-width: 100% !important;
        height: 469px !important;
        border-radius: 10px !important;
        background: #FECC17 !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .management_decor_polygon1 {
        position: absolute;
        left: -69px;
        top: 89px;
        width: 277.564px;
        height: 269.042px;
    }
    
    .management_decor_polygon2 {
        position: absolute;
        left: 42.04px;
        top: 200.05px;
        width: 180.173px;
        height: 174.086px;
    }
    
    .management_main_image {
        position: absolute !important;
        right: 0 !important;
        top: 145px !important;
        width: 271px !important;
        height: 302px !important;
        border-radius: 6px !important;
        left: auto !important;
        object-fit: cover;
    }
    
    .management_image_overlay {
        position: absolute !important;
        right: 0 !important;
        top: 188px !important;
        width: 194px !important;
        height: 54px !important;
        left: auto !important;
        overflow: hidden;
    }
    
    .management_image_overlay img {
        width: 190px !important;
        height: 50px !important;
        left: 6px !important;
        top: 2px !important;
    }
    
    .management_building_info {
        position: absolute;
        left: 20px;
        top: 20px;
        width: 258px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .building_badge {
        font-size: 14px;
        font-weight: 500;
        padding: 6px 10px;
        border: 1px solid #3D392A;
        border-radius: 4px;
        width: fit-content;
        background: transparent;
        color: #3D392A;
        line-height: normal;
    }
    
    .building_title {
        font-size: 22px;
        font-weight: 800;
        line-height: normal;
        color: #3D392A;
    }
    
    .management_house_info {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -66.5px;
        top: 154px;
        width: 173px;
        padding: 8px;
        border-radius: 7px;
        background: #FFFFFF;
        box-shadow: 0px 10px 35px -10px rgba(172, 171, 163, 0.4);
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 10;
    }
    
    .house_title {
        font-size: 14px;
        font-weight: 500;
        color: #3D392A;
        line-height: normal;
    }
    
    .house_divider {
        height: 1px;
        position: relative;
        width: 100%;
        background: #E5E5E5;
    }
    
    .house_divider img {
        display: block;
        width: 100%;
        height: 1px;
    }
    
    .house_apartments {
        display: flex;
        flex-direction: column;
        gap: 8px;
        height: 38px;
    }
    
    .house_apt_item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .house_apt_item span:first-child {
        font-size: 10px;
        font-weight: 500;
        color: #A6A6A6;
    }
    
    .house_apt_item span:last-child {
        font-size: 12px;
        font-weight: 600;
        color: #3D392A;
    }
    
    .management_button {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 393px;
        bottom: auto;
        right: auto;
        width: 342px;
        height: 64px;
        padding: 12px 16px;
        border-radius: 12px;
        background: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .management_button span {
        font-size: 14px;
        font-weight: 600;
        color: #3D392A;
    }
    
    .management_list {
        width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 0;
        height: auto !important;
        flex: none !important;
        min-height: auto !important;
    }
    
    .management_divider {
        height: 1px;
        min-height: 1px;
        position: relative;
        width: 100%;
        background: #E5E5E5;
        flex-shrink: 0;
    }
    
    .management_divider img {
        display: block;
        width: 100%;
        height: 1px;
        opacity: 1;
    }
    
    .management_item {
        padding: 12px 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: none !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .management_item_title {
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
        color: #3D392A;
        margin-bottom: 0;
        width: 100%;
    }
    
    .management_item p {
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        color: #A6A6A6;
        width: 100%;
    }
    
    /* Features Section - Mobile */
    .features_section {
        margin-bottom: 60px;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .features_left,
    .features_right {
        display: contents;
    }
    
    .feature_card {
        width: 100% !important;
        padding: 12px;
        border-radius: 12px;
        padding-bottom: 0;
        padding-right: 0;
    }
    
    .feature_card_title {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 10px;
    }
    
    .feature_card p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
    }
    
    .feature_card_large {
        /* Было мало места под заголовок+описание (картинка снизу фиксированной высоты) */
        height: 410px;
    }
    
    .feature_card_large_text {
        /* На мобилке убираем фиксированную ширину (405px),
           иначе заголовок режется overflow'ом карточки */
        left: 12px;
        right: 12px;
        top: 12px;
        width: auto;
        padding: 0;
    }

    /* Убираем нижний отступ у текста внутри верхнего блока,
       чтобы влезало больше строк до картинки */
    .feature_card_large_text p {
        padding-bottom: 0;
    }

    /* Выгрузка на агрегаторы: фиксированные ширины режут текст */
    .feature_card_large_bg .feature_card_title,
    .feature_card_large_bg p {
        width: auto;
        left: 12px;
        right: 12px;
    }
    
    .feature_card_integrations {
        height: 276px;
    }
    
    .feature_card_medium {
        height: 334px;
        overflow: hidden;
    }
    
    .feature_card_medium p {
        width: 251px !important;
    }
    
    .feature_tablet_wrapper {
        position: absolute;
        left: auto;
        right: 14px;
        top: 150px;
        width: 233px;
        height: 297px;
        z-index: 1;
    }
    
    .feature_tablet_rectangle {
        position: absolute;
        left: 117px;
        top: 129px;
        transform: translate(-50%, -50%);
        width: 146%;
        height: 95%;
        z-index: 2;
    }
    
    .feature_card_small {
        position: absolute;
        right: 8px;
        top: 90px;
        width: 80px;
        height: 158px;
        z-index: 3;
    }
    
    .feature_integrations {
        gap: 0;
    }
    
    .feature_integrations_row {
        height: 57px;
    }
    
    .feature_integrations_row > div {
        width: 114px;
        height: 57px;
    }
    
    /* Demo Section - Mobile */
    .demo_section {
        margin-bottom: 60px;
    }
    
    .demo_section .section_title {
        font-size: 22px;
        font-weight: 800;
        line-height: normal;
        margin-bottom: 0;
    }
    
    .demo_header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .demo_tags {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .demo_tags::-webkit-scrollbar {
        display: none;
    }
    
    .demo_tag {
        flex-shrink: 0;
        height: 36px;
        padding: 8px 12px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        background: #FFFFFF;
        border: 1px solid #F6F6F6;
        color: #3D392A;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .demo_tag_active {
        border-color: #FECC17;
        border-width: 1px;
    }
    
    .demo_devices {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .demo_tablet {
        display: none;
    }
    
    .demo_phone {
        position: relative;
        width: 100%;
        max-width: 366px;
        margin: 0 auto;
        left: auto;
        top: auto;
    }
    
    .demo_phone_device {
        position: relative;
        width: 100%;
        max-width: 366px;
        height: auto;
    }
    
    .demo_phone_frame {
        position: relative;
        width: 100%;
        max-width: 366px;
        height: auto;
        display: block;
    }
    
    .demo_phone_screen {
        position: absolute;
        top: 1.76%;
        left: 4.42%;
        right: 4.42%;
        bottom: 1.96%;
        border-radius: 18px;
        overflow: hidden;
    }
    
    .demo_phone_screenshot {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .demo_phone_screen iframe {
        width: calc(375px + 20px);
        height: 812px;
        border: none;
        background: #fff;
        transform: scale(0.89);
        transform-origin: top left;
        margin-right: -20px;
    }
    
    .demo_phone_island {
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 97px;
        height: 29px;
        background: #000;
        border-radius: 20px;
        z-index: 3;
    }
    
    /* Tariffs Section - Mobile */
    .tariffs_section {
        margin-bottom: 60px;
    }
    
    .section_title_decor_package {
        width: 61px;
        height: 10px;
        position: absolute;
        left: 2px;
        bottom: -4px;
    }
    
    .tariffs_packages,
    .tariffs_licenses {
        display: flex;
        flex-direction: column;
        gap: 11px;
    }
    
    .tariff_card {
        width: 100%;
        min-height: 160px;
        height: auto;
        padding: 20px;
        border-radius: 11px;
        background: #F6F6F6;
        border: 1px solid #E5E5E5;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 15px;
    }
    
    .tariff_card_decorative {
        position: absolute;
        top: 0;
        right: 0;
        pointer-events: none;
        z-index: 0;
    }
    
    .tariff_card_header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    
    .tariff_card_title {
        font-size: 18px;
        font-weight: 800;
        color: #3D392A;
        line-height: normal;
    }
    
    .tariff_card_price {
        font-size: 18px;
        font-weight: 600;
        color: #3D392A;
        text-align: right;
        white-space: nowrap;
    }
    
    .price_bold {
        font-size: 18px;
        font-weight: 800;
    }
    
    .tariff_card_content {
        position: relative;
        z-index: 1;
        flex: 1;
        display: flex;
        align-items: flex-end;
    }
    
    .tariff_card_content p {
        font-size: 14px;
        font-weight: 500;
        color: #A6A6A6;
        line-height: 1.3;
        margin: 0;
    }
    
    .tariffs_section .section_title {
        font-size: 22px;
        font-weight: 800;
        line-height: normal;
        margin-bottom: 0;
    }
    
    .tariffs_packages {
        margin-top: 24px;
    }
    
    .tariffs_licenses_title {
        margin-top: 40px;
        font-size: 22px;
    }
    
    .tariff_card_calculate,
    .tariff_card_free {
        height: 160px;
    }
    
    .tariff_card_calculate .tariff_card_header,
    .tariff_card_free .tariff_card_header {
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .tariff_card_calculate svg,
    .tariff_card_free svg {
        width: 32px;
        height: 32px;
    }
    
    /* Отдельные лицензии - Mobile decorations */
    .tariffs_licenses .tariff_card:nth-child(1) .tariff_glow,
    .tariffs_licenses .tariff_card:nth-child(1) .tariff_decor_group {
        left: auto;
        right: -80px;
        top: -100px;
        width: 280px;
        height: 280px;
    }
    
    .tariffs_licenses .tariff_card:nth-child(1) .tariff_decor_group {
        transform: rotate(180deg);
    }
    
    .tariffs_licenses .tariff_card:nth-child(2) .tariff_glow,
    .tariffs_licenses .tariff_card:nth-child(2) .tariff_decor_group {
        left: auto;
        right: -50px;
        top: -80px;
        width: 280px;
        height: 280px;
    }
    
    .tariffs_licenses .tariff_card:nth-child(2) .tariff_decor_group {
        transform: rotate(0deg);
    }
    
    .tariffs_licenses .tariff_card:nth-child(3) .tariff_glow,
    .tariffs_licenses .tariff_card:nth-child(3) .tariff_decor_group {
        left: auto;
        right: -60px;
        top: -90px;
        width: 280px;
        height: 280px;
    }
    
    .tariffs_licenses .tariff_card:nth-child(3) .tariff_decor_group {
        transform: rotate(180deg);
    }
    
    .tariffs_licenses .tariff_card:nth-child(4) .tariff_glow,
    .tariffs_licenses .tariff_card:nth-child(4) .tariff_decor_group {
        left: auto;
        right: -40px;
        top: -100px;
        width: 320px;
        height: 320px;
    }
    
    .tariffs_licenses .tariff_card:nth-child(4) .tariff_decor_group {
        transform: rotate(180deg);
    }
    
    /* Partners Section - Mobile */
    .partners_section {
        margin-bottom: 60px;
    }
    
    .partners_title {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
        padding: 0;
        left: 0;
        max-width: 366px;
    }
    
    .partners_title .wave_underline {
        width: 188px;
        height: 28px;
        bottom: -4px;
    }
    
    .partners_carousel {
        margin-top: 20px;
        height: 45px;
    }
    
    .partner_logo {
        height: 45px;
    }
    
    .partners_carousel::before,
    .partners_carousel::after {
        width: 84px;
        height: 45px;
    }
    
    /* Active Catalogs Section - Mobile */
    .active_catalogs_section {
        margin-bottom: 60px;
    }
    
    .active_catalogs_section .section_title {
        font-size: 22px;
        font-weight: 800;
    }
    
    .active_catalogs_section .section_title_decor.catalog {
        width: 120px;
        height: 25px;
        top: 4px;
    }
    
    .active_catalogs_wrapper {
        position: relative;
        margin-top: 20px;
    }
    
    .active_catalogs_carousel {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -12px;
        padding: 0 12px;
    }
    
    .active_catalogs_carousel::-webkit-scrollbar {
        display: none;
    }
    
    .active_catalog_card {
        flex: 0 0 366px;
        width: 366px;
        min-width: 366px;
        height: 420px;
        border-radius: 10px;
    }
    
    .active_catalog_card_large {
        flex: 0 0 366px;
        width: 366px;
        min-width: 366px;
    }
    
    .catalog_card_bg,
    .catalog_card_bg img,
    .catalog_card_overlay {
        border-radius: 10px;
    }
    
    .active_catalog_card_large {
        /* не сужаем абсолютный <a> inset:0 паддингом на карточке */
        padding: 0;
    }
    
    .catalog_card_badge {
        font-size: 12px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 30px;
        background: white;
        color: #3D392A;
        display: inline-block;
        width: fit-content;
        position: relative;
        z-index: 3;
        margin-bottom: 10px;
    }
    
    .active_catalog_card_large .catalog_card_content {
        /* на мобильных контент должен быть прижат к низу, как и в остальных карточках */
        padding: 20px;
        gap: 12px;
        position: relative;
        z-index: 3;
        height: 100%;
        justify-content: flex-end;
    }
    
    .catalog_card_content {
        padding: 20px;
        gap: 12px;
    }
    
    .catalog_card_title {
        font-size: 20px;
        font-weight: 800;
    }
    
    .catalog_card_description {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.7;
        line-height: normal;
    }
    
    .catalog_card_button {
        font-size: 14px;
        font-weight: 600;
        height: 44px;
        padding: 12px 0;
        background: transparent;
        border: none;
        color: white;
        text-decoration: none;
        position: relative;
        display: inline-block;
    }
    
    .catalog_card_button::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 12px;
        width: 100%;
        height: 1px;
        background: white;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
    }
    
    .active_catalogs_nav {
        position: static;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 20px;
    }
    
    .active_catalogs_nav button {
        width: 44px;
        height: 44px;
        background: white;
        border: 1px solid #FECC17;
        border-radius: 12px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Try Free Section - Mobile */
    .try_free_section {
        margin-bottom: 60px;
    }
    
    .try_free_section .section_title {
        font-size: 22px;
        font-weight: 800;
        line-height: normal;
        text-align: center;
        position: relative;
        display: inline-block;
    }
    
    .mobile-break {
        display: block;
    }
    
    .try_free_section .section_title_decor_free {
        width: 140px;
        height: 37px;
        position: absolute;
        left: 202px;
        top: 2px;
        margin-top: 0;
        transform: rotate(180deg) scaleY(-1);
    }
    
    .try_free_container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .try_free_content {
        width: 100%;
        text-align: center;
    }
    
    .try_free_cards {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-top: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -12px;
        margin-right: -12px;
        padding: 0 12px;
        width: calc(100% + 24px);
    }
    
    .try_free_cards::-webkit-scrollbar {
        display: none;
    }
    
    .try_free_card {
        flex: 0 0 221px;
        min-width: 221px;
        width: 221px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .try_free_form {
        width: 100%;
        max-width: 366px;
    }
    
    .try_free_form_inner {
        padding: 20px;
        border-radius: 20px;
    }
    
    .try_free_form_fields {
        gap: 10px;
    }
    
    .try_free_form_row {
        margin-bottom: 10px;
    }
    
    .try_free_form_label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .try_free_form_input {
        height: 44px;
        font-size: 14px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .try_free_form_toggle {
        margin: 10px 0;
    }
    
    .try_free_form_toggle span {
        font-size: 14px;
    }
    
    .try_free_form_checkbox {
        margin: 12px 0;
    }
    
    .try_free_checkbox_label {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .try_free_form_submit {
        height: 64px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    /* FAQ Section - Mobile */
    .faq_section {
        margin-bottom: 60px;
    }
    
    .faq_container {
        flex-direction: column;
        gap: 8px;
    }
    
    .faq_column {
        width: 100%;
        max-width: 100%;
        gap: 8px;
    }
    
    .faq_item {
        padding: 20px;
        border-radius: 12px;
        min-height: 88px;
    }
    
    .faq_question {
        gap: 12px;
    }
    
    .faq_question p {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .faq_icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .faq_answer {
        margin-top: 12px;
    }
    
    .faq_answer p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
    }
    
    /* Card Decorative Elements - Mobile */
    .card_decorative {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 20px;
        pointer-events: none;
    }
    
    .card_decor_ellipse {
        position: absolute;
        top: -8px;
        right: -30px;
        width: 262px;
        height: 294px;
    }
    
    .card_decor_ellipse9 {
        position: absolute;
        top: 36px;
        left: 117px;
        width: 294px;
        height: 179px;
    }
    
    .card_decor_ellipse10 {
        position: absolute;
        top: 152px;
        left: 107px;
        width: 213px;
        height: 119px;
    }
    
    .card_decor_ellipse11 {
        position: absolute;
        top: 208px;
        left: 141px;
        width: 146px;
        height: 73px;
    }
    
    /* CRM Items in Card - Mobile */
    .crm_item {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .crm_item span:first-child {
        font-size: 14px;
        font-weight: 500;
    }
    
    .crm_badge {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F6F6F6;
        border-radius: 6px;
        padding: 5px 8px;
        height: 22px;
    }
    
    .crm_badge img {
        height: 10px;
        width: auto;
    }
    
    /* Feature Card Aggregators - Mobile (Figma Design - EXACT) */
    .feature_card_large_bg {
        height: 488px;
        position: relative;
        overflow: hidden;
    }
    
    .feature_card_large_bg .feature_card_title {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 2;
    }
    
    .feature_card_large_bg p {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 2;
    }
    
    .feature_aggregators_bg {
        position: absolute;
        top: 160px;
        left: -44px;
        width: 430px;
        height: 326px;
        bottom: auto;
        right: auto;
        border-radius: 0;
        overflow: visible;
    }
    
    .feature_aggregators_bg img {
        width: 100%;
        height: 100%;
        top: 0;
    }
    
    .feature_aggregators {
        position: absolute;
        top: 215px;
        left: 20px;
        right: 20px;
        bottom: 0;
        display: block;
        width: calc(100% - 40px);
        height: 260px;
    }
    
    .aggregator_item {
        position: absolute !important;
        display: block;
    }
    
    .aggregator_bg {
        position: absolute;
        background: #FFFFFF;
        border-radius: 7px;
        box-shadow: 0px 6px 20px -6px rgba(172, 171, 163, 0.4);
    }
    
    .aggregator_item img {
        position: relative;
        z-index: 1;
    }
    
    /* child 1: Циан (синяя S) - справа вверху */
    .feature_card_large_bg .aggregator_item:nth-child(1) {
        left: auto;
        right: 5px;
        top: 144px;
        width: 38px;
        height: 38px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(1) img {
        width: 38px;
        height: 38px;
    }
    
    /* child 2: Дом.РФ - справа, второй ряд */
    .feature_card_large_bg .aggregator_item:nth-child(2) {
        left: auto;
        right: 38px;
        top: 70px;
        width: 36px;
        height: 36px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(2) img {
        width: 36px;
        height: 36px;
    }
    
    /* child 3: М2 - по центру, второй ряд */
    .feature_card_large_bg .aggregator_item:nth-child(3) {
        left: 160px;
        top: 61px;
        width: 44px;
        height: 44px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(3) .aggregator_bg {
        inset: -5px;
        width: 54px;
        height: 54px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(3) img {
        width: 38px;
        height: 34px;
        left: 9px;
        top: -4px;
    }
    
    /* child 4: ДомКлик - по центру внизу */
    .feature_card_large_bg .aggregator_item:nth-child(4) {
        left: 128px;
        top: 190px;
        width: 42px;
        height: 42px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(4) .aggregator_bg {
        inset: -5px;
        width: 60px;
        height: 60px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(4) img {
        width: 31px;
        height: 38px;
        right: -10px;
        top: 8px;
    }
    
    /* child 5: Авито - слева внизу */
    .feature_card_large_bg .aggregator_item:nth-child(5) {
        left: -5px;
        top: 185px;
        width: 70px;
        height: 24px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(5) img {
        width: 92px;
        height: 54px;
    }
    
    /* child 6: 2ГИС - слева, второй ряд */
    .feature_card_large_bg .aggregator_item:nth-child(6) {
        left: 53px;
        top: 98px;
        width: 33px;
        height: 33px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(6) .aggregator_bg {
        inset: -5px;
        width: 52px;
        height: 52px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(6) img {
        width: 33px;
        height: 33px;
    }
    
    /* child 7: VK - справа внизу */
    .feature_card_large_bg .aggregator_item:nth-child(7) {
        left: auto;
        right: 65px;
        top: 195px;
        width: 44px;
        height: 44px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(7) .aggregator_bg {
        inset: -4px;
        width: 52px;
        height: 52px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(7) img {
        width: 38px;
        height: 38px;
    }
    
    /* child 8: Геолокация (жёлтая) - справа, третий ряд */
    .feature_card_large_bg .aggregator_item:nth-child(8) {
        left: auto;
        right: 63px;
        top: -15px;
        width: 40px;
        height: 40px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(8) .aggregator_bg {
        display: none;
    }
    .feature_card_large_bg .aggregator_item:nth-child(8) img {
        width: 40px;
        height: 38px;
    }
    
    /* child 9: Яндекс (красная Я) - слева вверху */
    .feature_card_large_bg .aggregator_item:nth-child(9) {
        left: 82px;
        top: -40px;
        width: 33px;
        height: 33px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(9) .aggregator_bg {
        display: none;
    }
    .feature_card_large_bg .aggregator_item:nth-child(9) img {
        width: 33px;
        height: 33px;
        border-radius: 20px;
    }
    
    /* child 10: Курсор (жёлтая рука) - рядом с Яндексом */
    .feature_card_large_bg .aggregator_item:nth-child(10) {
        left: 6px;
        top: 29px;
        width: 32px;
        height: 32px;
    }
    .feature_card_large_bg .aggregator_item:nth-child(10) img {
        width: 32px;
        height: 32px;
        border-radius: 0;
    }
    
    /* Footer Questions Section - Mobile */
    .footer_questions_wrapper {
        height: auto;
        min-height: auto;
    }
    
    .footer_questions_title {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .footer_questions_description {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .footer_questions_form_input {
        height: 54px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .footer_questions_form_label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer_questions_toggle_text {
        font-size: 14px;
    }
    
    .footer_questions_checkbox_text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer_questions_form_submit {
        height: 56px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    /* Fix for title decorations positioning */
    .section_title {
        position: relative;
    }
    
    .section_title .section_title_decor {
        position: absolute;
        width: 134px;
    }
    
    /* Fix text wrapping */
    .hero_title,
    .section_title,
    .section_title_large,
    .card_title,
    .tariff_card_title,
    .feature_card_title {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Tariff Modal Styles */
.tariff_modal_wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 0 !important;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.tariff_modal_content {
    padding: 24px;
}

.tariff_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.tariff_modal_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #3D392A;
    margin: 0;
    flex: 1;
    padding-right: 50px;
}

.tariff_modal_close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.tariff_modal_close:hover {
    opacity: 0.7;
}

.tariff_modal_features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.tariff_modal_features li {
    font-size: 14px;
    line-height: 1.3;
    color: #3D392A;
    margin-bottom: 12px;
    padding-left: 0;
}

.tariff_modal_features li:last-child {
    margin-bottom: 0;
}

.tariff_modal_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tariff_modal_input_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tariff_modal_label {
    font-size: 14px;
    font-weight: 500;
    color: #3D392A;
}

.tariff_modal_input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    color: #3D392A;
    background: #FFFFFF;
    transition: border-color 0.2s;
}

.tariff_modal_input:focus {
    outline: none;
    border-color: #FECC17;
}

.tariff_modal_checkbox_wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.tariff_modal_checkbox_input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #FECC17;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.tariff_modal_checkbox_input:checked {
    background-color: transparent;
    border-color: #FECC17;
}

.tariff_modal_checkbox_input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #FECC17;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.tariff_modal_checkbox_label {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #3D392A;
    cursor: pointer;
}

.tariff_modal_checkbox_label a {
    color: #3D392A;
    text-decoration: underline;
}

.tariff_modal_submit {
    width: 100%;
    height: 48px;
    background: #FECC17;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #3D392A;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.tariff_modal_submit:hover {
    background: #FFD84D;
}

.tariff_modal_submit:active {
    transform: scale(0.98);
}

/* Modal backdrop styles */
#exportModal.export_modal {
    /* Должно быть видно основной контент под модалкой */
    background: rgba(61, 57, 42, 0.38) !important;
    backdrop-filter: blur(6px) saturate(1.05) !important;
    -webkit-backdrop-filter: blur(6px) saturate(1.05) !important;
    z-index: 10000 !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

#exportModal .export_close {
    background: transparent !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 1 !important;
}

/* Mobile styles for modal */
@media (max-width: 768px) {
    .tariff_modal_wrapper {
        max-width: calc(100% - 32px);
        margin: 16px;
    }
    
    .tariff_modal_content {
        padding: 20px;
    }
    
    .tariff_modal_title {
        font-size: 18px;
    }
    
    .tariff_modal_features li {
        font-size: 14px;
    }
    
    .tariff_modal_input,
    .tariff_modal_submit {
        height: 44px;
        font-size: 14px;
    }
}

/* ================================================
   SUITABLE MODALS (Подходит для продажи)
   ================================================ */
.suitable_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.suitable_modal_overlay.active {
    opacity: 1;
    visibility: visible;
}

.suitable_modal {
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    padding: 20px 20px 24px 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.suitable_modal_overlay.active .suitable_modal {
    transform: translateY(0);
}

.suitable_modal_close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 44px;
    height: 44px;
    background: #F6F6F6;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.suitable_modal_close:hover {
    background: #EDEDED;
}

.suitable_modal_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.0;
    color: #3D392A;
    margin: 0 0 20px 0;
    padding-right: 60px;
}

.suitable_modal_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3D392A;
    margin: 0 0 8px 0;
}

.suitable_modal_desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #A6A6A6;
    margin: 0 0 20px 0;
}

.suitable_modal_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suitable_modal_input_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suitable_modal_input_group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #A6A6A6;
}

.suitable_modal_input {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 12px;
    height: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #3D392A;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.suitable_modal_input::placeholder {
    color: #A6A6A6;
}

.suitable_modal_input:focus {
    border-color: #FECC17;
}

.suitable_modal_checkbox_group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.suitable_modal_checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.suitable_modal_checkbox_label input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    opacity: 0;
    margin: 0;
}

.suitable_modal_checkbox_custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid #FECC17;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    margin-top: 2px;
}

.suitable_modal_checkbox_label input[type="checkbox"]:checked + .suitable_modal_checkbox_custom {
    background: #FECC17;
}

.suitable_modal_checkbox_label input[type="checkbox"]:checked + .suitable_modal_checkbox_custom::after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%233D392A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.suitable_modal_checkbox_text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: #A6A6A6;
}

.suitable_modal_checkbox_text a {
    color: #A6A6A6;
    text-decoration: underline;
}

.suitable_modal_submit {
    background: #FECC17;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    height: 44px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #3D392A;
    cursor: pointer;
    transition: background 0.3s ease;
    width: fit-content;
    margin-top: 0;
}

.suitable_modal_submit:hover {
    background: #FFD84D;
}

/* Suitable Modals - Mobile */
@media (max-width: 768px) {
    .suitable_modal {
        max-width: calc(100% - 24px);
        margin: 12px;
        padding: 20px;
        border-radius: 16px;
    }

    .suitable_modal_title {
        font-size: 18px;
        padding-right: 50px;
    }

    .suitable_modal_form {
        gap: 14px;
    }

    .suitable_modal_input {
        height: 44px;
    }

    .suitable_modal_submit {
        width: 100%;
        height: 48px;
    }

    .suitable_modal_close {
        width: 40px;
        height: 40px;
        top: 4px;
        right: 4px;
    }
}

/* Tab items clickable style */
.tab_item {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tab_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Модалка после отправки заявки */
.request_success_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.request_success_modal.active {
    opacity: 1;
    visibility: visible;
}

.request_success_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.request_success_modal_content {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 20px;
    padding: 20px 20px 24px 20px;
    max-width: 625px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.request_success_modal.active .request_success_modal_content {
    transform: scale(1);
}

.request_success_modal_close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 52px;
    height: 44px;
    border: none;
    background: #F6F6F6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    padding: 12px 16px;
}

.request_success_modal_close:hover {
    background-color: #EEEEEE;
}

.request_success_modal_close svg {
    width: 20px;
    height: 20px;
}

.request_success_modal_title_wrapper {
    margin: 0 0 30px 0;
}

.request_success_modal_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #3D392A;
    margin: 0;
    text-align: left;
}

.request_success_modal_title:first-of-type {
    margin-bottom: 4px;
}

.request_success_modal_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #3D392A;
    margin: 0 0 20px 0;
    text-align: left;
}

.request_success_modal_buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.request_success_social_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 92px;
    background: #FAFAFA;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    padding: 20px 0;
}

.request_success_social_btn:hover {
    background: #FECC17;
}

.request_success_social_btn svg {
    width: 52px;
    height: 52px;
}


/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .request_success_modal_content {
        padding: 12px 12px 16px 12px;
        max-width: 366px;
    }

    .request_success_modal_close {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        padding: 8px;
    }

    .request_success_modal_title {
        font-size: 20px;
    }

    .request_success_modal_subtitle {
        font-size: 14px;
    }

    .request_success_modal_buttons {
        flex-direction: column;
        gap: 12px;
    }

    .request_success_social_btn {
        width: 100%;
        flex: none;
    }
}

/* FIX: на touch-устройствах трансформированный iframe даёт смещение тапа и ломает скролл */
@media (hover: none) and (pointer: coarse) {
    .demo_phone_screen iframe {
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        transform-origin: initial !important;
        margin-right: 0 !important;
    }

    /* чтобы “островок” не перехватывал тапы */
    .demo_phone_island {
        pointer-events: none;
    }
}