
.geo-stat-item.clickable {
    position: relative;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s;
}
.geo-stat-item.clickable:hover { background: #f4f7fa; }

/* Стрелочка */
.stat-arrow {
    font-size: 18px;
    vertical-align: middle;
    color: #cbd5e1;
    transition: 0.3s;
}
.geo-stat-item.active .stat-arrow { transform: rotate(180deg); color: var(--teal); }

/* Контейнер выпадающего списка */
.stat-dropdown {
    display: none; /* Скрыто по умолчанию */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    min-width: 250px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 10px;
    overflow: hidden;
}
.stat-dropdown.show { display: block; animation: fadeInStat 0.2s ease; }

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

.stat-dropdown-inner { padding: 15px; }
.stat-dropdown-inner.double-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
    min-width: 400px;
}

.stat-dropdown-inner a {
    display: block;
    padding: 8px 12px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.2s;
}
.stat-dropdown-inner a:hover {
    background: var(--teal);
    color: #fff !important;
}

.more-text {
    padding: 8px 12px;
    font-size: 12px;
    color: #99a2ad;
    font-style: italic;
}

@media (max-width: 768px) {
    .stat-dropdown-inner.double-col { min-width: 280px; grid-template-columns: 1fr; }
}
        /* БЛОК ГЕОГРАФИИ 3D STYLE */
.modern-geo-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
    perspective: 1200px; /* Создает глубину для 3D */
}

.modern-geo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.geo-content-left { flex: 1; min-width: 350px; z-index: 10; }

.geo-label { font-size: 13px; font-weight: 800; color: #b1b1b1; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 15px; display: block; }
.geo-main-title { font-size: 48px; font-weight: 900; line-height: 1.1; color: #1a1e26; margin-bottom: 30px; }
.geo-main-title span { color: var(--teal); }
.geo-main-text { font-size: 16px; color: #5d6670; line-height: 1.6; max-width: 450px; margin-bottom: 40px; }

.geo-big-stats { display: flex; gap: 40px; }
.geo-num { font-size: 48px; font-weight: 900; color: #34495e; display: block; }
.geo-desc { font-size: 13px; font-weight: 700; color: #99a2ad; display: block; margin-top: 5px; }

/* Карта с 3D эффектом */
.geo-visual-right {
    flex: 1.2;
    position: relative;
    min-width: 500px;
}

#map-interactive-leaf {
    width: 100%;
    height: 550px;
    background: #f4f7fa;
    border-radius: 40px;
    /* Наклон как на скриншоте */
    transform: rotateX(25deg) rotateY(-5deg) rotateZ(-5deg);
    box-shadow: 
        -20px 20px 50px rgba(0,0,0,0.1),
        0 10px 20px rgba(0, 168, 168, 0.05);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

/* При наведении карта немного выравнивается */
.geo-visual-right:hover #map-interactive-leaf {
    transform: rotateX(15deg) rotateY(0deg) rotateZ(0deg);
}

/* Белые парящие метки городов */
.custom-geo-label {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #2c3e50 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 10px !important;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px #fff, 0 0 15px #fff;
}

/* Точка города */
.map-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: 3px solid var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 168, 168, 0.6);
}

@media (max-width: 991px) {
    .geo-visual-right { min-width: 100%; }
    #map-interactive-leaf { height: 400px; transform: none !important; }
}
    /* Обновленные стили тегов по ширине сайта */
        .tags-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
        
        /* Используем ваш стандартный ограничитель ширины */
        .tags-container {
            max-width: 1200px !important;
            width: 100% !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            box-sizing: border-box;
        }
        
        .tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-start;
        }
        
        .tag-item {
            display: inline-block;
            padding: 10px 22px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag-item:hover {
            background-color: var(--teal);
            color: #ffffff !important;
            border-color: var(--teal);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 168, 168, 0.2);
        }
        
        .tags-title {
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #2c3e50;
            margin-bottom: 25px;
            display: block;
        }
        /* Стили хлебных крошек */
.breadcrumbs {
    padding: 20px 0;
    background-color: #ffffff; /* Белый фон, как у шапки при скролле */
    border-bottom: 1px solid #f0f0f0;
}

/* Если хлебные крошки находятся на прозрачном баннере (в начале страницы) */
.hero-breadcrumbs {
    position: relative;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    font-size: 15px;
    font-weight: 500;
    color: #888;
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    transform: rotate(-45deg);
    margin: 0 12px;
}

.breadcrumbs a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--teal-hover);
    text-decoration: underline;
}

/* Для светлого текста на темном баннере */
.header-transparent ~ main .hero-breadcrumbs a,
.hero-breadcrumbs a { color: #ffffff; }
.header-transparent ~ main .hero-breadcrumbs li,
.hero-breadcrumbs li { color: rgba(255,255,255,0.85); }
.hero-breadcrumbs li:not(:last-child)::after {
    border-color: rgba(255,255,255,0.6);
}

/* На мобиле/планшете крошки не плавающие, а в обычном потоке —
   иначе налезают на mobile-header-bar и баннер */
@media (max-width: 991px) {
    .hero-breadcrumbs {
        position: static;
        top: auto;
        padding: 12px 15px;
        background-color: #1a1e26;
    }
    .hero-breadcrumbs li,
    .hero-breadcrumbs a { font-size: 13px; }
}
        /* Стили для новой таблицы удельного веса */
.weight-table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}
.weight-table-custom thead tr {
    background-color: #f8f9fa;
}
.weight-table-custom td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #444;
}
.weight-table-custom thead td {
    font-weight: 800;
    color: #2c3e50;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
.weight-table-custom tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}
.weight-table-custom tbody tr:hover {
    background-color: #f0f9f9;
}
.weight-val-cell {
    text-align: center;
    font-weight: 700;
    color: var(--teal);
}
        /* Глобальное выравнивание всех блоков по ширине автопарка */
.hww-container, 
.container, 
.problems-section, 
.benefits-section, 
.custom-services-container, 
.geography-section, 
.b-team-container, 
.pricing-widget-wrapper,
.tracking-widget-wrap,
.b-cases .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
}

/* Принудительная ширина для внутренних элементов таблиц и виджетов */
.pricing-widget-wrapper .top-tabs,
.pricing-widget-wrapper .table-container,
.pricing-widget-wrapper h1 {
    max-width: 100% !important;
}
       .v-details-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid var(--teal);
    color: var(--teal) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.v-details-link:hover {
    background: var(--teal);
    color: #fff !important;
    transform: translateY(-2px);
}
/* Единый стиль для всех кнопок в конце блоков */
.btn-more, 
.fleet-btn-more, 
.tracking-submit-btn, 
.btn-reviews-all, 
.btn-cases-all,
.benefits-btn.btn-desktop,
.benefits-btn.btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important; /* Все кнопки на всю ширину блока */
    max-width: 1200px;
    margin: 20px auto 0 auto !important;
    padding: 20px !important;
    background: var(--teal) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: none !important;
    transition: all 0.3s ease;
}

/* Ховер-эффект для всех кнопок */
.btn-more:hover, 
.fleet-btn-more:hover, 
.tracking-submit-btn:hover, 
.btn-reviews-all:hover, 
.btn-cases-all:hover,
.benefits-btn:hover {
    background: var(--teal-hover) !important;
    box-shadow: 0 8px 25px rgba(0, 168, 168, 0.3) !important;
    transform: translateY(-2px);
}

/* Иконки в кнопках */
.btn-more i, .fleet-btn-more i, .tracking-submit-btn i, .btn-reviews-all svg, .btn-cases-all svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Смещение иконки при наведении */
.fleet-btn-more:hover i, .btn-more:hover i, .tracking-submit-btn:hover i {
    transform: translateX(5px);
}
        /* --- НОВЫЙ АВТОПАРК (СТИЛЬ ИНТЕРАКТИВ) --- */
