   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rubik', sans-serif;
            background: #F5F7FB;
            color: #1A2C3E;
            line-height: 1.5;
            overflow-x: hidden;
        }

/* ===== БЕЙДЖ "ПРОДАНО" ПО ЦЕНТРУ ФОТО ===== */

/* Для карточки в каталоге */
.card-catalog {
    position: relative;
    overflow: hidden;
}

/* Эффект при наведении */
.card-catalog:hover .sold-badge {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #e0b081 0%, #c49a6c 100%);
}

/* Для внутренней страницы товара */
.product-gallery {
    position: relative;
}

.product-sold-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    
    background: linear-gradient(135deg, #d4a373 0%, #b5835a 100%);
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    
    white-space: nowrap;
    transition: all 0.3s ease;
}

.product-gallery:hover .product-sold-badge {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Затемнение фото */
.card-catalog:has(.sold-badge) .card-catalog__image,
.product-gallery:has(.product-sold-badge) img {
    filter: brightness(0.7) blur(1px);
    transition: filter 0.3s ease;
}

.card-catalog:hover:has(.sold-badge) .card-catalog__image,
.product-gallery:hover:has(.product-sold-badge) img {
    filter: brightness(0.6) blur(1px);
}

/* ===== АЛЬТЕРНАТИВНЫЙ ВАРИАНТ С ДИАГОНАЛЬНОЙ ЛЕНТОЙ ===== */
.sold-badge-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 20;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 50px;
    
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.sold-badge-ribbon::before,
.sold-badge-ribbon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.sold-badge-ribbon::before {
    bottom: -10px;
    left: 0;
    border-width: 10px 0 0 10px;
    border-color: #8b2a1f transparent transparent transparent;
}

.sold-badge-ribbon::after {
    bottom: -10px;
    right: 0;
    border-width: 10px 10px 0 0;
    border-color: #8b2a1f transparent transparent transparent;
}

/* ===== АДАПТИВ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
    .sold-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .product-sold-badge {
        padding: 10px 25px;
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
    
    .sold-badge-ribbon {
        padding: 8px 30px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}
.relative {position:relative;}
@media (max-width: 480px) {
    .sold-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .product-sold-badge {
        padding: 8px 20px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

html, body{overflow-x: hidden !important;}
.container-fluid {padding:0px 15px 0px 15px;}
.sold-badge {
    position: absolute;
    top: 16px;
    left: 0px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background:linear-gradient(135deg, #e1261d 0%, #cb1603 100%);
    color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-catalog {
    position: relative;
}

.card-catalog:hover .sold-badge {
    transform: translateY(-2px);
	background:linear-gradient(135deg, #e1261d 0%, #cb1603 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sold-badge {
        top: 12px;
        left: 12px;
        padding: 4px 12px;
        font-size: 0.6rem;
    }
}
/* Кнопка закрытия */
.fancybox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    border: none;
}

.fancybox-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.fancybox-close svg {
    width: 18px;
    height: 18px;
    stroke: #1A2C3E;
    stroke-width: 2;
}

/* Контент модального окна */
.fancybox-content {
    padding: 40px 32px 32px;
}

/* Стили формы внутри модалки */
.modal-title-f {
    font-size: 1.8rem;
    font-weight: 500;
    color: #061d40;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.block-request__head {
    margin-bottom: 28px;
}

.block-request__title {
    font-size: 0.8rem;
    color: #2C7DA0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Поля ввода */
.block-request__input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    background: #F5F7FB;
    border: 1px solid #E8EDF2;
    border-radius: 16px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    color: #1A2C3E;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.block-request__input:focus {
    outline: none;
    border-color: #2C7DA0;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.1);
}
.social-icon img{height:32px;}
.block-request__input::placeholder {
    color: #9d9e9e;
    font-weight: 400;
}

textarea.block-request__input {
    resize: vertical;
    min-height: 100px;
}
.load-more-wrap {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #2C7DA0 0%, #1a5a75 100%);
    border: none;
    color: white;
    padding: 14px 48px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(44,125,160,0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,125,160,0.4);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
/* Чекбокс (улучшенная версия) */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 8px 0 24px;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: #F5F7FB;
    border: 1px solid #C0CCD9;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s;
    align-items: center;
    justify-content: center;
}

.checkbox .checkmark {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.2s;
}

.hidden-checkbox:checked + .checkbox {
    background: #2C7DA0;
    border-color: #2C7DA0;
}

.hidden-checkbox:checked + .checkbox .checkmark {
    opacity: 1;
}

.hidden-checkbox.error + .checkbox {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.checkbox-text {
    font-size: 0.7rem;
    color: #6C86A3;
    line-height: 1.4;
}

.checkbox-text a {
    color: #2C7DA0;
    text-decoration: none;
    border-bottom: 1px dotted #2C7DA0;
}

.checkbox-text a:hover {
    color: #1e5f7a;
}

/* Кнопка отправки */
.btn-primary2 {
    width: 100%;
    background: #2C7DA0;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary2:hover {
    background: #1e5f7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 125, 160, 0.3);
}

/* Сообщение об ошибке */
.error-message {
    color: #ff4444;
    font-size: 0.7rem;
    margin-top: -12px;
    margin-bottom: 12px;
    display: block;
}

/* Адаптив */
@media (max-width: 768px) {
    .fancybox-content {
        padding: 32px 24px 28px;
    }
    
    .modal-title-f {
        font-size: 1.5rem;
    }
    
    .block-request__input {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}
.hidden-checkbox.error + .checkbox {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
  animation: shake 0.3s ease-in-out;
}

/* Соцсети в шапке */
.header__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
}
.header__socials2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #2C7DA0;
    transform: translateY(-2px);
    color: white;
}

/* Адаптив для мобильных */
@media (max-width: 1000px) {
    .header__socials {
        display: none;
    }
}

/* В мобильном меню можно добавить соцсети в footer */
.mobile-nav-footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-footer-socials .social-icon {
    background: rgba(255,255,255,0.1);
}
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
/* Чекбокс */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 8px 0;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox {
    display: inline-flex;
    width: 22px;
    height: 22px;
background: transparent;
  border: 1px solid #2c7da0;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox .checkmark {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s;
}

.hidden-checkbox:checked + .checkbox {
    background: #d4b88c;
    border-color: #d4b88c;
}

