

/* Start:/local/templates/novatek/components/bitrix/menu/horizontal_multilevel/style.css?17727860059220*/
/* --- ПЕРЕМЕННЫЕ --- */
:root {
	--c-text-main: #151416;
	--c-accent: #E40046;
	--c-blue: #4061A6;
	--c-white: #FFFFFF;
	--font-main: 'Stolzl Book', 'Stolzl', sans-serif;
}

.nav {
	display: flex;
	align-items: center;
	height: 100%;
}

/* --- ЛОГОТИП --- */
.logo {
	margin-right: auto;
	width: 211px;
	height: 60px;
	display: flex;
	align-items: center;
}

.logo-img {
	width: 100%;
	height: auto;
	display: block;
	transition: filter 0.3s ease;
}

/* --- КОМПОНЕНТ МЕНЮ --- */
.menu-component {
	display: flex;
	align-items: center;
	height: 100%;
}

/* Основное меню (1 уровень) */
.main-menu {
	display: flex;
	list-style: none;
	gap: 24px;
	margin: 0;
	padding: 0;
	height: 100%;
}

.menu-item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.root-item {
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 20px 0;
	text-decoration: none;
	color: var(--c-text-main);
	font-size: 16px;
	font-weight: 350;
	line-height: 19px;
	position: relative;
}

/* Подчеркивание только для Десктопа */
.root-item::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 4px;
	background-color: var(--c-accent);
	transform: scaleX(0);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.root-item:hover::after {
	transform: scaleX(1);
	opacity: 1;
}

/*
   --- ВЫПАДАЮЩЕЕ ПОДМЕНЮ (ДЕСКТОП) ---
   ВАЖНО: Добавлен префикс .main-menu, чтобы не ломать мобилку
*/
.main-menu .submenu {
	position: absolute;
	top: 100%;
	left: -24px;
	background-color: var(--c-white);
	min-width: 250px;
	padding: 32px 24px;
	list-style: none;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	margin-top: 2px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 2000;
}

.main-menu .menu-item:hover .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-menu .submenu li {
	margin-bottom: 16px;
	display: flex;
	align-items: flex-start;
}

.main-menu .submenu li:last-child {
	margin-bottom: 0;
}

.main-menu .submenu a {
	text-decoration: none;
	color: var(--c-text-main);
	font-size: 16px;
	line-height: 19px;
	position: relative;
	padding-left: 12px;
	transition: color 0.3s;
}

/* Красные буллеты (Десктоп) */
.main-menu .submenu a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 4px;
	height: 4px;
	background-color: var(--c-accent);
	border-radius: 50%;
}

.main-menu .submenu a:hover {
	color: var(--c-accent);
}


/* --- МОБИЛЬНЫЙ БУРГЕР (ИКОНКА) --- */
.mobile-menu-container {
	margin-left: 24px;
	display: flex;
	align-items: center;
}

.mobile-menu-btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 27px;
	height: 19px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 100;
}

.mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--c-blue);
	border-radius: 2px;
	transition: 0.3s;
}

/* --- ЛИЧНЫЙ КАБИНЕТ --- */
.personal-cabinet {
	margin-left: 16px;
}
.cabinet-circle {
	width: 42px;
	height: 42px;
	background-color: var(--c-blue);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease;
}
.cabinet-link:hover .cabinet-circle {
	transform: scale(1.05);
}
.header.header--inverted:not(.is-scrolled):not(:hover) .mobile-menu-btn span {
	background-color: var(--c-white);
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 1199px) {
	.main-menu { display: none; }
	.mobile-menu-container { margin-left: 0; }
}


/* =========================================
   --- МОБИЛЬНОЕ ВЫЕЗЖАЮЩЕЕ МЕНЮ ---
   ========================================= */

/* 1. Оверлей (Фон) */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

/* 2. Панель меню (Белая часть) */
.mobile-menu-panel {
	position: fixed;
	top: 0;
	right: -100%; /* Скрыто СПРАВА */
	width: 100%;
	max-width: 400px; /* Ширина шторки */
	height: 100vh;
	background: #fff;
	z-index: 9999;
	padding: 60px 30px 40px 30px;
	box-shadow: -5px 0 20px rgba(0,0,0,0.1);
	transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	overflow-y: auto;
}

