/* ============================================================
   template_styles.css — New Land VNSN template
   Содержит: @font-face (Rawline) + Google Fonts (Onest) + все стили страницы
   Bitrix подключает этот файл автоматически для шаблона
   ============================================================ */

/* --- Onest из Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&display=swap');

/* --- Шрифты Rawline --- */
@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 100;
    src: url('fonts/rawline/rawline-100.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 100;
    src: url('fonts/rawline/rawline-100i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 200;
    src: url('fonts/rawline/rawline-200.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 200;
    src: url('fonts/rawline/rawline-200i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/rawline/rawline-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 300;
    src: url('fonts/rawline/rawline-300i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/rawline/rawline-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/rawline/rawline-400i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/rawline/rawline-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 500;
    src: url('fonts/rawline/rawline-500i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/rawline/rawline-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 600;
    src: url('fonts/rawline/rawline-600i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/rawline/rawline-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 700;
    src: url('fonts/rawline/rawline-700i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/rawline/rawline-800.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 800;
    src: url('fonts/rawline/rawline-800i.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/rawline/rawline-900.ttf') format('truetype');
}

@font-face {
    font-family: 'Rawline';
    font-style: italic;
    font-weight: 900;
    src: url('fonts/rawline/rawline-900i.ttf') format('truetype');
}


/* --- Основные стили страницы --- */
:root {
    --bg-offset: 0;

    --color-black: #000;
    --color-bg: #F7F8F8;
    --color-dark: #012624;
    --color-dark-3: #1D3433;
    --color-cta: #BCF49A;
    --color-text: #141A1A;
    --color-border: #E7E8E8;
    --color-features-bg: #E9ECEC;
    --color-white: #FFFFFF;
    --color-light-card: #F7F8F8;

    /* --- Новые переменные VNSN --- */
    --color-primary-dark: #012624;
    --color-primary-bg: #f6f7f7;
    --color-accent: #bcf49a;
    --color-text-muted: rgba(32, 36, 36, 0.70);
    --color-card-bg: #e8ecec;

    --header-h: 72px;
    --content-max: 1440px;
    --padding-side: 40px;

    --shadow-card: 0 0 0 1px rgba(23, 23, 23, 0.04),
    0 1px 1px -0.5px rgba(23, 23, 23, 0.04),
    0 3px 3px -1.5px rgba(23, 23, 23, 0.04);
    --shadow-elevated: 0 2px 4px rgba(1, 38, 36, 0.04),
    0 4px 8px rgba(1, 38, 36, 0.04),
    0 12px 24px rgba(1, 38, 36, 0.08);
    --shadow-menu: 0 2px 2px rgba(1, 38, 36, 0.04),
    0 4px 6px rgba(1, 38, 36, 0.03),
    0 12px 20px rgba(1, 38, 36, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Rawline, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-features-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: var(--content-max);
    margin: auto;
}

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

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

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--padding-side);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    transition: box-shadow 0.3s, top 0.2s;
}

/* Отступ под панель администратора Битрикса */
body.bx-admin-mode .site-header {
    top: 48px; /* высота свёрнутой панели */
}

body.bx-admin-mode.bx-panel-expand .site-header {
    top: 91px; /* высота развёрнутой панели (48 + 43) */
}

.site-header.black_bg .nav-desktop a {
    color: var(--color-text);
}

.site-header svg#logo_w {
    /*display: block;*/
    display: none;
}

.site-header svg#logo_b {
    /*display: none;*/
    display: block;
}

.site-header.black_bg svg#logo_w {
    display: none;
}

.site-header.black_bg svg#logo_b {
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--padding-side);
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.black_bg .header-inner {
    border-bottom: 1px solid rgba(231, 232, 232, 1);
    background: var(--color-white);
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo svg {
    display: block;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-desktop a {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-white);
    white-space: nowrap;
    transition: opacity 0.2s;
    /*-webkit-text-stroke: 0.5px black;*/
}

.nav-desktop a:hover {
    opacity: 0.6;
}

.btn-header-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 44px;
    background: var(--color-cta);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: filter 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-header-cta:hover {
    filter: brightness(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 38, 36, 0.4);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 387px;
    height: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-menu);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.mobile-close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    border-bottom: 1px solid #E9EAEB;
}

.mobile-nav a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 14px 0;
    border-bottom: 1px solid var(--color-features-bg);
    transition: opacity 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    opacity: 0.6;
}

.mobile-menu-footer {
    padding: 20px;
    flex-shrink: 0;
}

.btn-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: var(--color-cta);
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-mobile-cta:hover {
    filter: brightness(0.95);
}

.hero {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 32.08%, rgba(0, 0, 0, 0) 50%), url('img/main_hero.png');
    min-height: 900px;
    padding-top: var(--header-h);
    overflow: hidden;
    max-width: 1440px;
    margin: auto;
}
#hero {
    background-image:
            linear-gradient(90deg, rgba(0, 0, 0, 0.4) 32.08%, rgba(0, 0, 0, 0) 50%),
            url(/bitrix/templates/new_land_vn_sn/img/hero_bg.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}


.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    pointer-events: none;
}