.hidden-checkbox:checked + .checkbox .checkmark {
    opacity: 1;
}

.checkbox-text {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.4;
}

.checkbox-text a {
    color: #2c7da0;
    text-decoration: none;
    border-bottom: 1px dotted #d4b88c;
}

.checkbox-text a:hover {
    color: #e8cfa0;
}
.contacts-screen2 {
  background: #F5F6F8;
  padding: 20px 0 100px 0px;
}
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 60px;width: 100%;
        }

.footer-dev {text-align:center;margin-top:30px;}
/* ===== ХЛЕБНЫЕ КРОШКИ - ПОЛНЫЕ СТИЛИ ===== */
.breadcrumbs-wrapper {
    background: #F5F7FB;
    padding: 20px 0;
    margin-top: 0;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: #6C86A3;
}

/* Стили для ul.breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

/* Стили для li */
.breadcrumb li {
    display: inline-flex;
    align-items: center;
    list-style: none;
}

/* Разделитель между элементами (через псевдоэлемент) */
.breadcrumb li:not(:first-child)::before {
    content: "›";
    margin: 0 8px;
    color: #9d9e9e;
    font-size: 1rem;
    font-weight: 400;
}

/* Ссылки */
.breadcrumb a {
    color: #2C7DA0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #1e5f7a;
    text-decoration: underline;
}

/* Активный/текущий элемент */
.breadcrumb .active,
.breadcrumb li.active span {
    color: #1A2C3E;
    font-weight: 500;
    cursor: default;
    pointer-events: none;
}

/* Альтернативный вариант для active */
.breadcrumb li:last-child span {
    color: #1A2C3E;
    font-weight: 500;
}

/* Если используете .separator */
.breadcrumbs .separator {
    margin: 0 8px;
    color: #9d9e9e;
}

.breadcrumbs .current {
    color: #1A2C3E;
    font-weight: 500;
}


.bg-white {background:#fff;}
.img-aboutf {width:100%;box-shadow:0 20px 35px -10px rgba(0,0,0,0.1)}

/* Это решит 99% проблем с зумом на iOS */
@media (max-width: 768px) {
    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea,
    .filter-input {
        font-size: 16px !important;
    }
    
    /* Запрещаем горизонтальный скролл */
    body {
        overflow-x: hidden;
        position: relative;
    }
    
    /* Фикс для контейнеров */
    .container,
    .container-fluid,
    .filter-grid,
    .catalog-items-grid {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Принудительно фиксируем ширину */
    .price-range {
        width: 100%;
        box-sizing: border-box;
    }
    
    .filter-input {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}
/* Адаптив для мобильных */
@media (max-width: 768px) {
    .breadcrumbs-wrapper {
        padding: 15px 0;
    }
	.img-aboutf {margin-top:30px;}
	.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: -5px !important; }
    .full-gallery-grid {
		grid-template-columns: repeat(3, 1fr) !important; }
    .breadcrumbs,
    .breadcrumb a,
    .breadcrumb li span,
    .breadcrumb li:not(:first-child)::before {
        font-size: 0.7rem;
    }
    
    .breadcrumb li:not(:first-child)::before {
        margin: 0 5px;
    }
}

/* БОЛЬШАЯ ГАЛЕРЕЯ ВНИЗУ */
        .full-gallery-section {
            margin-top: 50px;
            background: white;
            border-radius: 32px;
            padding: 30px;
        }
        .full-gallery-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #061d40;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2C7DA0;
            display: inline-block;
        }
        .full-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .full-gallery-item {
    
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4/3;
            transition: transform 0.3s;
        }
        .full-gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .full-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
/* =============================================
   БЛОК ЗАГРУЗОК — НОВЫЙ ДИЗАЙН С ФОТО-КАРТОЧКАМИ
   ============================================= */

.download-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 60px 0;
}

.download-box-header {
    text-align: center;
    margin-bottom: 40px;
}

.download-box-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.download-box-subtitle {
    font-size: 1rem;
    color: #6C86A3;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка карточек: 2 колонки, первая карточка на всю ширину */
.download-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Карточка ===== */
.dl-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(10, 37, 64, 0.3);
}

/* Широкая карточка (презентация) */
.dl-card--wide {
    grid-column: 1 / -1;
    min-height: 340px;
}

/* Фоновое изображение */
.dl-card__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dl-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dl-card:hover .dl-card__bg img {
    transform: scale(1.08);
}

/* Затемняющий оверлей */
.dl-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        0deg,
        rgba(6, 29, 64, 0.92) 0%,
        rgba(6, 29, 64, 0.6) 40%,
        rgba(6, 29, 64, 0.25) 100%
    );
    transition: background 0.4s ease;
}

.dl-card:hover .dl-card__overlay {
    background: linear-gradient(
        0deg,
        rgba(6, 29, 64, 0.95) 0%,
        rgba(6, 29, 64, 0.5) 40%,
        rgba(6, 29, 64, 0.15) 100%
    );
}

/* Оверлей для видео-карточки */
.dl-card__overlay--video {
    background: linear-gradient(
        0deg,
        rgba(6, 29, 64, 0.88) 0%,
        rgba(44, 125, 160, 0.3) 50%,
        rgba(6, 29, 64, 0.4) 100%
    );
}

/* Контент карточки */
.dl-card__content {
    position: relative;
    z-index: 3;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dl-card--wide .dl-card__content {
    padding: 36px 36px 32px;
    max-width: 600px;
}

/* Бейдж (PDF, YouTube) */
.dl-card__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.dl-card__badge--video {
    background: rgba(255, 0, 0, 0.25);
    border-color: rgba(255, 80, 80, 0.4);
    color: #ff8a8a;
}

/* Заголовок карточки */
.dl-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.dl-card--wide .dl-card__title {
    font-size: 1.6rem;
}

/* Описание */
.dl-card__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

.dl-card--wide .dl-card__desc {
    font-size: 0.95rem;
}

/* Кнопка-действие внизу карточки */
.dl-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 20px;
    border-radius: 40px;
    background: rgba(44, 125, 160, 0.25);
    border: 1px solid rgba(44, 125, 160, 0.4);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.dl-card:hover .dl-card__action {
    background: #2C7DA0;
    border-color: #2C7DA0;
    transform: translateX(4px);
}

.dl-card__action svg {
    transition: transform 0.3s ease;
}

.dl-card:hover .dl-card__action svg {
    transform: translateY(2px);
}

/* Кнопка Play для видео */
.dl-card__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 3;
    transition: all 0.4s ease;
    opacity: 0.85;
}

