/* ==========================================================================
   style.css — STIMUL-BRESTTRADE
   Minimal Corporate Style + Video Hero
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES
   -------------------------------------------------------------------------- */
:root {
    --st-primary: #1a6b3c;
    --st-primary-dark: #13512d;
    --st-primary-light: #2a8f52;
    --st-primary-soft: #f0f6f2;
    --st-accent: #c8a24a;

    --st-text: #1f2529;
    --st-text-muted: #7a848d;
    --st-heading: #14212b;

    --st-bg: #ffffff;
    --st-bg-alt: #fafbfa;
    --st-bg-dark: #10241a;
    --st-border: #e8ebe9;
    --st-border-strong: #d5dad7;

    --st-radius: 0;
    --st-radius-sm: 0;
    --st-radius-pill: 0;

    --st-shadow-sm: 0 1px 4px rgba(16, 36, 26, .04);
    --st-shadow: 0 4px 16px rgba(16, 36, 26, .06);
    --st-shadow-lg: 0 10px 32px rgba(16, 36, 26, .10);

    --st-transition: .25s ease;
    --st-font: 'Fira Sans', Arial, sans-serif;
    --st-font-cond: 'Fira Sans Condensed', 'Fira Sans', Arial, sans-serif;
    --st-container: 1320px;

    --st-header-h: 84px;
}

/* --------------------------------------------------------------------------
   2. BASE / RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--st-font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--st-text);
    background: var(--st-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--st-primary);
    text-decoration: none;
    transition: color var(--st-transition);
}

a:hover {
    color: var(--st-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--st-font-cond);
    font-weight: 500;
    color: var(--st-heading);
    line-height: 1.25;
    margin: 0 0 .6em;
}

h1 {
    font-size: clamp(26px, 2.8vw, 38px);
    position: relative;
    margin: 0 0 40px;
    padding-bottom: 14px;
}

h2 {
    font-size: clamp(22px, 2.2vw, 32px);
}

h3 {
    font-size: clamp(18px, 1.8vw, 24px);
}

p {
    margin: 0 0 1em;
}

.container,
.container-fluid {
    width: 100%;
    max-width: var(--st-container);
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
}

.container-fluid {
    max-width: 100%;
}

/* --------------------------------------------------------------------------
   SECTIONS
   -------------------------------------------------------------------------- */
.content-section {
    position: relative;
    padding: 72px 0;
    /* background: var(--st-bg); */
    border-top: 1px solid var(--st-border);
}

.content-section:first-of-type {
    border-top: 0;
}

.section-title {
    position: relative;
    margin: 0 0 40px;
    padding-bottom: 14px;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title::after, .main-content h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background: var(--st-primary);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text_center,
.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.text-muted-custom {
    color: var(--st-text-muted);
}

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn,
.btn-primary,
.btn_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--st-radius);
    font-family: var(--st-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--st-transition);
}

.btn-primary,
.btn_submit {
    background: var(--st-primary);
    border-color: var(--st-primary);
    color: #fff;
}

.btn-primary:hover, .btn_submit:hover, .btn-primary:focus {
    background: transparent!important;
    border-color: var(--st-primary)!important;
    color: var(--st-primary)!important;
}

.btn-secondary {
    background: transparent;
    border-color: var(--st-border-strong);
    color: var(--st-text);
}

.btn-secondary:hover {
    border-color: var(--st-primary);
    color: var(--st-primary);
}

.text-link-more {
    position: relative;
    display: inline-block;
    font-family: var(--st-font);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 22px;
}

.text-link-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--st-transition);
}

.text-link-more:hover::after {
    transform: translate(4px, -50%);
}

/* ==========================================================================
   4. HEADER
   ========================================================================== */
.block-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(16, 36, 26, .28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.block-header.is-scrolled,
body:not(.homePage) .block-header {
    background: rgba(255, 255, 255, .97);
    border-bottom-color: var(--st-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: nowrap;
    max-width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 0;
}

.logo-link {
    display: flex;
    flex-shrink: 0;
}

.logo-wrapper img {
    max-height: 44px;
    width: auto;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
    max-width: 260px;
}

.header-brand-title {
    font-family: var(--st-font-cond);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #fff;
    white-space: nowrap;
    transition: color .3s ease;
}

.header-brand-text .sub-company {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .6);
    white-space: normal;
    line-height: 1.4;
    transition: color .3s ease;
}

.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.mod-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mod-menu>.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.mod-menu>.nav-item+.nav-item::before {
    content: '';
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .25);
    margin: 0 2px;
    transition: background .3s ease;
}