.hero-content {
    position: relative;
    min-height: calc(900px - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px var(--padding-side) 13px;
    max-width: var(--content-max);
    margin: 0 auto;
    width: 100%;
}

.run_line {
    padding: 0 40px;
    display: flex;
    gap: 32px;
}

.hero-left {
    max-width: 880px;
}

.hero-badge-list {
    display: flex;
    gap: 8px;
    max-width: 450px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px 4px 8px;
    background: var(--color-light-card);
    box-shadow: var(--shadow-card);
    font-size: 14px;
    color: rgba(32, 36, 36, 1);
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -0.017em;

    -webkit-text-stroke: 2px black;
}

.hero-desc {
    color: var(--color-white);
    margin-bottom: 32px;
    max-width: 540px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.002em;

    background: #00000075;
    padding: 20px;
    border-radius: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--color-cta);
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.section-head {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: var(--color-bg);
    color: rgba(32, 36, 36, 0.7);
    margin-bottom: 20px;
    width: max-content;
    box-shadow: 0 3px 3px -1.5px rgba(23, 23, 23, 0.04);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    border: 1px solid rgba(32, 36, 36, 0.05);
}

.section-badge.section-badge2 {
    background: transparent;
}

.section-title {
    color: var(--color-dark);
    margin-bottom: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 50px;
    line-height: 56px;
    letter-spacing: -0.01em;
}

.section-title span {
    color: rgba(13, 38, 38, 0.4);
    -webkit-text-stroke: 0.5px var(--color-dark);
}

.section-desc {
    color: var(--color-text);
    max-width: 560px;
    text-align: left;
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
}

.features-overview {
    padding: 120px 0 60px;
}

.features-grid-3 {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-white);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: var(--color-dark);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    height: 56px;
}

.feature-card p {
    color: rgba(32, 36, 36, 0.7);
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.002em;
}

.orange_info {
    display: flex;
    margin-top: 24px;
    background: rgba(255, 230, 214, 1);
    padding: 20px 40px;
    gap: 12px;
    align-items: center;
}

.orange_info span {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    color: rgba(244, 142, 47, 1);
}

.how-it-works {
    background: var(--color-bg);
    padding: 60px 0;
}

.how-it-works .section-head {
    display: flex;
    align-items: flex-end;
}

.how-it-works .section-head .right {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
}

.how-it-works .section-head > * {
    width: 50%;
}

.how-it-works .container .grid {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(231, 232, 232, 1);
}

.how-it-works .container .grid .line {
    display: flex;
    justify-content: stretch;
    padding: 40px 0;
    border-top: 1px solid rgba(231, 232, 232, 1);
}

.how-it-works .container .grid .line .num {
    color: rgba(13, 38, 38, 0.4);
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.006em;
    text-align: center;
    vertical-align: middle;
    max-width: 10%;
    width: max-content;
    padding-right: 60px;
}

.how-it-works .container .grid .line .tit {
    color: var(--color-text);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.006em;
    flex-grow: 1;
}

.how-it-works .container .grid .line .text {
    width: 50%;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.002em;
    color: rgba(32, 36, 36, 0.7);
}

.how-it-works .container .grid .line .text .txt_inner {
    max-width: 560px;
}

.features-extended {
    padding: 0 8px;
    background: var(--color-bg);
}

.features-extended .container {
    padding: 120px calc(var(--padding-side) - 8px) 80px;
    background: var(--color-features-bg);
}

.features-extended .section-head {
    justify-items: center;
    padding-bottom: 60px;
}

.features-extended .section-head .section-badge {
    background: var(--color-features-bg);
    border: 1px solid rgba(10, 41, 41, 0.25);
}

.features-extended .section-head * {
    text-align: center;
}

.features-extended .section-head .section-desc {
    min-width: fit-content;
}

.features-extended-grid {
    display: flex;
    flex-direction: column;
}

.features-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
    border-top: 1px solid rgba(200, 208, 208, 1);
    padding-top: 40px;
    margin-bottom: 40px;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-row-image {
    flex: 0 0 48%;
    position: relative;
}

.features-row-image img {
    min-width: 100%;
}

.features-row-image::before {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-features-bg);
    border-top: 20px solid var(--color-features-bg);
}

.features-row-image::after {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-features-bg);
    border-bottom: 20px solid var(--color-features-bg);
}

.features-row-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.features-row-text .type_list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.features-row-text .type_list div {
    border: 1px solid rgba(10, 41, 41, 0.25);
    padding: 4px 10px;
    width: max-content;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

.features-row-text .section-badge {
    text-align: left;
    margin-bottom: 16px;
}

.features-row-text h2 {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.006em;
    font-size: 24px;
    line-height: 32px;
}

.features-row-text p {
    color: var(--color-text);
    margin-bottom: 24px;
    max-width: 560px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.002em;
}

.cta-banner {
    background: var(--color-bg);
    padding: 0 var(--padding-side) 120px;
}

.cta-banner-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.btn-cta-banner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: var(--color-cta);
    color: var(--color-dark);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    width: 100%;
    padding: 16px 0;
}

.btn-cta-banner:hover {
    opacity: 0.85;
}

.showcase {
    padding: 100px 0;
}

.showcase-grid {
    display: flex;
    gap: 24px;
}

.showcase-card {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#role_trap .showcase-card-body {
    padding: 40px;
}

#role_trap .showcase-card:first-child,
#role_trap .showcase-card:last-child {
    position: relative;
}

#role_trap .showcase-card:first-child::before {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-bg);
    border-top: 20px solid var(--color-bg);
}

#role_trap .showcase-card:last-child::after {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-bg);
    border-bottom: 20px solid var(--color-bg);
}

#vulnerable_areas .showcase-card:first-child .showcase-card-image,
#vulnerable_areas .showcase-card:last-child .showcase-card-image {
    position: relative;
}

#vulnerable_areas .showcase-card:first-child .showcase-card-image::before {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-white);
    border-top: 20px solid var(--color-white);
}

#vulnerable_areas .showcase-card:last-child .showcase-card-image::after {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-white);
    border-bottom: 20px solid var(--color-white);
}

.showcase2 .showcase-card {
    border: none;
    box-shadow: none;
}

.showcase-card-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(1, 38, 36, 0.2);
    font-size: 13px;
}

.showcase-card-image img {
    min-width: 100%;
}

.showcase-card:nth-child(3) .showcase-card-image {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.2);
}

.showcase-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--color-white);
}

.showcase2 .showcase-card-body {
    padding: 20px 0 0;
}

.showcase-card-body h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}

.showcase-card-body p {
    font-size: 19px;
    color: #000;
    line-height: 1.6;
    flex: 1;
}