.dl-card--video:hover .dl-card__play-btn {
    transform: translate(-50%, -60%) scale(1.15);
    opacity: 1;
}

.dl-card__play-btn svg circle {
    transition: all 0.3s ease;
}

.dl-card--video:hover .dl-card__play-btn svg circle {
    stroke-opacity: 1;
    r: 22;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1000px) {
    .download-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .dl-card {
        min-height: 240px;
    }

    .dl-card--wide {
        min-height: 280px;
    }

    .download-box-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .download-grid-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }
	.about-wrapper {display:block !important;}
	.catalog-screen .container {
		padding: 0 15px !important; }
	.categories-section .container {
		padding: 0 15px !important; }
	h2 {
		font-size: 1.2em !important; }
	.secon-title {
		font-size: 1.9em !important; }
h1 {
	font-size: 2em !important; }
    .dl-card--wide {
        grid-column: auto;
        min-height: 260px;
    }

    .dl-card {
        min-height: 220px;
    }

    .dl-card__content {
        padding: 22px 22px 20px;
    }

    .dl-card--wide .dl-card__content {
        padding: 22px 22px 20px;
    }

    .dl-card__title {
        font-size: 1.15rem;
    }

    .dl-card--wide .dl-card__title {
        font-size: 1.3rem;
    }

    .dl-card__desc {
        font-size: 0.8rem;
    }

    .download-box-title {
        font-size: 1.6rem;
    }

    .download-box-subtitle {
        font-size: 0.9rem;
    }

    .dl-card__play-btn svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .dl-card {
        min-height: 200px;
        border-radius: 20px;
    }

    .dl-card__action {
        font-size: 0.72rem;
        padding: 6px 16px;
    }
}