.mod-menu>.nav-item>a,
.mod-menu>.nav-item>.mod-menu__toggle-sub {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 0;
    background: transparent;
    font-family: var(--st-font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    transition: color .25s ease;
}

.mod-menu>.nav-item>a:hover,
.mod-menu>.nav-item>.mod-menu__toggle-sub:hover,
.mod-menu>.nav-item.current>a,
.mod-menu>.nav-item.active>a {
    color: #fff;
}

.icon-chevron-down::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translate(-1px, -1px);
    transition: transform var(--st-transition);
    vertical-align: middle;
}

.mod-menu__toggle-sub[aria-expanded="true"] .icon-chevron-down::before {
    transform: rotate(-135deg) translate(-1px, -1px);
}

.header-contacts {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
}

.header-contacts .headerPhones {
    display: flex;
    gap: 14px;
}

.header-contacts .phoneItem a {
    font-family: var(--st-font);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .3px;
    white-space: nowrap;
    transition: color .3s ease;
}

.header-contacts .headerEmail .phoneItem a {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .5px;
    transition: color .3s ease;
}

.headerCallback {
    flex: 0 0 auto;
}

.headerCallback .callback {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .45);
    font-family: var(--st-font);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
    background: transparent;
    transition: all .25s ease;
}

.headerCallback .callback:hover {
    background: #fff;
    border-color: #fff;
    color: var(--st-primary);
}

.navbar-toggler-custom {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: var(--st-radius);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--st-transition);
}

.navbar-toggler-custom:hover {
    border-color: #fff;
    color: #fff;
}

.block-header.is-scrolled .header-brand-title,
body:not(.homePage) .block-header .header-brand-title,
.block-header.is-scrolled .mod-menu>.nav-item>a,
.block-header.is-scrolled .mod-menu>.nav-item>.mod-menu__toggle-sub,
body:not(.homePage) .block-header .mod-menu>.nav-item>a,
body:not(.homePage) .block-header .mod-menu>.nav-item>.mod-menu__toggle-sub,
.block-header.is-scrolled .header-contacts .phoneItem a,
body:not(.homePage) .block-header .header-contacts .phoneItem a {
    color: var(--st-heading);
}

.block-header.is-scrolled .header-brand-text .sub-company,
body:not(.homePage) .block-header .header-brand-text .sub-company,
.block-header.is-scrolled .header-contacts .headerEmail .phoneItem a,
body:not(.homePage) .block-header .header-contacts .headerEmail .phoneItem a {
    color: var(--st-text-muted);
}

.block-header.is-scrolled .mod-menu>.nav-item+.nav-item::before,
body:not(.homePage) .block-header .mod-menu>.nav-item+.nav-item::before {
    background: var(--st-border-strong);
}

.block-header.is-scrolled .mod-menu>.nav-item>a:hover,
body:not(.homePage) .block-header .mod-menu>.nav-item>a:hover,
.block-header.is-scrolled .mod-menu>.nav-item>.mod-menu__toggle-sub:hover,
body:not(.homePage) .block-header .mod-menu>.nav-item>.mod-menu__toggle-sub:hover,
.block-header.is-scrolled .mod-menu>.nav-item.current>a,
body:not(.homePage) .block-header .mod-menu>.nav-item.current>a {
    color: var(--st-primary);
}

.block-header.is-scrolled .headerCallback .callback,
body:not(.homePage) .block-header .headerCallback .callback {
    border-color: var(--st-border-strong);
    color: var(--st-heading);
}

.block-header.is-scrolled .headerCallback .callback:hover,
body:not(.homePage) .block-header .headerCallback .callback:hover {
    background: var(--st-primary);
    border-color: var(--st-primary);
    color: #fff;
}

.block-header.is-scrolled .navbar-toggler-custom,
body:not(.homePage) .block-header .navbar-toggler-custom {
    border-color: var(--st-border-strong);
    color: var(--st-heading);
}

.block-header.is-scrolled .navbar-toggler-custom:hover,
body:not(.homePage) .block-header .navbar-toggler-custom:hover {
    border-color: var(--st-primary);
    color: var(--st-primary);
}

.mod-menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 120;
    min-width: 260px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--st-border);
    border-top: 2px solid var(--st-primary);
    box-shadow: var(--st-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--st-transition);
}