.showcase2 {
    padding: 0 8px;
    background: var(--color-bg);
}

.showcase2 .container {
    padding: 120px calc(var(--padding-side) - 8px) 60px;
    background: var(--color-white);
}

.showcase2.showcase3 {
    padding: 0 8px 8px;
    background: var(--color-bg);
    margin-top: -100px;
}

.showcase2.showcase3 .container {
    padding: 120px calc(var(--padding-side) - 8px) 60px;
    background: var(--color-white);
}

.showcase2.showcase3 .showcase-card {
    background: var(--color-bg);
    padding: 40px;
}

.showcase2.showcase3 .showcase-card .showcase-card-body {
    background: none;
}

.showcase2.showcase3 .showcase-card .showcase-card-body a {
    display: flex;
    align-items: center;
    padding-top: 8px;
}

.showcase2.showcase3 .showcase-card .showcase-card-body a span {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.02em;
}

.cta-footer-section {
    background: var(--color-bg);
    padding: 8px;
}

.cta-footer-inner {
    background: var(--color-dark);
    overflow: hidden;
    position: relative;
}

.cta-footer-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background-image: radial-gradient(circle, rgba(204, 212, 211, 0.25) 1px, transparent 1px);*/
    background-size: 23px 23px;
    pointer-events: none;
    opacity: 0.4;
}

.cta-main-block {
    position: relative;
    display: flex;
    gap: 48px;
    padding: 80px 56px 60px;
}

.cta-main-left {
    flex: 1;
    max-width: 640px;
}

.cta-main-left .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    padding: 6px 16px 6px 8px;
}

.cta-main-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-main-left h2 span {
    color: rgba(255, 255, 255, 0.6);

}

.cta-main-left p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-main-right {
    flex: 0 0 600px;
}

.cta-right-image-placeholder {
    width: 100%;
    height: 480px;
    background: var(--color-dark-3);
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    position: relative;
}

.cta-right-image-placeholder::before {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-dark);
    border-top: 20px solid var(--color-dark);
}
.cta-right-image-placeholder::after {
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-dark);
    border-bottom: 20px solid var(--color-dark);
}

.site-footer {
    background: var(--color-white);
    border-radius: 0 0 16px 16px;
    padding: 40px 56px;
    position: relative;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(32, 36, 36, 0.5);
    margin-top: 12px;
    max-width: 200px;
}

.footer-links-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(32, 36, 36, 0.4);
    margin-bottom: 16px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col ul li a {
    font-size: 14px;
    color: rgba(32, 36, 36, 0.7);
    transition: color 0.2s;
}

.footer-links-col ul li a:hover {
    color: var(--color-dark);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border-radius: 0 0 16px 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(32, 36, 36, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(32, 36, 36, 0.4);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--color-dark);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-row.fade-in-up:nth-child(2) {
    transition-delay: 0.1s;
}

.features-row.fade-in-up:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(2).fade-in-up {
    transition-delay: 0.1s;
}

.feature-card:nth-child(3).fade-in-up {
    transition-delay: 0.2s;
}

.showcase-card:nth-child(2).fade-in-up {
    transition-delay: 0.1s;
}

.showcase-card:nth-child(3).fade-in-up {
    transition-delay: 0.2s;
}

@media (max-width: 560px) {
    .hero-title {
        font-size: 37px;
        line-height: 40px;
        max-width: calc(100vw - 20px);
        display: block;
        -webkit-text-stroke: 1px black;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
}

.Wb_bg {
    background: #fff;
    position: sticky;
    top: 0;
    height: 0;
    z-index: 1;
}

.bg_header_sticky {
    position: fixed;
    height: 72px;
    z-index: 999;
    width: 1440px;
    margin: auto;
    left: 0;
    right: 0;
    overflow: hidden;

    display: none;
}

.bg_header_sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/main_hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: var(--bg-offset);
    z-index: -1;
}

.two_block_with_bg {
    background-color: var(--color-bg);
    background-image: url("img/logo_bg.svg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase2 .section-head {
    display: flex;
    align-items: flex-end;
    gap: 120px;
    margin-bottom: 60px;
}

.showcase2 .section-head .left {
    max-width: 560px;
}

.showcase2 .section-head .right .section-desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    color: var(--color-text);
}

/* ============================================================
   Секция ABOUT — bento-layout (Этап 10)
   ============================================================ */

#about {
    padding: 0 8px;
    background: var(--color-bg);
}

#about .container {
    background: var(--color-white);
    padding: 100px 40px;
}

.about-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
}

.about-section-title {
    font-family: 'Rawline', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.48px;
    color: var(--color-primary-dark);
    min-width: fit-content;
    margin: 0;
}
.about-section-title span {
    color: rgba(13, 38, 38, 0.4);
    -webkit-text-stroke: 0.5px var(--color-dark);
}

/* --- Бенто-сетка --- */
.about-bento {
    display: grid;
    grid-template-columns: 440px 1fr 440px;
    gap: 8px;
    align-items: stretch;
}

.about-card {
    overflow: hidden;
}

/* --- Левая карточка: фото + текст --- */
.about-card-photo {
    display: flex;
    flex-direction: column;
    background: var(--color-card-bg);
    position: relative;
}

.about-card-photo::before {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-white);
    border-top: 20px solid var(--color-white);
    z-index: 1;
}

.about-card-photo-img {
    overflow: hidden;
    flex-shrink: 0;
}

.about-card-photo-img img {
    width: 100%;
    height: 432px;
    object-fit: cover;
    display: block;
}

.about-card-photo-text {
    flex: 1;
    padding: 32px 40px 40px;
}

.about-card-photo-text p {
    font-family: 'Rawline', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.036px;
    color: var(--color-text-muted);
    margin: 0;
}