/* Кнопка закрытия */
.mobile-close-btn {
	position: absolute;
	top: 25px;
	right: 25px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

/* СОСТОЯНИЕ ОТКРЫТО */
body.mobile-menu-open {
	overflow: hidden;
}
body.mobile-menu-open .mobile-menu-overlay {
	opacity: 1;
	visibility: visible;
}
body.mobile-menu-open .mobile-menu-panel {
	right: 0;
}

/* --- 3. Стилизация списка меню --- */
.burger-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/*
   1. СБРОС СТИЛЕЙ РОДИТЕЛЯ
   Ставим block !important, чтобы элементы шли друг под другом (заголовок, под ним меню).
*/
.burger-menu-list > li {
	display: block !important;
	border-bottom: none;
	margin-bottom: 24px;
	width: 100%;
}

/*
   2. ССЫЛКА (ЗАГОЛОВОК)
   Используем inline-flex, чтобы блок занимал ширину контента,
   и gap: 16px для фиксированного отступа.
*/
.burger-menu-list > li > a {
	display: inline-flex; /* Стрелка будет сразу за текстом */
	align-items: center;
	gap: 16px;

	color: #000;
	font-family: 'Arial', sans-serif;
	font-size: 22px;
	font-weight: 500;
	text-decoration: none;
	line-height: 26px;
	cursor: pointer;
	position: relative;
	padding: 0;
}

/* Стрелочка */
.burger-menu-list > li > a::after {
	content: '';
	position: static;
	transform: none;
	opacity: 1;
	background-color: transparent;

	display: none;
	flex-shrink: 0; /* Чтобы не сжималась */
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2 5L8 11L14 5' stroke='%234061A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}

.burger-menu-list > li.has-submenu > a::after {
	display: block;
}

.burger-menu-list > li.open > a::after {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2 5L8 11L14 5' stroke='%23E40046' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

/*
   3. МОБИЛЬНОЕ ПОДМЕНЮ
   Используем !important для opacity и visibility, чтобы гарантированно
   перебить скрытие из десктопной версии (.main-menu .submenu)
*/
.burger-menu-list .submenu {
	/* Сбрасываем десктопные конфликты*/
	position: static !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	pointer-events: auto !important;
	min-width: 0 !important;
	border-radius: 0 !important;

	/* МОБИЛЬНЫЕ СТИЛИ */
	list-style: none;
	padding: 0;

	/* Убираем отступ слева, чтобы точки встали вровень с основным меню */
	margin-left: 0;
	margin-top: 16px; /* Отступ от родительского пункта вниз */

	display: none;
	width: 100%;
}

/* Показываем, когда родитель имеет класс open */
.burger-menu-list > li.open .submenu {
	display: block !important;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-5px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Пункты подменю */
.burger-menu-list .submenu li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 16px;
	display: block !important;
}

.burger-menu-list .submenu li:last-child {
	margin-bottom: 0;
}

/* Красная точка */
.burger-menu-list .submenu li::before {
	content: '';
	position: absolute;
	left: 0; /* Прижимаем к левому краю (вровень с основным меню) */
	top: 9px; /* (Line-height ~22px / 2) - (4px / 2) ≈ 9px. Подгонка под 16px шрифт */

	width: 4px;
	height: 4px;
	background-color: #E40046;
	border-radius: 50%;
}

.burger-menu-list .submenu a {
	font-size: 16px;
	color: #000;
	font-weight: 350;
	text-decoration: none;
	padding: 0;
	display: inline-block;
	line-height: 1.4;
}

.burger-menu-list .submenu a:hover {
	color: #4061A6;
}

.main-menu .menu-item#menu-autogas {display:none;}
/* End */


/* Start:/local/templates/novatek/css/footer.css?17744195649095*/
footer {
    padding-bottom: 50px !important;
}
.footer.page-section {
    padding-bottom: 50px;
    background: #fff; /* Убедимся, что фон белый */
}

/* === СЕТКА ФУТЕРА (3 колонки) === */
.footer .footer-grid {
    display: grid;
    /* Пропорции: Левая широкая, Средняя широкая, Правая узкая */
    grid-template-columns: 1.1fr 1.3fr 0.8fr;
    gap: 130px;
    margin-bottom: 40px;
}
.footer-item-left {
    width: 385px;
}

.footer-item-middle {
    width: 350px;
}

/* === КОЛОНКА 1: ИНФОРМАЦИЯ === */
.footer-logo img {
    display: block;
    width: 210px;
    height: auto;
    margin-bottom: 25px;
}

.footer-text .company-name {
    margin-bottom: 16px;
    font-size: 16px;
    color: #4B4B4C;
}

.footer-text .main-phone {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #4B4B4C;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-text .address {
    font-size: 16px;
    color: #4B4B4C;
    margin-bottom: 25px;
}

/* Кнопка "Связаться" */
.btn-outline-red {
    display: inline-block;
    border: 1px solid #E40046;
    border-radius: 50px; /* Полное скругление */
    background: white;
    color: #E40046;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-outline-red:hover {
    background: #E40046;
    color: white;
    text-decoration: none;
}

/* === ЗАГОЛОВКИ КОЛОНОК === */
.footer h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
    margin-top: 0;
    color: #4B4B4C;
}

/* === КОЛОНКА 2: СОТРУДНИЧЕСТВО === */
.contact-block {
    margin-bottom: 25px;
}

.region-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    color: #4B4B4C;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #4B4B4C;
}