.mod-menu>.nav-item.parent:hover>.mod-menu__sub,
.mod-menu>.nav-item.parent:focus-within>.mod-menu__sub,
.mod-menu__sub.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mod-menu__sub .nav-item+.nav-item {
    border-top: 1px solid var(--st-border);
}

.mod-menu__sub .nav-item>a {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 400;
    color: var(--st-text);
    transition: all var(--st-transition);
}

.mod-menu__sub .nav-item>a:hover {
    background: var(--st-primary-soft);
    color: var(--st-primary);
    padding-left: 28px;
}

/* ==========================================================================
   5. OFFCANVAS / MOBILE MENU
   ========================================================================== */
.offcanvas {
    background: #fff;
    width: 320px;
    max-width: 90vw;
}

#mobileMenuCanvas {
    z-index: 1041;
}

.offcanvas-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--st-border);
    background: var(--st-bg-alt);
}

.offcanvas-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--st-heading);
}

.offcanvas-body {
    padding: 0;
    overflow-y: auto;
}

#mobileMenuContent {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
}

#mobileMenuContent .mod-menu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#mobileMenuContent .mod-menu>.nav-item+.nav-item::before {
    display: none;
}

#mobileMenuContent>li,
#mobileMenuContent .nav-item {
    display: block;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--st-border);
}

#mobileMenuContent>li>a,
#mobileMenuContent>li>.mod-menu__toggle-sub,
#mobileMenuContent .nav-item>a,
#mobileMenuContent .nav-item>.mod-menu__toggle-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 22px;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: var(--st-font);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--st-heading);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

#mobileMenuContent a:hover,
#mobileMenuContent .mod-menu__toggle-sub:hover,
#mobileMenuContent .current>a {
    background: var(--st-primary-soft);
    color: var(--st-primary);
}

#mobileMenuContent ul {
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--st-bg-alt);
}

#mobileMenuContent .mod-menu__sub {
    position: static;
    display: block;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--st-border);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
    overflow: visible;
}

#mobileMenuContent .mod-menu__sub .nav-item {
    border-bottom: 1px solid var(--st-border);
    border-top: 0;
}

#mobileMenuContent .mod-menu__sub .nav-item:last-child {
    border-bottom: 0;
}

#mobileMenuContent .mod-menu__sub a {
    display: block;
    width: 100%;
    padding: 13px 22px 13px 38px;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: .3px;
    color: var(--st-text);
}

#mobileMenuContent .mod-menu__sub a:hover {
    background: #fff;
    color: var(--st-primary);
    padding-left: 42px;
}

#mobileMenuContent .icon-chevron-down::before {
    transition: transform .3s ease;
}

#mobileMenuContent .mod-menu__toggle-sub[aria-expanded="true"] .icon-chevron-down::before {
    transform: rotate(-135deg) translate(-1px, -1px);
}

/* ==========================================================================
   6. HERO SLIDER
   ========================================================================== */
.hero-slider-wrapper {
    position: relative;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    min-height: clamp(340px, 46vw, 600px);
}

.hero-slide .heroImage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 6s ease;
}

.splide__slide.is-active .hero-slide .heroImage {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 26, 18, .72) 0%, rgba(10, 26, 18, .35) 55%, rgba(10, 26, 18, .12) 100%);
}

.heroInfo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: inherit;
    height: 100%;
}

.hero-slide-info {
    max-width: 800px;
    padding: 60px 0;
}

.hero-slide-caption {
    font-family: var(--st-font-cond);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: .5px;
    color: #fff;
}

#heroSlider .splide__pagination {
    bottom: 24px;
    gap: 8px;
}

#heroSlider .splide__pagination__page {
    width: 28px;
    height: 2px;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .45);
    opacity: 1;
    transition: all var(--st-transition);
}

#heroSlider .splide__pagination__page.is-active {
    background: #fff;
    transform: none;
}

#heroSlider .splide__arrow {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    opacity: 1;
    transition: all var(--st-transition);
}

#heroSlider .splide__arrow:hover {
    background: var(--st-primary);
    border-color: var(--st-primary);
}

#heroSlider .splide__arrow svg {
    fill: #fff;
    width: 14px;
    height: 14px;
}

/* --------------------------------------------------------------------------
   7. NEWS
   -------------------------------------------------------------------------- */
.newsCompany .row {
    --bs-gutter-y: 24px;
}

.news-featured {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--st-border);
    transition: all var(--st-transition);
}

.news-featured:hover {
    border-color: var(--st-border-strong);
    box-shadow: var(--st-shadow);
}