/* --- Средняя карточка: история + статистика --- */
.about-card-story {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-card-story-text {
    flex: 1;
    background: var(--color-card-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card-story-text h3 {
    font-family: 'Rawline', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.24px;
    color: var(--color-primary-dark);
    margin: 0;
}

.about-card-story-text p {
    font-family: 'Rawline', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.036px;
    color: var(--color-text-muted);
    margin: 0;
}

.about-card-stats {
    background: var(--color-card-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stats-number {
    font-family: 'Rawline', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -2px;
    color: var(--color-primary-dark);
}

.about-card-stats p {
    font-family: 'Rawline', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.036px;
    color: var(--color-text-muted);
    margin: 0;
}

/* --- Правая карточка: тёмная, отрасли --- */
.about-card-sectors {
    background: var(--color-primary-dark);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.about-card-sectors::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-white);
    border-bottom: 20px solid var(--color-white);
}

.about-card-sectors h3 {
    font-family: 'Rawline', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.24px;
    color: var(--color-white);
    margin: 0;
}

.about-sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* legacy — оставлен для обратной совместимости */
.economy_sectors_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.economy_sectors_list > div {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
}

footer.site-footer {
    background: rgba(1, 38, 36, 1);
    padding: 60px 40px 0;
    border-top: 1px solid rgba(231, 232, 232, 0.1);
}

.top_footer {
    display: flex;
    justify-content: space-between;
}

.top_footer .link {
    display: flex;
    gap: 24px;
}

.top_footer,
.top_footer * {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
}

.top_footer a {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0;

}

.cta-main-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.cta-main-left .cta-sub-block {
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-white);

    display: flex;
    flex-direction: column;
    gap: 16px;

}

.cta-main-left .cta-sub-block div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cta-form {
    padding: 40px;
    flex: 1;
}
.cta-form .form_header{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-form form{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cta-form .form_title{
    font-weight: 700;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: -0.006em;
    color: var(--color-white);
}

.cta-form .form_sub_title{
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.6);

}

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

.form_body > input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    outline: none;
}
.form_body > input::placeholder{
    color: rgba(255, 255, 255, 0.6);
}
.form_body > input,
.form_body > select{
    padding: 16px 20px;
    font-weight: 500;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.form_body > select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    outline: none;

    background-image: url('img/arraw.svg');
    background-repeat: no-repeat;

    /* Двигаем стрелку: 10px от правого края, по центру по вертикали */
    background-position: right 15px center;
    /*background-size: 12px; !* Размер стрелки *!*/

    padding-right: 40px; /* Отступ текста, чтобы он не налезал на стрелку */
}
.form_body > select option{
    color: black;
}

.cta-right-image-placeholder, .cta-form{
    min-height: max-content;
}

.cta-form .btn-primary{
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 0;
    margin-top: 8px;
}

#methodology{
    padding-top: 120px;
}

.cta-form .response{
    display: none;
}


.bx-panel_wraper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.adminPanel{
    margin-top: 150px;
}
.adminPanel #site-header{
    top: 150px !important;
}


@media (max-width: 500px) {
    .showcase2 .section-head{
        flex-direction: column;
        gap: 10px;
    }
}

#features-title a{
    font-weight: 500;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0;
    text-decoration-thickness: 0;

    color: var(--color-text);

}



@media (max-width: 1100px) {
    .cta-main-right {
        flex: 0 0 400px;
    }
}

@media (max-width: 900px) {
    :root {
        --padding-side: 24px;
        --header-h: 64px;
    }

    .nav-desktop {
        display: none;
    }

    .btn-header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: var(--color-black);
        min-height: 3px;
    }

    .site-header {
        background: var(--color-dark);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .hero-inner {
        flex-direction: column;
        padding: 40px var(--padding-side) 60px;
        gap: 40px;
    }

    .hero-left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .features-grid-3 {
        flex-direction: column;
    }

    .features-row, .features-row.reverse {
        flex-direction: column;
    }

    .features-row-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .cta-main-block {
        flex-direction: column;
        padding: 48px 24px 40px;
        padding-top: 100px;
    }

    .cta-main-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .cta-right-image-placeholder {
        height: 280px;
    }

    .showcase-grid {
        flex-direction: column;
    }

    .site-footer {
        padding: 32px 24px;
    }

    .footer-bottom {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 30px;
        line-height: 30px;
    }

    .cta-main-left h2 {
        font-size: 28px;
    }

    .features-overview {
        padding-top: 60px;
    }

    .showcase {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .features-extended .container {
        padding-top: 100px;
    }

    .showcase2 .container {
        padding-top: 100px;
    }

    .features-extended .section-head{
        padding-bottom: 0;
    }

    .how-it-works .section-head {
        flex-direction: column;
    }
    .how-it-works .section-head > *{
        width: 100%;
    }

    .how-it-works .container .grid .line{
        flex-wrap: wrap;
    }

    .how-it-works .container .grid .line .num{
        flex-grow: 0.5;
        font-size: 20px;
        width: min-content;
        height: max-content;
        padding: 0;
    }
    .how-it-works .container .grid .line .tit{
        flex-grow: 0.5;
        font-size: 20px;
        margin-left: 15px;
        min-width: 70%;
    }
    .how-it-works .container .grid .line .text{
        flex-grow: 1;
    }

    #about .container{
        padding: 100px 16px 80px ;
    }

    #about .showcase-card:nth-child(3) .showcase-card-body{
        padding: 20px;
    }

    .economy_sectors_list{
        padding: 20px 0;
    }

    .top_footer,
    .top_footer .link
    {
        flex-direction: column;
        gap: 8px;
    }

    .bottom_footer svg{
        max-width: 75vw;
    }

    #methodology {
        padding-top: 100px;
    }
}

/* ============================================================
   VNSN — Новые стили (Этап 0)
   Типографика, шрифты, компоненты, утилиты
   ============================================================ */