.contact-row a {
    color: #4B4B4C;
    text-decoration: none;
    transition: 0.2s;
}

.contact-row a:hover {
    color: #E40046;
}

/* Иконки телефона и почты (серые) */
.c-icon {
    width: 20px;
    height: 20px;
    color: #ccc; /* Светло-серый цвет иконок */
    flex-shrink: 0;
}

/* === КОЛОНКА 3: СОЦСЕТИ === */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #4B4B4C;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 0.8;
    color: #E40046;
    text-decoration: none;
}

/* === НИЖНЯЯ ЧАСТЬ (Копирайт и ссылки) === */
.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #6F6F6F;
    font-size: 16px;
    color: #4B4B4C;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-links-bottom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links-bottom li a {
    text-decoration: none;
    color: #6F6F6F;
    transition: 0.2s;
}

.footer-links-bottom li a:hover {
    color: #E40046;
    text-decoration: underline;
}

/* === АДАПТИВНОСТЬ === */

/* Планшеты (меньше 992px) */
@media (max-width: 991px) {
    .footer .footer-grid {
        grid-template-columns: 1fr; /* Одна колонка */
        gap: 30px;
    }

    .footer-logo img {
        margin-bottom: 15px;
    }
}

/* Мобильные */
@media (max-width: 576px) {
    .footer-bottom {
        padding-top: 20px;
    }
    .btn-outline-red {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* Контейнер для кнопок */
.floating-panel {
    position: fixed;
    right: 20px;       /* Отступ от правого края */
    top: 50%;          /* По вертикали посередине */
    transform: translateY(-50%); /* Центровка по вертикали */
    z-index: 9000;     /* Поверх контента, но ниже модалки (у модалки 9999) */
    display: flex;
    flex-direction: column; /* Кнопки друг над другом */
    gap: 15px;         /* Расстояние между кнопками */
}

/* Общий стиль круглых кнопок */
.float-btn {
    width: 60px;
    height: 60px;
    background-color: #4061A6; /* Основной цвет сайта */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(64, 97, 166, 0.4); /* Тень в цвет кнопки */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
}

/* Эффект при наведении */
.float-btn:hover {
    background-color: #304d8a; /* Чуть темнее */
    transform: scale(1.1);     /* Легкое увеличение */
    box-shadow: 0 6px 20px rgba(64, 97, 166, 0.6);
}

/* Анимация пульсации для телефона (опционально, привлекает внимание) */
.btn-feedback::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #4061A6;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- Стили для кнопки "Наверх" --- */
.btn-top {
    opacity: 0;           /* Скрыта по умолчанию */
    visibility: hidden;
    transform: translateY(20px); /* Сдвинута вниз */
    transition: all 0.4s ease;   /* Плавное появление */
}

/* Класс, который добавляет JS, когда пора показать кнопку */
.btn-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 1. Глобальное решение проблемы с горизонтальной прокруткой */
body, html {
    overflow-x: hidden;
    width: 100%;
}

/* 2. Адаптация панели под мобильные устройства */
@media (max-width: 768px) {
    .floating-panel {
        right: 10px; /* Уменьшаем отступ от края */
        gap: 10px;   /* Уменьшаем расстояние между кнопками */
    }

    .float-btn {
        width: 45px;  /* Уменьшаем размер кнопок с 60px до 45px */
        height: 45px;
    }

    /* Уменьшаем иконки внутри кнопок пропорционально */
    .float-btn svg {
        width: 20px;
        height: 20px;
    }

    /* 3. Корректировка анимации для мобильных */
    /* Уменьшаем масштаб пульсации, чтобы она не вылезала за экран */
    .btn-feedback::before {
        animation-name: pulse-ring-mobile;
    }
}

/* Отдельная анимация для мобильных (меньший масштаб) */
@keyframes pulse-ring-mobile {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; } /* 1.3 вместо 1.5 */
}


.cookie-bar {
    padding: 35px;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    right: 20px;
    border: 1px solid #b8b8b8;
    opacity: 0;
    pointer-events: none;
    max-width: 520px;
    width: calc(100% - 40px);
    line-height: 1.3;
    transform: translateY(-20px);
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: ease-in-out;
    font-family: "Stolzl Book", sans-serif;
}

.cookie-bar p {
    margin: 0 0 1.2em;
}

.cookie-bar a:link,
.cookie-bar a:visited {
    border-bottom: 1px solid transparent;
    color: #1251A0;
    font-weight: normal;
    text-decoration: none;
}

.cookie-bar a:hover {
    border-bottom-color: inherit;
}

.cookie-bar.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-bar_btn {
    padding: 12px;
    background: #1251a0;
    border-radius: 1000px;
    width: 100%;
    color: white;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.cookie-bar_btn:hover {
    background-color: #e73a5f;
}
/* End */


/* Start:/local/templates/novatek/styles.css?177433532914405*/
    :root {
        --blue: #2D0AF0;
        --red: #FF144D;
        --primary-blue: #003366;
        --secondary-blue: #0056b3;
        --accent-blue: #007bff;
        --dark-blue: #002244;
        --light-gray: #f8f9fa;
        --medium-gray: #F8F8F8;
        --text-dark: #333333;
        --white: #ffffff;
        --red-accent: #FF144D;
        --purple-block: #2D0AF0;
        --black: #000;
        --dark: #151416;
        --c-text-main: #151416;
        --c-accent: #E40046;
        --c-blue: #4061A6;
        --c-white: #FFFFFF;
        --font-main: 'Stolzl Book', 'Stolzl', sans-serif;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* --- ПОДКЛЮЧЕНИЕ ШРИФТОВ STOLZL --- */

    /* 1. Light (300) */
    @font-face {
        font-family: 'Stolzl';
        src: url('/local/templates/novatek/fonts/Stolzl-Light.woff2') format('woff2');
        font-weight: 300;
        font-style: normal;
        font-display: swap;
    }

    /* 2. Book (350) - Часто используется как чуть более тонкий основной текст */
    @font-face {
        font-family: 'Stolzl';
        src: url('/local/templates/novatek/fonts/Stolzl-Book.woff2') format('woff2');
        font-weight: 350;
        font-style: normal;
        font-display: swap;
    }

    /* 3. Regular (400) - Основной текст */
    @font-face {
        font-family: 'Stolzl';
        src: url('/local/templates/novatek/fonts/Stolzl-Regular.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    /* 4. Medium (500) - Подзаголовки */
    @font-face {
        font-family: 'Stolzl';
        src: url('/local/templates/novatek/fonts/Stolzl-Medium.woff2') format('woff2');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }

    /* 5. Bold (700) - Жирные заголовки и кнопки */
    @font-face {
        font-family: 'Stolzl';
        src: url('/local/templates/novatek/fonts/Stolzl-Bold.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    /* 6. ExtraBold (800) - Трюк для совместимости с прошлым CSS */
    /* Так как у вас нет файла ExtraBold, мы направим вес 800 на файл Bold */
    @font-face {
        font-family: 'Stolzl';
        src: url('/local/templates/novatek/fonts/Stolzl-Bold.woff2') format('woff2');
        font-weight: 800;
        font-style: normal;
        font-display: swap;
    }


    html, body {
        font-family: 'Stolzl', Arial, sans-serif;
        -webkit-font-smoothing: antialiased; /* Улучшает рендеринг на Mac/iOS */
        -moz-osx-font-smoothing: grayscale;
    }

    /* Наследуем шрифт для элементов форм, так как браузеры часто сбрасывают его */
    button, input, textarea, select {
        font-family: inherit;
    }



    body {
        line-height: 1.6;
        color: var(--c-text-main);
        background-color: var(--white);
        font-weight: 350;
    }


    /* Контейнер по ТЗ */
    .container {
        max-width: 1200px;
        padding: 0 20px; /* Слева справа 20px */
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }


    section {
        padding: 80px 0;
    }

    /* --- ОСНОВНЫЕ СТИЛИ ХЕДЕРА --- */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
        /*padding: 20px 0;*/
        background-color: var(--c-white);
        /*box-shadow: 0 4px 15px rgba(0,0,0,0.05);*/
        /*transition: background-color 0.3s ease, box-shadow 0.3s ease;*/
		border-bottom:1px solid #E9E9E9;
		transition: background-color 0.3s ease, border-bottom 1px ease;

        z-index: 2500;
    }

	.header .container {
		height: 100%;
	}


    /*
       Состояние "Прозрачное/Инвертированное" применяется ТОЛЬКО если:
       1. У хедера есть класс .header--inverted
       2. НЕТ класса .is-scrolled (мы на самом верху)
       3. НЕТ наведения мыши (:hover)
    */
    .header.header--inverted:not(.is-scrolled) {
        background-color: transparent; /* Прозрачный фон */
        box-shadow: none;              /* Убираем тень */
		border-bottom: none;
    }

    .header.header--inverted:not(.is-scrolled) .root-item {
        color: var(--c-white);
    }


    /* Белый логотип (фильтром) */
    .header.header--inverted:not(.is-scrolled) .logo-img {
        filter: brightness(0) invert(1);
    }


    .nav {
        display: flex;
        align-items: center;
    }


    /* Стили для логотипа */
    .logo {
        margin-right: auto; /* Толкает меню и ЛК вправо */
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .logo-img {
        width: 211px;
        height: 60px;
        object-fit: contain;
        display: block;
        transition: filter 0.3s ease;
    }

    /* Стили для личного кабинета */
    .personal-cabinet {
        margin-left: 16px; /* ТЗ: Отступ от бургера */
        flex-shrink: 0;
        z-index: 1002;
        position: relative;
    }

    .cabinet-link {
        display: block;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

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

    .cabinet-circle {
        width: 32px;
        height: 32px;
        background-color: var(--c-blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .cabinet-link:hover .cabinet-circle {
        transform: scale(1.05);
    }

    .user-icon {
        transition: transform 0.3s ease;
    }


.section-content {
    padding: 0 32px;
}

    /* --- АДАПТИВНОСТЬ --- */

    /* При ширине < 1200px: Скрываем меню, оставляем бургер, лого и ЛК */
    @media (max-width: 1199px) {
        .main-menu {
            display: none;
        }

        .mobile-menu-container {
            margin-left: 0; /* Бургер прижимается, т.к. меню исчезло */
        }
    }

    /* Для совсем маленьких экранов уменьшаем лого, чтобы все влезло */
    @media (max-width: 480px) {
        .logo-img {
            width: 150px;
            height: auto;
        }
        .cabinet-circle {
            width: 36px;
            height: 36px;
        }
        /* Между бургером и ЛК */
        .personal-cabinet {
            margin-left: 10px;
        }
    }


    /* Остальные стили (преимущества, калькулятор, техника, новости, футер) остаются без изменений */
    /* Кнопки */
    .btn {
        display: inline-block;
        padding: 15px 35px;
        background: var(--accent-blue);
        color: var(--white);
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        border: 2px solid var(--accent-blue);
        text-align: center;
    }

    .btn:hover {
        background: transparent;
        color: var(--accent-blue);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--white);
        color: var(--white);
    }

    .btn-outline:hover {
        background: var(--white);
        color: var(--primary-blue);
    }

    /* Сетки - адаптивные */
    .grid {
        display: grid;
        gap: 40px;
    }

    /* 1920px - 4 колонки */
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    /* 1280px - планшетный вид */
    @media (max-width: 1280px) {
        .grid-4 {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .grid-3 {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .grid-2 {
            grid-template-columns: 1fr;
            gap: 30px;
        }

    }

    /* 767px и меньше - мобильный вид */
    @media (max-width: 767px) {
        .grid-4,
        .grid-3,
        .grid-2 {
            grid-template-columns: 1fr;
            gap: 20px;
        }

    }






    /* Анимации */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-up {
        animation: fadeInUp 0.6s ease-out;
    }

    @media (max-width: 767px) {

        .btn {
            padding: 12px 25px;
            font-size: 14px;
            width: 100%;
            max-width: 300px;
        }


    }


    /* Основной контейнер секции */
    .nvt-feedback-section {
        position: relative;
        margin: 100px 40px;
        overflow: hidden;
        color: #ffffff;
        background: url('/local/templates/novatek/images/form_bg.png'),  linear-gradient(105deg, #2d4585 0%, #1e8bc2 100%);
        background-size: 100%;
        background-repeat: no-repeat;
        border-radius: 20px;
    }

    /* Декоративный паттерн (точки) слева */
    .nvt-feedback-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;



        background-size: 20px 20px;
        pointer-events: none;
        z-index: 1;
    }

    /* Ограничитель ширины (контейнер) */
    .nvt-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        z-index: 2;

    }

    /* Обертка Flex для колонок */
    .nvt-feedback-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* ----- Левая колонка (Форма) ----- */
    .nvt-form-column {
        width: 100%;
        max-width: 500px; /* Ограничиваем ширину формы */
        flex-shrink: 0;
    }

    /* Заголовки */
    .nvt-title {
        font-size: 46px;
        font-weight: 500;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .nvt-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    /* Поля ввода */
    .nvt-form-group {
        margin-bottom: 15px;
    }

    .nvt-form-group label {
        display: block;
        font-size: 16px;
        margin-bottom: 4px;
        color: #fff;
    }

    .nvt-form-group label .required {
        color: #ff4d4d; /* Красная звездочка */
    }

    .nvt-form-group input,
    .nvt-form-group textarea {
        width: 100%;
        background-color: #F8F9FB;
        border: 1px solid transparent;
        border-radius: 6px;
        padding: 12px 15px;
        font-size: 14px;
        color: #333;
        outline: none;
        transition: border-color 0.3s;
        box-sizing: border-box; /* Важно для отступов */
    }

    .nvt-form-group input::placeholder,
    .nvt-form-group textarea::placeholder {
        color: #B0B0B0;
    }

    .nvt-form-group input:focus,
    .nvt-form-group textarea:focus {
        border-color: #2d4585;
    }

    .nvt-form-group textarea {
        height: 100px;
        resize: vertical;
    }

    /* Чекбокс */
    .nvt-checkbox-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        font-size: 13px;
    }

    .nvt-checkbox {
        margin-right: 10px;
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: #2d4585; /* Цвет галочки в современных браузерах */
    }

    .nvt-checkbox-wrapper label {
        cursor: pointer;
        user-select: none;
    }

    /* Кнопка отправки */
    .nvt-submit-btn {
        width: 100%;
        background-color: #3c5685; /* Темно-синий цвет плашки */
        color: #fff;
        border: none;
        border-radius: 25px; /* Скругление кнопки */
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .nvt-submit-btn:hover {
        background-color: #4a6699;
    }

    /* ----- Правая колонка (Картинка) ----- */
    .nvt-image-column {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        position: relative;
        /* Сдвигаем картинку, чтобы она наезжала как на макете */
        margin-left: -50px;
        margin-top: -80px; /* Чтобы заправка уходила вверх */
    }

    .nvt-hero-image {
        max-width: 120%; /* Позволяем картинке быть большой */
        height: auto;
        object-fit: contain;
        /* Если картинка обрезана снизу, можно добавить: */
        /* margin-bottom: -60px; */
    }

    /* ----- Адаптивность (Mobile) ----- */
    @media (max-width: 991px) {
        .nvt-feedback-wrapper {
            flex-direction: column;
        }

        .nvt-form-column {
            max-width: 100%;
            margin-bottom: 40px;
        }

        .nvt-image-column {
            width: 100%;
            margin: 0;
            justify-content: center;
        }

        .nvt-hero-image {
            max-width: 100%;
        }

        .nvt-title {
            font-size: 28px;
        }
    }

    textarea {
        resize: none !important;
    }
/* End */


/* Start:/local/templates/novatek/template_styles.css?1773388339289*/
#panel {
    position: relative !important;
    z-index: 10 !important;
}

#panel:has(#bx-panel) ~ .header {
    top: 147px !important;
    position: absolute !important;
}

#panel:has(#bx-panel.bx-panel-folded) ~ .header {
    top: 40px !important;
    position: absolute !important;
}



/* End */
/* /local/templates/novatek/components/bitrix/menu/horizontal_multilevel/style.css?17727860059220 */
/* /local/templates/novatek/css/footer.css?17744195649095 */
/* /local/templates/novatek/styles.css?177433532914405 */
/* /local/templates/novatek/template_styles.css?1773388339289 */
