.style3 .action_box_inner {padding-top: 20px;}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {margin: 14px;}
.btn-group.bootstrap-select .btn-default {padding: 7px 20px;}
.action_box .ac-btn {padding: 7px 38px;}
.action_box .action_box_content {margin-left: 18px;}

/* Современные улучшения для сайта */

/* Ссылка «Перейти к контенту» для доступности и SEO */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 10px;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
    --header-height: 178px;
    --theme-page-width: 1464px;
    --theme-page-width-padding: 32px;
}

/* Стили для видео фона */
.lx-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lx-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.lx-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

/* Анимации при появлении элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Классы для анимаций */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

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

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Кнопки — спокойный вид */
.btn-element, .more, .btn {
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-element:hover, .more:hover, .btn:hover {
    box-shadow: 0 4px 14px rgba(205, 33, 34, 0.25);
}

/* Карточки услуг — лёгкий акцент при наведении */
.services_box, .gobox {
    transition: box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.services_box:hover, .gobox:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.services_box__icon img, .gobox img {
    transition: opacity 0.3s ease;
}

.services_box:hover .services_box__icon img,
.gobox:hover img {
    opacity: 0.9;
}

.services_box__icon, .process_steps__step-icon {
    transition: none;
}

/* Улучшенный слайдер */
.lx-slideshow {
    position: relative;
}

.lx-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Параллакс эффект для фона */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Улучшенные карточки отзывов */
.ts-pt-testimonials__item {
    transition: all 0.4s ease;
    border-radius: 15px;
    overflow: hidden;
}

.ts-pt-testimonials__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ts-pt-testimonials__img {
    transition: all 0.4s ease;
}

.ts-pt-testimonials__item:hover .ts-pt-testimonials__img {
    opacity: 0.95;
}

.ts-pt-testimonials__stars span {
    display: inline-block;
}

/* Одинаковая высота блоков отзывов: имя и марка авто на одном уровне */
.testimonial_simple__carousel .slick-slide,
.testimonial_simple__carousel .slick-slide > div {
    height: 100%;
}

.testimonial_simple__carousel .ts-pt-testimonials__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 220px;
}

.testimonial_simple__carousel .ts-pt-testimonials__text {
    flex: 1 1 auto;
    min-height: 100px;
    display: flex;
    align-items: flex-start;
}

.testimonial_simple__carousel .ts-pt-testimonials__infos {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 4px;
}

.testimonial_simple__carousel .ts-pt-testimonials__name,
.testimonial_simple__carousel .ts-pt-testimonials__position,
.testimonial_simple__carousel .ts-pt-testimonials__stars {
    margin-bottom: 4px;
}

.testimonial_simple__carousel .ts-pt-testimonials__stars:last-child {
    margin-bottom: 0;
}

/* Уведомление о cookie: по центру и кнопка «Принимаю» */
.cookie-consent-box {
    left: 50%;
    transform: translateX(-50%) translateX(-120%);
    transition: transform 0.35s ease-in-out;
}

.cookie-consent-box.bb--anim-show {
    left: 50%;
    transform: translateX(-50%);
}

.cookie-consent-box.bb--anim-hide {
    transform: translateX(-50%) translateX(-120%);
}

.cookie-consent-box .bb--inner {
    padding-bottom: 20px;
}

.cookie-consent-box .bb--accept-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.cookie-consent-box .bb--accept-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Логотипы партнеров */
.ts-pt-partners__carousel.non-slick {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ts-pt-partners__carousel.non-slick .ts-pt-partners__carousel-item {
    flex: 0 0 20%;
    max-width: 20%;
}

.ts-pt-partners__img {
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.ts-pt-partners__img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Портфолио: карточки проектов */
.portfolio-grid {
    margin-top: 40px;
}

.portfolio-card {
    display: block;
    background: #05060a;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card__image {
    width: 100%;
    padding-top: 65%;
    background-size: cover;
    background-position: center;
}

.portfolio-card__body {
    padding: 18px 20px 20px;
}

.portfolio-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #ffffff;
}

.portfolio-card__meta {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Карусель «Выполненные работы»: 4 слайда в ряд, отступы через padding */
#portfolio .image-boxes__carousel-wrapper {
    padding-bottom: 50px;
    position: relative;
}
#portfolio .image-boxes__carousel {
    width: 100%;
    min-width: 0;
}
/* Убираем глобальный margin-right из template.css — иначе Slick не вмещает 4 колонки */
#portfolio .image-boxes__carousel.slick-initialized .slick-slide {
    margin-right: 0 !important;
}
#portfolio .image-boxes__carousel .slick-list {
    margin: 0 -12px;
}
#portfolio .image-boxes__carousel .slick-slide {
    padding: 0 12px;
    height: auto;
}
#portfolio .image-boxes__carousel .inner-slide {
    height: 100%;
}
#portfolio .image-boxes__carousel .portfolio-card {
    height: 100%;
}
/* Контейнер портфолио — на всю ширину секции для 4 карточек */
#portfolio .container.stl-fullwidth {
    max-width: 100%;
    width: 100%;
}

/* Улучшенное меню */
.main-menu li a {
    position: relative;
    transition: all 0.3s ease;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 0px;
    background: #ff001d;
    transition: width 0.3s ease;
}

.main-menu li a:hover::after,
.main-menu li.active a::after {
    width: 100%;
}