/* --- Навигация: Onest 15px/500 --- */
.nav-desktop a {
    font-family: 'Onest', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.165px;
    color: var(--color-white);
}
.site-header.black_bg .nav-desktop a {
    color: var(--color-text);
}
/* --- Hero новая типографика --- */
.hero-title {
    font-size: 56px;
    line-height: 60px;
    letter-spacing: -1.62px;
    -webkit-text-stroke: 0;
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    max-width: 480px;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 40px;
}
/* --- Hero CTA кнопки (2 штуки) --- */
.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-hero-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 22px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-family: 'Rawline', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.2s;
    white-space: nowrap;
}
.btn-hero-filled:hover {
    filter: brightness(0.93);
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 22px;
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
    font-family: 'Rawline', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.2s;
    white-space: nowrap;
}
.btn-hero-outline:hover {
    filter: brightness(1.15);
}
/* --- H2 новая типографика (секции) --- */
.section-title-h2 {
    font-family: 'Rawline', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.48px;
    color: var(--color-primary-dark);
}
.section-title-h2.center {
    text-align: center;
}
.section-title-onest {
    font-family: 'Onest', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.76px;
    color: #020617;
}
.section-title-onest span {
    color: rgba(13, 38, 38, 0.4);
    -webkit-text-stroke: 0.5px var(--color-dark);
}

.role-trap-statement span {
    color: rgba(13, 38, 38, 0.4);
    -webkit-text-stroke: 0.5px var(--color-dark);
}

.section-title-onest.center {
    text-align: center;
}
.section-subtitle-onest {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.187px;
    color: var(--color-primary-dark);
}
.section-subtitle-onest.center {
    text-align: center;
}
/* --- Бейджи с обводкой (3 варианта) --- */
/* badge--shadow: bg #f6f7f7, тень (для role_trap верхний блок) */
.badge--shadow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--color-primary-bg);
    box-shadow: 0 0 0 1px #eaeaea,
                0 1px 1px -0.5px rgba(23, 23, 23, 0.04),
                0 3px 3px -1.5px rgba(23, 23, 23, 0.04);
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: max-content;
}
/* badge--bordered: bg #f9f9f9, border #e0e0e0 (для solutions, vulnerable_areas) */
.badge--bordered {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    width: max-content;
}
/* badge--dark: bg #012624, border #ffffff (для contacts) */
.badge--dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 8px;
    background: var(--color-primary-dark);
    border: 1px solid #ffffff;
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.084px;
    width: max-content;
}
/* badge--dark-border: обводка #0a2929 (для тегов продуктов) */
.badge--dark-border {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    /*border: 1px solid #0a2929;*/
    border: 1px solid rgba(10, 41, 41, 0.25);
    color: var(--color-text-muted);
    font-family: 'Rawline', serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    width: max-content;
}
/* badge--white-border: обводка #ffffff для about отраслей */
.badge--white-border {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: 'Rawline', serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: max-content;
}
/* --- Dot-grid паттерн (фон секций solutions) --- */
.dot-grid-bg {
    position: relative;
}
.dot-grid-bg > * {
    position: relative;
    z-index: 1;
}
.dot-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #161616 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}
/* --- Running Line (marquee) --- */
.run-line-section {
    height: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--color-primary-dark);
    position: relative;
}
.run-line-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
    flex-shrink: 0;
}
.run-line-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* --- Карточка иконки (56×56, белый квадрат) --- */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ffffff;
    flex-shrink: 0;
}
.icon-box--bg {
    background: var(--color-primary-bg);
}
/* --- Кнопка "Узнать подробнее" (зелёная, в продуктовых карточках) --- */
.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 22px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-family: 'Rawline', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.2s;
    white-space: nowrap;
    width: max-content;
}
.btn-product:hover {
    filter: brightness(0.93);
}
/* --- ��бновлённый hero background (новое фото) --- */
.hero {
    background: url('img/hero_bg.png') center top / cover no-repeat;
}
.bg_header_sticky::before {
    background-image: url('img/hero_bg.png');
}
/* --- Стрелка "читать статью" --- */
.link-article {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Rawline', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: opacity 0.2s;
}
.link-article:hover {
    opacity: 0.7;
}
/* --- VNSN Этап 1: Header --- */
/* Уменьшаем gap у nav-desktop т.к. пункты стали длиннее */
.nav-desktop {
    gap: 24px;
}
.nav-desktop a {
    font-size: 14px;
}
@media (max-width: 1100px) {
    .nav-desktop {
        gap: 16px;
    }
    .nav-desktop a {
        font-size: 13px;
    }
}
/* --- VNSN Этап 2: Hero + Running Line --- */
/* Фоновое изображение hero */
.hero {
    background-image: url('/bitrix/templates/new_land_vn_sn/img/hero_bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
/* CTA-группа кнопок hero */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}
/* Running Line — отдельная секция */
.run-line-section {
    height: 90px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background-color: var(--color-primary-dark, #012624);
    display: flex;
    align-items: center;
}
.run-line-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}
.run-line-items {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    padding: 0 20px;
    animation: marquee-scroll 30s linear infinite;
}
.run-line-items > div {
    flex-shrink: 0;
    opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
    .run-line-items {
        animation: none;
    }
}

/* ============================================================
   Секция WHAT_FOR — "Проблемы в помещениях" (карусель)
   ============================================================ */
.what-for-section {
    padding: 0 8px;
    background: var(--color-bg);
}

.what-for-section .container {
    padding: 120px calc(var(--padding-side) - 8px) 80px;
    background: var(--color-white);
}

.what-for-head {
    display: flex;
    align-items: flex-end;
    gap: 80px;
    margin-bottom: 48px;
}

.what-for-head-left {
    max-width: 630px;
    flex-shrink: 0;
}

.what-for-head-left .section-badge {
    margin-bottom: 20px;
}

.what-for-head-left .section-title-h2 {
    text-align: left;
    color: var(--color-primary-dark);
}

.what-for-head-right {
    flex: 1;
}

.what-for-head-right .section-subtitle-onest {
    color: var(--color-text-muted);
    font-family: 'Rawline', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}

.what-for-image-wrap {
    margin-bottom: 48px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 17 / 10;
}

.what-for-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.what-for-slider-wrap {
    position: relative;
}

/* Slick-слайдер карточек */
.what-for-slider {
    margin: 0 -12px;
}

.what-for-slider .slick-slide {
    padding: 0 12px;
}

.what-for-card {
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    padding: 28px;
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
}

.what-for-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary-bg);
    flex-shrink: 0;
}