.news-featured>a {
    display: block;
    overflow: hidden;
}

.news-featured>a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-featured:hover>a img {
    transform: scale(1.04);
}

.news-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    gap: 18px;
    padding: 24px;
}

.news-featured-body>div>a {
    display: block;
    margin-bottom: 10px;
    font-family: var(--st-font-cond);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--st-heading);
    transition: color var(--st-transition);
}

.news-featured-body>div>a:hover {
    color: var(--st-primary);
}

.news-featured .text-muted-custom {
    font-size: 15px;
}

.meta-date {
    padding-top: 14px;
    border-top: 1px solid var(--st-border);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .5px;
    color: var(--st-text-muted);
}

/* --------------------------------------------------------------------------
   8. PRODUCT GRID
   -------------------------------------------------------------------------- */
.priductGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.productCard {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
    overflow: hidden;
    background: #eceeed;
    color: #fff;
    font-family: var(--st-font);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.3;
    transition: box-shadow var(--st-transition);
}

.productCard:hover {
    color: #fff;
    box-shadow: var(--st-shadow);
}

.productCard:hover img {
    transform: scale(1.05);
}

.productCard img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .6s ease;
}

.productCard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .10) 55%, transparent 80%);
    opacity: 1;
    z-index: 1;
    transition: opacity .35s ease;
}

.productCard::before {
    display: none;
}

.priductName {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: rgb(16 36 26 / 50%);
    color: #fff;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.3;
    border: 0;
    text-align: left;
    transition: background .3s ease;
}

.productCard:hover .priductName {
    background: rgba(16, 36, 26, .60);
}

.priductGrid .productCard:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    font-size: 22px;
}

.priductGrid .productCard:nth-child(1) .priductName {
    padding: 18px 26px;
}

.priductGrid .productCard:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.priductGrid .productCard:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.priductGrid .productCard:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 2;
    font-size: 19px;
}

.priductGrid .productCard:nth-child(4) .priductName {
    padding: 16px 24px;
}

.priductGrid .productCard:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

.priductGrid .productCard:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
}

.priductGrid .productCard:nth-child(7) {
    grid-column: 3;
    grid-row: 3;
}

.priductGrid .productCard:nth-child(8) {
    grid-column: 4;
    grid-row: 3;
}

/* --------------------------------------------------------------------------
   9. ADVANTAGES
   -------------------------------------------------------------------------- */
.sectionPreim {
    position: relative;
    padding: 72px 0;
    background: var(--st-bg-alt);
    border-top: 1px solid var(--st-border);
}

.blockTitle {
    margin-bottom: 44px;
}

.blockTitle h2 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.preimItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 32px 20px;
    transition: all var(--st-transition);
}

.preimImage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--st-border-strong);
    background: #fff;
    transition: all var(--st-transition);
}

.preimItem:hover .preimImage {
    border-color: var(--st-primary);
}

.preimImage img {
    max-width: 80px;
    max-height: 80px;
}

.preimTitle {
    font-family: var(--st-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--st-heading);
}

/* --------------------------------------------------------------------------
   10. LOGO SLIDERS
   -------------------------------------------------------------------------- */
.sectionSlider {
    position: relative;
    padding: 56px 0;
    border-top: 1px solid var(--st-border);
}

.sectionSlider+.sectionSlider {
    /* border-top: 0; */
}

.resources-slider .splide {
    padding: 0 50px;
}

.sliderImages .splide__slide {
    padding: 10px;
}

.sliderImages .splide__slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--st-border);
    transition: all var(--st-transition);
}

.sliderImages .splide__slide a:hover {
    border-color: var(--st-border-strong);
}

.sliderImages .splide__slide a img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .55;
    transition: all var(--st-transition);
}

.sliderImages .splide__slide a:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.sliderImages .splide__arrow {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    transition: all var(--st-transition);
}

.sliderImages .splide__arrow:hover {
    background: var(--st-primary);
}

.sliderImages .splide__arrow:hover svg {
    fill: #fff;
}

.sliderImages .splide__arrow svg {
    fill: var(--st-heading);
    width: 12px;
    height: 12px;
}

.sliderImages .splide__arrow--prev {
    left: 0;
}

.sliderImages .splide__arrow--next {
    right: 0;
}

/* --------------------------------------------------------------------------
   11. FORM SECTION
   -------------------------------------------------------------------------- */