/* Анимация счетчиков */
.counter {
    font-size: 2.5em;
    font-weight: bold;
    color: #ff001d;
    transition: all 0.3s ease;
}

.counter.animated {
    animation: scaleIn 0.5s ease-out;
}

/* Улучшенные формы */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #ff001d;
    box-shadow: 0 0 0 3px rgba(205, 33, 34, 0.12);
    outline: none;
}

/* Эффект печатающейся машинки для заголовков */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #ff001d;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #ff001d;
    }
}



/* Плавающие элементы - отключено для SVG */

/* Эффект свечения */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff001d, #042b87, #ff001d);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.5;
    filter: blur(10px);
}

/* Улучшенные изображения */
img {
    transition: opacity 0.2s ease;
}

/* Без масштабирования/анимации при наведении для спокойного вида */
img[src$=".svg"] {
    transition: none;
}

/* Анимация загрузки */
.loading-spinner {
    border: 4px solid rgba(205, 33, 34, 0.1);
    border-top: 4px solid #ff001d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Улучшенный хедер при прокрутке */
.site-header {
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    /* backdrop-filter: blur(10px); */
}

/* Секции видны по умолчанию — без анимации появления */
section.visible {
    opacity: 1;
}

/* Улучшенные иконки Font Awesome */
.fa, .fas, .far {
    transition: all 0.3s ease;
}

.services_box:hover .fa,
.gobox:hover .fa {
    color: #ff001d;
}

/* Эффект волны */
.wave-effect {
    position: relative;
    overflow: hidden;
}

.wave-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(205, 33, 34, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    opacity: 0;
}

/* Волна отключена для спокойного вида */
.wave-effect:hover::after {
    opacity: 0;
}

/* Плавающая стрелка прокрутки (иконка cursor.png) */
@keyframes scroll-indicator-bounce {
    0% {
        transform: translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.75;
    }
}

.scroll-indicator {
    animation: scroll-indicator-bounce 1.4s ease-in-out infinite;
}

/* Адаптивные улучшения */
@media (max-width: 768px) {
    .animate-on-scroll {
        opacity: 1;
    }
    
    section {
        opacity: 1;
        transform: none;
    }
}

/* Заголовок слайдера — принудительно видимый */
.lx-slideshow .lx-ioscaption--style4 .main_title {
    opacity: 1 !important;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    position: relative;
    z-index: 1;
}

/* Кнопки в слайдере — всегда видимые */
.lx-slideshow .lx-ioscaption--style4 .more,
.lx-slideshow .lx-iosslide-caption.fromleft .more,
.lx-slideshow .lx-iosslide-caption.fromright .more,
.lx-slideshow .lx-iosslider-active .lx-iosslide-caption .more,
.lx-slideshow .container.lx-iosslide-caption .more,
.lx-slideshow .lx-ioscaption--style4.s4ext .more {
    opacity: 1 !important;
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    visibility: visible !important;
    display: inline-block !important;
    pointer-events: auto !important;
}

/* Форма кузовного ремонта в модальном окне */
.contact-popup .body-repair-form .row { margin-bottom: 18px; }
.contact-popup .body-repair-form .row:last-of-type { margin-bottom: 0; }
.contact-popup .body-repair-form .lx-fancy-form { margin-bottom: 0; }
.contact-popup .body-repair-form select.form-control {
    height: 52px;
    padding: 26px 16px 6px 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.contact-popup .body-repair-form textarea.form-control {
    min-height: 100px;
    padding-top: 26px;
}
.contact-popup .body-repair-form .classic_checkbox label { font-size: 13px; }
.contact-popup .body-repair-form .btn-fullcolor { margin-top: 8px; }
.contact-popup .body-repair-form .form-success { color: #2d8a3e; margin-top: 15px; }
.contact-popup .body-repair-form .form-error { color: #c0392b; margin-top: 15px; }

/* ========== Видимый современный вид ========== */

/* Шрифт Manrope для всего сайта */
body {
    font-family: 'Manrope', sans-serif !important;
    overflow-x: hidden;
}
 
.btn_red:before {
    content: '';
    background-color: #ff001d;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    z-index: -1;
    transform: skew(-20deg);
    transition: 0.3s ease;
    border: 1px solid #ff001d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

input, button, select, textarea,
.main-menu a, .tbk__title, .m_title, h1, h2, h3, h4, h5, h6,
.gobox-content p, .gobox-content h4, .services_box__desc p, .services_box__title,
.text_box p, .m_content, .contact-popup, .lx-cta-ribbon, .lx-cart-button,
.main_title, .title_small, .process_steps__step-title, .process_steps__step-desc,
.site-header, section, .container, .lx-iconbox__title, .lx-iconbox__desc {
    font-family: 'Manrope', sans-serif !important;
}

/* Иконки Font Awesome оставляем с системным шрифтом иконок */
.fa, .fas, .far, .fab, .fal, .fad, .svg-inline--fa {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
}

/* Базовый размер текста и читаемость */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.6;
}

/* ——— Шапка: поверх фиксированного слайдера ——— */
#header.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10 !important;
    background: transparent !important;
    padding-top: 50px;
    padding-bottom: 0.5rem;
}

.site-header-main {
    backdrop-filter: blur(20px);
    /* background: rgba(7, 8, 10, .4); */
    background:black;
    border-top: 1px solid #2828284a;
    border-bottom: 1px solid #2828284a;
    border-radius: 18px;
    padding: 25px 70px;
}

.btnForms {
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #ff001d;
    transform: translate(5px, -5px);
    padding: 59px 99px 14px 0;
    position: absolute;
    right: 5px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    height: 97px;
    top: 4px;
}
.btnForms:before {
    content: '';
    position: absolute;
    top: 0;
    left: -17px;
    height: 100%;
    width: 34px;
    background-color: #ff001d;
    transform: skewX(-20deg);
    z-index: -1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.btnForms:after {
    content: '';
    position: absolute;
    top: 17px;
    right: 17px;
    background-image: url(../images/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: 0.3s ease;
}

.btnForms a {
    color: white !important;
}

.ctabutton:hover {
    color: white !important;
}

.maxwidth-theme {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: calc(var(--theme-page-width) + calc(2 * var(--theme-page-width-padding)));
    padding-inline: var(--theme-page-width-padding, 32px);
    width: 100%;
}

/* Секция #about — центрированная с ограничением ширины */
/* #about {
    width: 80% !important;
    display: flex !important;
    margin: -100px auto 0 !important;
    position: absolute !important;
    justify-content: center !important;
    align-items: center !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 1140px;
    right: auto;
    border-radius: 18px;
    z-index: 10;
    padding: 30px 40px;
} */

/* Контейнер внутри секции #about */
section#about .container {
    width: 100%;
    max-width: 100%;
}

/* Второй блок после #about — отступ сверху, чтобы не наезжал на абсолютно позиционированный блок */
section#about.hg_section--relative + section.hg_section {
    padding-top: 250px !important;
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
}

.site-header .site-logo .logo-img {
    max-height: 85px;
}

.main-menu li a {
    color: white !important;
    font-weight: 500;
}

.main-menu li a:hover {
    color: white !important;
}

.lx-cart-button {
    color:white;
}



.lx-slideshow .main_title {
    font-size: 3.75rem !important;
    line-height: 60px;
    font-weight: 700;
}

.lx-slideshow .title_small {
    font-size: 1.5rem !important;
    opacity: 0.95 !important;
}

/* ——— Секции: больше воздуха ——— */
.hg_section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.hg_section.pb-80 { padding-bottom: 5.5rem !important; }
.hg_section.pt-80 { padding-top: 5.5rem !important; }
.hg_section.pb-70 { padding-bottom: 4.5rem !important; }

/* ——— Заголовки секций: красная полоска под заголовком ——— */
.lx-title-block .tbk__symbol,
.tbk-symbol--line .tbk__symbol {
    margin-top: 12px;
}

.tbk__symbol span {
    display: block;
    width: 56px;
    height: 4px;
    background: #ff001d !important;
    border-radius: 2px;
}

.tbk__symbol span.tbg {
    background: #ff001d !important;
}


/* ——— Карточки «Опытные специалисты / Гарантия / Сроки» ——— */
.gobox {
    background: #fff !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 2rem !important;
}

.gobox-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.gobox-content p {
    color: #555;
    line-height: 1.65;
}

.gobox.ok .fa-check-circle {
    color: #ff001d;
}

/* ——— Блоки услуг (Юридическая помощь, ТО, Доп. услуги) ——— */
.services_box--boxed .services_box__inner {
    background: #fff !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07) !important;
    border: none !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.services_box__title {
    color: #1a1a1a;
    font-weight: 600;
}

.services_box__desc p,
.text_box p,
.hg_section p {
    color: white;
    line-height: 1.65;
}

/* ——— Кнопки «Записаться на обслуживание» в контенте ——— */
.btn.btn-fullcolor.btn-skewed {
    border-radius: 10px;
    font-weight: 600;
    padding: 14px 28px;
}

/* ——— Фокус для клавиатуры ——— */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #ff001d;
    outline-offset: 2px;
}

/* ——— Отключение перетаскивания слайдера ——— */
.lx-slideshow,
.lx-slideshow .iosSlider,
.lx-slideshow .lx-iosslider,
.lx-slideshow .iosslider__item {
    touch-action: pan-y !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    pointer-events: auto;
}

.lx-slideshow .lx-iosslide-caption,
.lx-slideshow .main_title,
.lx-slideshow .title_small,
.lx-slideshow .more {
    pointer-events: auto;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* ——— Фиксированный слайдер: остаётся на месте при скролле ——— */
.lx-slideshow.iosslider-slideshow {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

#main-content {
    background:black !important;
}

/* Контент наезжает на слайдер сверху */
main.scrollable-content {
    position: relative;
    z-index: 2;
    background:black !important;
    margin-top: 100vh; /* Начинается под слайдером */
}

/* Первая секция контента с прозрачным началом для плавного наезда */
main.scrollable-content > section:first-child {
    position: relative;
    background: transparent;
}

main.scrollable-content > section:first-child::before {
    content: '';
    position: absolute;
    top: -100vh;
    left: 0;
    right: 0;
    height: 100vh;
    background: transparent;
    pointer-events: none;
}

/* =========================================================
   Перечень услуг (как на примере: слева текст + слайдер,
   справа авто)
   ========================================================= */
.services-showcase {
    position: relative;
    background: radial-gradient(800px 500px at 85% 35%, rgba(205, 33, 34, 0.35) 0%, rgba(14, 23, 30, 0) 55%),
        linear-gradient(180deg, #0b141b 0%, #0E171E 100%);
    overflow: hidden;
}

.services-showcase__container {
    position: relative;
    z-index: 2;
}

.services-showcase__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 520px;
}

/* Слева всегда текст и слайдер, справа всегда картинка */
.services-showcase__left {
    order: 1;
}
.services-showcase__right {
    order: 2;
}

.services-showcase__kicker {
    font-size: 32px;
    line-height: 1.05;
    font-weight: 100;
    color: #fff;
    margin: 0 0 14px 0;
}

.services-showcase__title {
    font-size: 32px;
    line-height: 1.05;
    font-weight: 100;
    color: #fff;
    margin: 0 0 14px 0;
}

.services-showcase__desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 22px 0;
}

.services-showcase__slider {
    margin-top: 18px;
    max-width: 720px;
}

.services-showcase__slide {
    padding: 0 14px;
}

.services-showcase__photo {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Slick arrows inside this block */
.services-showcase .hgSlickNav-arr {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 5;
}

.services-showcase .hgSlickNav-arr svg polyline {
    stroke: #fff !important;
}

.services-showcase .hgSlickNav-prev {
    left: -56px;
}

.services-showcase .hgSlickNav-next {
    right: -56px;
}

/* Right media */
.services-showcase__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.services-showcase__media::before {
    content: '';
    position: absolute;
    inset: -10% -10% -10% -10%;
    background: radial-gradient(closest-side at 60% 40%, rgba(205, 33, 34, 0.35), rgba(205, 33, 34, 0) 70%);
    filter: blur(6px);
    pointer-events: none;
}

.services-showcase__car {
    position: absolute;
    right: -340px;
    top: 50%;
    transform: translateY(-50%);
    width: min(720px, 120%);
    height: auto;
    max-width: none;
    opacity: 0.95;
}

@media (max-width: 1199px) {
    .services-showcase__kicker { font-size: 44px; }
    .services-showcase__title { font-size: 38px; }
    .services-showcase__media { min-height: 420px; }
    .services-showcase__car { right: -20px; width: min(640px, 120%); }
    .services-showcase .hgSlickNav-prev { left: -44px; }
    .services-showcase .hgSlickNav-next { right: -44px; }
}

@media (max-width: 991px) {
    .services-showcase__row { min-height: auto; }
    .services-showcase__media { min-height: 320px; margin-top: 24px; }
    .services-showcase__car { position: relative; right: auto; top: auto; transform: none; width: 100%; }
    .services-showcase .hgSlickNav-prev { left: 0; }
    .services-showcase .hgSlickNav-next { right: 0; }
}

@media (max-width: 575px) {
    .services-showcase__kicker { font-size: 34px; }
    .services-showcase__title { font-size: 30px; }
    .services-showcase__photo { height: 190px; }
}

/* =========================================================
   Футер как в test.html: лого | нав | контакты + низ
   ========================================================= */
.footer {
    background: #0E171E;
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 0;
}

.footer__main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.btn_see-more::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 97%;
    transform: translate(-50%, -50%) skew(-20deg);
    opacity: 0.2;
    border: 1px solid #FFFFFF;
    width: 53px;
    height: 173px;
}

.btn_see-more:hover {
    color: rgba(255, 255, 255, 0.801);
}
.btn_see-more {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    color: #FFFFFF;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.footer__logo-desc {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}

.footer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.bx-case-develop {
    background: white;
    border: solid 1px #E0E0E0;
    padding: 40px 35px;
    border-radius: 18px;
    height: 100%;
}

.developer__title {
    margin: 0 12px 0 0;
}

.developer__logo {
    max-height: 40px;
    max-width: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.developer__logo img {
    max-width: 100%;
    max-height: 40px;
}

.developer {
    display: flex;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
}

.hg_accordion_element.style3 .th-accordion .acc-group .content p {
    color: black;
}

.footer__nav a:hover {
    color: #fff;
    text-decoration: none !important;
}

#footer a.btn-fullwhite {
    color: white;
}

#footer a.btn-fullwhite:hover {
    color: black;
}

.footer__contacts {
    text-align: right;
}

.footer__social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.footer__social-link_wa:hover { background: #25d366; }
.footer__social-link_tg:hover { background: #0088cc; }

.footer__contacts-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer__address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__phone {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.footer__phone:hover {
    color: #ff001d;
}

.footer__cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: #ff001d;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, opacity 0.2s;
}

.footer__cta:hover {
    background: #b01d1e;
    color: #fff;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 0 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__policy a,
.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer__policy a:hover,
.footer__link:hover {
    color: #fff;
}

.footer__developer {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer__developer:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer__main {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__contacts {
        text-align: left;
    }
    .footer__social { justify-content: flex-start; }
    .footer__contacts-content { align-items: flex-start; }
}

@media (max-width: 575px) {
    .footer { padding: 30px 45px !important; }
    .footer__logo { flex-direction: column; align-items: flex-start; }
    .footer__nav { flex-direction: column; }
}

/* =========================================================
   Карта как в test.html: полноширинный блок, высота
   ========================================================= */
.yamapBlock {
    width: 100%;
    height: 526px;
    min-height: 320px;
    background: #e8e8e8;
}

.yamapBlock [class*="ymaps"][class*="ground"] {
    filter: grayscale(0);
}

/* =========================================================
   Запишитесь на бесплатный осмотр (как в test.html: форма + видео)
   ========================================================= */
.free-checkup-section .section__dark.form-inline {
    background: #0E171E;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.free-checkup-section .form-inline__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -15px;
}

.free-checkup-section .form-inline__head {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    padding: 48px 24px 32px 32px;
}

.free-checkup-section .form-inline__title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.free-checkup-section .form-inline__desc {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.free-checkup-section .form-inline__content {
    flex: 1 1 340px;
    min-width: 0;
    padding: 32px 32px 40px 24px;
}

.free-checkup-section .form_inline-block {
    max-width: 380px;
}

.free-checkup-section .form_inline-block .form__head {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.free-checkup-section .form__row {
    margin-bottom: 14px;
}

.free-checkup-section .form__input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.free-checkup-section .form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.free-checkup-section .form__input:focus {
    border-color: #ff001d;
    background: rgba(255, 255, 255, 0.08);
}

.free-checkup-section .form__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-top: 20px;
}

.free-checkup-section .form__submit-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #ff001d;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.free-checkup-section .form__submit-btn:hover {
    background: #b01d1e;
    color: #fff;
}

.free-checkup-section .form__submit-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.free-checkup-section .form__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    width: 100%;
    margin-top: 8px;
}

.free-checkup-section .form__social-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.free-checkup-section .form__social-item:hover {
    color: #fff;
}

.free-checkup-section .form__social-item i {
    font-size: 18px;
}

.free-checkup-section .form-politic {
    margin-top: 20px;
}

.free-checkup-section .form-politic__label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.free-checkup-section .form-politic__label input {
    margin-top: 3px;
}

.free-checkup-section .form-politic__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.free-checkup-section .form-politic__link:hover {
    color: #fff;
}

.free-checkup-section .free-checkup-video {
    width: 100%;
    margin: 0;
    position: relative;
    height: 320px;
    min-height: 240px;
}

.free-checkup-section .free-checkup-video__el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .free-checkup-section .form-inline__head {
        max-width: 100%;
        padding: 32px 24px 24px;
    }
    .free-checkup-section .form-inline__content {
        padding: 0 24px 32px;
    }
    .free-checkup-section .form_inline-block {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .free-checkup-section .form-inline__title {
        font-size: 28px;
    }
    .free-checkup-section .free-checkup-video {
        height: 240px;
    }
}

/* =========================================================
   Секция .services: видео + btnCustom + перечень услуг (как fpcar, в нашем стиле)
   ========================================================= */
.services .about-video {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.services .video-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.services .video-block {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .video-block .video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Кнопка btnCustom — в стиле Ремкар (красная, без Fancybox) */
.services .btnCustom {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.services .btnCustom-red {
    background: #ff001d;
    padding: 18px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(205, 33, 34, 0.4);
}

.services .btnCustom-red:hover {
    background: #b01d1e;
    box-shadow: 0 6px 24px rgba(205, 33, 34, 0.5);
    transform: translateY(-2px);
}

.services .btnCustom__head {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.services .btnCustom .duplicate-layer {
    display: block;
}

.services .btnCustom__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.services .btnCustom__footer ._text {
    margin: 0;
}

.services .btnCustom__icon ._icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 12V7H5a2 2 0 0 1-2-2c0-1.1.9-2 2-2h14v5'/%3E%3Cpath d='M3 5v14c0 1.1.9 2 2 2h16v-5'/%3E%3Cpath d='M18 12a2 2 0 0 0-2 2c0 1.1.9 2 2 2'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 12V7H5a2 2 0 0 1-2-2c0-1.1.9-2 2-2h14v5'/%3E%3Cpath d='M3 5v14c0 1.1.9 2 2 2h16v-5'/%3E%3Cpath d='M18 12a2 2 0 0 0-2 2c0 1.1.9 2 2 2'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

.services .btnCustom--mobile {
    display: none;
}

@media (max-width: 767px) {
    .services .video-block .btnCustom {
        display: none;
    }
    .services .btnCustom--mobile {
        display: inline-flex;
        margin-top: 16px;
    }
}

/* Список услуг: заголовок и блоки */
.services .section__dark.services-list {
    background: #0E171E;
    padding: 48px 0 56px;
}

.services .services-list__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 32px 0;
    text-align: center;
}

/* Блок услуги: раскладка как в fpcar (custom.css) — контент 50%, сцена 50%, чередование сторон */
.services .section__head .services-list__title {
    margin-bottom: 60px;
}

.services .services-list-item {
    position: relative;
    padding: 90px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.services .services-list-item .container {
    max-width: 100%;
}

.services .services-list-item__row {
    display: block;
    width: 100%;
}

.services .services-list-item__content {
    max-width: 50%;
}

/* Нечётные блоки (1, 3, 5): контент слева */
.services .services-list-item:nth-child(2) .services-list-item__content,
.services .services-list-item:nth-child(4) .services-list-item__content,
.services .services-list-item:nth-child(6) .services-list-item__content {
    margin-left: 0;
}

/* Чётные блоки (2, 4): контент справа */
.services .services-list-item:nth-child(3) .services-list-item__content,
.services .services-list-item:nth-child(5) .services-list-item__content {
    margin-left: 50%;
}

.services .services-list-item > .scene {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 50%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    pointer-events: none;
}

.services .services-list-item > .scene.scene-right {
    left: 50%;
    right: 0;
}

.services .services-list-item > .scene.scene-left {
    left: 0;
    right: 50%;
}

.services .services-list-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .services .services-list-item__content {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
    }
    .services .services-list-item > .scene {
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        left: auto;
        right: auto;
        padding: 20px 0;
    }
    .services .services-list-item {
        padding: 40px 0;
    }
}

.services .item__title.h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px 0;
}

.services .item__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.services .item__photos,
.services .item__photos .js-slider__block {
    width: 100%;
}

.services .item__photos .js-slick {
    width: 100%;
    min-width: 0;
    margin: 0 -10px;
}

.services .item__photos .js-slick .slick-list,
.services .item__photos .js-slick .slick-track {
    min-width: 0;
}

.services .item__photos .js-slick .item {
    padding: 0 10px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.services .item__photos .js-slick .slick-slide {
    height: auto;
}

.services .item__photos .js-slick .slick-slide > div {
    height: 100%;
}

.services .item__photos .item__inner {
    display: block;
    width: 100%;
    height: 200px;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    text-decoration: none;
    color: #fff;
}

.services .item__photos .item__inner:hover {
    color: #fff;
}

/* Лупа как в fpcar (style.min.css): по центру, scale при наведении */
.services .item__photos .haz-zoom {
    position: relative;
    cursor: pointer;
}

.services .item__photos .zoom {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    z-index: 3;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.services .item__photos .item__inner:hover .zoom {
    transform: scale(1);
}

.services .item__photos .zoom ._icon.icon-search1 {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

/* Сцена с машиной: показываем картинку справа/слева от контента */
.services .scene {
    position: relative;
    min-height: 200px;
}

.services .scene-car {
    position: relative;
    min-height: 200px;
    width: 100%;
    max-width: 420px;
}

.services .scene-car__img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
}

.services .scene-right .scene-car {
    margin-left: auto;
}

.services .scene-right .scene-car__img {
    margin-left: auto;
}

.services .scene-left .scene-car {
    margin-right: auto;
}

.services .scene-left .scene-car__img {
    margin-right: auto;
}

/* Скрываем пустые декоративные элементы сцен (анимации fpcar), показываем только img */
.services .scene-car__el,
.services .scene-car__destroy,
.services .scene-car__wheel {
    display: none;
}

/* =========================================================
   Блок «Комплекс услуг» (селекты марка/модель, табы, прайс-лист)
   ========================================================= */
section.complex {
    background: #0E171E;
    color: #fff;
    padding: 60px 0 80px;
}

section.complex .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.complex__cols {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.complex__left {
    flex: 0 1 320px;
    min-width: 0;
}

.complex__title-1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 24px 0;
    color: #fff;
}

.complex__title-2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.95);
}

.complex__ui {
    margin-top: 24px !important;
}

.complex__select {
    margin-bottom: 16px;
    width: 100%;
}

.complex__select .jq-selectbox {
    display: block !important;
    width: 100%;
}

.complex__select .jq-selectbox__select {
    width: 100%;
    min-height: 48px;
    padding: 0 44px 0 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    line-height: 48px;
    transition: border-color 0.2s, background 0.2s;
}

.complex__select .jq-selectbox__select:hover,
.complex__select .jq-selectbox.opened .jq-selectbox__select {
    border-color: #ff001d;
    background: rgba(255, 255, 255, 0.12);
}

.complex__select .jq-selectbox__select-text {
    color: #fff;
}

.complex__select .jq-selectbox__trigger-arrow {
    border-color: rgba(255, 255, 255, 0.7) transparent transparent;
    top: 50%;
    margin-top: -3px;
}

.complex__select .jq-selectbox__dropdown {
    background: #1a2332;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.complex__select .jq-selectbox__dropdown ul li {
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.complex__select .jq-selectbox__dropdown ul li:hover,
.complex__select .jq-selectbox__dropdown ul li.selected {
    background: rgba(205, 33, 34, 0.25);
}

.complex__right {
    flex: 1 1 500px;
    min-width: 0;
    position: relative;
}

.complex__title-3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative !important;
    top: auto !important;
}

/* Слайдер прайс-листа */
.slider-2 {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-2__arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.slider-2__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.slider-2__arrow:hover {
    background: rgba(205, 33, 34, 0.3);
    border-color: #ff001d;
}

.slider-2__arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.slider-2__arrow_prev::before {
    transform: rotate(45deg) translate(2px, 2px);
}

.slider-2__arrow_next::before {
    transform: rotate(-135deg) translate(2px, 2px);
}

.slider-2__left {
    margin-bottom: 20px;
}

.tabs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tabs__item {
    margin: 0;
}

.tabs__link {
    display: block;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.tabs__link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.tabs__item.active .tabs__link {
    background: #ff001d;
    border-color: #ff001d;
}

.slider-2__right-wrap {
    overflow: hidden;
}

.slider-2__content {
    padding: 16px 0;
}

.slider-2__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #fff;
}

.slider-2__fix-1,
.slider-2__fix-2 {
    max-width: 100%;
}

.slider-2__image {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 16px;
}

.slider-2 .prices {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-2 .prices__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
}

.slider-2 .prices__item:last-child {
    border-bottom: none;
}

.slider-2 .prices__label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.slider-2 .prices__text {
    font-size: 14px;
    font-weight: 600;
    color: #ff001d;
    margin: 0;
    white-space: nowrap;
}

/* Точки слайдера */
section.complex .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}

section.complex .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: background 0.2s;
}

section.complex .slick-dots li.slick-active button {
    background: #ff001d;
}

/* Сетка под блоком (декор) */
section.complex .grid {
    margin-top: 40px;
}

section.complex .grid__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section.complex .grid__item {
    height: 1px;
    background: transparent;
}

/* Подпись под блоком */
section.complex .video_block__title {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 24px auto 0;
    max-width: 1200px;
    padding: 0 20px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .complex__left {
        flex: 1 1 100%;
    }
    .complex__right {
        flex: 1 1 100%;
    }
    .complex__title-1 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    section.complex {
        padding: 40px 0 60px;
    }
    .slider-2 {
        padding: 16px;
    }
    .tabs__list {
        flex-direction: column;
    }
    .tabs__link {
        text-align: center;
    }
}
/**
 * Главная страница remcar.pro
 * Стили вынесены из инлайнов + мобильная версия
 */

/* ========== Шапка ========== */
.rm-header-cart {
    right: 200px;
    position: relative;
}
.rm-header-address-wrap {
    display: flex;
    flex-direction: column;
}
.rm-header-address {
    color: #fff;
    opacity: 0.5;
    padding-bottom: 0;
    font-size: 12px;
    line-height: 0;
    top: 12px;
    position: relative;
    text-align: right;
}
.rm-header-phone {
    text-align: right;
    font-weight: 500;
    font-size: 20px;
    top: 10px;
    position: relative;
}
.rm-btn-consult {
    display: block;
    text-decoration: none;
}

/* ========== Слайдер / Hero ========== */
.rm-hero-video {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.rm-hero-overlay {
    background-color: rgba(4, 43, 135, 0.2);
}
.rm-hero-caption {
    text-align: center;
}
.rm-hero-title {
    text-align: center;
    color: #fff;
    font-weight: 100;
    font-size: 52px !important;
}
.rm-hero-subtitle {
    text-align: center;
    color: #fff;
    font-size: 21px !important;
}
.rm-btn-price {
    background: #fff;
    color: #000;
}
.rm-btn-assessment {
    background: transparent;
}
.rm-scroll-indicator {
    width: 22px;
    position: absolute;
    bottom: -320px;
}

/* ========== Main ========== */
main.scrollable-content,
.rm-main-bg {
    background: #000 !important;
}

/* ========== Блок «О компании» ========== */
.rm-about-img {
    position: absolute;
    right: 80px;
    width: 450px;
    bottom: -230px;
    transform: rotate(326deg);
}
.rm-about-row {
    display: flex;
    gap: 50px;
    padding: 40px 340px;
}
.rm-about-col {
    width: 50%;
}
.rm-about-title {
    font-size: 56px;
    color: #fff;
    line-height: 60px;
}
.rm-about-lead {
    font-size: 26px;
    font-weight: 100;
    line-height: normal;
    padding-top: 30px;
}
.rm-about-text {
    line-height: 22px;
    font-size: 15px;
}
.rm-btn-zapis {
    color: #000;
}

/* ========== Белые карточки (Почему мы, Юрлица, FAQ) ========== */
.rm-card-section {
    background: #fff;
    margin: 0 50px;
    border-radius: 12px;
}
.rm-card-section--relative {
    position: relative;
}
.rm-card-inner {
    padding: 80px 120px;
}
.rm-card-max {
    max-width: 772px;
}
.rm-why-title {
    color: #000;
    font-size: 52px;
    line-height: normal;
    font-weight: bold;
}
.rm-why-lead {
    color: #000;
    font-size: 42px;
    line-height: normal;
    padding: 20px 0;
}
.rm-why-row {
    display: flex;
    gap: 30px;
    color: #000;
    padding: 20px 0;
}
.rm-why-h4 {
    margin: 30px 0 0;
}
.rm-title-black {
    color: #000;
    font-size: 52px;
    line-height: normal;
    font-weight: bold;
}
.rm-lead-32 {
    color: #000;
    font-size: 32px;
    line-height: normal;
    padding: 20px 0;
}
.rm-text-black {
    color: #000;
}

/* ========== CTA-бокс (записаться на диагностику) ========== */
.rm-cta-box {
    position: absolute;
    right: 200px;
    bottom: 85px;
    padding: 30px;
    border: 1px solid #ff001d;
    border-radius: 18px;
}
.rm-cta-box p {
    font-size: 26px;
    font-weight: 100;
    color: #000;
    text-align: center;
}
.rm-btn-price-red {
    background: #ff001d;
    padding: 10px 20px;
}
.rm-btn-assessment-white {
    background: #fff;
    color: #000;
    padding: 10px 20px;
}

/* ========== Перечень услуг (технологии) ========== */
.rm-title-mb {
    margin-bottom: 80px;
}
.rm-tech-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rm-tech-row--top {
    margin-top: 80px;
}
.rm-tech-col {
    width: 50%;
}
.rm-tech-title {
    font-size: 32px;
    color: #fff;
}
.rm-tech-img {
    width: 560px;
}
.rm-btn-tech {
    color: #000;
}
.rm-section-title-52 {
    font-size: 52px;
}
.rm-section-title-white {
    font-size: 52px;
    color: #fff;
}

/* ========== Этапы работы ========== */
.rm-steps-section {
    margin-top: 50px;
    position: relative;
}
.rm-steps-intro {
    height: 310px;
    padding: 35px 0 20px 275px;
}
.rm-steps-intro-wrp {
    padding: 47px 0;
}
.rm-steps-inner {
    min-height: 260px;
}
.rm-step-mt {
    margin-top: 50px;
}
.rm-step-icon {
    width: 66px;
    padding-bottom: 15px;
}
.rm-step-desc {
    color: #000;
}
.rm-btn-steps {
    color: #000;
}

/* ========== Секции ========== */
.rm-section-pt0 {
    padding-top: 0 !important;
}
.rm-spacer {
    height: 50px;
}
.rm-subtitle-gray {
    color: #6e788a !important;
}
.rm-portfolio-subtitle {
    color: #6e788a !important;
}

/* ========== Декоративное изображение в карточке ========== */
.rm-card-deco-img {
    position: absolute;
    right: -350px;
    top: -330px;
}

/* ========== FAQ / Аккордеон ========== */
.rm-faq-title-wrap {
    margin-top: 80px;
}
.rm-faq-accordion {
    color: #fff;
    background: none;
    border: none;
    padding: 20px 0;
    margin: 0 180px;
}
.rm-faq-p {
    font-size: 16px;
}

/* ========== Отзывы ========== */
.rm-testimonial-item {
    margin-top: 20px;
}
.rm-testimonial-text {
    font-size: 12px;
}

/* ========== Партнёры ========== */
.rm-partners-wrap {
    padding: 80px 0;
}
.rm-partners-title {
    font-size: 32px;
    padding-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* ========== Карта ========== */
.rm-map-wrap {
    width: 100%;
    overflow: hidden;
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}
.rm-map-wrap iframe {
    display: block;
}


/* =========================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================= */

@media (max-width: 1199px) {
    .rm-about-row {
        padding: 40px 120px;
    }
    .rm-card-inner {
        padding: 50px 60px;
    }
    .rm-cta-box {
        right: 40px;
        bottom: 40px;
        padding: 20px;
    }
    .rm-steps-intro {
        padding: 35px 20px 20px 20px;
    }
    .rm-faq-accordion {
        margin: 0 40px;
    }
}

@media (max-width: 991px) {
    .rm-header-cart {
        right: 0;
    }
    .rm-about-img {
        display: none;
    }
    .rm-about-row {
        flex-direction: column;
        padding: 30px 20px;
        gap: 24px;
    }
    .rm-about-col {
        width: 100%;
    }
    .rm-about-title {
        font-size: 36px;
        line-height: 1.2;
    }
    .rm-about-lead {
        font-size: 20px;
    }
    .rm-card-section {
        margin: 0 15px;
    }
    .rm-card-inner {
        padding: 40px 20px;
    }
    .rm-why-title,
    .rm-title-black {
        font-size: 32px;
    }
    .rm-why-lead {
        font-size: 24px;
    }
    .rm-why-row {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    .rm-cta-box {
        position: static;
        margin-top: 30px;
        text-align: center;
    }
    .rm-cta-box p {
        font-size: 20px;
    }
    .rm-tech-row {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .rm-tech-row--top {
        margin-top: 40px;
    }
    .rm-tech-col {
        width: 100%;
    }
    .rm-tech-img {
        width: 100%;
        max-width: 400px;
    }
    .rm-title-mb {
        margin-bottom: 40px;
    }
    .rm-steps-intro {
        height: auto;
        padding: 30px 20px;
    }
    .rm-steps-inner {
        min-height: auto;
    }
    .rm-step-mt {
        margin-top: 24px;
    }
    .rm-card-deco-img {
        display: none;
    }
    .rm-faq-accordion {
        margin: 0 15px;
        padding: 15px 0;
    }
    .rm-faq-title-wrap {
        margin-top: 40px;
    }
    .testimonials-partners .row > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .rm-partners-wrap {
        padding: 40px 15px;
    }
    .rm-partners-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .rm-hero-title {
        font-size: 28px !important;
    }
    .rm-hero-subtitle {
        font-size: 16px !important;
    }
    .rm-scroll-indicator {
        bottom: -200px;
    }
    .rm-about-row {
        padding: 20px 15px;
    }
    .rm-about-title {
        font-size: 28px;
    }
    .rm-about-lead {
        font-size: 18px;
    }
    .rm-card-section {
        margin: 0 10px;
    }
    .rm-card-inner {
        padding: 24px 15px;
    }
    .rm-why-title,
    .rm-title-black {
        font-size: 24px;
    }
    .rm-why-lead {
        font-size: 18px;
    }
    .rm-lead-32 {
        font-size: 18px;
    }
    .rm-tech-title {
        font-size: 24px;
    }
    .rm-section-title-52,
    .rm-section-title-white {
        font-size: 28px;
    }
    .rm-title-mb {
        margin-bottom: 30px;
    }
    .rm-steps-intro {
        padding: 24px 15px;
    }
    .rm-faq-accordion {
        margin: 0 10px;
    }
    .rm-faq-p {
        font-size: 14px;
    }
    .rm-partners-title {
        font-size: 20px;
    }
    .rm-partners-wrap {
        padding: 30px 10px;
    }
}