.what-for-icon svg {
    width: 24px;
    height: 24px;
}

.what-for-card h3 {
    font-family: 'Onest', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.22px;
    color: var(--color-primary-dark);
}

.what-for-card p {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-text-muted);
    flex: 1;
}

/* Управление слайдером */
.what-for-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.what-for-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.what-for-prev,
.what-for-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    flex-shrink: 0;
}

.what-for-prev:hover,
.what-for-next:hover {
    box-shadow: var(--shadow-elevated);
}

.what-for-prev:disabled,
.what-for-next:disabled {
    opacity: 0.35;
    cursor: default;
}

/* Slick dots переопределение */
.what-for-dots {
    flex: 1;
}

.what-for-dots ul.slick-dots {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.what-for-dots ul.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.what-for-dots ul.slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(1, 38, 36, 0.15);
    border-radius: 50%;
    border: none;
    transition: background 0.2s, width 0.2s;
}

.what-for-dots ul.slick-dots li button::before {
    display: none;
}

.what-for-dots ul.slick-dots li.slick-active button {
    background: var(--color-primary-dark);
    width: 24px;
    border-radius: 4px;
}

/* Адаптив */
@media (max-width: 900px) {
    .what-for-head {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .what-for-section .container {
        padding-top: 80px;
    }

}

/* ============================================================
   Адаптив: ABOUT bento
   ============================================================ */
@media (max-width: 1280px) {
    .about-bento {
        grid-template-columns: 1fr 1fr;
    }
    .about-card-sectors {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-bento {
        grid-template-columns: 1fr;
    }
    .about-card-sectors {
        grid-column: auto;
    }
    .about-section-title {
        font-size: 32px;
        line-height: 40px;
    }
    #about .container {
        padding: 64px 24px;
    }
    .about-card-photo-img img {
        height: 260px;
    }
    .about-stats-number {
        font-size: 56px;
        line-height: 64px;
    }
}

/* ============================================================
   Секция SOLUTIONS_INDOOR
   Использует CSS .solutions-section (как solutions outdoor).
   До��авляем только id-специфичный фон при необходимости.
   ============================================================ */
#solutions_indoor {
    margin-top: -1px; /* плотно стыкуется с what_for */
}

/* ============================================================
   Секция ROLE_TRAP — редизайн (Этап 4)
   ============================================================ */

.role-trap-section {
    padding: 100px 0;
    background: var(--color-white);
}

/* Блок 1: вводное утверждение */
.role-trap-intro {
    margin-bottom: 80px;
}

.role-trap-statement {
    font-family: 'Rawline', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.48px;
    color: var(--color-dark);
    min-width: fit-content;
    margin: 0;
}

.role-trap-statement span{
    color: rgba(13, 38, 38, 0.4);
    -webkit-text-stroke: 0.5px var(--color-dark);
}

/* Блок 2: «Как работают» */
.section-badge--white {
    background: #ffffff;
}

.role-trap-how-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.role-trap-how-title {
    font-family: 'Rawline', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.76px;
    color: var(--color-dark);
    margin: 0 0 16px;
    text-align: center;
}

.role-trap-subtitle {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 600px;
    text-align: center;
    margin: 0;
}

/* Сетка карточек */
.role-trap-grid {
    display: flex;
    gap: 20px;
}

.role-trap-card {
    flex: 1;
    background: var(--color-primary-bg);
    border: 1px solid #ffffff;
    padding: 32px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Треугольный срез: левый верхний угол первой карточки */
.role-trap-card--corner-tl::before {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-white);
    border-top: 20px solid var(--color-white);
}

/* Треугольный срез: правый нижний угол третьей карточки */
.role-trap-card--corner-br::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-white);
    border-bottom: 20px solid var(--color-white);
}

/* Иконка */
.role-trap-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.role-trap-card h3 {
    font-family: 'Onest', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #141919;
    margin: 0 0 16px;
}

.role-trap-card p {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #141919;
    opacity: 0.70;
    margin: 0;
    flex: 1;
}

@media (max-width: 1024px) {
    .role-trap-statement,
    .role-trap-how-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .role-trap-section {
        padding: 64px 0;
    }
    .role-trap-grid {
        flex-direction: column;
    }
    .role-trap-statement,
    .role-trap-how-title {
        font-size: 28px;
        line-height: 36px;
    }
    .role-trap-card {
        min-height: auto;
    }
    .role-trap-card h3 {
        font-size: 22px;
    }
}

/* ============================================================
   Секция VULNERABLE_AREAS — редизайн по макету Figma
   ============================================================ */

.vuln-section {
    background: var(--color-primary-bg); /* #f6f7f7 */
    padding-top: 60px;
}

/* Заголовочный блок (центрированный) */
.vuln-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 40px;
}

.vuln-badge {
    margin: 0;
}

.vuln-title {
    font-family: 'Rawline', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.48px;
    color: var(--color-primary-dark);
    max-width: 760px;
    text-align: center;
    margin: 0;
}

/* Сцена: фото + карточки поверх него */
.vuln-scene {
    position: relative;
    overflow: hidden;
}

/* Фото на всю ширину, абсолютно за карточками */
.vuln-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.vuln-scene .container {
    position: relative;
    z-index: 1;
}

/* Сетка карточек: горизонтально, "ступенькой" по Figma */
.vuln-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 40px 80px;
}