.fleet-new-section { padding: 60px 0; background: #fafafa; }

/* Селектор вверху */
.fleet-selector-wrapper { 
    margin-bottom: 30px; 
    overflow-x: auto; 
    padding-bottom: 10px;
    -ms-overflow-style: none;  scrollbar-width: none; 
}
.fleet-selector-wrapper::-webkit-scrollbar { display: none; }

.fleet-selector { 
    display: flex; 
    gap: 15px; 
    min-width: max-content; 
    padding: 5px;
}

.selector-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    width: 140px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.selector-item img { width: 100%; height: 70px; object-fit: contain; margin-bottom: 8px; filter: grayscale(1); opacity: 0.7; }
.selector-item span { font-size: 13px; font-weight: 700; color: #666; }

.selector-item:hover, .selector-item.active {
    border-color: var(--teal);
    box-shadow: 0 5px 15px rgba(0,168,168,0.1);
}
.selector-item.active img { filter: grayscale(0); opacity: 1; }
.selector-item.active span { color: var(--teal); }

/* Карточка деталей */
.fleet-details-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.fleet-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.details-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.v-price { font-size: 22px; font-weight: 800; color: var(--teal); margin-bottom: 5px; }
.v-min-order { font-size: 14px; color: #888; margin-bottom: 25px; }
.v-usage strong { display: block; margin-bottom: 10px; font-size: 16px; }
.v-usage p { font-size: 14px; color: #555; line-height: 1.6; }

.details-image img { width: 100%; max-height: 300px; object-fit: contain; }

.details-specs {
    background: #fbfbfc;
    padding: 25px;
    border-radius: 15px;
}
.details-specs h4 { font-size: 16px; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }

.specs-list { padding: 0; margin: 0 0 25px 0; list-style: none; }
.specs-list li { 
    display: flex; 
    justify-content: space-between; 
    padding: 8px 0; 
    border-bottom: 1px dashed #ddd; 
    font-size: 14px;
}
.specs-list li span { color: #777; }
.specs-list li b { color: var(--dark); }

.v-order-btn {
    display: block;
    background: var(--teal);
    color: #fff !important;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.v-order-btn:hover { background: var(--teal-hover); transform: translateY(-2px); }

/* Мобильная версия */
@media (max-width: 991px) {
    .fleet-details-grid { grid-template-columns: 1fr; text-align: center; }
    .fleet-details-card { padding: 25px; }
    .details-image { order: -1; } /* Картинка вверх */
    .specs-list li { justify-content: space-between; text-align: left; }
    .details-specs { border-left: none; border-top: none; }
    /* На мобиле прячем фото машины и блок характеристик
       (оставляем только описание + кнопку "Заказать вывоз") */
    .fleet-new-section .details-image,
    .fleet-new-section .details-specs h4,
    .fleet-new-section .specs-list {
        display: none;
    }
    .fleet-new-section .details-specs { background: transparent; padding: 0; }
    /* Прячем кнопки "Заказать вывоз" и "Смотреть весь автопарк" — мобильная версия */
    .fleet-new-section .v-order-btn,
    .fleet-new-section .fleet-more-container { display: none; }

    /* Селектор машин — гарантируем работающий touch-скролл на мобиле */
    .fleet-new-section .fleet-selector-wrapper {
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        width: 100%;
        max-width: 100%;
    }
    .fleet-new-section .fleet-selector {
        width: max-content;
        min-width: 100%;
    }

    /* "Включено 60 мин на погрузку" — на мобиле скрываем (не критично) */
    .fleet-new-section .v-min-order { display: none; }

    /* Яндекс-плашка из плавающих виджетов на мобиле перекрывает текст — скрываем.
       Кнопка "Наверх" остаётся видимой */
    .floating-widgets.left-widgets .ya-badge { display: none; }

    /* Блок "9 главных проблем" — на мобиле 2 ряда × 2 карточки, остальные свайпом */
    .problems-section .cards-track {
        display: grid !important;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        grid-auto-columns: calc(50% - 6px);
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 12px;
    }
    .problems-section .cards-track::-webkit-scrollbar { display: none; }
    .problems-section .problem-card {
        width: auto !important;
        margin: 0 !important;
        scroll-snap-align: start;
        min-width: 0;
    }

    /* Блок "География вывоза мусора" — на мобиле 2 ряда × 2 колонки.
       Применяем только к geo-areas-section, чтобы не сломать "Как мы работаем" */
    .geo-areas-section .hww-steps-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto auto !important;
        grid-auto-flow: row !important;
        gap: 16px !important;
        overflow: visible !important;
        padding: 0 12px !important;
    }
    .geo-areas-section .hww-step {
        flex: none !important;
        width: auto !important;
        scroll-snap-align: none !important;
    }
    /* Стрелки слайдера в географии не нужны — все 4 карточки уже видны */
    .geo-areas-section .hww-slider-arrow { display: none !important; }

    /* Команда — на мобиле оставляем только 2 эксперта (Арман и Елена),
       Дмитрия скрываем — он 3-й по порядку */
    .b-team-fixed .row > .col-lg-4:nth-child(3) {
        display: none !important;
    }

    /* Подвал — скрываем подкатегории, оставляем только главные заголовки */
    .footer-mega .footer-nav-card { display: none; }
}
        :root { 
            --teal: #00a8a8; 
            --teal-hover: #008a8a;
            --dark: #2c3e50;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body { font-family: 'Inter', sans-serif; color: var(--dark); margin: 0; padding-top: 0 !important;}
        
        ul, li { list-style: none !important; padding: 0 !important; margin: 0 !important; }
        a { text-decoration: none !important; }
        .nav-link-root::after, .nav-link-root::before { content: none !important; display: none !important; }

        /* --- ХЕДЕР: ЛОГИКА ПРОЗРАЧНОСТИ ПРИ СКРОЛЛЕ --- */
        .header-master {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 2000;
            transition: background-color 0.4s ease, box-shadow 0.4s ease;
            background: transparent;
        }
        .header-top { transition: 0.4s ease; border-bottom: 1px solid #eaeaea; padding: 6px 0; background: #fff;}
        .nav-wrapper { transition: 0.4s ease; background: #fff; border-bottom: 1px solid #eee; }

        /* Класс прозрачности (добавляется через JS, когда страница в самом верху) */
        .header-transparent .header-top,
        .header-transparent .nav-wrapper,
        .header-transparent .mobile-header-bar {
            background: transparent !important;
            border-bottom-color: rgba(255,255,255,0.1) !important;
        }
        
        /* Белый текст на прозрачном фоне */
        .header-transparent .top-link-muted,
        .header-transparent .nav-link-root,
        .header-transparent .dropdown-toggle-no-caret,
        .header-transparent .fa-bars,
        .header-transparent span {
            color: #fff !important;
        }
        
        /* ПРОЗРАЧНАЯ КНОПКА МЕНЮ ПРИ СКРОЛЛЕ ВВЕРХУ */
        .header-transparent .btn-burger-menu {
            background: transparent; /* Убираем белый фон */
            border-color: rgba(255,255,255,0.6); /* Полупрозрачная белая рамка */
            color: #fff;
        }
        .header-transparent .btn-burger-menu i { color: #fff; }
        .header-transparent .btn-burger-menu:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
        
        /* Инверсия логотипа в белый цвет на прозрачном фоне */
        .header-transparent img[alt="Almaty Trans"] {
            filter: brightness(0) invert(1);
        }

        .header-scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        /* ----------------------------------------------- */

        .top-link-muted { color: #4a5568; font-size: 14px; font-weight: 400; transition: 0.2s; display: flex; align-items: center; }
        .top-link-muted i { color: #a0aec0; font-size: 15px; margin-right: 8px; transition: 0.2s; }
        .top-link-muted:hover, .top-link-muted:hover i { color: var(--teal); }

        .city-dropdown-btn { border: none; background: none; padding: 0; cursor: pointer; }
        .city-dropdown-btn span { border-bottom: 1px dashed #a0aec0; padding-bottom: 1px; }

        .social-icon-top {
            display: flex; align-items: center; justify-content: center;
            width: 26px; height: 26px; background-color: #a0aec0; color: #fff;
            border-radius: 50%; font-size: 13px; transition: 0.2s;
        }
        .social-icon-top:hover { background-color: var(--teal); color: #fff; }

        .city-dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px 0; max-height: 400px; overflow-y: auto; z-index: 2000; }
        .city-dropdown-menu .dropdown-item { padding: 8px 20px; font-size: 14px; color: #2c3e50; transition: 0.2s; }
        .city-dropdown-menu .dropdown-item:hover { background-color: #f8f9fa; color: var(--teal); }
        .dropdown-toggle-no-caret::after { display: none !important; }

        /* СТАНДАРТНАЯ КНОПКА МЕНЮ (НА БЕЛОМ ФОНЕ) */
        .btn-burger-menu {
            display: flex; align-items: center; background: #fff;
            border: 1px solid var(--teal); border-radius: 30px;
            padding: 7px 22px; color: var(--teal); font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); 
        }
        .btn-burger-menu i { margin-right: 12px; font-size: 18px; color: var(--teal); }
        .btn-burger-menu:hover { background: var(--teal); color: #fff; }
        .btn-burger-menu:hover i { color: #fff; }

        .nav-link-root { padding: 25px 18px; color: var(--teal) !important; font-weight: 700; font-size: 14px; text-transform: uppercase; transition: var(--transition); white-space: nowrap; }
        .nav-item-root { position: static; }
        .mega-menu-box {
            position: absolute; top: 100%; left: 0; width: 100%; 
            background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: var(--transition); padding: 40px 0; border-top: 1px solid #eee; z-index: 999;
        }
        .nav-item-root:hover .mega-menu-box { opacity: 1; visibility: visible; transform: translateY(0); }

        .mega-col-title { font-weight: 700; color: var(--teal) !important; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; display: block; border-bottom: 1px solid #f0f4f7; padding-bottom: 10px; text-decoration: none; }
        .mega-col-title:hover { color: var(--teal-hover, #008a8a) !important; }
        .mega-links li, .mega-list li { margin-bottom: 10px; list-style: none; }
        .mega-list { padding: 0; margin: 0; list-style: none; }
        .mega-links a, .mega-list a { color: var(--dark) !important; font-size: 14px; font-weight: 500; transition: 0.2s; display: block; text-decoration: none; }
        .mega-links a:hover, .mega-list a:hover { color: var(--teal) !important; padding-left: 5px; }

        .btn-calc-header { background: var(--teal); color: #fff; border-radius: 30px; padding: 10px 22px; font-weight: 700; font-size: 13px; text-transform: uppercase; border: none; transition: 0.3s; white-space: nowrap; flex-shrink: 0;}
        /* City dropdown */
        .city-dropdown .btn-city-toggle { background: transparent; border: none; padding: 0; cursor: pointer; }
        .city-menu { min-width: 200px; border-radius: 12px; padding: 8px 0; border: 1px solid #eaeaea; }
        .city-menu .dropdown-item { padding: 8px 18px; font-size: 14px; color: var(--dark); }
        .city-menu .dropdown-item.active { background: rgba(0,168,168,0.08); color: var(--teal); font-weight: 700; }
        .city-menu .dropdown-item:hover { background: rgba(0,168,168,0.05); color: var(--teal); }
        /* Clickable section titles + cards */
        .section-title-link { text-decoration: none; color: inherit; display: inline-block; transition: opacity 0.2s; }
        .section-title-link:hover { opacity: 0.85; }
        .section-title-link:hover h2 span { text-decoration: underline; }
        .b2b-card-link { display: block; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
        .b2b-card-link:hover .b2b-card { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); border-color: var(--teal); }
        @media (max-width: 1199px) {
            .nav-link-root { padding: 25px 12px !important; font-size: 13px !important; }
            .btn-calc-header { padding: 9px 14px !important; font-size: 12px !important; }
            .btn-burger-menu { padding: 8px 16px !important; font-size: 13px !important; }
        }
        .btn-calc-header:hover { background: var(--teal-hover); color: #fff;}

        /* --- СТИЛИ ГЛАВНОГО БАННЕРА --- */
        .home-banner { 
    position: relative; 
    /* Увеличиваем верхний отступ (чтобы не было пустоты за шапкой) 
       и обнуляем нижний (0), чтобы баннер закончился сразу под текстом */
    padding: 180px 0 0 0; 
    overflow: hidden; 
    background: #000; 
    color: #fff; 
    /* ВАЖНО: меняем 100vh на auto, чтобы высота подстроилась под контент */
    min-height: auto; 
    display: flex; 
    align-items: center; 
}
        .home-banner__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
        .home-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
        .home-banner__bg-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); z-index: 2; }
        .home-banner .container-max { position: relative; z-index: 3; max-width: 1400px; margin: 0 auto; padding: 0 15px; width: 100%; }
        .home-banner__content { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 40px;}
        .home-banner__content-left { flex: 1 1 480px; max-width: 600px; min-width: 0; }
        .home-banner-form { flex: 0 1 400px; min-width: 0; }
        .home-banner__content-title { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
        .home-banner__content-title span { color: var(--teal); }
        .home-banner__content-subtitle { font-size: 22px; margin-bottom: 40px; color: #ddd;}
        
        .send-cargo { display: flex; align-items: center; background: rgba(255,255,255,0.1); padding: 20px 25px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); max-width: 450px; }
        .send-cargo__icon { margin-right: 20px; font-size: 35px; color: var(--teal); }
        .send-cargo__title { font-size: 28px; font-weight: 800; color: var(--teal); line-height: 1; }
        .send-cargo__subtitle { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #eee;}
        .send-cargo__button { margin-left: auto; background: #fff; color: var(--dark); padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: 0.3s; }
        .send-cargo__button:hover { background: var(--teal); color: #fff; }
        
        .home-banner__content-right { background: rgba(20, 20, 20, 0.75); padding: 35px; border-radius: 20px; backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); width: 100%; max-width: 400px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);}
        .home-banner-form__label { display: block; margin-bottom: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #aaa;}
        
        /* Стили инпутов калькулятора в баннере */
        .gis-search-wrapper { position: relative; margin-bottom: 20px; }
        .gis-input { width: 100%; padding: 15px 20px; border-radius: 10px; border: 1px solid #444; background: rgba(255,255,255,0.05); color: #fff; font-size: 16px; outline: none; transition: 0.3s; }
        .gis-input:focus { border-color: var(--teal); background: rgba(255,255,255,0.1); }
        .gis-input::placeholder { color: #888; }
        
        /* Исправленный CSS для подсказок */
.gis-suggestions { 
    position: absolute; 
    top: 100%; left: 0; right: 0; 
    background: #2d2d2d !important; /* Темный фон для модалки */
    border-radius: 8px; 
    max-height: 200px; 
    overflow-y: auto; 
    z-index: 9999; 
    list-style: none; 
    padding: 0; 
    margin: 5px 0 0 0; 
    display: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    border: 1px solid #444;
}

.gis-suggestions li { 
    padding: 12px 20px; 
    cursor: pointer; 
    font-size: 14px; 
    color: #ffffff !important; /* БЕЛЫЙ ЦВЕТ ТЕКСТА */
    border-bottom: 1px solid #444; 
}

.gis-suggestions li:hover { 
    background: #008a8a !important; /* Цвет при наведении */
    color: #fff !important; 
}
        .home-banner-form__button { width: 100%; background: var(--teal); color: #fff; border: none; padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 10px;}
        .home-banner-form__button:hover { background: var(--teal-hover); box-shadow: 0 5px 15px rgba(0, 168, 168, 0.4);}
        
        .home-banner__properties { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    width: 100%; 
    margin-top: 60px; /* Расстояние от формы до горизонтальной линии */
    border-top: 1px solid rgba(255,255,255,0.2); 
    padding-top: 30px; /* Отступ от линии до иконок */
    padding-bottom: 40px; /* Конечный отступ баннера снизу */
}
        .home-banner__property { 
    text-align: center; 
    flex: 1; 
    min-width: 150px; 
    margin-bottom: 0 !important; /* Обнуляем отступ снизу у иконок */
}
        .home-banner__property-icon { margin-bottom: 15px; font-size: 30px; color: var(--teal);}
        .home-banner__property-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}

        @media (max-width: 991px) {
            .home-banner { padding-top: 180px; min-height: auto;}
            .home-banner__content-title { font-size: 32px; }
            .gis-search-wrapper { margin-bottom: 10px !important; }
            .send-cargo__button { margin: 0;}
            .home-banner__properties {
                flex-wrap: wrap;
                margin-top: 30px;
                padding-top: 0;
            }
            .home-banner__property {
                flex: 0 0 33.333%;
                margin-bottom: 20px;
            }
        }
        @media (max-width: 575px) {
            .home-banner__content { flex-direction: column; text-align: center; }
            .home-banner__property { flex: 0 0 50%; }
            .home-banner__content-title { font-size: 26px; }
        }

        /* --- СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА КАЛЬКУЛЯТОРА --- */
     /* Старые стили нужно изменить на эти: */
     #calcModal .modal-content { 
    background: #121212; 
    border: 1px solid #333; 
    overflow: hidden; 
    display: flex;
    flex-direction: row;
    height: 750px; 
    max-height: 94vh; /* Даем модалке занимать 94% высоты экрана */
    margin-top: 3vh; /* Поднимаем модалку выше, чтобы снизу было больше места */
}

#calc-map-container { 
    flex-grow: 1; 
    position: relative; 
    z-index: 1; 
    height: auto; /* Позволяет карте растягиваться по высоте панели */
    min-height: 400px;
}

#calc-panel { 
    width: 400px; 
    background: #1e1e1e; 
    padding: 25px; 
    border-right: 2px solid #333; 
    overflow-y: auto; /* Скроллится только панель параметров */
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    color: white;
}
        
#calc-panel h4 { margin: 0 0 4px 0 !important; font-size: 11px; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; }
        #calc-panel select { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #444; background: #2d2d2d; color: white; outline: none; font-size: 14px; cursor: pointer; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
        #calc-panel select:focus { border-color: var(--teal); }
        
        total-card { 
    background: #25333e; 
    padding: 15px !important; /* Было 20px */
    border-radius: 12px; 
    border: 2px solid var(--teal); 
    text-align: center; 
    margin-top: 10px !important; /* Было 15px */
    display: none; 
}
.total-price { 
    font-size: 34px !important; /* Чуть уменьшили шрифт (было 38) */
    font-weight: 800; 
    color: var(--teal); 
    margin: 2px 0 !important; 
}.stat-item { background: #1a1a1a; padding: 12px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; margin-top: 8px; border-left: 5px solid #444; text-align: left;}
        .stat-label { font-size: 13px; font-weight: bold; color: #eee;}
        .stat-meta { font-size: 11px; color: #888; }
        .stat-val { font-weight: bold; font-size: 14px;}
        .toggle-logic { color: var(--teal); font-size: 12px; text-decoration: underline; cursor: pointer; margin-top: 15px; display: block; font-weight: bold; }
        #resultsList { display: none; margin-top: 15px; border-top: 1px solid #333; padding-top: 15px; }
        #status { font-size: 13px; color: #f1c40f; margin: 10px 0; display: none; text-align: center; font-weight: bold; }
        .error { color: #ff4757; font-size: 13px; margin-top: 10px; text-align: center; padding: 12px; background: rgba(255,71,87,0.1); border-radius: 8px; border: 1px solid rgba(255,71,87,0.3); }
        .truck-info { font-size: 12px; color: #aaa; margin-top: 5px; font-style: italic; }

        @media (max-width: 991px) {
            #calcModal .modal-content { flex-direction: column; height: 90vh; }
            #calc-panel { width: 100%; height: 50%; border-right: none; border-bottom: 2px solid #333; }
            #calc-map-container { height: 50%; }
            .mobile-header-bar { height: 65px; z-index: 2100; }
        }
        
  
    
    <!-- Стили оформления сайдбара -->

        .offcanvas-pc { width: 450px !important; border: none; box-shadow: 20px 0 60px rgba(0,0,0,0.15); }
        .offcanvas-header { border-bottom: 1px solid #f0f4f7; padding: 20px 25px; }
        .offcanvas-title { color: var(--teal); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
        .accordion-item-lvl1 { border: none !important; background: transparent !important; }
        .btn-lvl1 { padding: 18px 25px !important; font-weight: 800 !important; color: var(--teal) !important; text-transform: uppercase; font-size: 15px !important; background: #fff !important; border-bottom: 1px solid #f8f9fa !important; box-shadow: none !important; }
        .btn-lvl2 { padding: 12px 25px 12px 50px !important; font-weight: 700 !important; color: var(--dark) !important; font-size: 14px !important; background: #fafafa !important; border-bottom: 1px solid #eee !important; box-shadow: none !important; }
        .sidebar-links-final { padding: 10px 25px 20px 75px; background: #fff; list-style: none !important; }
        .sidebar-links-final li { margin-bottom: 10px; padding: 0 !important; }
        .sidebar-links-final a { font-size: 14px; color: #555 !important; transition: var(--transition); display: block; text-decoration: none !important; }
        .sidebar-links-final a:hover { color: var(--teal) !important; padding-left: 5px; }
        .geo-grid { display: flex; flex-wrap: wrap; padding: 15px 25px 20px 50px; list-style: none !important; }
        .geo-grid li { width: 50%; margin-bottom: 10px; font-size: 14px; }
        .geo-grid a { color: #555 !important; text-decoration: none !important; }
        .geo-grid a:hover { color: var(--teal) !important; }
        .side-footer { padding: 30px; background: #fdfdfd; border-top: 1px solid #eee; text-align: center; }
        .btn-side-wa { display: flex; align-items: center; justify-content: center; width: 100%; padding: 12px; border: 1px solid var(--teal); border-radius: 30px; color: var(--teal) !important; font-weight: 600; text-decoration: none !important; }
        .btn-side-wa:hover { background: var(--teal); color: #fff !important; }
    /* --- ХЕДЕР: ЛОГИКА ПРОЗРАЧНОСТИ ПРИ СКРОЛЛЕ --- */
    .header-master {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 2000;
            transition: background-color 0.4s ease, box-shadow 0.4s ease;
        }

        /* Состояние "Наверху страницы" (Прозрачный хедер) */
        .header-transparent .header-top,
        .header-transparent .nav-wrapper {
            background: transparent !important;
            border-bottom-color: rgba(255,255,255,0.1) !important;
        }
        
        .header-transparent .top-link-muted,
        .header-transparent .nav-link-root,
        .header-transparent .dropdown-toggle-no-caret,
        .header-transparent .fa-bars,
        .header-transparent span {
            color: #fff !important;
        }
        
        .header-transparent .btn-burger-menu {
            background: transparent;
            border-color: rgba(255,255,255,0.6);
            color: #fff;
        }
        .header-transparent .btn-burger-menu i { color: #fff; }
        .header-transparent .btn-burger-menu:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

        .header-transparent img[alt="Almaty Trans"] {
            filter: brightness(0) invert(1);
        }

        /* Состояние "При скролле" (Белый хедер) */
        .header-scrolled .header-top,
        .header-scrolled .nav-wrapper {
            background: #fff !important;
            border-bottom: 1px solid #eee !important;
        }
        
        .header-scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        @media (max-width: 991px) {
            .home-banner-form__label {
                display: none !important;
            }
            .gis-search-wrapper {
                margin-bottom: 10px !important;
            }
        }
        /* Убираем высоту в vh, используем фиксированную, чтобы карта была стабильной */
        #calcModal .modal-content { 
    background: #121212; 
    border: 1px solid #333; 
    overflow: hidden; 
    display: flex;
    flex-direction: row;
    height: 750px; /* Увеличили высоту, чтобы всё помещалось */
    max-height: 88vh; /* Защита для небольших экранов ноутбуков, чтобы окно не ушло за низ экрана */
    margin-top: 80px; /* Немного уменьшили отступ сверху */
}


/* Панель параметров */
#calc-panel { 
    width: 400px; 
    background: #1e1e1e; 
    padding: 25px; 
    border-right: 2px solid #333; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    color: white;
}

/* Контейнер карты - ГЛАВНОЕ: он должен занять всё оставшееся место */
#calc-map-container { 
    flex-grow: 1; 
    position: relative; 
    background: #000;
}

/* Сама карта - должна растягиваться на 100% контейнера */
#calc-map { 
    width: 100%; 
    height: 100%; 
}
/* --- СТИЛИ ГЛАВНОГО БАННЕРА (ПК ВЕРСИЯ) --- */
.home-banner__properties { 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: space-between; 
            width: 100%; /* Занимает всю ширину контейнера */
            margin-top: 80px; 
            border-top: 1px solid rgba(255,255,255,0.2); 
            padding-top: 40px; 
        }
        
        .home-banner__property { 
            text-align: center; 
            flex: 1; /* Равномерно распределяет все элементы по ширине на ПК */
            min-width: 150px; 
            margin-bottom: 20px; 
        }

        /* --- МОБИЛЬНУЮ ВЕРСИЮ НЕ ТРОГАЕМ (оставляем ваш медиа-запрос как был) --- */
        @media (max-width: 991px) {
            .home-banner__properties { 
                flex-direction: row; 
                flex-wrap: wrap; 
                border-top: none; 
                margin-top: 40px; 
                padding-top: 0;
            }
            .home-banner__property { 
                width: 50%; 
                max-width: 50%; 
                margin-bottom: 30px; 
            }
        } /* <--- ВОТ ЭТА СКОБКА ВЕРНЕТ ВСЕ НА МЕСТО */

        /* --- СТИЛИ СЕКЦИИ ГЕОГРАФИИ --- */
        .geography-section { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
        .geo-title { font-size: 34px; font-weight: 800; color: #22252b; margin: 0 0 24px 0; }
        .search-wrapper { position: relative; margin-bottom: 24px; width: 100%; }
        .search-input { width: 100%; padding: 14px 48px 14px 18px; border: 1px solid #EAEAEA; border-radius: 8px; font-size: 16px; }
        .cities-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; max-height: 40px; overflow: hidden; transition: max-height 0.4s ease-in-out; }
        .cities-tags.expanded { max-height: 500px; }
        .city-tag { height: 40px; display: inline-flex; align-items: center; background-color: #00a8a8; color: #ffffff; padding: 0 24px; border-radius: 40px; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity 0.2s; }
        .more-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: #22252b; text-decoration: none; cursor: pointer; }
        .more-link svg { width: 12px; height: 12px; fill: none; stroke: #22252b; stroke-width: 2.5; transition: transform 0.3s; }
        .more-link.expanded svg { transform: rotate(90deg); } /* Поворот вниз */
        .map-container { width: 100%; text-align: center; }
        .map-container img { max-width: 100%; height: auto; }

   /* --- ПЕРЕКЛЮЧАТЕЛЬ (ФИЗ/ЮР ЛИЦА) --- */
.tabs { 
    display: flex; 
    background: #f0f4f7; /* Светло-серый фон "подложки" */
    border: 1px solid #e1e8ed; 
    border-radius: 100px; 
    padding: 6px; 
    max-width: 1170px; /* Выравнивание по ширине сетки услуг */
    margin: 40px auto 30px auto; 
    width: calc(100% - 30px); /* Отступы по бокам на мобилках */
}

.tab-btn { 
    flex: 1; /* Кнопки равномерно тянутся на 50% ширины каждая */
    padding: 16px 20px; 
    border: none; 
    background: transparent; 
    cursor: pointer; 
    border-radius: 100px; 
    font-weight: 700; 
    font-size: 16px; 
    color: #4a5568; /* Цвет неактивного текста */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

.tab-btn.active { 
    background: var(--teal); /* Фирменный бирюзовый цвет для активного состояния */
    color: white; 
    box-shadow: 0 4px 15px rgba(0, 168, 168, 0.3); /* Легкое свечение */
}

/* Эффект при наведении на неактивную кнопку */
.tab-btn:hover:not(.active) { 
    color: var(--teal); 
    background: rgba(0, 168, 168, 0.05); 
}

@media (max-width: 768px) {
    .tabs {
        margin: 20px auto; /* Уменьшаем отступы на смартфонах */
    }
    .tab-btn { 
        padding: 12px 10px; 
        font-size: 14px; 
    }
}

        /* Сетка */
        .services-grid { display: grid; gap: 15px; padding: 15px; max-width: 1200px; margin: 0 auto; }
        
        /* Стили карточек */
        .card { position: relative; background: #333; background-size: cover; background-position: center; border-radius: 12px; padding: 20px; color: white; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; min-height: 200px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
        .card::after { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(transparent 40%, rgba(0,0,0,0.8)); border-radius:12px; }
        .card h3, .link { position: relative; z-index: 1; margin: 0; }
        .card h3 { font-size: 18px; font-weight: 800; line-height: 1.2; }
        .link { color: #00c2cb; font-size: 13px; margin-top: 8px; font-weight: 700; }

        /* Фоновые изображения для карточек */
        .item-1 { background-image: url('https://images.unsplash.com/photo-1591193113735-e260fb5c9c74?auto=format&fit=crop&w=800&q=80'); }
        .item-2 { background-image: url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=800&q=80'); }
        .item-3 { background-image: url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=800&q=80'); }
        .item-4 { background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=800&q=80'); }
        .item-5 { background-image: url('https://images.unsplash.com/photo-1594026112284-02bb6f3352fe?auto=format&fit=crop&w=800&q=80'); }

        /* Логика отображения */
        .group { display: grid; gap: 15px; }
        .hidden { display: none; }

        /* Сетка ПК и Мобайл (как договаривались) */
        @media (min-width: 901px) {
            .services-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: 300px 300px; }
            .item-1 { grid-column: 1/2; grid-row: 1/3; }
            .item-2 { grid-column: 2/3; grid-row: 1/3; }
            .item-3 { grid-column: 3/5; grid-row: 1/2; }
            .item-4 { grid-column: 3/4; grid-row: 2/3; }
            .item-5 { grid-column: 4/5; grid-row: 2/3; }
        }
        @media (max-width: 900px) {
            .services-grid { grid-template-columns: 1fr 1fr; }
            .item-3 { grid-column: span 2; }
        }

        /* --- КНОПКА "ВСЕ УСЛУГИ" ПО ШИРИНЕ БЛОКА --- */
.more-container { 
    max-width: 1200px; /* Жестко ограничиваем ширину, как у блока с карточками */
    width: 100%;
    margin: 5px auto 50px auto; /* Центрируем по экрану */
    padding: 0 15px; /* Боковые отступы, чтобы края кнопки идеально совпали с краями карточек */
    box-sizing: border-box; /* Важно для правильного расчета ширины */
}

.btn-more { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    padding: 16px 20px; 
    background: var(--teal); /* Фирменный бирюзовый цвет */
    color: #ffffff !important; 
    border-radius: 12px; /* Скругление 12px, как у самих карточек для единого стиля */
    font-size: 16px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-sizing: border-box;
}

.btn-more:hover { 
    background: var(--teal-hover); 
    box-shadow: 0 8px 25px rgba(0, 168, 168, 0.3); /* Мягкое свечение при наведении */
    transform: translateY(-2px); /* Легкое поднятие */
}

.btn-more i {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(5px); /* Стрелочка сдвигается при наведении */
}
/* =========================================
     ОБЩИЕ ПЕРЕМЕННЫЕ И НАСТРОЙКИ
  ========================================= */
  :root {
    --bg-page: #fafafa; 
    --card-bg: #ffffff;
    --text-main: #222222;
    --text-muted: #555555;
    --accent-color: #2dd4d4; 
    --icon-dark: #374151; 
    --border-color: #e5e7eb; 
    --line-inactive: #e2e8f0; 
    --line-active: #222222;   
  }

  /* =========================================
     БЛОК 1: 9 ПРОБЛЕМ (СЛАЙДЕР)
  ========================================= */
  .problems-section {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: var(--bg-page);
    padding: 80px 20px 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }

  .problems-section * { box-sizing: border-box; }

  .problems-section .section-title {
    text-align: center; 
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 50px 0;
    line-height: 1.3;
  }

  .problems-section .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px; 
  }

  .problems-section .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
    z-index: 10;
  }

  .problems-section .nav-arrow:hover {
    color: #1cb5b5; 
    transform: translateY(-60%) scale(1.1);
  }

  .problems-section .nav-arrow.prev { left: 0; }
  .problems-section .nav-arrow.next { right: 0; }
  .problems-section .nav-arrow svg { width: 28px; height: 28px; }

  .problems-section .cards-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 30px 5px; 
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .problems-section .cards-track::-webkit-scrollbar { display: none; }

  .problems-section .problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); 
    padding: 30px 25px 25px 25px;
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(25% - 15px); 
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .problems-section .problem-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
  }

  .problems-section .card-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .problems-section .card-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .problems-section .card-content { display: flex; flex-direction: column; width: 100%; }

  .problems-section .card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
  }

  .problems-section .card-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }

  @media (hover: hover) {
    .problems-section .cards-track:hover .card-text {
      max-height: 250px; 
      opacity: 1;
      margin-top: 10px;
    }
  }

  .problems-section .card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; 
    opacity: 0.9;
    transition: opacity 0.2s;
  }
  .problems-section .card-link:hover { opacity: 1; }
  .problems-section .card-link span { font-size: 18px; margin-top: -2px; }

  .problems-section .slider-lines-container {
    display: flex;
    gap: 4px; 
    width: calc(100% - 100px); 
    margin: 10px auto 0 auto;
  }
  .problems-section .line-segment {
    height: 4px;
    flex-grow: 1; 
    background-color: var(--line-inactive);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .problems-section .line-segment.active { background-color: var(--line-active); }

  /* =========================================
     БЛОК 2: ЧТО ВЫ ПОЛУЧИТЕ (СПИСОК)
  ========================================= */
  .benefits-section {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: var(--card-bg); 
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .benefits-section * { box-sizing: border-box; }

  .benefits-header { margin-bottom: 40px; }

  .benefits-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 10px 0;
    line-height: 1.2;
  }

  .benefits-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 500;
  }

  .benefits-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
  }

  .benefits-image-wrapper {
    flex: 1;
    position: sticky;
    top: 40px; 
    display: flex;
    flex-direction: column;
    gap: 20px; 
  }

  .benefits-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    object-fit: cover;
  }

  /* ИЗМЕНЕНИЯ ЗДЕСЬ: Сжали список */
  .benefits-list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 4px; /* Было 12px, стало 4px */
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 6px 0; /* Было 10px, стало 6px */
    cursor: pointer;
  }

  .benefit-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0px; /* Подравняли иконку к тексту */
  }

  .benefit-text-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .benefit-item-title {
    font-size: 16px; /* Чуть уменьшили для большей компактности */
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .benefit-item-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }

  @media (hover: hover) {
    .benefit-item:hover .benefit-item-title { color: var(--accent-color); }
    .benefit-item:hover .benefit-item-desc {
      max-height: 200px;
      opacity: 1;
      margin-top: 6px; /* Немного уменьшили отступ раскрывающегося текста */
    }
  }

  /* КНОПКА */
  .benefits-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(45, 212, 212, 0.3);
    box-sizing: border-box;
  }

  .benefits-btn:hover {
    background-color: #1cb5b5;
    transform: translateY(-2px);
  }

  .btn-desktop {
    display: inline-block;
    width: 100%; 
    text-align: center;
  }

  .btn-mobile { display: none; }

  /* =========================================
     АДАПТИВНОСТЬ (МОБИЛЬНЫЕ УСТРОЙСТВА)
  ========================================= */
  @media (max-width: 1024px) {
    .problems-section .card-text { display: none !important; }
    .benefit-item-desc { display: none !important; }
  }

  @media (max-width: 1150px) {
    .problems-section .problem-card { width: calc(33.333% - 14px); }
  }

  @media (max-width: 900px) {
    .problems-section .problem-card { width: calc(50% - 10px); }
    .problems-section .slider-wrapper { padding: 0 40px; }
    .problems-section .slider-lines-container { width: calc(100% - 80px); }
    
    .benefits-content { flex-direction: column; gap: 30px; }
    .benefits-image-wrapper { position: static; width: 100%; gap: 0; }
    
    .btn-desktop { display: none !important; }
    .btn-mobile { 
      display: inline-block; 
      width: 100%; 
      text-align: center; 
      margin-top: 20px; 
    }
  }

  @media (max-width: 600px) {
    .problems-section { padding: 50px 10px; }
    .problems-section .section-title { font-size: 24px; margin-bottom: 30px; padding: 0 10px; }
    .problems-section .slider-wrapper { padding: 0; } 
    .problems-section .problem-card { width: 88%; padding: 25px 20px; margin-left: 10px; }
    .problems-section .problem-card:last-child { margin-right: 10px; }
    .problems-section .nav-arrow { display: none; } 
    .problems-section .slider-lines-container { width: 90%; margin-top: 5px; }

    .benefits-section { padding: 50px 15px; }
    .benefits-title { font-size: 26px; }
    .benefit-item { padding: 8px 0; }
  }
  <!-- ========================================== -->
<!-- СТИЛИ БЛОКА "КАК МЫ РАБОТАЕМ"              -->
<!-- ========================================== -->

    /* Базовые настройки секции */
    .how-we-work-section {
    background-color: #fbfbfc;
    padding: 100px 0;
    margin-bottom: 50px; /* Добавили отступ снизу */
    color: var(--dark, #2c3e50);
}
.fleet-catalog-section {
    padding: 80px 0 60px 0;
    background-color: #fafafa;
    margin-bottom: 50px; /* Добавили отступ снизу */
    font-family: 'Inter', sans-serif;
}
    .hww-container {
        max-width: 1350px; 
        margin: 0 auto;
        padding: 0 20px;
    }
    .hww-main-title {
        text-align: center;
        font-size: 44px;
        font-weight: 800;
        color: var(--dark, #2c3e50);
        margin-bottom: 70px;
    }

    /* Обертка для стрелок и слайдера */
    .hww-slider-wrapper {
        position: relative;
        width: 100%;
    }

    /* === ОБНОВЛЕННЫЕ СТИЛИ СТРЕЛОК (Двойные, без рамки) === */
    .hww-slider-arrow {
        display: none; /* Скрыто на компьютерах */
        position: absolute;
        top: 40%; /* Выравнивание примерно по центру карточек */
        transform: translateY(-50%);
        width: 50px; /* Увеличенная зона для удобного тапа пальцем */
        height: 80px;
        border: none;
        color: var(--teal, #00a8a8);
        align-items: center; 
        justify-content: center;
        cursor: pointer; 
        z-index: 10;
        transition: 0.2s;
        /* Убираем синюю обводку при клике на мобилках */
        -webkit-tap-highlight-color: transparent; 
    }
    .hww-slider-arrow svg {
        width: 32px;
        height: 32px;
    }
    
    /* Добавляем мягкий градиент под стрелку, чтобы она не сливалась с текстом карточек */
    .hww-prev { 
        left: 0; 
        background: linear-gradient(90deg, #fbfbfc 40%, rgba(251,251,252,0) 100%);
    }
    .hww-next { 
        right: 0; 
        background: linear-gradient(-90deg, #fbfbfc 40%, rgba(251,251,252,0) 100%);
    }

    .hww-slider-arrow:active { 
        opacity: 0.5; /* Эффект нажатия */
    }

    /* Сетка карточек на ПК */
    .hww-steps-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    .hww-step {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Обертка для иконки и цифры */
    .hww-icon-wrapper {
        position: relative;
        width: 140px;
        height: 140px;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Крупная цифра на фоне */
    .hww-icon-wrapper::before {
        content: attr(data-number);
        position: absolute;
        font-size: 160px;
        font-weight: 800;
        font-style: italic;
        color: #eef1f4;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        line-height: 1;
    }
    
    /* Сама иконка поверх цифры */
    .hww-icon-wrapper svg {
        position: relative;
        z-index: 2;
        width: 85px;
        height: 85px;
    }
    
    /* Стили текстов */
    .hww-step-title {
        font-size: 16px; 
        font-weight: 700;
        text-transform: uppercase;
        color: var(--dark, #2c3e50);
        margin: 0 0 12px 0;
        line-height: 1.3;
        min-height: 42px;
    }
    .hww-step-desc {
        font-size: 15px; 
        color: #7a828b;
        margin: 0;
        line-height: 1.4;
    }

    /* ========================================== */
    /* СВАЙП-СЛАЙДЕР СО СТРЕЛКАМИ (До 991px)      */
    /* ========================================== */
    @media (max-width: 991px) {
        .how-we-work-section { padding: 60px 0; }
        .hww-container { padding: 0; }
        .hww-main-title { font-size: 32px; margin-bottom: 40px; padding: 0 20px; }
        
        /* Включаем показ стрелок на планшетах и телефонах */
        .hww-slider-arrow { display: flex; }
        
        .hww-steps-grid {
            justify-content: flex-start;
            flex-wrap: nowrap;
            overflow-x: auto;
            scroll-snap-type: x mandatory; 
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 20px; 
            padding-left: 20px; 
            padding-right: 20px; 
            gap: 15px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .hww-steps-grid::-webkit-scrollbar { display: none; }
        
        .hww-step {
            flex: 0 0 300px;
            scroll-snap-align: center;
        }
    }

    @media (max-width: 576px) {
        .hww-step {
            flex: 0 0 85%; /* Ширина 85% - чтобы было видно "хвостик" следующей карточки */
        }
    }

    .selector-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ccc;
    transition: 0.3s;
}
.selector-item.active i { color: var(--teal); }
.selector-item { width: 130px; flex-shrink: 0; }
<!-- =========================================
     БЛОК: НАШ АВТОПАРК (СЕТКА 3x3 ДЛЯ ПК И МОБАЙЛ)
========================================= -->

    .faq-section { padding: 80px 0; background-color: #fbfbfc; border-top: 1px solid #eaeaea; font-family: 'Inter', sans-serif; }
    .faq-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
    .faq-main-title { font-size: 36px; font-weight: 800; color: #2c3e50; text-align: center; margin-bottom: 40px; }
    
    .faq-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
    .faq-item { background: #fff; border: 1px solid #eaeaea; border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
    .faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    
    .faq-header { 
        display: flex; justify-content: space-between; align-items: center; 
        padding: 20px 25px; cursor: pointer; user-select: none; background: #fff; transition: 0.3s;
    }
    .faq-title { font-size: 16px; font-weight: 700; color: #2c3e50; margin: 0; padding-right: 20px; line-height: 1.4; }
    .faq-plus { 
        width: 32px; height: 32px; border-radius: 50%; background: #eaf6f6; color: var(--teal, #00a8a8); 
        display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform 0.3s ease, background 0.3s ease;
    }
    
    .faq-header:hover .faq-plus { background: var(--teal, #00a8a8); color: #fff; }
    
    .faq-content { display: none; padding: 0 25px 25px 25px; color: #555; font-size: 14px; line-height: 1.6; border-top: 1px solid #f8f9fa; margin-top: 5px; }
    .faq-content p { margin: 0; }
    .faq-content ul { padding-left: 20px !important; margin-top: 10px !important; margin-bottom: 0 !important; }
    .faq-content li { margin-bottom: 10px; }
    .faq-content li:last-child { margin-bottom: 0; }
    
    /* Состояние открытого вопроса */
    .faq-item.is-open { border-color: var(--teal, #00a8a8); box-shadow: 0 4px 20px rgba(0,168,168,0.1); }
    .faq-item.is-open .faq-content { display: block; }
    .faq-item.is-open .faq-plus { transform: rotate(45deg); background: var(--teal, #00a8a8); color: #fff; }


    /* Базовые стили секции */
    .fleet-catalog-section {
    padding: 15px 0 40px 0; /* 15px сверху, 40px снизу */
    background-color: #fafafa;
    margin-bottom: 50px;
}

.fleet-main-title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: var(--dark, #2c3e50);
    margin-bottom: 0px; 
}

.fleet-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 16px;
    max-width: 800px;
    margin: 0px auto 40px auto; /* 5px — это расстояние между строками */
}

    .fleet-subtitle strong {
        color: var(--dark, #2c3e50);
        font-size: 18px;
        display: block;
        margin-bottom: 5px;
    }

    /* Переключатель */
    .fleet-tabs { 
        display: flex; 
        background: #f0f4f7; 
        border: 1px solid #e1e8ed; 
        border-radius: 100px; 
        padding: 6px; 
        max-width: 1200px; 
        margin: 0 auto 10px auto; 
        width: calc(100% - 30px); 
    }
    
    .fleet-tab-btn { 
        flex: 1; 
        padding: 16px 20px; 
        border: none; 
        background: transparent; 
        cursor: pointer; 
        border-radius: 100px; 
        font-weight: 700; 
        font-size: 16px; 
        color: #4a5568; 
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    }
    
    .fleet-tab-btn.active { 
        background: var(--teal, #00a8a8); 
        color: white; 
        box-shadow: 0 4px 15px rgba(0, 168, 168, 0.3); 
    }
    
    .fleet-tab-btn:hover:not(.active) { 
        color: var(--teal, #00a8a8); 
        background: rgba(0, 168, 168, 0.05); 
    }

    /* Сетка 3x3 */
    .fleet-grid-3x3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1200px; /* Приводим к стандарту 1200px */
    margin: 0 auto; 
    padding: 0 15px;
}
    
    .fleet-group.hidden { 
        display: none; 
    }

    /* Карточка авто */
    .fleet-card-clean {
        background: #ffffff;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none !important;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .fleet-card-clean:hover {
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        border-color: var(--teal, #00a8a8);
        transform: translateY(-4px);
    }

    /* Область картинки */
    .fleet-img-wrapper {
        background-color: #f4f6f9;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow: hidden;
        border-bottom: 1px solid #f0f0f0;
    }

    .fleet-img-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .fleet-card-clean:hover .fleet-img-wrapper img {
        transform: scale(1.08);
    }

    /* Текст карточки */
    .fleet-card-body {
        padding: 20px 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-grow: 1;
    }

    .fleet-card-title {
        font-size: 17px;
        font-weight: 800;
        color: var(--dark, #2c3e50);
        margin: 0 0 8px 0;
        line-height: 1.2;
    }

    .fleet-card-price {
        font-size: 14px;
        color: var(--teal, #00a8a8);
        font-weight: 700;
    }

    /* ==========================================
       АДАПТИВ ПОД МОБИЛЬНЫЕ
    ========================================== */
    @media (max-width: 768px) {
        .fleet-main-title {
            font-size: 38px;
            margin-bottom: 15px;
        }
        .fleet-subtitle {
            font-size: 14px;
            margin-bottom: 25px;
            white-space: normal; /* На мобилках разрешаем перенос, чтобы текст не вылез за экран */
        }
        .fleet-subtitle strong {
            font-size: 16px;
        }
        .fleet-grid-3x3 { 
            gap: 8px;
            padding: 0 10px;
        }
        .fleet-img-wrapper {
            height: 90px;
            padding: 5px;
        }
        .fleet-card-body {
            padding: 10px 4px;
        }
        .fleet-card-title {
            font-size: 11px;
            margin-bottom: 4px;
        }
        .fleet-card-price {
            font-size: 10px;
        }
        .fleet-tabs { 
            margin: 15px auto 10px auto; 
        }
        .fleet-tab-btn { 
            padding: 10px 5px; 
            font-size: 13px; 
        }
    }

    /* Кнопка */
    .fleet-more-container { 
        max-width: 1200px; 
        width: 100%;
        margin: 40px auto 10px auto; 
        padding: 0 15px; 
    }
    .fleet-btn-more { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        width: 100%; 
        padding: 18px 20px; 
        background: var(--teal, #00a8a8); 
        color: #ffffff !important; 
        border-radius: 12px; 
        font-size: 16px; 
        font-weight: 700; 
        text-decoration: none; 
        transition: all 0.3s ease; 
    }
    .fleet-btn-more:hover { 
        background: var(--teal-hover, #008a8a); 
        box-shadow: 0 8px 25px rgba(0, 168, 168, 0.4); 
        transform: translateY(-2px); 
    }
    .fleet-btn-more i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }
    .fleet-btn-more:hover i {
        transform: translateX(5px); 
    }
    .pricing-widget-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fdfdfd;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.pricing-widget-wrapper h1 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 25px;
    width: 100%;
    max-width: 1000px;
    text-align: left;
}

/* Верхние кнопки-вкладки */
.pricing-widget-wrapper .top-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1000px;
}

.pricing-widget-wrapper .top-tab {
    width: 100%;
    padding: 20px;
    border: none;
    background-color: #9ce3df;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
    box-sizing: border-box;
}

.pricing-widget-wrapper .top-tab.active { background-color: #34d3cb; }
.pricing-widget-wrapper .top-tab:hover:not(.active) { background-color: #7bd5d1; }

/* Контейнер для таблиц со скроллом */
.pricing-widget-wrapper .table-container { 
    position: relative; 
    height: auto; 
    overflow: hidden; 
    width: 100%; 
    max-width: 1000px; 
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    border: 1px solid #e2e8f0; 
    background-color: #ffffff;
    border-radius: 8px; 
}

.pricing-widget-wrapper .table-container::-webkit-scrollbar { width: 8px; }
.pricing-widget-wrapper .table-container::-webkit-scrollbar-track { background: transparent; }
.pricing-widget-wrapper .table-container::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }

/* Логика скрытия неактивных таблиц */
.pricing-widget-wrapper table { 
    display: none; 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 14px; 
    margin-bottom: 0; 
}
.pricing-widget-wrapper table.active-table { display: table; }

.pricing-widget-wrapper th, 
.pricing-widget-wrapper td { 
    padding: 15px 10px; 
    border: 2px solid #ffffff; 
    text-align: center; 
    vertical-align: middle;
}

.pricing-widget-wrapper th { 
    position: sticky; 
    top: 0; 
    background-color: #e2e8f0; 
    color: #34d3cb; 
    font-weight: 700; 
    z-index: 10; 
}

.pricing-widget-wrapper .data-row { cursor: pointer; transition: 0.2s; }
.pricing-widget-wrapper .row-even { background-color: #e5e7eb; } 
.pricing-widget-wrapper .row-odd { background-color: #f3f4f6; }  
.pricing-widget-wrapper .data-row:hover { filter: brightness(0.95); }

.pricing-widget-wrapper .category-row td { 
    background-color: #d1d5db; 
    font-weight: bold; 
    text-align: center; 
    color: #374151;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Плавающий переключатель Физ/Юр */
.pricing-widget-wrapper .sticky-footer {
    position: sticky;
    bottom: 0; 
    left: 0;
    width: 100%;
    background-color: #ffffff; 
    padding: 15px 20px; 
    box-sizing: border-box;
    z-index: 15; 
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05); 
}

.pricing-widget-wrapper .toggle-container {
    display: flex;
    background-color: #f0f4f8; 
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    width: 100%; 
    padding: 5px; 
    box-sizing: border-box;
}

.pricing-widget-wrapper .toggle-btn {
    flex: 1; 
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #4a5568; 
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-widget-wrapper .toggle-btn.active {
    background-color: #00b3a6; 
    color: white;
    box-shadow: 0 4px 10px rgba(0, 179, 166, 0.25); 
}

/* Мобильная адаптация */
.pricing-widget-wrapper .show-mobile-only { display: none; }
@media (max-width: 600px) {
    .pricing-widget-wrapper .hide-mobile { display: none; }
    .pricing-widget-wrapper .show-mobile-only { display: table-cell; }
    .pricing-widget-wrapper .sticky-footer { padding: 10px; }
    .pricing-widget-wrapper .toggle-btn { font-size: 14px; padding: 12px 10px; }
    .pricing-widget-wrapper .top-tabs { flex-direction: column; gap: 10px; } 
    .pricing-widget-wrapper .top-tab { width: 100%; }
}/* --- Стили для секции сервисов (Компактные карточки 4 в ряд) --- */
.custom-services-section {
    background-color: #eaf6f6; 
    padding: 60px 20px; /* Чуть уменьшили отступы секции */
    width: 100%;
    box-sizing: border-box;
}

.custom-services-container {
    max-width: 1200px; 
    margin: 0 auto;
    position: relative; 
}

.custom-services-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
}

.custom-services-wrapper {
    width: 100%;
}

/* Измененная карточка (Вертикальная компоновка) */
.custom-service-card {
    background: #fff;
    padding: 30px 20px; /* Уменьшили внутренние отступы */
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Элементы друг под другом */
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    min-height: 260px;
}

.custom-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 168, 168, 0.15); 
}

.custom-service-icon {
    font-size: 40px; /* Иконка поменьше */
    color: var(--teal);
    margin-bottom: 20px;
}

.custom-service-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px; /* Заголовок поменьше */
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
}

.custom-service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 13px; /* Текст поменьше */
    flex-grow: 1; /* Прижимает кнопку к низу */
}

.custom-service-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--teal);
    color: var(--teal) !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    width: 100%; /* Кнопка на всю ширину карточки */
    text-align: center;
}

.custom-service-btn:hover {
    background: var(--teal);
    color: #fff !important;
}

/* Стрелки слайдера сервисов */
.services-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 40px);
    left: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.services-carousel .owl-nav button {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    border: 2px solid var(--teal) !important;
    border-radius: 50% !important;
    color: var(--teal) !important;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.services-carousel .owl-nav button:hover {
    background: var(--teal) !important; color: #ffffff !important;
}

/* Адаптация для мобильных: 2 карточки в ряд */
@media (max-width: 768px) {
    .custom-services-section { padding: 40px 10px; }
    .custom-service-card { padding: 20px 15px; min-height: 240px; }
    .custom-service-icon { font-size: 32px; margin-bottom: 15px; }
    .custom-service-card h3 { font-size: 15px; }
    .custom-service-card p { font-size: 12px; }
    .custom-service-btn { padding: 8px 10px; font-size: 12px; }
    .services-carousel .owl-nav { display: none; }
}
/* =========================================
   ОСНОВНЫЕ СТИЛИ БЛОКА КЕЙСОВ
   ========================================= */
   .b-cases {
    padding: 60px 0;
    background-color: #fff;
    color: #1a1a1a;
}

.b-cases .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.view-cases-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.view-cases-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Фильтры-кнопки */
.cases-filter-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.case-filter-btn {
    border: none;
    border-radius: 40px; 
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background-color: #E6F5F7; 
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.case-filter-btn.active {
    background-color: #26C6DA; 
    color: #fff;
    font-weight: 600;
}

/* Карусель и карточки */
.b-cases-container-owl {
    position: relative;
}

.case-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 220px;
}

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

.case-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #26C6DA;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.case-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-desc {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
    flex-grow: 1;
}

.case-more {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.case-more:hover { color: #26C6DA; }
.case-more:hover svg path { stroke: #26C6DA; }

/* Навигация Owl Carousel */
.b-cases-container-owl .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.b-cases-container-owl .owl-nav button.owl-prev,
.b-cases-container-owl .owl-nav button.owl-next {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background-color: #E6F5F7 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26C6DA !important;
    position: absolute;
    transition: 0.3s;
}

.b-cases-container-owl .owl-nav button.owl-prev { left: -22px; }
.b-cases-container-owl .owl-nav button.owl-next { right: -22px; }

.b-cases-container-owl .owl-nav button:hover {
    background-color: #26C6DA !important;
    color: #fff !important;
}

.b-cases-container-owl .owl-nav button.disabled {
    opacity: 0;
    pointer-events: none;
}

/* Кнопка "Смотреть все кейсы" */
.cases-action-wrap {
    margin-top: 40px; 
}

.btn-cases-all {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    background-color: #00B3A6; 
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 8px; 
    transition: background-color 0.3s ease;
    gap: 8px;
}

.btn-cases-all:hover {
    background-color: #00968B; 
    color: #fff;
}/* =========================================
   БЛОК: НАША КЛЮЧЕВАЯ ЭКСПЕРТИЗА (СВЕТЛАЯ ТЕМА)
========================================= */
.expertise-section {
    background-color: #fbfbfc; /* Светло-серый фон (как в блоке "Как мы работаем") */
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    margin-bottom: 50px;
}

/* Декоративные фоновые линии (дуги) - теперь полупрозрачные бирюзовые */
.expertise-section::before {
    content: '';
    position: absolute;
    bottom: -80%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 150%;
    border-radius: 50%;
    border: 1px solid rgba(0, 168, 168, 0.05);
    box-shadow: 
        0 0 0 80px rgba(0, 168, 168, 0.02), 
        0 0 0 180px rgba(0, 168, 168, 0.015),
        0 0 0 280px rgba(0, 168, 168, 0.01);
    pointer-events: none;
    z-index: 1;
}

.expertise-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    padding: 0 20px;
}

.expertise-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark); /* Темный цвет заголовка */
}

.expertise-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d; /* Приглушенный серый текст */
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
}

/* Контейнер бегущей строки */
.expertise-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    display: flex;
}

/* Трек с анимацией */
.expertise-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollExpertise 40s linear infinite;
    padding-left: 15px;
}

/* Остановка анимации при наведении мыши */
.expertise-marquee:hover .expertise-track {
    animation-play-state: paused;
}

/* Карточка экспертизы (Светлая) */
.expertise-card {
    background-color: #ffffff; /* Белая карточка */
    border: 1px solid #eaeaea; /* Тонкая серая рамка */
    border-radius: 12px; /* Скругление как у других карточек */
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark); /* Темный текст */
    white-space: nowrap;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Очень мягкая базовая тень */
}

/* Эффект при наведении (Бирюзовая подсветка) */
.expertise-card:hover {
    border-color: var(--teal); /* Бирюзовая рамка */
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 168, 168, 0.15); /* Мягкое бирюзовое свечение */
}

.expertise-card i {
    font-size: 26px;
    color: var(--teal); /* Иконки фирменного бирюзового цвета */
    transition: transform 0.3s ease;
}

.expertise-card:hover i {
    transform: scale(1.1); /* Легкое увеличение иконки при наведении */
}

/* Анимация прокрутки */
@keyframes scrollExpertise {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .expertise-section { padding: 50px 0; }
    .expertise-title { font-size: 30px; }
    .expertise-subtitle { font-size: 14px; }
    .expertise-header { margin-bottom: 40px; }
    .expertise-card { padding: 16px 20px; font-size: 15px; gap: 12px; }
    .expertise-card i { font-size: 22px; }
}/* =========================================
   ОБЪЕДИНЕННЫЙ ПОДВАЛ (МЕНЮ + КОНТАКТЫ + КАРТА)
========================================= */
.footer-mega { padding: 80px 0 40px 0; background-color: #ffffff; font-family: 'Inter', sans-serif; border-top: 1px solid #eaeaea; }
.footer-mega-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }

/* Сетка карточек навигации */
.footer-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px 20px; }
.footer-nav-item { display: flex; flex-direction: column; height: 100%; }

.nav-main-title { font-size: 15px; font-weight: 800; color: var(--dark, #2c3e50); margin: 0 0 12px 2px; text-transform: uppercase; }
.nav-main-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nav-main-title a:hover { color: var(--teal, #00a8a8); }

.footer-nav-card { background: #f0f4f7; border-radius: 12px; padding: 25px; flex-grow: 1; display: flex; flex-direction: column; transition: background-color 0.3s ease; }
.footer-nav-card:hover { background: #e9eef2; }

.nav-sub-title { font-size: 14px; font-weight: 800; color: var(--dark, #2c3e50); margin: 0 0 15px 0; text-transform: uppercase; }
.nav-sub-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nav-sub-title a:hover { color: var(--teal, #00a8a8); }

.footer-nav-card ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-nav-card li { margin-bottom: 10px; }
.footer-nav-card li:last-child { margin-bottom: 0; }
.footer-nav-card a.menu-link { font-size: 14px; color: #555; text-decoration: none; transition: all 0.2s ease; display: inline-block; }
.footer-nav-card a.menu-link:hover { color: var(--teal, #00a8a8); transform: translateX(4px); }

/* Панель контактов */
.footer-contacts-sidebar { background: #ffffff; border: 1px solid #eaeaea; border-radius: 16px; padding: 35px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); }
.fc-title { font-size: 18px; font-weight: 800; color: var(--dark, #2c3e50); margin: 0 0 25px 0; line-height: 1.3; }
.fc-item { margin-bottom: 20px; }
.fc-label { font-size: 12px; color: #a0aec0; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 6px 0; font-weight: 600; }
.fc-value { font-size: 15px; color: var(--dark, #2c3e50); font-weight: 600; text-decoration: none; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
a.fc-value { transition: color 0.2s ease; }
a.fc-value:hover { color: var(--teal, #00a8a8); }
.fc-icon { color: var(--teal, #00a8a8); font-size: 18px; margin-top: 2px; }

.fc-requisites { display: flex; align-items: center; background: #f8f9fa; border: 1px solid #eaeaea; border-radius: 10px; padding: 12px 15px; text-decoration: none; margin-top: 10px; transition: 0.2s; width: fit-content; }
.fc-requisites:hover { border-color: var(--teal, #00a8a8); background: #ffffff; }
.fc-req-icon { font-size: 24px; color: var(--teal, #00a8a8); margin-right: 12px; }

/* Сайдбар подвала: фирменные цвета вместо синих ссылок-дефолтов */
.fc-address-link { cursor: pointer; }
.fc-address-link i { color: var(--teal, #00a8a8); margin-top: 2px; flex-shrink: 0; }
.fc-address-link span { font-size: 14px; color: var(--dark, #2c3e50); }
.fc-address-link:hover span { color: var(--teal, #00a8a8); }

.fc-footer-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 22px; }
.fc-req-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(0, 168, 168, 0.08);
    color: var(--teal, #00a8a8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}
.fc-req-btn i { font-size: 18px; }
.fc-req-btn:hover { background: var(--teal, #00a8a8); color: #fff; }
.fc-req-btn strong { font-weight: 800; }

.sitemap-link {
    color: var(--dark, #2c3e50);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.sitemap-link:hover { color: var(--teal, #00a8a8); }

.ya-title a { color: var(--teal, #00a8a8); text-decoration: none; }
.ya-title a:hover { text-decoration: underline; }

/* Подгонка сайдбара контактов под высоту сетки меню в подвале */
.footer-contacts-sidebar { padding: 28px; }
.footer-contacts-sidebar .fc-title { font-size: 17px; margin: 0 0 18px 0; }
.footer-contacts-sidebar .fc-item  { margin-bottom: 14px; }

/* Виджет Яндекс-рейтинга — компактная горизонтальная плашка */
.ya-review-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
}
.ya-review-widget .ya-logo {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}
.ya-review-widget .ya-text { line-height: 1.25; }
.ya-review-widget .ya-title { font-size: 12px; margin-bottom: 4px; color: #555; }
.ya-review-widget .ya-stars { font-size: 12px; color: #fc3f1d; }

/* Соцсети в сайдбаре подвала — фирменный цвет вместо синих ссылок */
.fc-socials a {
    color: var(--dark, #2c3e50);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.fc-socials a i { color: var(--teal, #00a8a8); font-size: 16px; }
.fc-socials a:hover { color: var(--teal, #00a8a8); }

/* Телефон в шапке — фирменный тёмный цвет (когда хедер не прозрачный) */
.top-phone,
.mobile-phone {
    color: var(--dark, #2c3e50);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}
.top-phone:hover,
.mobile-phone:hover { color: var(--teal, #00a8a8); }
.fc-req-text { font-size: 14px; color: var(--dark, #2c3e50); font-weight: 700; margin: 0; }
.fc-req-sub { font-size: 12px; color: #a0aec0; margin: 0; }

.fc-socials { display: flex; flex-direction: column; gap: 10px; }
.fc-social-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--dark, #2c3e50); transition: 0.2s; }
.fc-social-link i.fa-instagram { color: #E1306C; font-size: 18px; }
.fc-social-link i.fa-vk { color: #2787F5; font-size: 18px; }
.fc-social-link:hover { color: var(--teal, #00a8a8); }

/* Карта и копирайт */
.bottom-map-section { padding: 0; height: 400px; width: 100%; background-color: #e5e5e5; position: relative; }
.bottom-map-section iframe { width: 100%; height: 100%; border: none; display: block; }
/* --- Нижний копирайт (Темная тема) --- */
.footer-copyright { 
    background-color: #121212; /* Темный фон */
    padding: 30px 0; 
    border-top: 1px solid #222; 
}
.footer-copyright-flex { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 300px; /* Фиксируем ширину, чтобы центральный текст был ровно по центру экрана */
}
.footer-logo-wrap img {
    filter: brightness(0) invert(1); /* Делаем темную иконку логотипа белой */
}
.footer-logo-text {
    color: #ffffff !important; /* Белый текст логотипа */
}
.footer-copy-text { 
    flex: 1;
    text-align: center;
    font-size: 14px; 
    color: #a0aec0; /* Светло-серый текст */
    margin: 0; 
    line-height: 1.6; 
    font-weight: 500;
}
.footer-copy-text span {
    color: #ffffff; /* Название компании белым цветом */
    font-weight: 700;
}
.footer-spacer {
    width: 300px; /* Невидимый балансир справа для идеальной симметрии */
}

/* Адаптивность для копирайта — лого слева, текст справа, компактно */
@media (max-width: 768px) {
    .footer-copyright { padding: 16px 0; }
    .footer-copyright-flex {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 0 16px;
    }
    .footer-logo-wrap {
        width: auto;
        flex-shrink: 0;
        justify-content: flex-start;
    }
    .footer-logo-wrap img { width: 32px !important; }
    .footer-logo-text { font-size: 14px !important; }
    .footer-copy-text {
        flex: 0 1 auto;
        text-align: left;
        font-size: 11px;
        line-height: 1.4;
    }
    .footer-spacer { display: none; }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1100px) {
    .footer-mega-container { grid-template-columns: 1fr; }
    .footer-contacts-sidebar { max-width: 100%; margin: 0 auto; width: 100%; }
    /* Контакты в 2 колонки на мобиле/планшете */
    .footer-contacts-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 22px; row-gap: 18px; align-items: start; }
    .footer-contacts-sidebar .fc-title,
    .footer-contacts-sidebar .fc-title-link { grid-column: 1 / -1; }
    .footer-contacts-sidebar .fc-item { margin-bottom: 0; min-width: 0; }
    .footer-contacts-sidebar .fc-value { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
    .footer-contacts-sidebar .fc-footer-btns { grid-column: 1 / -1; margin-top: 4px; }
    .footer-contacts-sidebar .ya-review-widget { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .footer-nav-grid { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
    .bottom-map-section { height: 300px; }
    .footer-mega .nav-main-title { font-size: 14px; line-height: 1.25; }
}
@media (max-width: 576px) {
    .footer-nav-grid { grid-template-columns: repeat(3, 1fr); gap: 14px 10px; }
    .footer-nav-card { padding: 20px; }
    .footer-mega .nav-main-title { font-size: 12px; }
    .footer-contacts-sidebar { padding: 20px; column-gap: 14px; row-gap: 14px; }
    .footer-contacts-sidebar .fc-label { font-size: 10px; }
    .footer-contacts-sidebar .fc-value { font-size: 13px; gap: 6px; }
}
@media (max-width: 400px) {
    .footer-mega .nav-main-title { font-size: 11px; }
}
/* =========================================
   СТИЛИ ПЛАВАЮЩИХ ВИДЖЕТОВ
========================================= */
.floating-widgets {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 25px; /* Расстояние между кнопками */
}

.right-widgets {
    bottom: 30px;
    right: 30px;
    align-items: center;
}

.left-widgets {
    bottom: 30px;
    left: 30px;
    align-items: flex-start;
    gap: 12px; /* Делаем виджет Яндекса и кнопку "Наверх" ближе друг к другу */
}
/* Общие стили круглых кнопок */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ffffff !important;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-clip: padding-box;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* ===== АНИМАЦИИ ДЛЯ ЖИВЫХ КНОПОК ===== */

/* 1. Бесконечные расходящиеся волны (пульсация) */
@keyframes ripple-waves {
    0% {
        box-shadow: 
            0 0 0 0 rgba(0, 168, 168, 0.6), 
            0 0 0 0 rgba(0, 168, 168, 0.4);
    }
    100% {
        box-shadow: 
            0 0 0 15px rgba(0, 168, 168, 0), 
            0 0 0 30px rgba(0, 168, 168, 0);
    }
}

/* 2. Вибрация телефонной трубки */
@keyframes ring-shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    60% { transform: rotate(0); }
}

/* Применяем стили и волны к кнопкам WhatsApp и Телефон */
.btn-wa, .btn-phone {
    background-color: var(--teal, #00a8a8);
    /* Включаем бесконечную анимацию волн: 2 секунды, бесконечно */
    animation: ripple-waves 2s infinite cubic-bezier(0.1, 0.5, 0.8, 1);
}

/* Для телефона задаем размер иконки и включаем вибрацию трубки */
.btn-phone {
    font-size: 26px; 
}
.btn-phone i {
    animation: ring-shake 3s infinite ease-in-out;
}

/* При наведении мыши: волны пропадают, кнопка чуть увеличивается */
.btn-wa:hover, .btn-phone:hover {
    background-color: var(--teal-hover, #008a8a);
    animation: none; /* Останавливаем волны */
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 168, 168, 0.3);
}

/* Кнопка "Наверх" (Ваш бирюзовый стиль) */
.btn-up {
    background-color: var(--teal, #00a8a8);
    width: 50px;
    height: 50px;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 168, 168, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.btn-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Плашка Яндекс Рейтинга --- */
.ya-badge {
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 25px 8px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    text-decoration: none !important;
    color: #333 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.ya-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.ya-logo {
    color: #fc3f1d;
    font-size: 40px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.ya-info {
    display: flex;
    flex-direction: column;
}

.ya-title {
    font-size: 13px;
    color: #444;
    margin-bottom: 2px;
}

.ya-title span {
    color: #888;
    text-decoration: underline;
}

.ya-stars-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ya-score {
    font-weight: 800;
    font-size: 18px;
    color: #000;
    line-height: 1;
}

.ya-stars {
    color: #fc3f1d;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

/* --- АДАПТИВНОСТЬ ДЛЯ ТЕЛЕФОНОВ --- */
@media (max-width: 768px) {
    .right-widgets { right: 15px; bottom: 20px; gap: 20px; }
    .left-widgets { left: 15px; bottom: 20px; gap: 15px; }
    
    /* Уменьшаем кнопки на мобилках */
    .float-btn { width: 50px; height: 50px; font-size: 24px; }
    .btn-phone { font-size: 20px; }
    .btn-up { width: 40px; height: 40px; font-size: 18px; }
    
    /* Уменьшаем плашку Яндекса */
    .ya-badge { padding: 6px 15px 6px 10px; gap: 10px; }
    .ya-logo { font-size: 28px; }
    .ya-title { font-size: 11px; }
    .ya-score { font-size: 15px; }
    .ya-stars { font-size: 10px; }
    
    /* Анимация уменьшенных волн для смартфонов */
    @keyframes ripple-waves-mobile {
        0% { box-shadow: 0 0 0 0 rgba(0, 168, 168, 0.6), 0 0 0 0 rgba(0, 168, 168, 0.4); }
        100% { box-shadow: 0 0 0 10px rgba(0, 168, 168, 0), 0 0 0 20px rgba(0, 168, 168, 0); }
    }
    
    .btn-wa, .btn-phone {
        animation: ripple-waves-mobile 2s infinite cubic-bezier(0.1, 0.5, 0.8, 1);
    }
}

/* Скрываем плашку Яндекса на очень узких экранах, чтобы не перекрывала контент */
@media (max-width: 400px) {
    .ya-title span { display: none; } /* Скрываем надпись "(64 отзыва)" */
}

/* =========================================
   БЛОК: НАШИ ПАРТНЕРЫ (БЕГУЩАЯ СТРОКА)
========================================= */
.partners-section {
    background-color: #fbfbfc; /* Светло-серый фон, как у остальных блоков */
    padding: 70px 0;
    overflow: hidden;
    margin-bottom: 50px;
    border-top: 1px solid #eaeaea;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark, #2c3e50);
    margin: 0;
}

/* Контейнер бегущей строки */
.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 15px 0; 
}

/* Градиенты по краям для эффекта плавного появления/исчезновения */
.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fbfbfc 0%, rgba(251,251,252,0) 100%);
}
.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fbfbfc 0%, rgba(251,251,252,0) 100%);
}

/* Трек с анимацией */
.partners-track {
    display: flex;
    gap: 30px; /* Расстояние между карточками */
    width: max-content;
    animation: scrollPartners 35s linear infinite; /* 35s - скорость прокрутки */
    padding-left: 30px;
}

/* Остановка при наведении */
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

/* Карточка партнера */
.partner-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px; /* Минимальная ширина карточки */
    height: 110px; /* Высота карточки */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

/* Настройка самих картинок (логотипов) */
.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6); /* Делаем серыми по умолчанию */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Эффект при наведении (наши цвета) */
.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal, #00a8a8);
    box-shadow: 0 10px 25px rgba(0, 168, 168, 0.15); /* Мягкая бирюзовая тень */
}

/* Возвращаем оригинальные цвета логотипу при наведении */
.partner-card:hover img {
    filter: grayscale(0%) opacity(1); 
}

/* Логика бесконечной прокрутки */
@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); } /* 15px - это половина gap */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .partners-section { padding: 50px 0; }
    .partners-title { font-size: 30px; }
    .partner-card { min-width: 170px; height: 90px; padding: 15px 20px; }
    .partners-marquee::before, .partners-marquee::after { width: 50px; } /* Градиенты поменьше */
}
/* =========================================
   СТИЛИ ДЛЯ МОДАЛКИ ОТЗЫВОВ (ПРАВЫЙ НИЖНИЙ УГОЛ)
========================================= */
.modal-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    width: 400px;
    max-width: calc(100% - 40px);
}

.modal.fade .modal-bottom-right {
    transform: translateY(100px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-bottom-right {
    transform: translateY(0);
}

#yandexReviewsModal ~ .modal-backdrop {
    background-color: transparent !important;
}

@media (max-width: 576px) {
    .modal-bottom-right {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
    }
    .modal-bottom-right .modal-content {
        border-radius: 20px 20px 0 0 !important;
    }
}
/* =========================================
   СТИЛИ БЛОКА ОТЗЫВОВ (ЯНДЕКС И 2GIS)
========================================= */
.b-reviews { padding: 60px 0 80px 0; background-color: #ffffff; }
.reviews-title { font-size: 36px; font-weight: 800; color: #2c3e50; margin-bottom: 25px; }

/* Блок общего рейтинга */
.reviews-summary { display: flex; gap: 40px; margin-bottom: 30px; flex-wrap: nowrap; }
.rs-item { display: flex; flex-direction: column; gap: 5px; cursor: pointer; transition: opacity 0.3s ease; flex: 0 1 auto; min-width: 0; }
.rs-item:hover { opacity: 0.8; }
.rs-brand { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.rs-brand.yandex { color: #fc3f1d; }
.rs-brand.twogis { color: #8bb13e; }
.rs-stats { display: flex; align-items: center; gap: 10px; }
.rs-stars { color: #ffcc00; font-size: 15px; }
.rs-score { font-size: 18px; font-weight: 800; color: #000; line-height: 1; }
.rs-count { font-size: 14px; color: #888; text-decoration: underline; }

/* Карточка отзыва */
.review-card { 
    background-color: #eaf6f6; /* Тот самый светло-бирюзовый цвет */
    border-radius: 12px; 
    padding: 25px; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    min-height: 250px;
}
.rc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.rc-user { display: flex; align-items: center; gap: 12px; }
.rc-avatar { 
    width: 42px; height: 42px; 
    background-color: var(--teal); 
    color: #fff; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 18px; font-weight: 700; 
}
.rc-name { font-size: 16px; font-weight: 700; color: #2c3e50; line-height: 1.2; }
.rc-name .rc-date { display: block; font-size: 12px; font-weight: 500; color: #94a3b8; margin-top: 2px; }
.rc-source { font-size: 15px; font-weight: 800; letter-spacing: -0.5px; }
.rc-source.yandex { color: #fc3f1d; }
.rc-source.twogis { color: #8bb13e; }

.rc-stars { color: #ffcc00; font-size: 13px; margin-bottom: 12px; }
.rc-text { font-size: 14px; color: #555; line-height: 1.5; flex-grow: 1; margin-bottom: 15px; }

.rc-more { 
    font-size: 14px; color: var(--teal); 
    text-decoration: underline; font-weight: 600; align-self: flex-start; 
}
.rc-more:hover { text-decoration: none; color: var(--teal-hover); }

/* Стрелки карусели */
.reviews-carousel-wrapper { position: relative; padding: 0 10px; }
.reviews-carousel .owl-nav { 
    position: absolute; top: 50%; width: calc(100% + 40px); left: -20px; 
    display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; 
}
.reviews-carousel .owl-nav button { 
    pointer-events: auto; width: 40px; height: 40px; 
    background: #ffffff !important; 
    border: 2px solid var(--teal) !important; 
    border-radius: 50% !important; 
    color: var(--teal) !important; 
    display: flex; align-items: center; justify-content: center; 
    transition: all 0.3s ease; 
}
.reviews-carousel .owl-nav button:hover { 
    background: var(--teal) !important; color: #ffffff !important; 
    box-shadow: 0 4px 10px rgba(0,168,168,0.3);
}

@media (max-width: 768px) {
    .reviews-title { font-size: 28px; }
    .reviews-summary { gap: 16px; }
    .rs-brand { font-size: 17px; }
    .rs-stats { gap: 6px; }
    .rs-stars { font-size: 13px; }
    .rs-score { font-size: 16px; }
    .rs-count { font-size: 12px; }
    .reviews-carousel .owl-nav { display: none; /* Скрываем стрелки на телефоне, листаем свайпом */ }
    .reviews-carousel .owl-dots {
        display: flex !important; justify-content: center; gap: 6px;
        margin-top: 16px;
    }
    .reviews-carousel .owl-dots .owl-dot { background: transparent; border: 0; padding: 0; }
    .reviews-carousel .owl-dots .owl-dot span {
        display: block; width: 22px; height: 4px; border-radius: 2px;
        background: #d0d7d6; transition: background 0.2s, width 0.2s; margin: 0;
    }
    .reviews-carousel .owl-dots .owl-dot.active span {
        background: #00a8a8; width: 32px;
    }
}
@media (min-width: 769px) {
    .reviews-carousel .owl-dots { display: none !important; }
}
@media (max-width: 380px) {
    .reviews-summary { gap: 10px; }
    .rs-brand { font-size: 15px; }
    .rs-score { font-size: 14px; }
    .rs-count { font-size: 11px; }
    .rs-stars { font-size: 11px; }
}
/* =========================================
   КНОПКА "СМОТРЕТЬ ВСЕ ОТЗЫВЫ"
========================================= */
.reviews-action-wrap {
    margin-top: 40px; 
    padding: 0 10px; /* Выравниваем по краям карусели */
}

.btn-reviews-all {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    background-color: var(--teal, #00B3A6); /* Ваш фирменный бирюзовый */
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 20px;
    border-radius: 8px; 
    transition: background-color 0.3s ease, transform 0.2s ease;
    gap: 10px;
}

.btn-reviews-all:hover {
    background-color: var(--teal-hover, #00968B); 
    color: #ffffff !important;
    transform: translateY(-2px); /* Легкое поднятие при наведении */
}

.btn-reviews-all svg {
    transition: transform 0.3s ease;
}

.btn-reviews-all:hover svg {
    transform: translateX(4px); /* Стрелочка плавно сдвигается вправо */
}
 /* Стили для карточек под кнопкой */
 .track-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    .track-feat-card {
        background: #ffffff;
        border: 1px solid #eaeaea;
        border-radius: 16px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .track-feat-card:hover {
        box-shadow: 0 12px 30px rgba(0,0,0,0.06);
        transform: translateY(-3px);
        border-color: var(--teal, #00a8a8);
    }
    .track-feat-top {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }
    .track-feat-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eaf6f6; /* Светло-бирюзовый фон иконки */
        border-radius: 12px;
        color: var(--teal, #00a8a8); 
        font-size: 26px;
    }
    .track-feat-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .track-feat-info h4 {
        font-size: 16px;
        font-weight: 800;
        color: #2c3e50;
        margin: 0 0 6px 0;
        line-height: 1.2;
    }
    .track-feat-info p {
        font-size: 13px;
        color: #6c757d;
        margin: 0;
        line-height: 1.4;
    }
    .track-feat-link {
        font-size: 14px;
        font-weight: 700;
        color: var(--teal, #00a8a8);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto; /* Прижимает ссылку к самому низу карточки */
        transition: opacity 0.2s ease;
    }
    .track-feat-link:hover {
        opacity: 0.7;
    }

    /* Адаптивность для мобильных устройств */
    @media (max-width: 991px) {
        .track-features-grid {
            grid-template-columns: 1fr; /* На телефонах карточки встанут друг под друга */
            gap: 15px;
        }
    }
/* =========================================
   СТИЛИ БЛОКА "ЧТО ВХОДИТ В СТОИМОСТЬ" (В СТИЛЕ ТАЙМЛАЙНА)
========================================= */
.included-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Чтобы линия не вылезала за края на мобильных */
}

.inc-wrapper {
    position: relative;
    max-width: 100%;
}

/* Серая соединительная линия на фоне */
.inc-line {
    position: absolute;
    top: 45px; /* Выравнивание по центру иконок */
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: #e5e7eb; /* Светло-серый цвет линии */
    z-index: 1;
}

.inc-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 15px;
}

/* На ПК — Яндекс и 2GIS в одну строку (компактнее, без переноса) */
@media (min-width: 992px) {
    .reviews-summary {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 40px;
    }
    .reviews-summary .rs-item {
        flex-direction: row !important;
        align-items: center;
        gap: 14px;
    }
}

/* На ПК — 3 в первом ряду, 2 во втором (5 пунктов в сумме) */
@media (min-width: 992px) {
    .inc-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 30px;
    }
    .inc-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    /* Декоративная линия имеет смысл только в один ряд — здесь скрываем */
    .inc-line { display: none; }
}

.inc-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Строка с иконкой и галочкой */
.inc-graphic-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

/* Квадрат с картинкой/иконкой */
.inc-icon-box {
    width: 90px;
    height: 90px;
    background-color: #ffffff; /* Белый фон, чтобы перекрывать линию */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Сама иконка */
.inc-icon-box i {
    font-size: 55px;
    color: #6c757d; /* Серый цвет иконок, как на скрине */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Круглая плашка с бирюзовой галочкой */
.inc-check {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal, #00a8a8); /* Бирюзовая галочка */
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Легкая тень */
    border: 2px solid #f0f4f7;
    margin-right: 15px; /* Отступ от правого края */
    z-index: 3;
}

/* Текст под иконкой */
.inc-text {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    padding-right: 15px;
}

/* Анимация при наведении */
.inc-item:hover .inc-icon-box i {
    color: var(--teal, #00a8a8);
    transform: scale(1.1);
}
.inc-item:hover .inc-check {
    border-color: var(--teal, #00a8a8);
}

/* =========================================
   АДАПТИВНОСТЬ (ДЛЯ ТЕЛЕФОНОВ И ПЛАНШЕТОВ)
========================================= */
@media (max-width: 991px) {
    /* На мобиле: 5 пунктов в 2 ряда (3 + 2 по центру) */
    .inc-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 12px;
    }
    .inc-line { display: none; }
    .inc-item {
        flex: 0 0 calc(33.333% - 8px);
        max-width: calc(33.333% - 8px);
        align-items: center;
        text-align: center;
    }
    .inc-graphic-row {
        justify-content: center;
        gap: 6px;
        margin-bottom: 12px;
    }
    .inc-icon-box {
        width: 64px;
        height: 64px;
        justify-content: center;
    }
    .inc-icon-box i { font-size: 38px; }
    .inc-check {
        position: static;
        left: auto;
        margin: 0;
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    .inc-text {
        font-size: 13px;
        text-align: center;
        padding-right: 0;
        line-height: 1.3;
    }
}
@media (max-width: 380px) {
    .inc-grid { gap: 18px 6px; }
    .inc-icon-box { width: 52px; height: 52px; }
    .inc-icon-box i { font-size: 30px; }
    .inc-text { font-size: 11px; }
}
/* =========================================
   СТИЛИ ДЛЯ ВИДЖЕТА ОТСЛЕЖИВАНИЯ
========================================= */
.tracking-widget-wrap {
    max-width: 800px;
    margin: 30px auto 40px auto; 
    padding: 0;
}

.tracking-input-box {
    position: relative;
    margin-bottom: 15px; 
}

.tracking-input-box input {
    width: 100%;
    background-color: #f8f9fa; 
    border: 1px solid #f0f0f0;
    border-radius: 12px; 
    padding: 16px 50px 16px 20px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #222;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tracking-input-box input::placeholder {
    color: #222; 
    font-weight: 500;
}

.tracking-input-box input:focus {
    border-color: var(--teal, #00a8a8);
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 168, 168, 0.1);
}

.tracking-paste-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.tracking-paste-btn:hover {
    opacity: 0.5;
}

.tracking-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--teal, #00a8a8); 
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    gap: 8px;
    box-sizing: border-box;
}

.tracking-submit-btn:hover {
    background-color: var(--teal-hover, #008a8a);
    transform: translateY(-2px); 
}

.tracking-submit-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.tracking-submit-btn:hover i {
    transform: translateX(5px); 
}


    /* МОБИЛЬНЫЕ СТИЛИ */
    .mobile-header-bar { height: 75px; z-index: 2100; }
    
    /* Сайдбар */
    .mobile-offcanvas { width: 85% !important; border: none; }
    .accordion-button:not(.collapsed) { background-color: var(--light-bg); color: var(--teal); }
    .accordion-button:focus { box-shadow: none; }
    .accordion-button::after { background-size: 1rem; }
    
    .list-unstyled li a { color: #555; text-decoration: none; font-size: 14px; transition: 0.2s; }
    .list-unstyled li a:hover { color: var(--teal); padding-left: 5px; }


    .b-team-fixed { padding: 80px 0; background-color: #fff; font-family: 'Inter', sans-serif; }
    .b-team-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
    .b-team-header { margin-bottom: 40px; }
    .b-team-title { font-size: 32px; font-weight: 800; color: #2c3e50; margin-bottom: 10px; }
    .b-team-description { font-size: 15px; color: #6c757d; }
    
    .b-team__row { display: flex; justify-content: space-between; gap: 30px; }
    .team-card { flex: 1; text-align: center; }
    
    /* Серый квадрат-заглушка */
    .team-placeholder {
        width: 100%;
        aspect-ratio: 1 / 1;
        background-color: #c9cdcf;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 15px;
        color: #333;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .team-role { font-size: 11px; font-weight: 700; color: #a0aec0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
    .team-name { font-size: 20px; font-weight: 800; color: #2c3e50; margin-bottom: 15px; }
    .team-contacts { list-style: none !important; padding: 0 !important; margin: 0; font-size: 13px; color: #555; line-height: 1.8; }
    .team-contacts li { margin: 0; padding: 0; }
    .team-contacts a { color: #3498db; text-decoration: none; transition: 0.2s; }
    .team-contacts a:hover { color: #00a8a8; }
    
    .b-team-link { display: inline-flex; align-items: center; gap: 8px; color: #00a8a8; font-weight: 700; font-size: 15px; text-decoration: none; margin-top: 30px; transition: 0.2s; }
    .b-team-link:hover { opacity: 0.7; }

    @media (max-width: 768px) {
        .b-team__row { flex-direction: column; gap: 40px; }
    }
/* Стили для блока удельного веса */
.weight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.weight-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.weight-card:hover {
    border-color: var(--teal);
    box-shadow: 0 5px 15px rgba(0,168,168,0.1);
}
.weight-info {
    display: flex;
    flex-direction: column;
}
.weight-name {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}
.weight-val {
    font-size: 13px;
    color: var(--teal);
    font-weight: 800;
}
.weight-icon {
    font-size: 24px;
    color: #ddd;
    margin-right: 15px;
}
.category-divider {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 40px 0 15px;
    font-weight: 800;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

:root {
    --teal: #00a8a8;
    --teal-hover: #008a8a;
    --dark: #2c3e50;
    --light-bg: #f8fafc;
}

/* --- ОБЩИЕ НАСТРОЙКИ ХЕДЕРА --- */
.header-master {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 2500;
    transition: all 0.4s ease;
}

.header-top { background: #fff; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.nav-wrapper { background: #fff; padding: 12px 0; border-bottom: 1px solid #eee; }
.mobile-header-bar { height: 70px; background: #fff; transition: 0.4s; }

/* --- СОСТОЯНИЕ: ПРОЗРАЧНЫЙ (НАВЕРХУ) --- */
.header-transparent .header-top,
.header-transparent .nav-wrapper,
.header-transparent .mobile-header-bar {
    background: transparent !important;
    border-bottom-color: rgba(255,255,255,0.15) !important;
}

.header-transparent .top-link-muted,
.header-transparent .top-phone,
.header-transparent .nav-link-simple,
.header-transparent .mobile-phone,
.header-transparent .logo-text-top,
.header-transparent .logo-text-bot,
.header-transparent i {
    color: #ffffff !important;
}

.header-transparent img { filter: brightness(0) invert(1); }
.header-transparent .btn-burger-menu { border-color: #fff; color: #fff; }

/* --- СОСТОЯНИЕ: БЕЛЫЙ (ПРИ СКРОЛЛЕ) --- */
.header-solid-scroll .header-top,
.header-solid-scroll .nav-wrapper,
.header-solid-scroll .mobile-header-bar {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.header-solid-scroll .nav-link-simple { color: var(--dark) !important; }

/* --- ЭЛЕМЕНТЫ НАВИГАЦИИ --- */
.nav-link-simple {
    font-size: 13px; font-weight: 800; color: var(--teal) !important;
    text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; transition: 0.3s;
}
.nav-link-simple:hover { color: var(--dark) !important; transform: translateY(-2px); }

.btn-burger-menu {
    background: transparent; border: 2px solid var(--teal); color: var(--teal);
    padding: 6px 18px; border-radius: 50px; font-weight: 800; font-size: 13px; transition: 0.3s;
}

.btn-calc-header {
    background: var(--teal); color: #fff !important; font-weight: 800;
    padding: 10px 22px; border-radius: 50px; font-size: 13px;
}

/* --- УНИВЕРСАЛЬНОЕ МЕНЮ (SIDEBAR) --- */
.offcanvas { 
    width: 350px !important; 
    max-width: 85% !important; 
    z-index: 5000 !important; 
    border: none !important;
    box-shadow: 15px 0 50px rgba(0,0,0,0.15) !important;
}
.offcanvas-backdrop { z-index: 4500 !important; }

.offcanvas-title { color: var(--teal); font-weight: 900; letter-spacing: 1px; }

.menu-search-box {
    width: 100%; padding: 10px 20px; border-radius: 50px;
    background: #f1f5f9; border: none; font-size: 14px; outline: none;
}

.flat-menu-main .list-group-item {
    padding: 18px 25px; font-weight: 700; text-transform: uppercase;
    color: var(--dark) !important; border: none !important;
    border-bottom: 1px solid #f8fafc !important;
    display: flex; align-items: center; transition: 0.3s; text-decoration: none !important;
}
.flat-menu-main .list-group-item:hover { background: #f0f9f9 !important; color: var(--teal) !important; padding-left: 35px !important; }

.menu-icon { width: 35px; color: #94a3b8; font-size: 18px; display: flex; justify-content: center; }

.btn-side-wa-flat {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 15px; border: 2px solid var(--teal);
    border-radius: 50px; color: var(--teal) !important; font-weight: 800; text-decoration: none !important;
}

/* --- БЛОКИ КОНТЕНТА (B2B, TRUST, CALC) --- */
.b2b-solutions-section, .trust-gallery-section { padding: 80px 0; }

/* Шапка блока: заголовок слева + CTA-карточка справа */
.b2b-header-flex {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.b2b-title-area {
    flex: 1 1 55%;
    min-width: 320px;
}
.b2b-title-area .geo-main-title { margin-bottom: 20px; }
.b2b-title-area .geo-main-text { margin-bottom: 0; }

.b2b-cta-card {
    flex: 1 1 35%;
    min-width: 300px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-hover) 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 168, 168, 0.25);
    display: flex;
    align-items: center;
}
.b2b-cta-card .cta-inner { width: 100%; }
.b2b-cta-card .cta-icon {
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
    display: inline-block;
}
.b2b-cta-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
}
.b2b-cta-card p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.b2b-cta-card .btn-more {
    background: #fff !important;
    color: var(--teal) !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    text-decoration: none !important;
}
.b2b-cta-card .btn-more:hover {
    background: var(--dark) !important;
    color: #fff !important;
}

/* Сетка карточек */
.b2b-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }

.b2b-card, .trust-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
}
.b2b-card {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.b2b-card:hover, .trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(0,168,168,0.1);
}

.b2b-card-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 168, 168, 0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.b2b-card-content { flex: 1; min-width: 0; }
.b2b-card-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px 0;
}
.b2b-card-content > p {
    font-size: 14px;
    color: #5d6670;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.b2b-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.b2b-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    padding: 4px 0;
}
.b2b-list li i {
    color: var(--teal);
    font-size: 12px;
}

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trust-img-box { position: relative; height: 220px; overflow: hidden; border-radius: 16px 16px 0 0; }
.trust-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* --- КАЛЬКУЛЯТОР --- */
.trash-calc-container {
    display: flex; flex-wrap: wrap; gap: 30px; background: #fff;
    padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); margin: 40px auto; max-width: 1100px;
}
.trash-calc-left { flex: 1; min-width: 320px; }
.trash-calc-right { flex: 0 0 380px; background: var(--light-bg); padding: 30px; border-radius: 16px; position: sticky; top: 100px; height: fit-content; }

/* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */
@media (max-width: 991px) {
    .b2b-header-flex { flex-direction: column; gap: 25px; }
    .b2b-title-area, .b2b-cta-card { flex: 1 1 100%; }
    /* Карточки B2B-секции — по одной в столбик (там много текста на каждой) */
    .b2b-solutions-section .b2b-grid { grid-template-columns: 1fr; }
    /* Стрелки карусели trust — только мобильная версия */
    .trust-carousel { position: relative; }
    .trust-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #ffffff;
        color: var(--teal, #00a8a8);
        border: 1px solid #e2e8f0;
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }
    .trust-carousel-arrow:hover,
    .trust-carousel-arrow:active {
        background: var(--teal, #00a8a8);
        color: #ffffff;
    }
    .trust-carousel-prev { left: 4px; }
    .trust-carousel-next { right: 4px; }
    .trust-carousel-arrow[disabled] {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    /* Trust-блок на мобиле — горизонтальная карусель.
       У .trust-carousel свои "коридоры" под стрелки слева и справа
       (через padding-left/right), а сам .b2b-grid живёт между ними. */
    .trust-carousel {
        padding: 0 44px;
    }
    .trust-gallery-section .b2b-grid {
        display: flex;
        grid-template-columns: none;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 0 16px 0;
        margin: 0;
    }
    .trust-gallery-section .b2b-grid::-webkit-scrollbar { display: none; }
    .trust-gallery-section .b2b-card {
        flex: 0 0 calc(50% - 5px);
        scroll-snap-align: start;
        min-width: 0;
    }
    /* Стрелки внутри padding-коридоров — не на карточках */
    .trust-carousel-prev { left: 3px; }
    .trust-carousel-next { right: 3px; }
    .trash-calc-right { flex: 1 1 100%; position: static; margin-top: 20px; }
    .footer-mega-container { flex-direction: column; }
}

@media (max-width: 575px) {
    .b2b-card { flex-direction: column; gap: 15px; padding: 22px; }
    .b2b-cta-card { padding: 25px; }
    /* На совсем узких — карточки trust компактнее */
    .trust-gallery-section .b2b-card { padding: 18px; gap: 10px; }
    .trust-gallery-section .b2b-card-icon { width: 44px; height: 44px; font-size: 18px; }
    .trust-gallery-section .b2b-card-content h3 { font-size: 15px; }
    .trust-gallery-section .b2b-card-content > p { font-size: 13px; }
}


    /* Стили для ссылок-районов */
    .geo-list-link {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
        display: inline-block;
    }
    .geo-list-link:hover {
        color: var(--teal, #00a8a8);
        transform: translateX(4px); /* Легкий сдвиг вправо при наведении */
    }

    /* Стили для кликабельных заголовков колонок */
    .geo-title-link {
        color: var(--dark, #2c3e50);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .geo-title-link:hover {
        color: var(--teal, #00a8a8);
    }

    
    /* 1. Задаем белый фон шапке при скролле */
    .header-solid-scroll .header-top,
    .header-solid-scroll .nav-wrapper {
        background-color: #ffffff !important;
        border-bottom: 1px solid #eee !important;
    }
    
    #main-header.header-solid-scroll {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    }

    /* 2. ПРИНУДИТЕЛЬНО красим текст в темный, перебивая прозрачный режим */
    #main-header.header-solid-scroll .top-link-muted,
    #main-header.header-solid-scroll .nav-link-root,
    #main-header.header-solid-scroll .dropdown-toggle-no-caret,
    #main-header.header-solid-scroll .fa-bars,
    #main-header.header-solid-scroll span {
        color: #2c3e50 !important;
    }

    /* 3. Оформляем кнопку "Меню" (Гамбургер) */
    #main-header.header-solid-scroll .btn-burger-menu {
        border-color: var(--teal) !important;
        color: var(--teal) !important;
        background: #fff !important;
    }
    #main-header.header-solid-scroll .btn-burger-menu i {
        color: var(--teal) !important;
    }

    /* 4. Возвращаем оригинальный цвет логотипу (убираем белый фильтр).
          Максимальная специфичность: html body #main-header ... img */
    html body #main-header.header-solid-scroll img,
    html body #main-header:not(.header-transparent) img,
    #main-header.header-solid-scroll img[alt="Almaty Trans"],
    #main-header.header-solid-scroll .mobile-logo img,
    #main-header.header-solid-scroll .main-logo img,
    #main-header.header-solid-scroll img {
        filter: none !important;
        -webkit-filter: none !important;
    }

    /* Хлебные крошки на мобиле при скролле тоже теряют логику "над прозрачным баннером" */
    #main-header.header-solid-scroll ~ nav.hero-breadcrumbs {
        background-color: #ffffff;
        border-bottom: 1px solid #f0f0f0;
    }
    #main-header.header-solid-scroll ~ nav.hero-breadcrumbs a { color: var(--teal, #00a8a8); }
    #main-header.header-solid-scroll ~ nav.hero-breadcrumbs li { color: #6c757d; }
    #main-header.header-solid-scroll ~ nav.hero-breadcrumbs li:not(:last-child)::after {
        border-color: #cbd5e1;
    }

    /* 5. Исключение: Кнопка "Расчет цены" должна остаться белой внутри зеленого фона */
    #main-header.header-solid-scroll .btn-calc-header,
    #main-header.header-solid-scroll .btn-calc-header i {
        color: #ffffff !important;
    }

/* Раскрывающийся доп. текст под "54 машины..." в блоке Автопарк */
.fleet-extra-tail { white-space: nowrap; }
.fleet-extra-text { display: none; }
.fleet-lead { margin-bottom: 0; }
@media (max-width: 575px) {
    /* На узких экранах ужимаем строку чтобы влезла на одну линию */
    .fleet-lead { font-size: 14px; line-height: 1.4; }
    .fleet-lead .fleet-extra-toggle { width: 20px; height: 20px; font-size: 9px; margin-left: 6px; }
}
@media (max-width: 360px) {
    .fleet-lead { font-size: 13px; }
}
.fleet-extra-text.is-open { display: inline; }
.fleet-extra-text.is-open::before { content: " "; }
.fleet-extra-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 8px;
    padding: 0;
    background: transparent;
    color: var(--teal, #00a8a8);
    border: 1px solid var(--teal, #00a8a8);
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    vertical-align: middle;
    transition: 0.2s ease;
}
.fleet-extra-toggle:hover { background: var(--teal, #00a8a8); color: #fff; }
.fleet-extra-toggle i { transition: transform 0.2s ease; }
.fleet-extra-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

/* Когда открыто мобильное меню (offcanvas) или любая модалка —
   прячем плавающие виджеты, чтобы они не перекрывали контент диалога */
body:has(.offcanvas.show) .floating-widgets,
body:has(.modal.show) .floating-widgets {
    display: none !important;
}

/* Стрелки карусели trust скрыты на десктопе — там сетка 2×2 */
.trust-carousel-arrow { display: none; }
@media (max-width: 991px) {
    .trust-carousel-arrow { display: flex; }
}

/* Мобильное уплотнение секций — убираем избыточный «белый воздух» (80px×2 → 36px×2) */
@media (max-width: 991px) {
    .trust-gallery-section,
    .b2b-solutions-section,
    .fleet-new-section,
    .how-we-work-section,
    .included-section,
    .faq-section,
    .b-team-fixed,
    .b-reviews,
    .benefits-section,
    .problems-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .b-reviews { padding-bottom: 48px !important; }
}

/* ==========================================
   МОДАЛЬНЫЙ КАЛЬКУЛЯТОР ВЫВОЗА МУСОРА
   ========================================== */
/* префикс: vm-calc- (vyvoz musora — calculator) */
.vm-calc-modal .modal-dialog { max-width: 1100px; }
.vm-calc-modal-content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.vm-calc-modal-header {
    border: 0;
    padding: 32px 40px 0 40px;
    align-items: flex-start;
}
.vm-calc-modal-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
    color: #1a1e26;
    margin: 6px 0 0 0;
}
.vm-calc-modal-title span { color: var(--teal); }
.vm-calc-modal-body {
    padding: 24px 40px 40px 40px;
}

.vm-calc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}
.vm-calc-left  { flex: 1 1 320px; min-width: 0; }
.vm-calc-right {
    flex: 0 0 360px;
    background: #f8fafc;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    height: fit-content;
    position: sticky;
    top: 0;
}
.vm-calc-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vm-calc-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.vm-calc-input-group { margin-bottom: 25px; }
.vm-calc-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.vm-calc-select,
.vm-calc-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}
.vm-calc-select:focus,
.vm-calc-input:focus { border-color: var(--teal); }

.vm-calc-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.2s;
}
.vm-calc-card:hover { background: #f0f9f9; }
.vm-calc-card input { width: 18px; height: 18px; accent-color: var(--teal); }
.vm-calc-card-text { font-size: 14px; font-weight: 600; }

.vm-calc-client-row {
    display: flex;
    gap: 10px;
}
.vm-calc-client-row .vm-calc-card { flex: 1; }

.vm-calc-res-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 800;
}
.vm-calc-res-price {
    font-size: 48px;
    font-weight: 900;
    color: #1e293b;
    margin: 5px 0 20px 0;
}
.vm-calc-res-price span { color: var(--teal); }

.vm-calc-bill-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #94a3b8;
}
.vm-calc-bill-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.vm-calc-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--teal);
    color: #fff !important;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 168, 168, 0.2);
}
.vm-calc-btn-wa:hover {
    background: var(--teal-hover);
    transform: translateY(-2px);
}
.vm-calc-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 15px;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .vm-calc-modal-header { padding: 24px 20px 0 20px; }
    .vm-calc-modal-body   { padding: 16px 20px 24px 20px; }
    .vm-calc-modal-title  { font-size: 26px; }
    .vm-calc-right        { flex: 1 1 100%; position: static; padding: 20px; }
}

/* ==========================================
   УНИФИЦИРОВАННЫЙ ЗАГОЛОВОК СЕКЦИИ
   паттерн: .section-header > .geo-label + .geo-main-title + .geo-main-text
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.section-header .geo-label {
    display: block;
    margin-bottom: 12px;
}
.section-header .geo-main-title {
    margin-bottom: 18px;
}
.section-header .geo-main-text {
    max-width: none;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .section-header .geo-main-title { font-size: 32px; }
    .section-header { margin-bottom: 32px; }
}

/* ==========================================
   БЛОК "ГЕОГРАФИЯ ВЫВОЗА МУСОРА"
   (использует базу .how-we-work-section, переопределяет фон)
   ========================================== */
.how-we-work-section.geo-areas-section {
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
}

/* ==========================================
   НОВЫЕ КОНТЕНТНЫЕ БЛОКИ (мебель, снег, грузчики, ПУХТО, квартира)
   ========================================== */
.furniture-section, .places-section, .pukhto-section { background-color: #ffffff; }
.seasonal-section, .workers-section, .polygons-section { background-color: #fbfbfc; }

/* Бейджи полигонов */
.polygon-card { position: relative; }
.polygon-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.polygon-badge-stroy { background: rgba(245, 158, 11, 0.12); color: #c2700b; }
.polygon-badge-tbo   { background: rgba(0, 168, 168, 0.12); color: #008080; }
.polygon-badge-doc   { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }
.pricing-widget-wrapper .pricing-lead {
    max-width: 1000px;
    margin: 0 0 25px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    text-align: left;
}
.pricing-widget-wrapper .pricing-lead strong { color: var(--dark, #2c3e50); }
@media (max-width: 768px) {
    .pricing-widget-wrapper .pricing-lead { font-size: 13px; line-height: 1.5; }
}

/* Кликабельные заголовки в подвале (категории + название компании) */
.nav-main-title-link,
.fc-title-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    transition: color 0.2s ease;
}
.nav-main-title-link .nav-main-title,
.fc-title-link .fc-title { transition: color 0.2s ease; cursor: pointer; }
.nav-main-title-link:hover .nav-main-title,
.fc-title-link:hover .fc-title { color: var(--teal, #00a8a8); }

/* ==========================================
   БЛОК "9 ПРОБЛЕМ" — без слайдера, сетка
   ========================================== */
.problems-section .nav-arrow,
.problems-section .slider-lines-container { display: none !important; }
.problems-section .slider-wrapper {
    display: block !important;
    padding: 0 !important;
}
.problems-section .cards-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-flow: row !important;
    gap: 20px !important;
    overflow: visible !important;
    padding: 0 !important;
    width: 100% !important;
}
.problems-section .problem-card {
    width: auto !important;
    margin: 0 !important;
    flex: none !important;
    min-width: 0;
}
@media (max-width: 991px) {
    .problems-section .cards-track {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}
@media (max-width: 480px) {
    .problems-section .cards-track { gap: 10px !important; }
    .problems-section .problem-card { padding: 16px 14px !important; }
    .problems-section .card-top { gap: 10px !important; margin-bottom: 0 !important; }
    .problems-section .card-icon { width: 32px !important; height: 32px !important; }
    .problems-section .card-icon i { font-size: 22px !important; }
    .problems-section .card-icon svg { width: 28px; height: 28px; }
    .problems-section .card-title { font-size: 13px !important; line-height: 1.25 !important; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
    .problems-section .card-content { min-width: 0; }
}