/* ========== МОБИЛЬНОЕ МЕНЮ (ЕДИНЫЙ СТИЛЬ) ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A1A2A 0%, #0F2A3A 100%);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.close-mobile {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-mobile:hover {
    background: rgba(44,125,160,0.4);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    flex: 1;
    display: flex;width: 100%;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.25s;
}

.mobile-nav-link svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.mobile-nav-link:hover {
    background: rgba(44,125,160,0.2);
    color: #2C7DA0;
    transform: translateX(6px);
}

.mobile-dropdown {
    margin-top: 2px;
}

.mobile-dropdown-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s;
}

.mobile-dropdown-title:hover {
    background: rgba(44,125,160,0.15);
}

.dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s;
}

.mobile-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 42px;
}

.mobile-dropdown.open .mobile-submenu {
    max-height: 400px;
}

.mobile-submenu a {
    display: block;
    padding: 10px 16px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 12px;
    transition: all 0.25s;
}

.mobile-submenu a:hover {
    background: rgba(44,125,160,0.12);
    color: #2C7DA0;
    transform: translateX(6px);
}

.mobile-nav-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s;
}

.mobile-phone:hover {
    color: #2C7DA0;
}

.mobile-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
}

/* ========== НИЖНЯЯ НАВИГАЦИЯ ========== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 26, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(44, 125, 160, 0.2);
    padding: 10px 20px 20px;
    z-index: 999;
    display: none;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #2C7DA0;
    background: rgba(44, 125, 160, 0.15);
    transform: translateY(-3px);
}

/* ========== КНОПКА БУРГЕРА ========== */
.button-burger {
    width: 44px;
    height: 44px;
    background: rgba(44, 125, 160, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: none;
}

.button-burger:hover {
    background: rgba(44, 125, 160, 0.4);
    transform: scale(1.05);
}

.button-burger::before,
.button-burger::after,
.button-burger span {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: white;
    left: 11px;
    transition: 0.3s;
}

.button-burger::before { top: 15px; }
.button-burger span { top: 21px; }
.button-burger::after { top: 27px; }

/* ========== АДАПТИВ ========== */
@media (max-width: 1000px) {
    .bottom-nav {
        display: flex;
    }

    .header__menu, .header__phones, .header__callback {
        display: none;
    }
    .header__buttons--mobile {
        display: flex;
    }
}


 /* ===== СЕКЦИЯ ЯРМАРКИ ===== */
        .fair-hero {
            background: linear-gradient(135deg, #0A2540 0%, #0F3A55 100%);
            padding: 80px 0 60px;
            color: white;
        }
        .fair-hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .fair-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .fair-hero-content h1 span {
            font-weight: 300;
            display: block;
            font-size: 2rem;
            color: #2C7DA0;
        }
        .fair-date {
            display: inline-block;
            background: rgba(44,125,160,0.2);
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            margin-bottom: 25px;
            border-left: 3px solid #2C7DA0;
        }
        .fair-hero-image img {
            width: 100%;
  
            box-shadow: 0 20px 35px rgba(0,0,0,0.2);
        }

        .fair-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }
        .stat-item .number {
            font-size: 2rem;
            font-weight: 700;
            color: #2C7DA0;
        }
        .stat-item .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .fair-description {
            background: white;
            border-radius: 32px;
            padding: 60px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .fair-description p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
            color: #2c3e4e;
        }
        .fair-description .dark {
            font-weight: 600;
            margin-top: 20px;
        }

        .download-box {
            background: #F0F4F9;
            border-radius: 32px;
            padding: 50px 30px;
            margin: 40px 0;
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .download-item {
            background: white;
            padding: 25px 15px;
            border-radius: 24px;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .download-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .download-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: rgba(44,125,160,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .download-name {
            font-weight: 500;
            color: #1A2C3E;
            font-size: 0.85rem;
        }

        .partners-wellcome {
            text-align: center;
            margin: 40px 0 20px;
        }
        .org-logos {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        .org-logos img {
            height: 70px;
            object-fit: contain;
        }

        .banner-fair {
            margin: 50px 0 30px;
            text-align: center;
        }
        .banner-fair img {
            max-width: 100%;

        }

        /* ===== БЛОК ДОБРО ПОЖАЛОВАТЬ ===== */
        .wellcome {
            background: #F5F7FB;
            padding: 80px 0;
            text-align: center;
        }
        .wellcome h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .ban-list {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 24px;
            margin-top: 50px;
        }
        .ban-list a {
            display: block;
 
            overflow: hidden;
        }
        .ban-list img {
            width: 100%;
            transition: transform 0.3s;
        }
        .ban-list a:hover img {
            transform: scale(1.02);
        }

      

        @media (max-width: 1000px) {
            .container { padding: 0 30px; }
            .fair-hero .container { grid-template-columns: 1fr; }
            .header__menu, .header__phones, .header__callback { display: none; }
            .header__buttons--mobile { display: flex; }
            .ban-list { grid-template-columns: repeat(2,1fr); }
            .footer-grid { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .fair-description { padding: 30px; }
            .download-grid { grid-template-columns: 1fr; }
            .ban-list { grid-template-columns: 1fr; }
        }
/* Партнеры */
.partners-section {
    background: #F5F7FB;
    padding: 20px 0;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 125, 160, 0.08);
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(44, 125, 160, 0.2);
}

.partner-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    padding: 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F7FB;
    border-radius: 20px;
    padding: 20px;
    min-height: 120px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .partner-logo {
        min-height: auto;
        padding: 15px;
    }
    
    .partner-text p {
        font-size: 0.85rem;
    }
}
        /* Typography */
        h1, h2, h3 {
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: 4em;
            line-height: 1.15;
            font-weight: 300;text-transform: uppercase;
            letter-spacing: -0.01em;
        }
        .secon-title {color: #2C7DA0;font-weight: 400;font-size: 4em;line-height: 1em;
  margin-bottom: 30px;
  margin-top: 20px;}
        h2 {
font-size: 3.2em;
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: uppercase;
            margin-bottom: 1rem;
      
        }

        .section-label {
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #2C7DA0;
            margin-bottom: 1rem;
            display: inline-block;
            background: rgba(44, 125, 160, 0.1);
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 500;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 100px;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            gap: 8px;
            border: none;
        }

        .btn-primary {
            background: #2C7DA0;
            color: white;margin-right: 15px;
            box-shadow: 0 4px 12px rgba(44,125,160,0.2);
        }

        .btn-primary:hover {
            background: #1e5f7a;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(44,125,160,0.3);
        }

        .btn-outline-light {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid rgba(10, 37, 64, 0.25);
            color: #0A2540;
        }

        .btn-outline:hover {
            border-color: #2C7DA0;
            background: rgba(44, 125, 160, 0.05);
            transform: translateY(-2px);
        }
        
        .btn-blue {
            background: #061d40;
            border-color: #061d40;
            color: white;
        }
        
        .btn-blue:hover {
            background: #0a2a55;
            transform: translateY(-2px);
        }

        /* Header — ПРОЗРАЧНЫЙ СТАРТ + ФИКСАЦИЯ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: all 0.3s ease;
            backdrop-filter: blur(0px);
        }
        
        .header.scrolled {
            background: rgba(10, 37, 64, 0.96);
            backdrop-filter: blur(12px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .header__wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            padding: 16px 0;
            transition: padding 0.3s;
        }
        
        .header.scrolled .header__wrapper {
            padding: 10px 0;
        }
        
        .header__wrapper--second-row {
            border-top: 1px solid rgba(255,255,255,0.15);
            padding: 0 0;
        }
        
        .header.scrolled .header__wrapper--second-row {
            border-top-color: rgba(255,255,255,0.08);
        }
        
        .header__logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }
        
        .header__logo-img {
            height: 52px;
            width: auto;
            transition: opacity 0.2s;
        }
        
        .header__logo-img:hover {
            opacity: 0.85;
        }
        
        /* Два телефона с иконками */
        .header__phones {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-left: auto;
        }
        
        .header__phone-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            transition: color 0.2s;
            white-space: nowrap;
        }
        
        .header__phone-item svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }
        
        .header__phone-item:hover {
            color: #2C7DA0;
        }
        
        .header__callback {
            background: rgba(44, 125, 160, 0.2);
            border: 1px solid rgba(44, 125, 160, 0.6);
            color: white;
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }
        
        .header__callback:hover {
      background: #2C7DA0;
  border-color: #2C7DA0;
            transform: translateY(-2px);
        }
        
        /* Desktop menu — ВСЕ ЗАГЛАВНЫЕ, не жирные */
       /* Desktop menu - стили для ul/li */
.header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    position: relative;
    list-style: none;
}

.header__menu-link {
    text-decoration: none;
    color: white !important;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
    display: inline-block;
    padding: 14px 0;
}

.header__menu-link:hover {
    color: #2C7DA0 !important;
}

/* Dropdown каталог */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
}

.dropdown > a:after {
    content: '▼';
    font-size: 7px;
    transition: transform 0.3s;
}