/* Фиксированная ширина карточки как в Figma (400px из 1360px) */
.vuln-card {
    flex: 0 0 400px;
    width: 400px;
    background: #ffffff;
    padding: 40px;
    min-height: 364px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Ступенчатое смещение: каждая карточка на 182px ниже предыдущей */
.vuln-card:nth-child(2) {
    margin-top: 182px;
}

.vuln-card:nth-child(3) {
    margin-top: 364px;
}

.vuln-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Иконка: 56×56, фон #f6f7f7 */
.vuln-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vuln-icon svg {
    width: 32px;
    height: 32px;
}

.vuln-card h3 {
    font-family: 'Rawline', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--color-primary-dark);
    margin: 0;
}

.vuln-card p {
    font-family: 'Rawline', serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Планшет: уменьшаем карточку и ступеньку пропорционально */
@media (max-width: 1300px) {
    .vuln-grid {
        gap: 20px;
        padding: 32px 0 60px;
    }
    .vuln-card {
        flex: 1;
        width: auto;
        min-width: 0;
    }
    .vuln-card:nth-child(2) {
        margin-top: 120px;
    }
    .vuln-card:nth-child(3) {
        margin-top: 240px;
    }
}

/* Мобильная версия: одна колонка без ступеньки */
@media (max-width: 768px) {
    .vuln-section {
        padding-top: 48px;
    }
    .vuln-head {
        gap: 16px;
        margin-bottom: 24px;
    }
    .vuln-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.32px;
    }
    .vuln-scene {
        overflow: visible;
    }
    .vuln-img {
        position: static;
        display: block;
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .vuln-scene .container {
        position: static;
    }
    .vuln-grid {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0 40px;
    }
    .vuln-card {
        flex: none;
        width: 100%;
        min-height: auto;
        padding: 28px 24px;
        gap: 16px;
    }
    .vuln-card:nth-child(2),
    .vuln-card:nth-child(3) {
        margin-top: 0;
    }
}

/* ============================================================
   Секция SOLUTIONS (outdoor) — редизайн (Этап 6)
   ============================================================ */

.solutions-section {
    background: var(--color-bg);
}

/* Заголовочный блок с dot-grid */
.solutions-head {
    background: var(--color-bg);
    padding: 100px 0 80px;
}

.solutions-head .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.solutions-badge {
    margin-bottom: 4px;
}

.solutions-desc {
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 660px;
    text-align: center;
    margin: 0;
}

/* Сетка продуктовых карточек */
.solutions-cards {
    background: var(--color-bg);
    padding-bottom: 100px;
}

.solutions-cards .container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Одна карточка продукта */
.solutions-card {
    display: flex;
    align-items: stretch;
    background: var(--color-card-bg);
    min-height: 544px;
    margin-bottom: 8px;
    overflow: hidden;
}

.solutions-card--reverse {
    flex-direction: row-reverse;
}

/* Текстовая сторона (~604px) */
.solutions-card-text {
    flex: 0 0 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.solutions-card-text-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solutions-card-text h2 {
    font-family: 'Onest', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.24px;
    color: rgba(1, 38, 36, 1);
    margin: 0;
}

.solutions-card-text p {
    font-family: 'Onest', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    margin: 0;
}

/* Теги */
.solutions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Фото сторона (~636px) */
.solutions-card-img {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.solutions-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.solutions-card-img .solutions-card-img-inner{
    position: relative;
}

.solutions-card-img .solutions-card-img-inner::before{
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    border: 20px solid transparent;
    border-left: 20px solid var(--color-features-bg);
    border-top: 20px solid var(--color-features-bg);
}
.solutions-card-img .solutions-card-img-inner::after{
    content: ' ';
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 20px solid transparent;
    border-right: 20px solid var(--color-features-bg);
    border-bottom: 20px solid var(--color-features-bg);
}

/* Fade-in задержки */
.solutions-card:nth-child(2).fade-in-up { transition-delay: 0.1s; }
.solutions-card:nth-child(3).fade-in-up { transition-delay: 0.2s; }

/* Fade-in задержки для role-trap, vuln, about */
.role-trap-card:nth-child(2).fade-in-up { transition-delay: 0.1s; }
.role-trap-card:nth-child(3).fade-in-up { transition-delay: 0.2s; }

.vuln-card:nth-child(2).fade-in-up { transition-delay: 0.1s; }
.vuln-card:nth-child(3).fade-in-up { transition-delay: 0.2s; }

.about-card:nth-child(2).fade-in-up { transition-delay: 0.1s; }
.about-card:nth-child(3).fade-in-up { transition-delay: 0.2s; }

@media (max-width: 900px) {
    .solutions-head {
        padding: 64px 0 56px;
    }
    .solutions-card,
    .solutions-card--reverse {
        flex-direction: column;
        min-height: auto;
    }
    .solutions-card-text {
        flex: 0 0 auto;
    }
    .solutions-card-img {
        padding: 16px;
        min-height: 280px;
    }
    .solutions-cards {
        padding-bottom: 64px;
    }
}

/* ============================================================
   Форма CTA — дисклеймер
   ============================================================ */
.form-disclaimer {
    font-family: 'Onest', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
}

.form-disclaimer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.form-disclaimer a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Блок ошибок формы */
.form-errors {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-error {
    font-family: 'Onest', sans-serif;
    font-size: 13px;
    color: #ff6b6b;
    padding: 4px 0;
}

/* === Figma alignment overrides (2026-06-11) === */

/* Header nav typography */
.nav-desktop a {
    font-family: 'Onest', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.165px;
}

/* Hero typography */
.hero-title {
    font-size: 56px;
    line-height: 60px;
    letter-spacing: -1.62px;
    -webkit-text-stroke: 0;
}

.hero-desc {
    max-width: 480px;
    font-size: 17px;
    line-height: 28px;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* Role trap icon at bottom */
.role-trap-card p {
    margin-bottom: 24px;
}

.role-trap-icon {
    margin-top: auto;
    margin-bottom: 0;
}

/* About middle column background */
.about-card-story-text,
.about-card-stats {
    background: #ffffff;
}

/* Running line seamless marquee */
.run-line-track {
    display: flex;
    width: max-content;
    overflow: visible;
    animation: marquee-scroll 30s linear infinite;
}

.run-line-section:hover .run-line-track {
    animation-play-state: paused;
}

.run-line-items {
    animation: none;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    padding: 0 20px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Solutions extra block */
.solutions-more {
    /*background: #f7f8f8;*/
    background: var(--color-card-bg);
    padding: 60px 0;
    margin: 0 40px;
    position: relative;
    overflow: hidden;
}

.solutions-more::after {
    content: '';
    position: absolute;
    right: -66px;
    top: 0;
    width: 372px;
    height: 384px;
    background-image: url('/bitrix/templates/new_land_vn_sn/img/logo_mark_rev.svg');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.30;
    pointer-events: none;
    z-index: 0;
}

.solutions-more .container {
    position: relative;
    z-index: 1;
}

.solutions-more-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.solutions-more-card {
    background: #ffffff;
    padding: 40px;
    min-height: 266px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solutions-more-card h3 {
    font-family: 'Rawline', serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: -0.036px;
    color: #141919;
}

.solutions-more-card p {
    font-family: 'Rawline', serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(32, 36, 36, 0.7);
    margin: 0;
    flex: 1;
}

/* What-for hotspots */
.what-for-image-hotspots {
    position: relative;
}

.what-for-image-hotspots > img {
    width: 100%;
    display: block;
}

.what-for-point {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.what-for-point-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #f7f8f8;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.what-for-point-btn span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f7f8f8;
    display: block;
}

.what-for-popup {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%);
    width: 440px;
    max-width: min(440px, 90vw);
    background: #ffffff;
    box-shadow: var(--shadow-elevated);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.what-for-point--h-right .what-for-popup {
    left: 30px;
    transform: none;
}

.what-for-point--h-center .what-for-popup {
    left: 50%;
    transform: translateX(-50%);
}

.what-for-point--h-left .what-for-popup {
    left: auto;
    right: 30px;
    transform: none;
}

.what-for-point--v-up .what-for-popup {
    top: auto;
    bottom: calc(100% + 12px);
}

.what-for-point--v-down .what-for-popup {
    top: calc(100% + 12px);
    bottom: auto;
}

.what-for-point:hover .what-for-popup,
.what-for-point:focus-within .what-for-popup,
.what-for-point.is-active .what-for-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.what-for-popup h3 {
    margin: 8px 0;
    font-family: 'Onest', sans-serif;
    font-size: 24px;
    line-height: 30.6px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #141919;
}

.what-for-popup p {
    margin: 0;
    font-family: 'Onest', sans-serif;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: -0.187px;
    color: rgba(20, 25, 25, 0.7);
}

.what-for-list {
    margin-top: 24px;
    display: none;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (max-width: 1200px) {
    .solutions-more-grid {
        grid-template-columns: 1fr;
    }

    .what-for-popup {
        width: 360px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        line-height: 46px;
        letter-spacing: -0.8px;
    }

    .what-for-point {
        display: none;
    }

    .what-for-list {
        display: grid;
    }

    .section-title-h2{
        font-size: 35px;
        font-weight: 700;
        line-height: 32px;
    }

    .what-for-head-left .section-badge{
        margin: 0 auto 20px;
        display: flex;
    }

    .solutions-head .container{
        align-items: flex-start;
    }

    #solutions-indoor-title{
        text-align: left !important;
    }

    #solutions_indoor p.solutions-desc{
        text-align: left;
    }

    .section-title-onest{
        font-size: 35px;
        line-height: 29px;
    }

    #solutions_indoor .solutions-cards .solutions-card{
        flex-direction: column-reverse;
    }
    .solutions-card-img .solutions-card-img-inner::before {
        width: 20px;
        height: 20px;
        top: -1px;
        left: -1px;
        border: 10px solid transparent;
        border-left: 10px solid var(--color-features-bg);
        border-top: 10px solid var(--color-features-bg);
    }
    .solutions-card-img .solutions-card-img-inner::after {
        width: 20px;
        height: 20px;
        right: -1px;
        bottom: -1px;
        border: 10px solid transparent;
        border-right: 10px solid var(--color-features-bg);
        border-bottom: 10px solid var(--color-features-bg);
    }

    .solutions-card-img{
        min-height: 230px;
    }

    .solutions-card-text{
        padding: 20px;
    }

    .solutions-more{
        margin: 0 24px;
    }

    .solutions-more::after{
        right: -50px;
        top: 0;
        width: 180px;
        height: 185px;
    }

    .solutions-more .container{
        padding: 0 15px;
    }

    .solutions-more-grid .solutions-more-card:first-child::before{
        width: 20px;
        height: 20px;
        border: 10px solid transparent;
        border-left: 10px solid var(--color-features-bg);
        border-top: 10px solid var(--color-features-bg);
    }
    .solutions-more-grid .solutions-more-card:last-child::after{
        width: 20px;
        height: 20px;
        border: 10px solid transparent;
        border-right: 10px solid var(--color-card-bg);
        border-bottom: 10px solid var(--color-card-bg);
    }

    .solutions-more-grid .solutions-more-card{
        padding: 20px;
    }

    .cta-right-image-placeholder::before{
        width: 20px;
        height: 20px;
        border: 10px solid transparent;
        border-left: 10px solid var(--color-dark);
        border-top: 10px solid var(--color-dark);
    }

    .cta-right-image-placeholder::after {
        width: 20px;
        height: 20px;
        border: 10px solid transparent;
        border-right: 10px solid var(--color-dark);
        border-bottom: 10px solid var(--color-dark);
    }
}