.form {
    position: relative;
    padding: 76px 0;
    background: var(--st-bg-dark);
    overflow: hidden;
}

.form .sectionTitle h2 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.form .blockSubTitle {
    margin-bottom: 36px;
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .3px;
}

.form .form_wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.form .form_sub {
    padding: 36px;
    background: #fff;
}

.form_wrap__inputsbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form_wrap__inputsbox .input-group:last-of-type {
    grid-column: 1 / -1;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.title_input {
    font-family: var(--st-font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--st-text-muted);
}

.input-block {
    position: relative;
}

.input-block input,
.input-block textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--st-border);
    background: #fff;
    font-family: var(--st-font);
    font-size: 15px;
    color: var(--st-text);
    transition: all var(--st-transition);
}

.input-block textarea {
    resize: vertical;
    min-height: 90px;
}

.input-block input:focus,
.input-block textarea:focus {
    outline: none;
    border-color: var(--st-primary);
}

.input-block input::placeholder,
.input-block textarea::placeholder {
    color: #b0b8be;
}

.input-error {
    margin-top: 4px;
    font-size: 12px;
    color: #c0392b;
    min-height: 0;
    display: block;
    width: 100%;
}

.form_wrap__submit {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.form_wrap__submit .btn {
    min-width: 200px;
}

.success_block,
.form_wrap__successbox {
    display: none;
    padding: 36px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: var(--st-primary);
}

.success_block.is-visible,
.form_wrap__successbox.is-visible {
    display: block;
}

.form_wrap.is-success .form_sub {
    display: none;
}

/* --------------------------------------------------------------------------
   12. MAP
   -------------------------------------------------------------------------- */
.sectopnMap {
    line-height: 0;
    border-top: 1px solid var(--st-border);
}

.sectopnMap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
    filter: grayscale(.4);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.blockFooter {
    padding: 60px 0 26px;
    background: var(--st-bg-dark);
    color: rgba(255, 255, 255, .7);
}

.blockFooter .row {
    --bs-gutter-y: 30px;
}

.footer-logo-white {
    max-height: 52px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand-title {
    margin: 0 0 6px;
    font-family: var(--st-font);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.footer-brand-sub {
    display: block;
    font-size: 10px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .45);
}

.footerColName {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 10px;
    font-family: var(--st-font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.footerColName::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--st-primary-light);
}

.blockFooter p {
    margin: 0 0 6px;
    font-size: 14px;
}

.blockFooter a {
    color: rgba(255, 255, 255, .7);
}

.blockFooter a:hover {
    color: var(--st-primary-light);
}

.footePolicies {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .4);
}

.footePolicies a {
    color: rgba(255, 255, 255, .6);
}

/* --------------------------------------------------------------------------
   14. SCROLL TOP
   -------------------------------------------------------------------------- */
#scrollTopBtn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--st-border-strong);
    border-radius: var(--st-radius);
    background: #fff;
    color: var(--st-heading);
    font-size: 15px;
    cursor: pointer;
    transition: all var(--st-transition);
}

#scrollTopBtn.is-visible {
    display: inline-flex;
}

#scrollTopBtn:hover {
    background: var(--st-primary);
    border-color: var(--st-primary);
    color: #fff;
}

#scrollTopBtn span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* --------------------------------------------------------------------------
   15. MODAL
   -------------------------------------------------------------------------- */
.modal-content {
    border: 0;
    overflow: hidden;
    box-shadow: var(--st-shadow-lg);
}

.modal-header {
    padding: 22px 26px;
    border-bottom: 1px solid var(--st-border);
}

.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--st-heading);
}

.modal-body {
    padding: 26px;
}

.modal-footer {
    padding: 18px 26px;
    border-top: 1px solid var(--st-border);
    gap: 8px;
}

.form-label {
    margin-bottom: 6px;
    font-family: var(--st-font);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--st-text-muted);
}

.form-control {
    padding: 12px 16px;
    border: 1px solid var(--st-border);
    background: #fff;
    font-size: 15px;
    transition: all var(--st-transition);
    border-radius: 0px;
}

.form-control:focus {
    border-color: var(--st-primary);
    box-shadow: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--st-primary);
}

.form-check-label {
    font-size: 13px;
    color: var(--st-text-muted);
}

/* --------------------------------------------------------------------------
   16. UTILITIES
   -------------------------------------------------------------------------- */
.main-content {
    padding: 0;
}

#system-message-container:empty {
    display: none;
}

.d-none {
    display: none !important;
}