.dropdown:hover > a:after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 260px;
    padding: 12px 0;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 28px;
    color: #1A2C3E;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: #F5F7FB;
    color: #2C7DA0;
}
        
        /* Mobile buttons */
        .header__buttons--mobile {
            display: none;
            gap: 12px;
            align-items: center;
        }
        
        .button-burger {
            width: 32px;
            height: 32px;
            background: transparent;
            border: none;
            cursor: pointer;
            position: relative;
        }
        
        .button-burger::before,
        .button-burger::after,
        .button-burger span {
            content: '';
            position: absolute;
            width: 22px;
            height: 2px;
            background: white;
            left: 5px;
            transition: 0.3s;
        }
        
        .button-burger::before { top: 10px; }
        .button-burger span { top: 15px; }
        .button-burger::after { top: 20px; }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0A1A2A;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            transform: translateX(100%);
            transition: transform 0.4s ease;
            padding: 80px 20px;
            overflow-y: auto;
        }
        
        .mobile-nav.open { transform: translateX(0); }
        .mobile-nav a { color: white; font-size: 1.1rem; text-decoration: none; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .close-mobile { position: absolute; top: 30px; right: 30px; font-size: 28px; background: none; border: none; color: white; cursor: pointer; }
        .mobile-submenu { display: flex; flex-direction: column; gap: 12px; align-items:left; width: 100%; margin: 10px 0; }
        .mobile-submenu a { font-size: 0.85rem; text-transform: uppercase; opacity: 0.8; font-weight: 400; }
        .mobile-dropdown-title { font-size: 1rem; font-weight: 500; color: #2C7DA0; margin-top: 15px; text-transform: uppercase; letter-spacing: 1px; }
        
        /* Hero */

/* Hero с плавным слайдером - ДОБАВИТЬ В СТИЛИ */
/* Hero с плавным слайдером - ИСПРАВЛЕННЫЕ СТИЛИ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    margin-top: 0;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero__slide.active {
    opacity: 1;
    z-index: 2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(3, 15, 30, 0.4) 100%);
    z-index: 3;  /* ПОДНЯТ НАД СЛАЙДАМИ */
    pointer-events: none; /* ЧТОБЫ НЕ МЕШАЛ КЛИКАМ ПО КНОПКАМ */
}

.hero .container {
    position: relative;
    z-index: 4;  /* ВЫШЕ ОВЕРЛЕЯ */
}

/* Индикаторы слайдера */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #2C7DA0;
    width: 24px;
    border-radius: 10px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

 
        
        .hero-badge {
            background: rgba(44, 125, 160, 0.2);
            backdrop-filter: blur(8px);
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: #2C7DA0;
            margin-bottom: 28px;
            border: 1px solid rgba(44, 125, 160, 0.4);
            display: inline-block;
            font-weight: 400;
        }
        
        .hero h1 { 
            color: white; 
            margin-bottom: 20px;margin-bottom: 0px;
            font-weight: 300;text-transform: uppercase;
         
        }
        .hero h1 span{ display:block;font-weight: 400;} 
        .hero p { 
            color: rgba(255,255,255,0.85); 
            font-size: 1rem; 
            font-weight: 300;
            line-height: 1.7; 
            margin-bottom: 40px; 
       
        }
        .hero-stats { display: flex; gap: 50px; margin-top: 48px; }
        .stat-number { font-size: 2rem; font-weight: 400; color: white; letter-spacing: -0.01em; }
        .stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.7); letter-spacing: 1px; font-weight: 300; text-transform: uppercase; }
        
        /* Sections */
        section { padding: 100px 0; position: relative; }
        .section-divider { position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(44,125,160,0.2), rgba(44,125,160,0.4), transparent); }
        .section-header { text-align: center; margin-bottom: 60px; }
        
        .categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }

        .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
        .category-card:hover img { transform: scale(1.08); }
        .category-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,37,64,0.75) 0%, rgba(10,37,64,0.2) 100%); display: flex; align-items: flex-end; justify-content: center; padding: 40px; }
        .category-title { font-size: 1.5rem; font-weight: 500; color: white; text-transform: uppercase; letter-spacing: 1px; }
        
        .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
        .feature-card { background: white; padding: 40px 32px; border-radius: 32px; transition: all 0.4s; border: 1px solid rgba(44,125,160,0.08); }
        .feature-card:hover { transform: translateY(-12px); border-color: rgba(44,125,160,0.3); }
        .feature-icon { width: 60px; height: 60px; margin-bottom: 28px; background: rgba(44,125,160,0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
        .feature-icon svg { width: 30px; height: 30px; stroke: #2C7DA0; }
        .feature-card h3 { font-weight: 500; margin-bottom: 12px; }
        .feature-card p { font-weight: 400; color: #6C86A3; line-height: 1.6; }
        	/* ===== ПОВЕДЕНИЕ ШАПКИ ТОЛЬКО ДЛЯ ВНУТРЕННИХ СТРАНИЦ ===== */
/* Нужно добавить класс .internal-page на body внутренней страницы */
/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ТОВАРА ===== */
        
body.internal-page .header {
    position: relative;
    background: rgba(10, 37, 64, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

body.internal-page .header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Компенсация отступа при фиксации шапки */
body.internal-page.header-fixed {
    padding-top: 0;
}

body.internal-page.header-fixed .header.scrolled + * {
    margin-top: 0;
}
        /* Хлебные крошки */
        .breadcrumbs-wrapper {
            background: #F5F7FB;
            padding: 20px 0;
            margin-top: 0;
        }
        
        .breadcrumbs {
            font-size: 0.8rem;
            color: #6C86A3;
        }
        
        .breadcrumbs a {
            color: #2C7DA0;
            text-decoration: none;
        }
        
        .breadcrumbs a:hover {
            text-decoration: underline;
        }
        
        .breadcrumbs .separator {
            margin: 0 8px;
            color: #9d9e9e;
        }
        
        .breadcrumbs .current {
            color: #1A2C3E;
            font-weight: 500;
        }
        
        /* Основной блок товара */
        .product-main {
            padding: 40px 0 60px;
            background: #F5F7FB;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: white;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        /* Слайдер Slick */
        .product-gallery {
            position: relative;
        }
        
        .slider-for {
            margin-bottom: 15px;
            border-radius: 24px;
            overflow: hidden;
        }
        
        .slider-for .slick-slide {
            outline: none;
        }
        
        .slider-for .slick-slide img {
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
        }
        
        .slider-nav {
            margin: 0 -5px;
        }
        
        .slider-nav .slick-slide {
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
            border-radius: 12px;
            overflow: hidden;
            outline: none;
        }
        
        .slider-nav .slick-slide.slick-current {
            opacity: 1;
            border: 2px solid #2C7DA0;
        }
        
        .slider-nav .slick-slide img {
            width: 100%;
            height: 80px;
            object-fit: cover;
            display: block;
        }
        
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            z-index: 1;
        }
        
        .slick-prev:before, .slick-next:before {
            font-size: 20px;
            color: white;
        }
        
        .slick-prev {
            left: 10px;
        }
        
        .slick-next {
            right: 10px;
        }
        
        /* Информация о товаре */
        .product-title {
            font-size: 2rem;
            font-weight: 600;
            color: #061d40;
            margin-bottom: 8px;
        }
        
        .product-subtitle {
            font-size: 0.85rem;
            color: #2C7DA0;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #E8EDF2;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px 24px;
            margin-bottom: 30px;
        }
        
        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 8px 0;
            border-bottom: 1px dashed #E8EDF2;
        }
        
        .spec-label {
            font-size: 0.8rem;
            color: #6C86A3;
            font-weight: 400;
        }
        
        .spec-value {
            font-size: 0.9rem;
            font-weight: 500;
            color: #1A2C3E;
        }
        
        .price-block {
            background: #F5F7FB;
            border-radius: 20px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }
        
        .price-old {
            font-size: 1rem;
            text-decoration: line-through;
            color: #9d9e9e;
            margin-right: 12px;
        }
        
        .price-current {
            font-size: 2rem;
            font-weight: 700;
            color: #2C7DA0;
        }
        
        .price-label {
            font-size: 0.7rem;
            color: #6C86A3;
            margin-top: 5px;
        }
        
        .btn-request {
            width: 100%;
            background: #2C7DA0;
            color: white;
            border: none;
            padding: 16px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }
        
        .btn-request:hover {
            background: #1e5f7a;
            transform: translateY(-2px);
        }
        
        /* Маркетинговые блоки */
        .marketing-blocks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 60px 0 40px;
        }
        
        .marketing-card {
            background: white;
            border-radius: 24px;
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid #E8EDF2;
        }
        
        .marketing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(44,125,160,0.1);
            border-color: #2C7DA0;
        }
        
        .marketing-icon {
            width: 70px;
            height: 70px;
            background: rgba(44,125,160,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .marketing-icon svg {
            width: 35px;
            height: 35px;
            stroke: #2C7DA0;
            stroke-width: 1.5;
            fill: none;
        }
        
        .marketing-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #061d40;
            margin-bottom: 10px;
        }
        
        .marketing-text {
            font-size: 0.85rem;
            color: #6C86A3;
            line-height: 1.5;
        }
        
        /* Описание товара */
        .product-description {
            background: white;
            border-radius: 32px;
            padding: 40px;
            margin-top: 40px;
        }
        
        .description-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #061d40;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2C7DA0;
            display: inline-block;
        }
        
        .description-text {
            font-size: 1rem;
            color: #4a5a6e;
            line-height: 1.7;
            margin-top: 20px;
        }
        
        .description-text p {
            margin-bottom: 15px;
        }
        
        /* Похожие товары */
        .related-section {
            margin: 60px 0;
        }
        
        .related-title {
            font-size: 1.8rem;
            font-weight: 500;
            color: #061d40;
            margin-bottom: 30px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .related-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .related-card img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        
        .related-card-body {
            padding: 16px;
        }
        
        .related-card-name {
            font-weight: 600;
            color: #061d40;
            margin-bottom: 8px;
        }
        
        .related-card-price {
            color: #2C7DA0;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        /* Модальное окно */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: white;
            border-radius: 32px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #6C86A3;
        }
        
        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #061d40;
        }
        
        .modal-form input,
        .modal-form textarea {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 15px;
            border: 1px solid #E8EDF2;
            border-radius: 12px;
            font-family: inherit;
        }
        
        .modal-form button {
            width: 100%;
            background: #2C7DA0;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
        }
        
        /* Адаптив */
        @media (max-width: 1000px) {
            .product-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }
            .marketing-blocks {
                grid-template-columns: repeat(2, 1fr);
            }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .product-grid {
                padding: 20px;
            }
            .product-title {
                font-size: 1.5rem;
            }
            .price-current {
                font-size: 1.5rem;
            }
            .marketing-blocks {
                grid-template-columns: 1fr;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .specs-grid {
                grid-template-columns: 1fr;
            }
            .slider-nav .slick-slide img {
                height: 60px;
            }
        }
		
		/* ФИКС РАСТЯЖЕНИЯ СЛАЙДЕРА */
.product-gallery {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slider-for {
    margin-bottom: 15px;
    border-radius: 24px;
    overflow: hidden;
    max-width: 100%;
}

.slider-for .slick-list {
    overflow: hidden;
    border-radius: 24px;
}

.slider-for .slick-slide {
    outline: none;
}

.slider-for .slick-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.slider-nav {
    margin: 0 -5px;
    max-width: 100%;
}

.slider-nav .slick-list {
    overflow: hidden;
}

.slider-nav .slick-slide {
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    border-radius: 12px;
    overflow: hidden;
    outline: none;
}

.slider-nav .slick-slide.slick-current {
    opacity: 1;
    border: 2px solid #2C7DA0;
}

.slider-nav .slick-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Стрелки слайдера */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 10;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    color: white;
    opacity: 1;
}

.slick-prev:hover, .slick-next:hover {
    background: rgba(0,0,0,0.8);
}

/* Ограничение контейнера продукта */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 100%;
    overflow: hidden;
}

/* Для мобильных */
@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .slider-nav .slick-slide img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        padding: 20px;
    }
    .slider-nav .slick-slide img {
        height: 60px;
    }
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
    .slick-prev:before, .slick-next:before {
        font-size: 16px;
    }
}
body.internal-page .header {
    position: relative;
    background: rgba(10, 37, 64, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

body.internal-page .header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Компенсация отступа при фиксации шапки */
body.internal-page.header-fixed {
    padding-top: 0;
}

body.internal-page.header-fixed .header.scrolled + * {
    margin-top: 0;
}
    /* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.breadcrumbs-wrapper {
    background: #F5F7FB;
    padding: 20px 0;
    margin-top: 0;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: #6C86A3;
}

.breadcrumbs a {
    color: #2C7DA0;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #1e5f7a;
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #9d9e9e;
}

.breadcrumbs .current {
    color: #1A2C3E;
    font-weight: 500;
}

/* ===== КАТАЛОГ С ФИЛЬТРОМ ===== */
.search-results {
    padding: 40px 0 80px;
    background: #F5F7FB;
}

.catalog-layout {
    display: flex;
    gap: 40px;
}

/* Сайдбар фильтр */
.catalog-sidebar {
    flex: 0 0 280px;
    background: white;
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: fit-content;
    position: sticky;
    top: 120px;
    transition: all 0.3s ease;
}

.sidebar-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E8EDF2;
}

.sidebar-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #061d40;
    margin: 0;
}

.close-filter {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6C86A3;
}

.sub-nav-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2C7DA0;
    margin: 25px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #E8EDF2;
}

.sub-nav-title:first-of-type {
    margin-top: 0;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list li a {
    font-size: 0.85rem;
    color: #1A2C3E;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    padding: 4px 0;
}

.filter-list li a:hover {
    color: #2C7DA0;
    transform: translateX(4px);
}

/* Контентная область */
.catalog-content {
    flex: 1;
    min-width: 0;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-size: 0.85rem;
    color: #6C86A3;
    background: white;
    padding: 6px 16px;
    border-radius: 40px;
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #E8EDF2;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-toggle-btn:hover {
    border-color: #2C7DA0;
    color: #2C7DA0;
}

/* Сетка карточек */
.catalog-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.item {
    background: white;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.item:hover .img-wrap img {
    transform: scale(1.05);
}

.description {
    padding: 16px 18px 20px;
}

.name {
    font-size: 1rem;
    font-weight: 600;
    color: #061d40;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.name:hover {
    color: #2C7DA0;
}

.category {
    font-size: 0.7rem;
    color: #2C7DA0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.year {
    font-size: 0.75rem;
    color: #6C86A3;
    margin-bottom: 12px;
}

.price {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1A2C3E;
    border-top: 1px solid #E8EDF2;
    padding-top: 12px;
    margin-top: 4px;
}

.old-price {
    text-decoration: line-through;
    color: #9d9e9e;
    font-size: 0.75rem;
    font-weight: 400;
    margin-right: 8px;
    display: inline-block;
}

.new-price {
    color: #2C7DA0;
    font-weight: 700;
    display: inline-block;
}

/* Пагинация */
.search-pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
}

.search-pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.search-pagination li a,
.search-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.search-pagination li a {
    background: white;
    color: #1A2C3E;
    border: 1px solid #E8EDF2;
}

.search-pagination li a:hover {
    background: #2C7DA0;
    border-color: #2C7DA0;
    color: white;
}

.search-pagination li span.current {
    background: #061d40;
    color: white;
    border: none;
}

.support-text {
    text-align: center;
    font-size: 0.85rem;
    color: #6C86A3;
    margin: 30px 0 20px;
}

.support-btn {
    display: inline-block;
    background: #2C7DA0;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.support-btn:hover {
    background: #1e5f7a;
    transform: translateY(-2px);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1200px) {
    .catalog-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .catalog-layout {
        flex-direction: column;
    }
    
    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100%;
        z-index: 1001;
        transform: translateX(-100%);
        overflow-y: auto;
        border-radius: 0;
        padding: 20px;
        box-shadow: 0 0 30px rgba(0,0,0,0.2);
        top: 0;
        background: white;
    }
    
    .catalog-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-header {
        display: flex;
    }
    
    .filter-toggle-btn {
        display: flex;
    }
    
    .catalog-content {
        width: 100%;
    }
    
    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100%;
        z-index: 1001;
        transform: translateX(-100%);
        overflow-y: auto;
        border-radius: 0;
        padding: 20px;
        box-shadow: 0 0 30px rgba(0,0,0,0.2);
        background: white;
    }
    
    .catalog-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-header {
        display: flex;
    }
    
    .filter-toggle-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .catalog-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-results {
        padding: 30px 0 60px;
    }
    
    .breadcrumbs-wrapper {
        padding: 15px 0;
    }
}