body:not(.homePage) {
    padding-top: var(--st-header-h);
}

/* ==========================================================================
   17. HOMEPAGE — video hero
   ========================================================================== */
.homePage .hero-slider-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(10, 26, 18, .55) 0%,
            rgba(10, 26, 18, .30) 40%,
            rgba(10, 26, 18, .70) 100%);
}

.homePage #heroSlider {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
}

.homePage #heroSlider .splide__track,
.homePage #heroSlider .splide__list,
.homePage #heroSlider .splide__slide {
    height: auto;
}

.homePage .hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 140px 0 100px;
}

.homePage .heroInfo {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.homePage .hero-slide-info {
    max-width: 900px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.homePage .hero-slide-caption {
    font-family: var(--st-font-cond);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #fff;
    margin: 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border: 1px solid #fff;
    background: transparent;
    font-family: var(--st-font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
}

.btn-hero:hover {
    background: #fff;
    color: var(--st-primary);
    border-color: #fff;
}

.homePage #heroSlider .splide__pagination {
    bottom: 36px;
    gap: 8px;
    z-index: 3;
}

.homePage #heroSlider .splide__arrow {
    z-index: 3;
}

/* ==========================================================================
   PRODUCTS CATALOG — Bootstrap row / col
   ========================================================================== */
.productsCatalog {
    /* padding: 72px 0; */
}

/* Карточка товара — ссылка */
.productItem {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--st-border);
    color: var(--st-text);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.productItem:hover {
    border-color: var(--st-border-strong);
    box-shadow: var(--st-shadow);
    color: var(--st-text);
    /* transform: translateY(-4px); */
}

.productItem__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eceeed;
}

.productItem__image img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .6s ease;
}

.productItem:hover .productItem__image img {
    transform: scale(1.06);
}

.productItem__body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 22px 24px;
    border-top: 1px solid var(--st-border);
    background: #fff;
    text-align: center;
    transition: background .3s ease;
}

.productItem:hover .productItem__body {
    background: var(--st-bg-alt);
}

.productItem__title {
    margin: 0;
    font-family: var(--st-font-cond);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .3px;
    color: var(--st-heading);
    transition: color .3s ease;
}

.productItem:hover .productItem__title {
    color: var(--st-primary);
}

.section.content {
    padding: 0px 0px 50px 0px;
}

.com-content-article__body img:not(.no_image) {
    cursor: pointer;
    -webkit-transition: all ease-in-out .25s;
    -moz-transition: all ease-in-out .25s;
    -o-transition: all ease-in-out .25s;
    transition: all ease-in-out .25s;
}

.com-content-article__body img:not(.no_image) {
    width: 220px;
    margin: 1%;
    height: 180px;
    object-fit: cover;
    background: #fff;
    border: 1px solid var(--st-border);
    transition: all var(--st-transition);
    display: inline-block;
}

.com-content-article__body img:not(.no_image):hover {
    border-color: var(--st-border-strong);
    box-shadow: var(--st-shadow);
    transform: scale(1.02);
}

/* ==========================================================================
   MOD-ARTICLESCATEGORIES — список категорий продукции (по одной в ряд)
   ========================================================================== */
.mod-articlescategories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mod-articlescategories>li {
    display: flex;
    margin: 0;
    padding: 0;
}

.mod-articlescategories>li>a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 12px 56px 12px 24px;
    background: #fff;
    border: 1px solid var(--st-border);
    border-left: 1px solid var(--st-border-strong);
    color: var(--st-heading);
    font-family: var(--st-font-cond);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .3px;
    text-decoration: none;
    transition: border-color .3s ease, background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

/* Стрелка справа */
.mod-articlescategories>li>a::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--st-font);
    font-size: 16px;
    color: var(--st-text-muted);
    transition: color .3s ease, transform .3s ease;
}

/* Ховер */
.mod-articlescategories>li>a:hover {
    border-color: var(--st-border-strong);
    border-left-color: var(--st-primary);
    background: var(--st-bg-alt);
    color: var(--st-primary);
    box-shadow: var(--st-shadow);
}

.mod-articlescategories>li>a:hover::after {
    color: var(--st-primary);
    transform: translate(4px, -50%);
}

/* Активный пункт */
.mod-articlescategories>li.active>a {
    border-left-color: var(--st-primary);
    background: var(--st-primary-soft);
    color: var(--st-primary);
}

.mod-articlescategories>li.active>a::after {
    color: var(--st-primary);
}