/* Фикс для header на внутренних страницах */
body {
    padding-top: 0;
}

.header {
    background: rgba(10, 37, 64, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header:not(.scrolled) {
    background: rgba(10, 37, 64, 0.96);
}

/* Анимация для сайдбара */
.catalog-sidebar {
    transition: transform 0.3s ease;
}
		
		/* H1 для страницы каталога */
.catalog-h1 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #1A2C3E;
    margin: 20px 0 0 0;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .catalog-h1 {
        font-size: 1.6rem;
        margin-top: 15px;
    }
}
        /* БЛОК СПЕЦПРЕДЛОЖЕНИЙ */
        .catalog-screen {
            background: #F5F6F8;
        }
        
        .heading-with-button {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .heading-wrapper {
            flex: 1;
        }
        
        .heading-title {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 500;
            color: #061d40;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        
        .heading-description {
            font-size: 0.9rem;
            color: #4f555d;
            line-height: 1.5;
     
        }
        .catalog-screen .container {
    padding: 0 60px;
    max-width: 100%;
}
        /* Карточки каталога */
        .catalog-list {
          display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
        }
        
        .card-catalog {
            background: #fff;
            color: #131313;
            display: flex;
            flex-direction: column;
            position: relative;
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card-catalog:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        }
        
        .card-catalog__image-wrapper {
            display: block;
            overflow: hidden;
        }
        
        .card-catalog__image {
            aspect-ratio: 1.46;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card-catalog:hover .card-catalog__image {
            transform: scale(1.05);
        }
        
        .card-catalog__body {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding: 1rem 1rem 1.25rem;
            position: relative;
        }
        
        .card-catalog__heading {
            align-items: center;
            border-bottom: 1px solid #e3e6ea;
            display: flex;
            justify-content: space-between;
            padding-bottom: 0.75rem;
            margin-bottom: 0.75rem;
        }
        
        .card-catalog__heading .ellipsis {
            font-size: 1rem;
            font-weight: 600;
            color: #061d40;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .card-catalog__category {
            background: #061d40;
            border-radius: 1.875rem;
            color: #fff;
            flex-shrink: 0;
            margin-left: 0.75rem;
            padding: 0.25rem 0.75rem;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .card-catalog__category--brokerage {
            background: #cbd0d7;
            color: #4f555d;
        }
        
.characteristics {
    color: #9d9e9e;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e3e6ea;
}

.characteristics__item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.characteristics__param {
    font-size: 0.65rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #9d9e9e;
}

.characteristics__value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #131313;
}
        
      .card-catalog__controls {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.card-catalog__details-btn {
    background: transparent;
    border: 1px solid #2C7DA0;
    color: #2C7DA0;
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.card-catalog__details-btn:hover {
    background: #061d40;
    color: white;border: 1px solid #061d40;
    transform: translateY(-2px);
}
        
        .price {
            align-items: baseline;
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.5rem;
        }
        
        .price__final-wrapper {
            align-items: baseline;
            display: flex;
        }
        
        .price__final {
            font-size: 1.1rem;
            font-weight: 700;
            color: #061d40;
        }
        
        .price__from {
            font-size: 0.8rem;
            color: #9d9e9e;
        }
        
        .catalog__link {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        /* НОВЫЙ БЛОК APPLICATIONS — СТИЛИЗАЦИЯ ПОД САЙТ */
        .applications {
            position: relative;
            padding: 4rem 0;
            background-color: #0A1A2A;
            overflow: hidden;
        }
        
        .applications__background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .applications__background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }
        
        .applications .container {
            position: relative;
            z-index: 2;
        }
        
        .applications__heading {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .applications__heading .heading__title {
            color: white;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 500;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
        }
        
        .applications__heading .heading__description {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            font-weight: 400;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .applications__form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form__fields {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .form__field input,
        .form__field textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 60px;
            font-family: 'Rubik', sans-serif;
            font-size: 0.9rem;
            color: white;
            transition: all 0.3s;
        }
        
        .form__field input::placeholder,
        .form__field textarea::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .form__field input:focus,
        .form__field textarea:focus {
            outline: none;
            border-color: #2C7DA0;
            background: rgba(255,255,255,0.15);
        }
        
        .form__field textarea {
            border-radius: 24px;
            resize: vertical;
            min-height: 100px;
        }
        
        .form__politics {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 0.5rem 0;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.7);
            flex-wrap: wrap;
        }
        
        .form__politics a {
            color: #2C7DA0;
            text-decoration: none;
        }
        
        .form__politics a:hover {
            text-decoration: underline;
        }
        
        .form__btn {
            width: 100%;
            background: #061d40;
            border: none;
            color: white;
            padding: 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 0.5rem;
        }
        
        .form__btn:hover {
            background: #1e5f7a;
            transform: translateY(-2px);
        }
        
        /* Чекбокс */
        .react-politics {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .react-politics__input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .react-politics__icon {
            width: 18px;
            height: 18px;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 4px;
            background: transparent;
            display: inline-block;
            cursor: pointer;
        }
        
        .react-politics__input:checked + .react-politics__icon {
            background: #2C7DA0;
            border-color: #2C7DA0;
            position: relative;
        }
        
        .react-politics__input:checked + .react-politics__icon::after {
            content: '✓';
            position: absolute;
            color: white;
            font-size: 12px;
            left: 3px;
            top: -1px;
        }
        
        .manufacturers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 20px; margin-top: 50px; }
        .manufacturer-card { background: white; padding: 20px 12px; text-align: center; border-radius: 20px; transition: all 0.3s; border: 1px solid #E8EDF2; cursor: pointer; }
        .manufacturer-card:hover { transform: translateY(-6px); border-color: #2C7DA0; }
        .manufacturer-name { font-size: 0.8rem; font-weight: 500; color: #1A2C3E; text-transform: uppercase; letter-spacing: 0.5px; }
        
        /* Команда слайдер */
        .team-slider-container { background: white; border-radius: 32px; padding: 30px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .team-card { text-align: center; padding: 20px; }
        .team-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: 3px solid #2C7DA0; }
        .team-name { font-size: 1.2rem; font-weight: 600; color: #061d40; margin-bottom: 5px; }
        .team-post { font-size: 0.8rem; color: #2C7DA0; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
        .swiper-pagination-bullet-active { background: #2C7DA0; }
        
        .footer { background: #0A1A2A; color: white; padding: 70px 0 35px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
        .footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
        .footer-logo span { color: #2C7DA0; }
        .footer-col h4 { font-size: 0.75rem; margin-bottom: 24px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
        .footer-col a { display: block; color: #9bb5d0; text-decoration: none; margin-bottom: 12px; font-size: 0.75rem; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 400; }
        .footer-col a:hover { color: #2C7DA0; }
        .footer-contact { display: flex; gap: 12px; margin-bottom: 0px; color: #9bb5d0; font-size: 0.75rem; font-weight: 400;font-family: Arial; }
        .footer-contact svg { width: 16px; height: 16px; stroke: #2C7DA0; }
        .copyright { text-align: center; padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.1); color: #8CA0B8; font-size: 0.7rem; letter-spacing: 0.5px; }
        
        @media (max-width: 1200px) {
            .container { padding: 0 40px; }
            .features-grid { grid-template-columns: repeat(2,1fr); }
            .categories-grid { grid-template-columns: repeat(2,1fr); }
            .header__menu { gap: 20px; }
            .catalog-list { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        }
        
        @media (max-width: 1000px) {
            .header__menu { display: none; }
            .header__phones { display: none; }
            .header__callback { display: none; }
            .header__buttons--mobile { display: flex; }
            .footer-grid { grid-template-columns: repeat(2,1fr); }
            .hero { padding-top: 110px; }
            .catalog-list { grid-template-columns: 1fr; }
            .heading-with-button { flex-direction: column; align-items: flex-start; }
        }
        
        @media (max-width: 768px) {
            .container { padding: 0 24px; }
            section { padding: 60px 0; }
            .features-grid, .categories-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-stats {  gap: 20px; }
			.stat-label {
				font-size: 0.55rem !important; }
			.stat-number {
				font-size: 1.4rem !important; }
            .manufacturers-grid { grid-template-columns: repeat(2,1fr); }
            .applications { padding: 3rem 0; }
        }
        /* БЛОК КОНТАКТЫ */
.contacts-screen {
    background: #F5F6F8;
    padding: 100px 0;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contacts-info {
    background: white;
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.contacts-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: #061d40;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contacts-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contacts-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contacts-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2C7DA0;
    margin-bottom: 6px;
    font-weight: 500;
}

.contacts-value {
    font-size: 1rem;
    color: #1A2C3E;font-family: Arial;
    line-height: 1.5;
}

.contacts-value a {
    color: #1A2C3E;
    text-decoration: none;
    transition: color 0.2s;
}

.contacts-value a:hover {
    color: #2C7DA0;
}

.route-btn {
    display: inline-flex;
    background: #061d40;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.route-btn:hover {
    background: #0a2a55;
    transform: translateY(-2px);
}

.contacts-map {
    background: #e8ecf0;
    border-radius: 32px;
    overflow: hidden;
    min-height: 450px;
}

@media (max-width: 1000px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contacts-screen {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .contacts-info {
        padding: 32px 24px;
    }
}
      .categories-section {
    background: #F5F7FB;
    width: 100%;
    padding: 100px 0;
}
 .categories-section  .container {
  padding: 0 60px;
  max-width: 100%;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

        
        
.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 37, 64, 0.75) 0%, rgba(10, 37, 64, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1000px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .categories-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        aspect-ratio: 16 / 9;
    }
}