@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700;800&display=swap');

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #555;
    background: #fff;
    line-height: 1.6;
}

.product-related {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid #ececec;
}

.product-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px;
}

.product-related__title {
    margin: 0;
    color: #333;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.product-related__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.product-related__slider {
    position: relative;
    padding: 4px 1px 14px;
    overflow: clip;
}

.product-related__slider .swiper-slide {
    height: auto;
}

.product-related__slider .product-item {
    height: 100%;
}

.product-related__arrow {
    position: static;
    width: 38px;
    height: 38px;
    margin: 0;
    border: 1px solid #dedede;
    border-radius: 50%;
    background: #fff;
    color: #0fa8ae;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.product-related__arrow.swiper-button-prev,
.product-related__arrow.swiper-button-next {
    position: static;
    inset: auto;
    margin: 0;
}

.product-related__arrow::after {
    font-size: 16px;
    font-weight: 700;
}

.product-related__arrow:hover {
    border-color: #0fa8ae;
    background: #0fa8ae;
    color: #fff;
}

.product-related__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 560px) {
    .product-related__head {
        align-items: flex-start;
    }

    .product-related__arrow {
        width: 34px;
        height: 34px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.maxwidth-theme {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== SVG icon system (real icons from original, recolored via currentColor) ===== */
.ic {
    display: inline-block;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.ic-addr {
    width: 13px;
    height: 16px;
    -webkit-mask-image: url('/images/svg/Addres_black.svg');
    mask-image: url('/images/svg/Addres_black.svg');
}

.ic-email {
    width: 16px;
    height: 15px;
    -webkit-mask-image: url('/images/svg/svg-email.svg');
    mask-image: url('/images/svg/svg-email.svg');
}

.ic-phone {
    margin-bottom: 18px;
    width: 9px;
    height: 12px;
    -webkit-mask-image: url('/images/svg/Phone_black.svg');
    mask-image: url('/images/svg/Phone_black.svg');
}

.ic-search {
    width: 21px;
    height: 21px;
    -webkit-mask-image: url('/images/svg/Search_big_mask.svg');
    mask-image: url('/images/svg/Search_big_mask.svg');
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 2100;
    background: #fff;
    width: 100%;
}

.mobile-header,
.mobile-menu {
    display: none;
}

/* --- Top cert bar --- */
.header-top {
    max-height: 70px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    overflow: visible;
    opacity: 1;
    transition: max-height 0.22s ease, padding 0.22s ease, opacity 0.18s ease, border-color 0.22s ease;
}

.site-header.is-stuck {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.site-header.is-stuck .header-top {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    opacity: 0;
    overflow: hidden;
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top__certs {
    display: flex;
    align-items: center;
    height: 44px;
    flex: 1;
}

.header-top__list-item {
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: 13px;
    flex-shrink: 0;
}

.header-top__list-item:first-child {
    margin-left: 0;
}

.header-top__small,
.header-top__big {
    display: block;
    cursor: pointer;
    max-width: none;
    transition: top 0.15s ease-in;
}

.header-top__small {
    width: 44px;
    height: 44px;
    opacity: 0.9;
}

.header-top__list-item:hover .header-top__small {
    opacity: 1;
}

.header-top__big {
    position: absolute;
    top: -200px;
    left: -22px;
    width: 88px;
    height: 88px;
    z-index: 100;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}

.header-top__list-item:hover .header-top__big {
    top: 0;
}

.header-top__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: 20px;
}

.header-top__city {
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: #0fa8ae;
    cursor: pointer;
}

.header-top__city:hover {
    color: #0d9298;
}

.header-top__lang {
    display: flex;
    gap: 4px;
}

.header-top__lang a {
    display: inline-block;
    padding: 11px;
    line-height: 1;
    font-size: 15px;
    color: #000;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}

.header-top__lang a:hover {
    background: rgba(15, 168, 174, 0.1);
}

.header-top__lang a.active {
    background: #0fa8ae;
    color: #fff;
}

.header-top__lang a.active:hover {
    background: #0d9298;
}

/* --- Logo row --- */
.logo-row {
    padding: 16px 0;
}

.logo-row__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-row__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-row__brand .logo-img {
    height: 46px;
    width: auto;
}

.logo-row__brand .made-in-russia {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    transform-origin: center;
    transition: transform 0.2s ease;
}

.made-in-russia-badge--en {
    --badge-size: 72px;
    /* размер серого круга */
    --icon-width: 60px;
    /* ширина SVG внутри */
    --icon-height: 60px;
    /* высота SVG внутри */
    --icon-x: -5px;
    /* сдвиг SVG влево/вправо */
    --icon-y: -8px;
    /* сдвиг SVG вверх/вниз */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--badge-size);
    height: var(--badge-size);
    flex-shrink: 0;
    border-radius: 50%;
    background: #f2f2f2;
    transform-origin: center;
    transition: transform 0.2s ease;
}

.made-in-russia-badge--en .made-in-russia,
.made-in-russia-badge--en .mobile-header__made {
    width: var(--icon-width);
    height: var(--icon-height);
    object-fit: contain;
    transform: translate(var(--icon-x), var(--icon-y));
}

.logo-row__brand>.made-in-russia:hover,
.logo-row__brand .made-in-russia-badge--en:hover {
    transform: scale(1.78);
}

.logo-row__desc {
    font-size: 14px;
    color: #222;
    line-height: 1.3;
    font-weight: 800;
    max-width: 360px;
    text-align: center;
    flex: 1 1 220px;
    min-width: 170px;
}

/* contact items (address / email / phone) */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
}

.contact-item__icon {
    align-self: center;
    color: #222;
}

.contact-item__body {
    font-size: 13px;
    color: #222;
    line-height: 1.5;
}

.contact-emails {
    display: flex;
    flex-direction: column;
}

.contact-emails a {
    color: #666;
    transition: color 0.2s;
}

.contact-emails a:hover {
    color: #0fa8ae;
}

/* phone block */
.contact-phone__main {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-phone__main>a {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    transition: color 0.2s;
}

.contact-phone__main>a:hover {
    color: #0fa8ae;
}

.contact-phone__arrow {
    font-size: 11px;
    color: #888;
    cursor: pointer;
}

.contact-phone__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-top: 2px solid #0fa8ae;
    padding: 8px 0;
    z-index: 1000;
    min-width: 180px;
}

.contact-phone__main:hover .contact-phone__dropdown {
    display: block;
}

.contact-phone__dropdown a {
    display: block;
    padding: 6px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

.contact-phone__dropdown a:hover {
    background: #f5fafa;
    color: #0fa8ae;
}

.contact-phone__callback {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: #0fa8ae;
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0;
    transition: color 0.2s;
}

.contact-phone__callback:hover {
    color: #0d9298;
    text-decoration: underline;
}

/* --- Main nav --- */
.main-nav {
    background: #0fa8ae;
}

.main-nav__inner {
    display: flex;
    align-items: stretch;
}

.main-nav__list {
    display: table;
    width: 100%;
    table-layout: auto;
}

.main-nav__item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
}

.main-nav__link {
    display: block;
    padding: 22px 12px 23px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s, padding 0.22s ease;
}

.site-header.is-stuck .main-nav__link {
    padding-top: 15px;
    padding-bottom: 16px;
}

.main-nav__item:first-child .main-nav__link {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.main-nav__link:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Dropdown */
.main-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-top: 3px solid #0fa8ae;
}

.main-nav__item:hover>.main-nav__dropdown {
    display: block;
}

.main-nav__dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}

.main-nav__dropdown a:last-child {
    border-bottom: none;
}

.main-nav__dropdown a:hover {
    background: #f5fafa;
    color: #0fa8ae;
}

/* Sub-dropdown (level 2) */
.main-nav__sub-item {
    position: relative;
}

.main-nav__sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 300px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #0fa8ae;
}

.main-nav__sub-item:hover>.main-nav__sub-dropdown {
    display: block;
}

.main-nav__sub-item>a::after {
    content: '›';
    float: right;
    color: #aaa;
}

/* Search icon */
.main-nav__search {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 64px;
    min-height: 56px;
    flex-shrink: 0;
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.main-nav__search:hover {
    background: rgba(0, 0, 0, 0.1);
}

.main-nav__search-icon {
    width: 21px;
    height: 21px;
    display: block;
}

/* --- site search panel --- */
.site-search {
    position: fixed;
    inset: 0;
    z-index: 2200;
}

.site-search[hidden] {
    display: none;
}

.site-search__overlay {
    position: absolute;
    inset: 82px 0 0;
    border: 0;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    cursor: default;
    transition: opacity 0.22s ease;
}

.site-search__panel {
    position: relative;
    min-height: 112px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transform: translateY(-100%);
    transition: transform 0.22s ease;
}

.site-search.is-open .site-search__overlay {
    opacity: 1;
}

.site-search.is-open .site-search__panel {
    transform: translateY(0);
}

.site-search__form {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 26px 0;
}

.site-search__label {
    color: #222;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.site-search__input {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #222;
    font-size: 28px;
    padding: 0;
}

.site-search__input:focus {
    outline: none;
}

.site-search__input::placeholder {
    color: #999;
}

.site-search__input::-webkit-search-decoration,
.site-search__input::-webkit-search-cancel-button,
.site-search__input::-webkit-search-results-button,
.site-search__input::-webkit-search-results-decoration {
    display: none;
}

.site-search__results {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    gap: 0;
    margin-top: -4px;
    border-top: 1px solid #ececec;
}

.site-search__results[hidden] {
    display: none;
}

.site-search-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    text-decoration: none;
}

.site-search-result__image {
    flex: 0 0 70px;
    width: 70px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f7f7;
}

.site-search-result__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-search-result__body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.site-search-result__group {
    font-size: 12px;
    line-height: 1.2;
    color: #999;
}

.site-search-result__title {
    font-size: 16px;
    line-height: 1.35;
    color: #222;
}

.site-search-result:hover .site-search-result__title {
    color: #0fa8ae;
}

.site-search__submit {
    height: 44px;
    border: 0;
    border-radius: 3px;
    padding: 0 28px;
    background: #0fa8ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.site-search__submit:hover {
    background: #0d9298;
}

.site-search__close {
    height: 44px;
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    padding: 0;
    background: #fff;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.site-search__close:hover {
    color: #0fa8ae;
}

body.is-search-open {
    overflow: hidden;
}

/* --- search results page --- */
.search-page {
    padding: 34px 0 40px;
}

.search-page h1 {
    margin: 18px 0 24px;
    color: #222;
    font-size: 32px;
    line-height: 1.18;
}

.search-page__form {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    gap: 12px;
    max-width: 780px;
    margin-bottom: 22px;
}

.search-page__input {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f8f8f8;
    color: #222;
    font-size: 15px;
    padding: 0 15px;
}

.search-page__input:focus {
    outline: none;
    border-color: #0fa8ae;
    background: #fff;
}

.search-page__submit {
    height: 48px;
    border: 0;
    border-radius: 3px;
    background: #0fa8ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 0 34px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-page__submit:hover {
    background: #0d9298;
}

.search-page__empty,
.search-page__count {
    color: #666;
    font-size: 15px;
}

.search-results {
    max-width: 900px;
    margin-top: 28px;
}

.search-pagination {
    max-width: 900px;
    margin-top: 28px;
}

.search-results__group {
    margin-top: 34px;
}

.search-results__group:first-child {
    margin-top: 0;
}

.search-results__group h2 {
    margin: 0 0 16px;
    color: #222;
    font-size: 24px;
    line-height: 1.25;
}

.search-results__list {
    border-top: 1px solid #e8e8e8;
}

.search-result {
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
}

.search-result__title {
    display: inline-block;
    color: #0fa8ae;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s;
}

.search-result__title:hover {
    color: #0fa8ae;
}

.search-result__breadcrumbs {
    margin-top: 5px;
    color: #0fa8ae;
    font-size: 12px;
    line-height: 1.4;
}

.search-result__text {
    margin: 8px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.category-description {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.category-description p {
    margin: 0 0 18px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.category-description h2,
.category-description h3 {
    color: #222;
    font-weight: 700;
    line-height: 1.25;
    margin: 40px 0 26px;
}

.category-description h2 {
    font-size: 28px;
}

.category-description h3 {
    font-size: 24px;
}

.category-description ul,
.category-description ol {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.category-description li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.category-description ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0fa8ae;
}

.category-description ol {
    counter-reset: category-list;
}

.category-description ol li {
    counter-increment: category-list;
}

.category-description ol li::before {
    content: counter(category-list) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #0fa8ae;
    font-weight: 700;
}

.category-description a {
    color: #0fa8ae;
    text-decoration: none;
}

.category-description a:hover {
    color: #0d9298;
}

.category-description .table-responsive {
    overflow-x: auto;
    margin: 26px 0;
}

.category-description table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    color: #555;
    font-size: 15px;
    line-height: 1.45;
}

.category-description th,
.category-description td {
    padding: 12px 14px;
    border: 1px solid #d8e8ea;
    vertical-align: top;
}

.category-description th {
    color: #222;
    font-weight: 700;
    background: #f7fbfb;
}

.category-comparison {
    margin-top: 34px;
}

.category-description+.category-comparison {
    margin-top: 28px;
}

.category-comparison__scroll {
    overflow-x: auto;
    border: 1px solid #d8e8ea;
}

.category-comparison__table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.45;
}

.category-comparison__table th {
    padding: 14px 16px;
    background: #0aa6ad;
    color: #fff;
    font-weight: 700;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.category-comparison__table th a {
    color: inherit;
    text-decoration: none;
}

.category-comparison__table td {
    padding: 13px 16px;
    color: #333;
    vertical-align: top;
    border-right: 1px solid #e5e5e5;
}

.category-comparison__table tbody tr:nth-child(odd) td {
    background: #fff;
}

.category-comparison__table tbody tr:nth-child(even) td {
    background: #f5f5f5;
}

.category-comparison__table th:first-child,
.category-comparison__table td:first-child {
    min-width: 260px;
    font-weight: 600;
}

@media (max-width: 700px) {
    .site-search__overlay {
        inset: 136px 0 0;
    }

    .site-search__panel {
        min-height: 160px;
    }

    .site-search__form {
        min-height: 160px;
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 28px 0;
    }

    .site-search__input {
        grid-column: 1 / -1;
    }

    .site-search__submit {
        width: 100%;
    }

    .search-page {
        padding-top: 24px;
    }

    .search-page h1 {
        font-size: 26px;
    }

    .search-page__form {
        grid-template-columns: 1fr;
    }

    .search-page__submit {
        width: 100%;
    }

    .search-results__group h2 {
        font-size: 21px;
    }
}

@media (max-width: 1300px) {
    .header-top__certs {
        display: none;
    }

    .header-top__inner {
        justify-content: end;
    }

    .header-top__controls {
        margin-left: 0;
    }

    .logo-row__inner {
        gap: 14px;
    }

    .logo-row__brand .logo-img {
        height: 40px;
    }

    .logo-row__brand .made-in-russia {
        width: 50px;
        height: 50px;
    }

    .logo-row__brand .made-in-russia-badge--en {
        --badge-size: 62px;
        --icon-width: 54px;
        --icon-height: 54px;
    }

    .logo-row__desc {
        max-width: 235px;
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 1120px) {
    .logo-row__brand {
        gap: 7px;
    }

    .logo-row__brand .logo-img {
        height: 35px;
    }

    .logo-row__brand .made-in-russia {
        width: 44px;
        height: 44px;
    }

    .logo-row__brand .made-in-russia-badge--en {
        --badge-size: 56px;
        --icon-width: 49px;
        --icon-height: 49px;
    }

    .logo-row__desc {
        max-width: 205px;
        min-width: 145px;
        font-size: 12px;
        line-height: 17px;
    }

    .contact-item {
        gap: 6px;
    }

    .contact-item__body {
        font-size: 12px;
    }

    .contact-phone__main>a {
        font-size: 14px;
    }
}

/* --- Mobile header and drawer --- */
.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 1000px) {
    .header-top {
        padding: 0;
        border-bottom: 0;
        background: #0fa8ae;
    }

    .header-top .maxwidth-theme {
        padding: 0;
        max-width: none;
    }

    .header-top__inner {
        display: block;
    }

    .header-top__certs,
    .header-top__lang {
        display: none;
    }

    .header-top__controls {
        display: block;
        margin: 0;
    }

    .header-top__city {
        display: block;
        width: 100%;
        padding: 9px 16px 10px;
        text-align: center;
        color: #fff;
        font-size: 14px;
        line-height: 18px;
    }

    .logo-row,
    .main-nav {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        min-height: 64px;
        padding: 8px 14px;
        border-bottom: 1px solid #eee;
        background: #fff;
    }

    .mobile-header__btn,
    .mobile-header__tool {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #333;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-header__btn {
        flex-direction: column;
        gap: 5px;
        margin-right: 8px;
    }

    .mobile-header__btn span {
        width: 22px;
        height: 2px;
        background: #222;
        display: block;
    }

    .mobile-header__brand {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .mobile-header__logo {
        width: auto;
        height: 36px;
        max-width: min(48vw, 245px);
        object-fit: contain;
    }

    .mobile-header__made {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .mobile-header__made:hover {
        transform: scale(1.08);
    }

    .mobile-header__made-badge:hover {
        transform: scale(1.08);
    }

    .mobile-header__made-badge .mobile-header__made:hover {
        transform: translate(var(--icon-x), var(--icon-y));
    }

    .mobile-header__made-badge {
        --badge-size: 50px;
        --icon-width: 44px;
        --icon-height: 44px;
        --icon-x: -2px;
        --icon-y: -2px;
    }

    .mobile-header__tools {
        display: flex;
        align-items: center;
        gap: 2px;
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 3000;
        pointer-events: none;
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu__overlay {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        transition: opacity 0.24s ease;
        cursor: pointer;
    }

    .mobile-menu__drawer {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(86vw, 360px);
        background: #fff;
        box-shadow: 8px 0 28px rgba(0, 0, 0, 0.22);
        transform: translateX(-104%);
        transition: transform 0.24s ease;
        overflow: hidden;
    }

    .mobile-menu.is-open {
        pointer-events: auto;
    }

    .mobile-menu.is-open .mobile-menu__overlay {
        opacity: 1;
    }

    .mobile-menu.is-open .mobile-menu__drawer {
        transform: translateX(0);
    }

    .mobile-menu__panel {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.24s ease;
    }

    .mobile-menu__panel[data-mobile-panel="root"] {
        transform: translateX(-100%);
    }

    .mobile-menu__panel.is-active {
        transform: translateX(0);
    }

    .mobile-menu__top {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        border-bottom: 1px solid #e8e8e8;
        color: #222;
        font-weight: 700;
        font-size: 16px;
    }

    .mobile-menu__close {
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        font-size: 28px;
        line-height: 1;
        color: #777;
        cursor: pointer;
    }

    .mobile-menu__back {
        min-height: 58px;
        border: 0;
        border-bottom: 1px solid #e8e8e8;
        background: #f8f8f8;
        color: #777;
        text-align: left;
        padding: 0 18px;
        font: inherit;
        font-size: 14px;
        cursor: pointer;
    }

    .mobile-menu__title,
    .mobile-menu__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        width: 100%;
        padding: 0 18px;
        border: 0;
        border-bottom: 1px solid #eee;
        background: #fff;
        color: #333;
        text-align: left;
        font-family: inherit;
        font-size: 15px;
        line-height: 20px;
        cursor: pointer;
    }

    .mobile-menu__title {
        color: #0fa8ae;
        font-weight: 700;
        background: #fbfbfb;
    }

    .mobile-menu__panel[data-mobile-panel="feedback"] .mobile-menu__title {
        color: #222;
        background: #f3f3f3;
    }

    .mobile-menu__panel[data-mobile-panel="root"]>.mobile-menu__link,
    .mobile-menu__panel[data-mobile-panel="root"]>.mobile-menu__link--parent {
        font-weight: 700;
    }

    .mobile-menu__link:hover,
    .mobile-menu__back:hover {
        background: #f5fafa;
        color: #0fa8ae;
    }

    .mobile-menu__link--parent span {
        color: #aaa;
        font-size: 22px;
        line-height: 1;
        margin-left: 12px;
    }

    .mobile-menu__bottom {
        padding: 18px;
        border-top: 1px solid #eee;
    }

    .mobile-menu__contact {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
        margin: 0;
        padding: 14px 18px;
        border: 0;
        background: #f3f3f3;
        color: #222;
        font-family: inherit;
        text-align: left;
        cursor: pointer;
        transition: color 0.2s, background 0.2s;
    }

    .mobile-menu__contact:hover {
        background: #ededed;
        color: #0fa8ae;
    }

    .mobile-menu__contact-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #000;
        flex-shrink: 0;
    }

    .mobile-menu__contact-title {
        flex: 1 1 auto;
        font-size: 15px;
        line-height: 22px;
        font-weight: 700;
    }

    .mobile-menu__contact-arrow {
        color: #0fa8ae;
        font-size: 20px;
        line-height: 1;
        flex-shrink: 0;
    }

    .mobile-menu__address {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-top: 8px;
        color: #555;
        font-size: 13px;
        line-height: 20px;
    }

    .mobile-menu__address-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 3px;
        color: #000;
        flex-shrink: 0;
    }

    .mobile-menu__lang {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 16px;
    }

    .mobile-menu__lang a,
    .mobile-menu__lang span {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 0 12px;
        border: 1px solid #e5e5e5;
        background: #fff;
        color: #555;
        font-size: 13px;
        line-height: 18px;
    }

    .mobile-menu__lang .is-active {
        border-color: #0fa8ae;
        background: #0fa8ae;
        color: #fff;
    }

    .mobile-menu__keep {
        margin-top: 4px;
        color: #000;
        font-size: 15px;
        line-height: 22px;
        font-weight: 700;
    }

    .mobile-menu__email {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        color: #222;
        font-size: 13px;
        line-height: 20px;
        text-decoration: none;
    }

    .mobile-menu__email:hover {
        color: #0fa8ae;
    }

    .mobile-menu__email-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #000;
        flex-shrink: 0;
    }

    .mobile-menu__callback {
        justify-content: flex-start;
        color: #0fa8ae;
        font-weight: 700;
    }
}

@media (max-width: 420px) {
    .mobile-header {
        padding-left: 8px;
        padding-right: 8px;
    }

    .mobile-header__btn,
    .mobile-header__tool {
        width: 38px;
    }

    .mobile-header__logo {
        height: 32px;
        max-width: 43vw;
    }

    .mobile-header__made {
        width: 38px;
        height: 38px;
    }
}

/* ===== Main ===== */
.site-main {
    min-height: 400px;
}

/* ===== Hero slider (Swiper) ===== */
.hero {
    padding: 0;
}

.hero-swiper {
    position: relative;
    max-width: 1800px;
    height: 550px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-slide {
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide__inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    min-width: 0;
}

.hero-slide__text {
    flex: 0 1 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0 64px;
    box-sizing: border-box;
    min-width: 0;
}

.hero-slide__title {
    font-size: 40px;
    line-height: 42px;
    font-weight: 700;
    color: #222;
    margin: 0 0 19px;
    overflow-wrap: anywhere;
}

.hero-slide__desc {
    font-size: 15px;
    line-height: 24px;
    color: #222;
    margin: 0 0 35px;
}

.hero-slide__desc p {
    margin: 0 0 8px;
}

.hero-slide__desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-slide__desc li {
    position: relative;
    margin: 0 0 4px;
    padding-left: 16px;
}

.hero-slide__desc li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slide__btn {
    display: inline-block;
    width: fit-content;
    max-width: max-content;
    background: #0fa8ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 25px 15px;
    border-radius: 2px;
    transition: background 0.2s;
}

.hero-slide__btn:hover {
    background: #0d9298;
    color: #fff;
}

.hero-slide__img {
    flex: 0 0 auto;
    max-width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-slide__img img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* pagination dots */
.hero-swiper .swiper-pagination {
    bottom: 25px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: background 0.2s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* arrows — visible only on hover */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    color: #555;
    background: transparent;
    border: none;
    border-radius: 0;
    opacity: 0;
    z-index: 50;
    transition: opacity 0.25s, color 0.2s;
}

.hero-swiper .swiper-button-prev {
    left: 5%;
}

.hero-swiper .swiper-button-next {
    right: 5%;
}

.hero-swiper:hover .swiper-button-prev,
.hero-swiper:hover .swiper-button-next {
    opacity: 1;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: transparent;
    color: #333;
}

.hero-swiper .swiper-button-prev::before,
.hero-swiper .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.8 5.2 8 12l6.8 6.8M9 12h11' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.8 5.2 8 12l6.8 6.8M9 12h11' fill='none' stroke='%23000' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transform: translate(-50%, -50%);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    content: "";
    display: none;
}

.hero-swiper .swiper-button-next::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* ===== Certificates slider ===== */
.certs-block {
    padding: 50px 0 55px;
}

.certs-block__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin: 0 0 35px;
    overflow-wrap: anywhere;
}

.certs-swiper {
    position: relative;
    padding-bottom: 20px;
}

.cert-card__img {
    position: relative;
    display: block;
    height: 249px;
    margin-bottom: 12px;
    overflow: hidden;
}

.cert-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-card--popup {
    cursor: pointer;
}

.cert-card__zoom {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 168, 174, 0.92);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}

.cert-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.cert-card--popup:hover .cert-card__zoom,
.cert-card--popup:focus-visible .cert-card__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cert-card--popup:hover .cert-card__img::after,
.cert-card--popup:focus-visible .cert-card__img::after {
    opacity: 1;
}

.cert-card__cap {
    text-align: center;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: #555;
}

/* pagination dots */
.certs-swiper .swiper-pagination {
    bottom: 0;
}

.certs-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: background 0.2s;
}

.certs-swiper .swiper-pagination-bullet-active {
    background: #0fa8ae;
}

/* arrows — visible only on hover */
.certs-swiper .swiper-button-prev,
.certs-swiper .swiper-button-next {
    top: 124px;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    opacity: 0;
    z-index: 50;
    transition: opacity 0.25s, background 0.2s;
}

.certs-block:hover .swiper-button-prev,
.certs-block:hover .swiper-button-next {
    opacity: 1;
}

.certs-swiper .swiper-button-prev {
    left: 0;
}

.certs-swiper .swiper-button-next {
    right: 0;
}

.certs-swiper .swiper-button-prev:hover,
.certs-swiper .swiper-button-next:hover {
    background: #0fa8ae;
}

.certs-swiper .swiper-button-prev::after,
.certs-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.certs-block__more {
    text-align: center;
    margin-top: 30px;
}

.certs-block__btn {
    display: inline-block;
    background: #0fa8ae;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 25px 14px;
    border-radius: 2px;
    transition: background 0.2s;
}

.certs-block__btn:hover {
    background: #0d9298;
    color: #fff;
}

/* ===== Company block (full-width bg + stats) ===== */
.company-block {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 544px;
    box-sizing: border-box;
    padding: 75px 0 75px;
    color: #fff;
    text-align: center;
}

.company-block__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0 0 22px;
    overflow-wrap: anywhere;
}

.company-block__desc {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
}

.company-stat {
    max-width: 240px;
    text-align: center;
}

.company-stat__num {
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    white-space: nowrap;
}

.company-stat__label {
    font-size: 13px;
    line-height: 18px;
    color: #fff;
}

/* ===== Advantages block ===== */
.advantages-block {
    padding: 55px 0 60px;
}

.advantages-block__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin: 0 0 45px;
    overflow-wrap: anywhere;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.advantage-card {
    min-width: 0;
}

.advantage-card__icon {
    width: 69px;
    height: 69px;
    margin-bottom: 18px;
}

.advantage-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.advantage-card__line {
    display: block;
    width: 80px;
    height: 3px;
    background: #0fa8ae;
    margin-bottom: 18px;
}

.advantage-card__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    color: #202735;
    margin: 0 0 10px;
}

.advantage-card__text {
    font-size: 16px;
    line-height: 24px;
    color: #202735;
    margin: 0;
}

/* ===== 404 page ===== */
.error-page {
    padding: 70px 0 65px;
}

.error-page__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 60px;
    min-height: 360px;
}

.error-page__code {
    color: #0fa8ae;
    font-size: 300px;
    line-height: 0.85;
    font-weight: 400;
    letter-spacing: -12px;
}

.error-page__content {
    color: #222;
    text-align: center;
}

.error-page__title {
    font-size: 44px;
    line-height: 50px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.error-page__subtitle {
    font-size: 18px;
    line-height: 32px;
    color: #666;
}

.error-page__text {
    font-size: 13px;
    line-height: 20px;
    color: #555;
    margin: 14px 0 35px;
}

.error-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 3px;
    background: #0fa8ae;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.error-page__btn:hover {
    background: #0b949a;
    color: #fff;
}

@media (max-width: 1000px) {
    .error-page {
        padding: 52px 0 48px;
    }

    .error-page__inner {
        display: block;
        min-height: 0;
        text-align: center;
    }

    .error-page__code {
        display: none;
    }

    .error-page__content {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .error-page {
        padding: 42px 0 40px;
    }

    .error-page__title {
        font-size: 34px;
        line-height: 40px;
    }

    .error-page__subtitle {
        font-size: 17px;
        line-height: 28px;
    }
}

/* ===== News slider ===== */
.news-block {
    padding: 50px 0 55px;
}

.news-block__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin: 0 0 35px;
    overflow-wrap: anywhere;
}

.news-swiper {
    position: relative;
}

.news-card__img {
    display: block;
    height: 200px;
    margin-bottom: 14px;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-card__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.news-card__title:hover {
    color: #0fa8ae;
}

.news-card__meta {
    font-size: 12px;
    color: #555;
}

.news-card__label {
    color: #aaa;
    margin-left: 6px;
}

/* arrows — visible only on hover */
.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next {
    top: 100px;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    opacity: 0;
    z-index: 50;
    transition: opacity 0.25s, background 0.2s;
}

.news-block:hover .swiper-button-prev,
.news-block:hover .swiper-button-next {
    opacity: 1;
}

.news-swiper .swiper-button-prev {
    left: 0;
}

.news-swiper .swiper-button-next {
    right: 0;
}

.news-swiper .swiper-button-prev:hover,
.news-swiper .swiper-button-next:hover {
    background: #0fa8ae;
}

.news-swiper .swiper-button-prev::after,
.news-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

/* ===== Catalog block (filter tabs + products) ===== */
.catalog-block {
    background: #f5f5f5;
    padding: 50px 0 55px;
}

.catalog-block__title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 18px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
}

.catalog-tab {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 11px;
    background: #fff;
    color: #222;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.catalog-tab:hover {
    color: #0fa8ae;
}

.catalog-tab.is-active {
    background: #0fa8ae;
    color: #fff;
    border-color: #0fa8ae;
}

.catalog-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 20px;
}

.catalog-grid.is-active {
    display: grid;
}

@media (max-width: 1000px) {
    .catalog-tabs-scroll {
        margin-bottom: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .catalog-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
        width: 2700px;
        height: 100px;
        margin-bottom: 0;
        overflow-x: visible;
        overflow-y: hidden;
        padding-bottom: 10px;
    }

    .catalog-tab {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
    }
}

.catalog-grid--count-1 {
    grid-template-columns: minmax(0, 300px);
}

.catalog-grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 300px));
}

.product-card {
    background: #fff;
    padding: 24px 26px 20px;
    box-sizing: border-box;
    min-width: 0;
}

.product-card__img {
    display: block;
    height: 200px;
    margin-bottom: 16px;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #555;
    line-height: 1.35;
    margin-bottom: 9px;
    transition: color 0.2s;
    overflow-wrap: anywhere;
}

.product-card__name:hover {
    color: #0fa8ae;
}

.product-card__badge {
    font-size: 12px;
    color: #555;
    position: relative;
}

.product-card__badge--in {
    padding-left: 18px;
}

.product-card__badge--in::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 11px;
    height: 8px;
    margin-top: -4px;
    background: no-repeat center/contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 8'%3E%3Cpath d='M1 4l3 3 6-6' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 8'%3E%3Cpath d='M1 4l3 3 6-6' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/contain;
    background-color: #3bb54a;
}

.product-card__badge--order {
    color: #999;
}

/* Кнопка заказа показывается при наведении только в карточках главной. */
.catalog-block .product-card {
    display: flex;
    flex-direction: column;
}

.home-product-card__order {
    max-height: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border: 0;
    border-radius: 0;
    background: #0fa8ae;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    cursor: pointer;
    transition: max-height .2s ease, margin .2s ease, padding .2s ease, opacity .2s ease, background .2s ease;
}

.catalog-block .product-card:hover .home-product-card__order,
.catalog-block .product-card:focus-within .home-product-card__order {
    max-height: 42px;
    margin-top: 14px;
    padding: 12px 16px;
    opacity: 1;
    pointer-events: auto;
}

.home-product-card__order:hover,
.home-product-card__order:focus-visible {
    background: #0c9196;
}

/* Cookie-уведомление повторяет оформление оригинального сайта. */
.cookies-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.cookies-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    flex: 1;
}

.cookies-link {
    color: #0fa8ae;
    text-decoration: underline;
    display: inline-block;
}

.cookies-link:hover {
    text-decoration: none;
}

.cookies-button {
    width: 100%;
    padding: 10px 20px;
    border: 0;
    border-radius: 6px;
    background: #0fa8ae;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background .3s ease;
}

.cookies-button:hover {
    background: #11c3ca;
}

@media (max-width: 768px) {
    .cookies-banner {
        right: 20px;
        bottom: 20px;
        left: 20px;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 20px;
        gap: 12px;
    }

    .cookies-text {
        font-size: 13px;
    }

    .cookies-button {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cookies-banner {
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 15px;
    }

    .cookies-text {
        font-size: 12px;
    }
}

.catalog-block__more {
    text-align: center;
    margin-top: 32px;
}

.catalog-block__btn {
    display: inline-block;
    background: #0fa8ae;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 2px;
    transition: background 0.2s;
}

.catalog-block__btn:hover {
    background: #0d9298;
    color: #fff;
}

/* ===== Catalog page (/product/) ===== */
.catalog-page {
    padding: 30px 0 60px;
}

.breadcrumbs {
    font-size: 13px;
    color: #999;
    margin-bottom: 14px;
}

.breadcrumbs a {
    color: #999;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #0fa8ae;
}

.breadcrumbs__sep {
    margin: 0 7px;
    color: #ccc;
}

.breadcrumbs__current {
    color: #555;
}

.catalog-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 24px;
}

@media (max-width: 700px) {
    .catalog-page__title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 20px;
    }
}

@media (max-width: 420px) {
    .catalog-page__title {
        font-size: 23px;
    }
}

.catalog-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* --- sidebar --- */
.catalog-sidebar {
    flex: 0 0 335px;
    max-width: 335px;
}

.company-sidebar-with-ask {
    flex: 0 0 335px;
    max-width: 335px;
}

.company-sidebar-with-ask .catalog-sidebar {
    max-width: none;
}

.catalog-sidebar__menu {
    border: 1px solid #e6e6e6;
    border-bottom: none;
}

.catalog-sidebar__item {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}

.catalog-sidebar__link {
    display: block;
    padding: 16px 45px 16px 22px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #222;
    background: #f5f5f5;
    transition: color 0.2s, background 0.2s;
}

.catalog-sidebar__link:hover {
    color: #0fa8ae;
}

.catalog-sidebar__item.is-active>.catalog-sidebar__link,
.catalog-sidebar__sub a.is-active {
    color: #0fa8ae;
}

.catalog-sidebar__item.is-active>.catalog-sidebar__toggle::before,
.catalog-sidebar__item.is-active>.catalog-sidebar__toggle::after {
    background: #0fa8ae;
}

.catalog-sidebar__toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 53px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.catalog-sidebar__toggle::before,
.catalog-sidebar__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 2px;
    background: #888;
    transform: translate(-50%, -50%);
    transition: transform 0.2s;
}

.catalog-sidebar__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.catalog-sidebar__item.is-open .catalog-sidebar__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.catalog-sidebar__sub {
    display: none;
    background: #fff;
    padding: 6px 0;
}

.catalog-sidebar__item.is-open .catalog-sidebar__sub {
    display: block;
}

.catalog-sidebar__sub a {
    display: block;
    padding: 8px 22px 8px 32px;
    font-size: 13px;
    line-height: 18px;
    color: #555;
    transition: color 0.2s;
}

.catalog-sidebar__sub a:hover {
    color: #0fa8ae;
}

.catalog-sidebar__note {
    margin: 20px 0 0;
    padding: 0 10px 0 30px;
    color: #666;
    font-size: 14px;
    line-height: 22px;
    font-style: italic;
}

/* --- category cards --- */
.catalog-content {
    flex: 1 1 auto;
    min-width: 0;
    container-type: inline-size;
}

.cat-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border: 1px solid #bfbfbf;
    padding: 35px 40px 30px 25px;
    margin-bottom: -1px;
}

.cat-card__img {
    flex: 0 0 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}

.cat-card__img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.cat-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.cat-card__title {
    display: block;
    width: fit-content;
    max-width: 100%;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    transition: color 0.2s;
    overflow-wrap: anywhere;
}

.cat-card__title:hover {
    color: #0fa8ae;
}

.cat-card__subs {
    margin-bottom: 20px;
}

.cat-card__subs li {
    margin-bottom: 8px;
}

.cat-card__subs a {
    font-size: 15px;
    color: #0fa8ae;
    transition: color 0.2s;
}

.cat-card__subs a:hover {
    color: #0d9298;
}

.cat-card__arrow {
    color: #0fa8ae;
    font-weight: 700;
}

.cat-card__more {
    display: inline-block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    padding: 14px 25px;
    border: 1px solid #bfbfbf;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cat-card__more:hover {
    background: #0fa8ae;
    border-color: #0fa8ae;
    color: #fff;
}

.cat-card__more .cat-card__arrow {
    color: inherit;
}

/* --- subcategory grid (top of category page) --- */
.subcat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 34px;
    padding: 24px 0 30px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.subcat-grid .cat-card {
    flex-direction: row;
    gap: 22px;
    margin: 0;
    padding: 22px;
    min-width: 0;
}

.subcat-grid .cat-card__img {
    width: 210px;
    flex: 0 0 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: visible;
}

.subcat-grid .cat-card__mask {
    display: block;
    width: 86%;
    aspect-ratio: 1 / 1;
    border-radius: 1000px;
    overflow: hidden;
}

.subcat-grid .cat-card__img img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: top center;
}

.subcat-grid .cat-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subcat-grid .cat-card__title {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 10px;
}

.subcat-grid .cat-card__more {
    margin-top: auto;
}

@container (max-width: 1000px) {
    .subcat-grid {
        grid-template-columns: 1fr;
    }
}

@container (max-width: 720px) {
    .subcat-grid .cat-card {
        flex-direction: column;
        gap: 16px;
        padding: 22px 18px;
    }

    .subcat-grid .cat-card__img {
        width: 100%;
        flex: 0 0 auto;
        max-width: 280px;
        min-height: 0;
        margin: 0 auto;
    }

    .subcat-grid .cat-card__body {
        width: 100%;
    }

    .subcat-grid .cat-card__img img {
        max-height: none;
    }

    .subcat-grid .cat-card__title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .subcat-grid .cat-card__more {
        width: 100%;
        text-align: center;
    }
}

/* --- product grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-item {
    box-shadow: 0 0 0 1px #bfbfbf;
    padding: 24px 24px 22px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.product-item:hover {
    box-shadow: 0 0 0 1px #0fa8ae;
    position: relative;
    z-index: 1;
}

.product-item__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 16px;
    overflow: hidden;
}

.product-item__img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* .product-item__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1.3 / 1;
    height: 260px;
    max-height: 260px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    overflow: hidden;
}

.product-item__img img {
    width: 100%;
    height: 100%;
    object-position: top center;
    object-fit: cover;
} */

.product-item__badge {
    position: absolute;
    top: 6px;
    left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 24px;
    font-size: 12px;
    color: #555;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5b700'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E") no-repeat 7px center / 13px 13px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.product-item__name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 20px;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.product-item__name:hover {
    color: #0fa8ae;
}

.product-item__spec {
    font-size: 12px;
    color: #555;
}

.product-item__desc {
    display: none;
}

.product-item__order-wrap {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.24s ease, opacity 0.2s ease, margin-top 0.24s ease;
}

.product-item:hover .product-item__order-wrap {
    max-height: 48px;
    opacity: 1;
    margin-top: 14px;
}

.product-item__order {
    width: 100%;
    min-height: 38px;
    border: 1px solid #0fa8ae;
    border-radius: 3px;
    background: #0fa8ae;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.product-item__order:hover {
    background: #0d9298;
    border-color: #0d9298;
}

.product-grid--list {
    display: block;
}

.product-grid--list .product-item {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 170px;
    grid-template-rows: auto auto 1fr;
    column-gap: 28px;
    align-items: start;
    margin-bottom: 14px;
    padding: 22px 24px;
}

.product-grid--list .product-item__img {
    grid-row: 1 / 4;
    width: 100%;
    height: 150px;
    margin-bottom: 0;
}

.product-grid--list .product-item__name {
    grid-column: 2;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 22px;
}

.product-grid--list .product-item__spec {
    grid-column: 2;
    margin-bottom: 10px;
}

.product-grid--list .product-item__desc {
    display: block;
    grid-column: 2;
    font-size: 14px;
    line-height: 22px;
    color: #555;
}

.product-grid--list .product-item__desc p {
    margin: 0 0 8px;
}

.product-grid--list .product-item__order-wrap {
    grid-column: 3;
    grid-row: 1;
    max-height: none;
    opacity: 1;
    margin-top: 0;
    overflow: visible;
}

.product-grid--list .product-item__order {
    width: 100%;
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid--list .product-item {
        grid-template-columns: 135px minmax(0, 1fr);
        column-gap: 18px;
    }

    .product-grid--list .product-item__img {
        height: 125px;
    }

    .product-grid--list .product-item__order-wrap {
        grid-column: 2;
        grid-row: auto;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        flex-wrap: wrap;
    }

    .product-view-toggle {
        margin-left: 0;
    }

    .product-grid--list .product-item {
        display: block;
    }

    .product-grid--list .product-item__img {
        height: 180px;
        margin-bottom: 14px;
    }
}

/* --- category description + specs table --- */
.catalog-desc {
    margin-top: 35px;
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

.catalog-desc p {
    margin: 0 0 14px;
}

.catalog-desc ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 14px;
}

.catalog-desc ul li {
    margin-bottom: 6px;
}

.catalog-table-wrap {
    margin-top: 25px;
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.spec-table th {
    background: #0fa8ae;
    color: #fff;
    font-weight: 400;
    text-align: left;
    padding: 8px 10px;
    border: 1px solid #1bb6bc;
    white-space: nowrap;
}

.spec-table td {
    padding: 8px 10px;
    color: #555;
    border: 1px solid #e2e2e2;
    text-align: left;
}

.spec-table tbody tr:nth-child(even) td {
    background: #f7f7f7;
}

/* ===== Complex detail (gallery + tabs + lightbox) ===== */
.kompleks-top {
    display: flex;
    gap: 35px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.kompleks-gallery {
    flex: 0 0 490px;
    max-width: 490px;
}

.kompleks-slider {
    position: relative;
    border: 1px solid #e6e6e6;
}

.kompleks-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #fff;
}

.kompleks-slider__arrow {
    width: 34px;
    height: 44px;
    margin-top: -22px;
    color: #333;
    background: transparent;
    border: none;
    transition: color 0.2s, opacity 0.2s;
    opacity: 0.65;
}

.kompleks-slider__arrow:hover {
    color: #0fa8ae;
    opacity: 1;
}

.kompleks-slider .swiper-button-prev {
    left: 10px;
}

.kompleks-slider .swiper-button-next {
    right: 10px;
}

.kompleks-slider__arrow::after {
    font-size: 24px;
    font-weight: 700;
}

.kompleks-slider .swiper-pagination {
    position: static;
    padding: 12px 0;
}

.kompleks-slider .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #ccc;
    opacity: 1;
}

.kompleks-slider .swiper-pagination-bullet-active {
    background: #0fa8ae;
}

.kompleks-slider__full {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.kompleks-slider__full:hover {
    background: #0fa8ae;
}

/* info to the right of slider */
.kompleks-info {
    flex: 1 1 auto;
    padding-top: 6px;
}

.kompleks-info__status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #555;
}

.kompleks-info__check {
    color: #3bb54a;
    font-weight: 700;
}

.kompleks-info__divider {
    height: 1px;
    background: #e6e6e6;
    margin: 16px 0 22px;
}

.kompleks-info__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kompleks-info__btn {
    display: inline-block;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    padding: 13px 26px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.kompleks-info__btn--primary {
    background: #0fa8ae;
    color: #fff;
}

.kompleks-info__btn--primary:hover {
    background: #0d9298;
    color: #fff;
}

.kompleks-info__btn--outline {
    background: #eafaf6;
    color: #0fa8ae;
}

.kompleks-info__btn--outline:hover {
    background: #0fa8ae;
    color: #fff;
}

/* tabs */
.tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 25px;
}

.tabs__tab {
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    border-bottom: none;
    font-family: inherit;
    font-size: 15px;
    color: #555;
    padding: 12px 22px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.tabs__tab:hover {
    color: #0fa8ae;
}

.tabs__tab.is-active {
    background: #0fa8ae;
    color: #fff;
    border-color: #0fa8ae;
}

.tabs__panel {
    display: none;
}

.tabs__panel.is-active {
    display: block;
}

.tabs__empty {
    color: #999;
    font-style: italic;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__img {
    max-width: 86vw;
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 40px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox__nav:hover {
    background: #0fa8ae;
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

@media (max-width: 1100px) {
    .kompleks-detail-page .catalog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kompleks-detail-page .catalog-sidebar {
        width: 100%;
        order: 2;
    }

    .kompleks-detail-page .catalog-content {
        order: 1;
    }

    .kompleks-detail-page .catalog-sidebar .ask-block {
        max-width: none;
    }

    .kompleks-top {
        gap: 28px;
    }

    .kompleks-gallery {
        flex-basis: 54%;
        max-width: 54%;
    }

    .kompleks-info {
        min-width: 260px;
    }
}

@media (max-width: 820px) {
    .kompleks-detail-page .service-detail__head {
        display: block;
    }

    .kompleks-detail-page .share--top {
        margin-bottom: 18px;
    }

    .kompleks-top {
        display: block;
    }

    .kompleks-gallery {
        max-width: none;
        margin-bottom: 22px;
    }

    .kompleks-slider .swiper-slide img {
        height: 330px;
    }

    .kompleks-info {
        padding-top: 0;
    }

    .kompleks-info__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kompleks-info__btn {
        width: 100%;
    }

    .tabs__nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 1px;
    }

    .tabs__tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    .kompleks-slider .swiper-slide img {
        height: 260px;
    }

    .kompleks-slider__arrow {
        width: 30px;
        height: 38px;
    }

    .kompleks-slider__full {
        width: 34px;
        height: 34px;
    }

    .kompleks-info__actions {
        grid-template-columns: 1fr;
    }

    .tabs__tab {
        padding: 11px 16px;
        font-size: 14px;
    }

    .detail-footer {
        display: grid;
        gap: 14px;
    }

    .detail-footer .share {
        justify-self: start;
    }

    .lightbox__img {
        max-width: 94vw;
        max-height: 78vh;
    }

    .lightbox__close {
        top: 14px;
        right: 18px;
        font-size: 34px;
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 32px;
    }

    .lightbox__prev {
        left: 12px;
    }

    .lightbox__next {
        right: 12px;
    }
}

/* ===== Complexes page (filter + cards) ===== */
.filter {
    border: 1px solid #e6e6e6;
    padding: 22px 22px 25px;
}

.filter__title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.filter__group {
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.filter__group-title {
    font-size: 15px;
    color: #222;
    margin-bottom: 12px;
}

.filter__check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.filter__check input {
    width: 16px;
    height: 16px;
    accent-color: #0fa8ae;
}

.filter__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.filter__show {
    background: #0fa8ae;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 24px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.filter__show:hover {
    background: #0d9298;
}

.filter__reset {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    color: #0fa8ae;
    cursor: pointer;
    transition: color 0.2s;
}

.filter__reset:hover {
    color: #0d9298;
    text-decoration: underline;
}

.filter__note {
    margin: 22px 4px 0;
    font-size: 13px;
    line-height: 20px;
    color: #999;
}

/* toolbar (sort) */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 22px;
}

.catalog-sort {
    font-family: inherit;
    font-size: 14px;
    color: #555;
    padding: 9px 30px 9px 14px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.product-view-toggle {
    display: inline-flex;
    gap: 5px;
    margin-left: auto;
}

.product-view-toggle__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.product-view-toggle__btn:hover,
.product-view-toggle__btn.is-active {
    color: #0fa8ae;
    border-color: #0fa8ae;
}

.product-view-toggle__grid {
    display: block;
    width: 13px;
    height: 13px;
    background:
        linear-gradient(currentColor, currentColor) 0 0 / 5px 5px no-repeat,
        linear-gradient(currentColor, currentColor) 8px 0 / 5px 5px no-repeat,
        linear-gradient(currentColor, currentColor) 0 8px / 5px 5px no-repeat,
        linear-gradient(currentColor, currentColor) 8px 8px / 5px 5px no-repeat;
}

.product-view-toggle__list {
    display: block;
    width: 16px;
    height: 14px;
    background:
        linear-gradient(currentColor, currentColor) 0 1px / 16px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 6px / 16px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 11px / 16px 2px no-repeat;
}

/* complex cards grid */
.kompleksy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kompleks-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e2e2;
    padding: 35px;
    padding-top: 50px;
    transition: box-shadow 0.2s;
}

.kompleks-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.kompleks-card__link {
    display: block;
    flex: 1 1 auto;
}

.kompleks-card__img {
    position: relative;
    height: 170px;
    margin-bottom: 16px;
}

.kompleks-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kompleks-card__badge {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 12px;
    color: #777;
    white-space: nowrap;
}

.kompleks-card__status {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    color: #777;
}

.kompleks-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    color: #222;
    transition: color 0.2s;
}

.kompleks-card:hover .kompleks-card__title {
    color: #0fa8ae;
}

.kompleks-card__order {
    align-self: flex-start;
    margin-top: 18px;
    padding: 11px 24px;
    border: 1px solid #0fa8ae;
    border-radius: 3px;
    background: #0fa8ae;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s, background 0.2s;
}

.kompleks-card:hover .kompleks-card__order,
.kompleks-card:focus-within .kompleks-card__order {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.kompleks-card__order:hover {
    background: #0d9298;
}

.kompleksy-grid--list {
    display: block;
}

.kompleksy-grid--list .kompleks-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 170px;
    grid-template-rows: auto 1fr;
    column-gap: 28px;
    align-items: start;
    margin-bottom: 14px;
    padding: 40px;
}

.kompleksy-grid--list .kompleks-card__link {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    grid-column: 1 / 3;
    column-gap: 28px;
}

.kompleksy-grid--list .kompleks-card__img {
    grid-row: 1 / 3;
    height: 150px;
    margin-bottom: 0;
}

.kompleksy-grid--list .kompleks-card__title {
    grid-column: 2;
    margin-top: 0;
    font-size: 16px;
    line-height: 22px;
}

.kompleksy-grid--list .kompleks-card__status {
    grid-column: 2;
}

.kompleksy-grid--list .kompleks-card__order {
    grid-column: 3;
    grid-row: 1;
    width: 100%;
    margin-top: 0;
    opacity: 1;
    transform: none;
    visibility: visible;
}

@media (max-width: 1000px) {
    .kompleksy-page .catalog-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kompleksy-page .catalog-sidebar {
        width: 100%;
    }

    .filter {
        padding: 20px;
        border: 1px solid #e6e6e6;
    }

    .filter__actions {
        flex-wrap: wrap;
    }

    .filter__note {
        margin: 14px 0 0;
    }

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

    .kompleks-card {
        padding: 28px;
        padding-top: 42px;
    }

    .kompleks-card__order {
        opacity: 1;
        transform: none;
        visibility: visible;
    }
}

@media (max-width: 640px) {
    .catalog-toolbar {
        margin-bottom: 18px;
    }

    .catalog-sort {
        width: 100%;
    }

    .kompleksy-grid {
        grid-template-columns: 1fr;
    }

    .kompleks-card {
        padding: 22px;
        padding-top: 38px;
    }

    .kompleks-card__img {
        height: 190px;
    }

    .kompleks-card__order {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .kompleksy-grid--list .kompleks-card {
        grid-template-columns: 150px minmax(0, 1fr);
        column-gap: 18px;
    }

    .kompleksy-grid--list .kompleks-card__link {
        grid-template-columns: 150px minmax(0, 1fr);
        grid-column: 1 / 3;
        column-gap: 18px;
    }

    .kompleksy-grid--list .kompleks-card__img {
        height: 125px;
    }

    .kompleksy-grid--list .kompleks-card__order {
        grid-column: 2;
        grid-row: 2;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {

    .kompleksy-grid--list .kompleks-card,
    .kompleksy-grid--list .kompleks-card__link {
        display: block;
    }

    .kompleksy-grid--list .kompleks-card__img {
        height: 180px;
        margin-bottom: 14px;
    }

    .kompleksy-grid--list .kompleks-card__order {
        margin-top: 14px;
    }
}

@media (max-width: 420px) {
    .filter__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter__show,
    .filter__reset {
        width: 100%;
    }

    .kompleks-card__img {
        height: 165px;
    }
}

/* ===== Service detail page ===== */
.service-detail__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

/* sidebar ask block */
.ask-block {
    margin-top: 20px;
    padding: 28px 25px;
    background: #f5f5f5;
    text-align: center;
}

.ask-block__icon {
    display: inline-block;
    margin-bottom: 14px;
}

.ask-block__icon svg {
    display: block;
    width: 90px;
    height: auto;
}

.ask-block__text {
    font-size: 14px;
    line-height: 20px;
    color: #777;
    margin: 0 0 18px;
}

.ask-block__btn {
    display: inline-block;
    background: transparent;
    color: #0fa8ae;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border: 1px solid #0fa8ae;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.ask-block__btn:hover {
    background: #0fa8ae;
    color: #fff;
}

/* detail text content */
.detail-text {
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

.detail-text p {
    margin: 0 0 16px;
}

.detail-text__divider {
    height: 2px;
    background: #0fa8ae;
    margin: 22px 0 26px;
}

.detail-text__h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 28px 0 16px;
}

.detail-text h2 {
    margin-bottom: 16px;
}

/* license detail page */
.license-page-wrap {
    padding-top: 28px;
}

.license-page__breadcrumbs {
    margin-bottom: 28px;
}

.license-page__title {
    color: #1f1f1f;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 34px;
}

.license-page__subtitle {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 18px;
}

/* sitemap page */
.sitemap-page {
    padding-bottom: 70px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 48px;
}

.sitemap-section {
    min-width: 0;
}

.sitemap-section__title {
    margin: 0 0 16px;
    color: #222;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.sitemap-section__title a {
    color: inherit;
}

.sitemap-section__title a:hover,
.sitemap-list a:hover {
    color: #0fa8ae;
}

.sitemap-list,
.sitemap-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-list li {
    position: relative;
    margin: 0 0 9px;
    padding-left: 17px;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.sitemap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0fa8ae;
}

.sitemap-list a {
    color: #333;
}

.sitemap-list ul {
    margin-top: 9px;
    padding-left: 18px;
}

.sitemap-list ul li {
    margin-bottom: 7px;
}

.sitemap-list ul li::before {
    background: #cfcfcf;
}

.sitemap-list--catalog>li {
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.detail-text__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.detail-text__list>li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.detail-text__list>li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0fa8ae;
}

.detail-text__list ul {
    list-style: none;
    margin: 8px 0 0;
    padding-left: 18px;
}

.detail-text__list ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.detail-text__list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bbb;
}

/* left-aligned projects table */
.spec-table--left th {
    text-align: left;
}

.spec-table--left td {
    vertical-align: top;
    font-size: 14px;
}

.spec-table__name {
    font-weight: 700;
    color: #222;
    max-width: 360px;
}

.spec-table__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.spec-table__list li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
}

.spec-table__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0fa8ae;
}

/* order block */
.order-block {
    margin-top: 35px;
    padding: 28px 35px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.order-block__text {
    margin: 0;
    font-size: 16px;
    color: #333;
    flex: 1 1 300px;
}

.order-block__btn {
    flex-shrink: 0;
    background: #0fa8ae;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 3px;
    transition: background 0.2s;
}

.order-block__btn:hover {
    background: #0d9298;
    color: #fff;
}

/* detail footer: back + share */
.detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.detail-footer__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #555;
    transition: color 0.2s;
}

.detail-footer__back:hover {
    color: #0fa8ae;
}

.detail-footer__arrow {
    font-size: 18px;
    color: #0fa8ae;
}

/* share button + dropdown */
.share {
    position: relative;
}

.share__btn {
    background: none;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    padding: 10px 18px;
    font-family: inherit;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.share__btn--icon {
    padding: 6px;
    border: none;
    color: #999;
}

.share__btn:hover {
    color: #0fa8ae;
    border-color: #0fa8ae;
}

.share__menu {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 8px;
    padding: 6px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 20;
}

.share--top .share__menu {
    top: 100%;
    bottom: auto;
    transform: translateY(-6px);
}

.share:hover .share__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share__net {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    background: var(--share-color, #0fa8ae);
    color: #fff;
    text-decoration: none;
}

.share__net:hover {
    opacity: 0.85;
}

.share__net svg {
    width: 18px;
    height: 18px;
    display: block;
}

.share__net-text {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.product-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid #ececec;
}

.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #dedede;
    border-radius: 3px;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s, border-color 0.2s;
}

.product-back-link__icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-back-link:hover {
    color: #0fa8ae;
    border-color: #0fa8ae;
}

.prod-tabs__panel.detail-text a {
    color: #0fa8ae;
}

.prod-tabs__panel.detail-text a:hover {
    color: #0d9298;
}

.prod-tabs__panel.detail-text a.prod-btn--download,
.prod-tabs__panel.detail-text a.prod-btn--download:hover {
    color: #fff;
}

.product-card-download {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 24px;
}

/* ===== Services page ===== */
.service-card {
    padding: 15px 25px;
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid #bfbfbf;
    margin-bottom: 25px;
    min-height: 185px;
}

.service-card__icon {
    flex: 0 0 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0fa8ae;
    overflow: hidden;
    transition: background 0.2s;
}

.service-card__icon:hover {
    background: #f2f2f2;
}

.service-card__icon img {
    transform: scale(1.3);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-card__body {
    flex: 1 1 auto;
    padding: 15px 40px;
}

.service-card__title {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.service-card__title:hover {
    color: #0fa8ae;
}

.service-card__desc {
    font-size: 15px;
    line-height: 24px;
    color: #555;
    margin: 0 0 20px;
}

.service-card__more {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    padding: 13px 24px;
    border: 1px solid #bfbfbf;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.service-card__more:hover {
    background: #0fa8ae;
    border-color: #0fa8ae;
    color: #fff;
}

.service-card__more .cat-card__arrow {
    color: inherit;
}

/* ===== Contacts page ===== */
.contacts-page {
    padding: 30px 0 60px;
}

.contacts-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 28px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* --- contact info --- */
.contacts-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contacts-info__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0fa8ae;
    border-radius: 8px;
}

.contacts-info__icon-img {
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
}

.contacts-info__body {
    font-size: 15px;
    line-height: 22px;
    color: #555;
    padding-top: 2px;
}

.contacts-info__title {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.contacts-info__label {
    font-size: 13px;
    color: #222;
    margin-bottom: 3px;
}

.contacts-info__body a {
    display: inline-block;
    color: #0fa8ae;
    transition: color 0.2s;
}

.contacts-info__body>a {
    display: block;
}

.contacts-info__body a:hover {
    color: #0d9298;
}

.contacts-info__msgr {
    font-size: 14px;
}

/* --- map --- */
.contacts-map {
    margin-bottom: 35px;
    line-height: 0;
    border: 1px solid #e6e6e6;
}

.contacts-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.contacts-section-title {
    font-size: 24px;
    font-weight: 400;
    color: #222;
    margin: 0 0 22px;
}

/* --- departments --- */
.contacts-depts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
    margin-bottom: 45px;
}

.contacts-dept__name {
    font-size: 16px;
    color: #222;
    margin-bottom: 6px;
}

.contacts-dept__phone {
    font-size: 16px;
    color: #0fa8ae;
    transition: color 0.2s;
}

.contacts-dept__phone:hover {
    color: #0d9298;
}

.contacts-dept__phone-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.contacts-dept__ext {
    font-size: 16px;
    color: #222;
}

/* --- requisites --- */
.contacts-requisites__row {
    display: flex;
    gap: 20px;
    padding: 7px 0;
    font-size: 14px;
    line-height: 20px;
}

.contacts-requisites__label {
    flex: 0 0 280px;
    color: #999;
}

.contacts-requisites__value {
    color: #333;
}

/* --- contact form --- */
.contact-form {
    margin-top: 35px;
}

.contact-form__title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 22px;
}

.contact-form__row {
    position: relative;
    margin-bottom: 14px;
}

.contact-form__select,
.contact-form__input,
.contact-form__textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    transition: border-color 0.2s;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form__row--placeholder .contact-form__input::placeholder,
.contact-form__row--placeholder .contact-form__textarea::placeholder {
    color: transparent;
}

.contact-form__placeholder {
    position: absolute;
    top: 12px;
    left: 14px;
    color: #777;
    font-size: 14px;
    line-height: 20px;
    pointer-events: none;
    transition: opacity 0.15s;
}

.contact-form__placeholder b {
    color: #e35454;
    font-weight: 700;
}

.contact-form__row--placeholder:focus-within .contact-form__placeholder,
.contact-form__row--placeholder:has(.contact-form__input:not(:placeholder-shown)) .contact-form__placeholder,
.contact-form__row--placeholder:has(.contact-form__textarea:not(:placeholder-shown)) .contact-form__placeholder {
    opacity: 0;
}

.contact-form__select:focus,
.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #0fa8ae;
    background: #fff;
}

.contact-form__input.is-error,
.contact-form__select.is-error,
.contact-form__textarea.is-error {
    border-color: #e35454;
    background: #fff5f5;
}

.contact-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 4px 0 18px;
    font-size: 13px;
    color: #777;
    cursor: pointer;
}

.contact-form__agree input {
    margin-top: 2px;
}

.contact-form__agree.is-error span {
    color: #e35454;
}

.contact-form__agree a {
    color: #0fa8ae;
}

.contact-form__agree span::after {
    content: " *";
    color: #e35454;
    font-weight: 700;
}

.captcha-field {
    margin-bottom: 16px;
}

.captcha-field__box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-field__img {
    width: 130px;
    height: 42px;
    object-fit: contain;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.captcha-field__refresh {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #0fa8ae;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.captcha-field__refresh:hover {
    border-color: #0fa8ae;
    color: #0d9298;
}

.captcha-field .contact-form__input {
    max-width: 220px;
}

.contact-form__submit {
    display: inline-block;
    background: #0fa8ae;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 35px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form__submit:hover {
    background: #0d9298;
}

.contact-form__submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.contact-form__success {
    margin-top: 14px;
    padding: 12px 16px;
    background: #eafaf6;
    border: 1px solid #0fa8ae;
    border-radius: 3px;
    color: #0d8a8f;
    font-size: 14px;
}

.contact-form__success.is-error {
    background: #fff5f5;
    border-color: #e35454;
    color: #b23434;
}

/* ===== Home consultation form ===== */
.home-consultation {
    padding: 54px 0 62px;
    background: #fff;
}

.home-consultation__inner {
    margin: 0;
    padding: 38px 42px 40px;
    background: #fff;
}

.home-consultation__title {
    margin: 0 0 60px;
    color: #222;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.home-consultation__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-consultation__bottom {
    margin-top: 4px;
}

.home-consultation__bottom .captcha-field {
    margin-bottom: 18px;
}

.home-consultation__submit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-consultation__submit .contact-form__agree {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
    text-align: left;
}

.home-consultation__submit .contact-form__success {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 900px) {
    .home-consultation {
        padding: 38px 0 44px;
    }

    .home-consultation__inner {
        padding: 28px 22px 30px;
    }

    .home-consultation__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 1100px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contacts-col-left {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 34px;
        align-items: start;
    }

    .contact-form {
        margin-top: 0;
    }

    .contacts-map iframe {
        height: 360px;
    }

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

@media (max-width: 1000px) {
    .contacts-page {
        padding: 24px 0 48px;
    }

    .contacts-page__title {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .contacts-col-left {
        display: block;
    }

    .contact-form {
        margin-top: 30px;
    }

    .contacts-info__item {
        gap: 13px;
        margin-bottom: 20px;
    }

    .contacts-info__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 7px;
    }

    .contacts-map iframe {
        height: 320px;
    }

    .contacts-section-title,
    .contact-form__title {
        font-size: 22px;
    }

    .contacts-depts {
        grid-template-columns: 1fr 1fr;
        gap: 18px 16px;
        margin-bottom: 36px;
    }

    .contacts-requisites__row {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #ededed;
    }

    .contacts-requisites__label {
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .contacts-page__title {
        font-size: 26px;
    }

    .contacts-info__item {
        gap: 12px;
    }

    .contacts-info__body,
    .contacts-dept__phone,
    .contacts-requisites__row {
        font-size: 14px;
    }

    .contacts-depts {
        grid-template-columns: 1fr;
    }

    .contacts-dept__name:empty,
    .contacts-dept__name {
        min-height: 0;
    }

    .contacts-map iframe {
        height: 280px;
    }

    .captcha-field__box {
        flex-wrap: wrap;
    }

    .contact-form__submit {
        width: 100%;
    }
}

/* --- callback popup --- */
.callback-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.callback-popup[hidden] {
    display: none;
}

.callback-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.callback-popup__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.28);
}

.callback-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #777;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    transition: color 0.2s;
}

.callback-popup__close:hover {
    color: #0fa8ae;
}

.callback-popup__form {
    margin: 0;
    padding: 38px 42px 40px;
}

.callback-popup__text {
    margin: -8px 0 22px;
    font-size: 14px;
    line-height: 22px;
    color: #777;
}

.callback-popup__label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 18px;
    color: #555;
}

.callback-popup__label span,
.callback-popup__required {
    color: #e35454;
    font-weight: 700;
}

.product-form-popup__dialog {
    max-width: 520px;
}

.product-form-popup__product {
    background: #f7f7f7;
    color: #555;
}

.product-form-popup .contact-form__row--icon .contact-form__input,
.product-form-popup .contact-form__row--icon .contact-form__textarea,
.resume-popup .contact-form__row--icon .contact-form__input,
.resume-popup .contact-form__row--icon .contact-form__textarea,
.contacts-page .contact-form__row--icon .contact-form__input,
.contacts-page .contact-form__row--icon .contact-form__textarea {
    padding-right: 46px;
}

.product-form-popup .contact-form__row--icon::after,
.resume-popup .contact-form__row--icon::after,
.contacts-page .contact-form__row--icon::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 38px;
    width: 18px;
    height: 18px;
    background-color: #9aa6ae;
    pointer-events: none;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.product-form-popup .contact-form__row--icon-message::after,
.resume-popup .contact-form__row--icon-message::after {
    top: 40px;
}

.contacts-page .contact-form__row--icon::after,
.contacts-page .contact-form__row--icon-message::after {
    top: 14px;
}

.product-form-popup .contact-form__row--icon-name::after,
.resume-popup .contact-form__row--icon-name::after,
.contacts-page .contact-form__row--icon-name::after {
    background-color: #b3b3b3;
    -webkit-mask-image: url('/images/svg/form-user.svg');
    mask-image: url('/images/svg/form-user.svg');
}

.product-form-popup .contact-form__row--icon-phone::after,
.resume-popup .contact-form__row--icon-phone::after,
.contacts-page .contact-form__row--icon-phone::after {
    -webkit-mask-image: url('/images/svg/Phone_black.svg');
    mask-image: url('/images/svg/Phone_black.svg');
}

.product-form-popup .contact-form__row--icon-email::after,
.resume-popup .contact-form__row--icon-email::after,
.contacts-page .contact-form__row--icon-email::after {
    background-color: #b3b3b3;
    -webkit-mask-image: url('/images/svg/svg-email.svg');
    mask-image: url('/images/svg/svg-email.svg');
}

.product-form-popup .contact-form__row--icon-message::after,
.resume-popup .contact-form__row--icon-message::after,
.contacts-page .contact-form__row--icon-message::after {
    -webkit-mask-image: url('/images/svg/form-message.svg');
    mask-image: url('/images/svg/form-message.svg');
}

@media (max-width: 560px) {
    .product-form-popup .callback-popup__form {
        padding: 34px 24px 30px;
    }
}

/* --- region city popup --- */
.region-confirm {
    position: fixed;
    z-index: 3400;
    width: min(360px, calc(100% - 32px));
    padding: 20px 22px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.region-confirm[hidden] {
    display: none;
}

.region-confirm__text {
    margin-bottom: 16px;
    color: #222;
    font-size: 16px;
    line-height: 22px;
}

.region-confirm__actions {
    display: flex;
    gap: 10px;
}

.region-confirm__yes,
.region-confirm__change {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 3px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.region-confirm__yes {
    border: 1px solid #0fa8ae;
    background: #0fa8ae;
    color: #fff;
}

.region-confirm__change {
    border: 1px solid #0fa8ae;
    background: #0fa8ae;
    color: #fff;
}

.region-confirm__yes:hover,
.region-confirm__change:hover {
    border-color: #0d9298;
    background: #0d9298;
    color: #fff;
}

@media (max-width: 767px) {
    .region-confirm {
        width: min(360px, calc(100% - 24px));
    }

    .region-confirm__actions {
        flex-wrap: wrap;
    }
}

.region-popup {
    position: fixed;
    inset: 0;
    z-index: 3500;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 24px;
}

.region-popup[hidden] {
    display: none;
}

.region-popup__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
}

.region-popup__content {
    position: relative;
    width: min(100%, 560px);
    padding: 32px 36px 34px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.region-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
}

.region-popup__header {
    margin-bottom: 22px;
    color: #222;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.region-popup__search {
    position: relative;
    margin-bottom: 22px;
}

.region-popup__search input {
    width: 100%;
    height: 46px;
    padding: 0 42px 0 16px;
    border: 1px solid #d8d8d8;
    color: #333;
    font-family: inherit;
    font-size: 15px;
}

.region-popup__search input:focus {
    outline: none;
    border-color: #0fa8ae;
}

.region-popup__clean {
    position: absolute;
    top: 6px;
    right: 7px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 22px;
    cursor: pointer;
}

.region-popup__options {
    display: none;
    position: absolute;
    z-index: 3;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 230px;
    overflow-y: auto;
    border: 1px solid #e3e3e3;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.region-popup__option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    color: #555;
    font-family: inherit;
    font-size: 14px;
    line-height: 19px;
    text-align: left;
    cursor: pointer;
}

.region-popup__option span {
    color: #222;
    font-weight: 700;
}

.region-popup__option:hover {
    background: #f5fafa;
    color: #0fa8ae;
}

.region-popup__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-popup__quick-item {
    padding: 11px 16px;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #222;
    font-family: inherit;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.region-popup__quick-item:hover {
    border-color: #0fa8ae;
    background: #0fa8ae;
    color: #fff;
}

/* ===== News page ===== */
.news-page {
    padding: 30px 0 60px;
}

.news-years {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
}

.news-years__item {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    color: #555;
    padding: 10px 2px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.news-years__item:hover {
    color: #0fa8ae;
}

.news-years__item.is-active {
    color: #0fa8ae;
    border-bottom-color: #0fa8ae;
}

.news-body {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

.news-main {
    flex: 1 1 auto;
    min-width: 0;
}

.news-aside {
    flex: 0 0 250px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
}

.news-item {
    background: #f5f5f5;
    padding: 16px;
    cursor: pointer;
}

.news-item:hover .news-item__title {
    color: #0fa8ae;
}

.news-item__img {
    display: block;
    margin-bottom: 14px;
}

.news-item__img-box {
    height: 175px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-item__img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.news-item__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 21px;
    color: #222;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.news-item__title:hover {
    color: #0fa8ae;
}

.news-item__desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 0.933em;
    line-height: 20px;
    color: #555;
}

.news-item__meta {
    font-size: 12px;
    color: #555;
}

.news-item__label {
    color: #aaa;
    margin-left: 6px;
}

.news-empty {
    padding: 40px 0;
    color: #999;
    font-size: 15px;
}

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 38px;
}

.news-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e2e2e2;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-pagination__btn:hover {
    border-color: #0fa8ae;
    color: #0fa8ae;
}

.news-pagination__btn.is-active {
    background: #0fa8ae;
    border-color: #0fa8ae;
    color: #fff;
}

.news-pagination__btn:disabled {
    cursor: default;
    opacity: 0.45;
}

.news-pagination__btn.is-disabled {
    cursor: default;
    opacity: 0.45;
    pointer-events: none;
}

.news-pagination__btn:disabled:hover {
    border-color: #e2e2e2;
    color: #555;
}

.news-pagination__arrow {
    font-size: 22px;
    line-height: 1;
    padding-bottom: 3px;
}

.news-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 40px;
    color: #999;
    font-size: 14px;
}

@media (max-width: 1000px) {
    .news-body {
        flex-direction: column;
        gap: 34px;
    }

    .news-main,
    .news-aside {
        width: 100%;
    }

    .news-aside {
        flex: 0 0 auto;
        order: 2;
    }

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

    .news-aside .ask-block {
        max-width: none;
    }
}

@media (max-width: 400px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== News detail page ===== */
.news-detail__title {
    max-width: 1030px;
}

.news-detail__grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 230px;
    gap: 28px 20px;
    align-items: start;
    margin-top: 10px;
}

.news-detail__image {
    display: block;
    aspect-ratio: 9 / 12;
    background: #f5f5f5;
    overflow: hidden;
    cursor: pointer;
}

.news-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.news-detail__grid--no-image .news-detail__content {
    grid-column: 1 / 3;
}

.news-detail__date {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 18px;
    color: #777;
}

.news-detail__aside .ask-block {
    margin-top: 0;
}

.news-detail__bottom {
    max-width: calc(100% - 270px);
    margin-top: 28px;
}

.order-block__icon {
    flex: 0 0 auto;
}

.news-detail__footer {
    padding-top: 34px;
    margin-top: 64px;
    border-top: 1px solid #eee;
}

.news-inline-image {
    max-width: 100%;
    height: auto;
    margin: 8px 10px 12px 0;
}

.news-image-popup {
    cursor: pointer;
}

.news-detail__content .news-image-popup {
    width: calc((100% - 24px) / 3);
    max-width: 446px;
    height: auto;
    margin: 8px 4px 12px;
    vertical-align: top;
}

.news-image-popup:hover,
.news-gallery__item:hover,
.news-detail__image:hover {
    opacity: 0.92;
}

.news-gallery {
    clear: both;
    margin-top: 28px;
}

.news-documents {
    margin-top: 24px;
}

.news-documents .news-gallery__title {
    margin-top: 18px;
}

.news-gallery hr {
    border: 0;
    border-top: 1px solid #ececec;
    margin: 0 0 22px;
}

.news-gallery__title {
    margin: 0 0 20px;
    color: #222;
    font-size: 20px;
    font-weight: 700;
}

.news-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.news-gallery__item {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 0.5 / 0.72;
}

.news-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s;
}

.news-gallery__item:hover img {
    transform: scale(1.04);
}

@media (max-width: 1050px) {
    .news-detail__grid {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .news-detail__grid--no-image .news-detail__content {
        grid-column: 1 / -1;
    }

    .news-detail__aside {
        grid-column: 1 / -1;
        max-width: 335px;
    }

    .news-detail__bottom {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .news-detail__grid {
        grid-template-columns: 1fr;
    }

    .news-detail__image {
        max-width: 420px;
    }

    .news-detail__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .news-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-detail__content .news-image-popup {
        width: calc((100% - 14px) / 2);
    }
}

@media (max-width: 767px) {
    .news-detail__aside {
        display: none;
    }

    .news-detail__image {
        width: 100%;
        max-width: none;
        aspect-ratio: auto;
    }

    .news-detail__image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 420px) {
    .news-gallery__grid {
        grid-template-columns: 1fr;
    }

    .news-detail__content .news-image-popup {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===== Footer ===== */
.site-footer {
    background: #2e2e2f;
    color: #969ba5;
    font-size: 15px;
    margin-top: 50px;
}

.site-footer__cols {
    display: grid;
    grid-template-columns: minmax(110px, 0.8fr) minmax(260px, 1.8fr) minmax(180px, 1fr) minmax(160px, 1fr) minmax(220px, 1.15fr);
    gap: 30px;
    padding: 45px 0 40px;
}

.footer-col {
    min-width: 0;
}

.footer-col__title {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

a.footer-col__title {
    transition: color 0.2s;
}

a.footer-col__title:hover {
    color: #0fa8ae;
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__list a {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 18px;
    transition: color 0.2s;
    overflow-wrap: anywhere;
}

.footer-col__list a:hover {
    color: #fff;
}

/* contacts */
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #b0b0b0;
    transition: color 0.2s;
}

.footer-contact:hover {
    color: #fff;
}

.footer-col--contacts .footer-contact,
.footer-col--contacts .footer-contact__text,
.footer-col--contacts .footer-col__sitemap {
    color: #fff;
}

.footer-col--contacts>.footer-contact .footer-contact__text {
    font-size: 15px;
}

.footer-col--contacts .footer-messengers .footer-contact__text {
    font-size: 14px;
}

.footer-col--contacts .footer-col__sitemap {
    color: #969ba5;
    font-size: 15px;
}

.footer-col--contacts .footer-contact:hover,
.footer-col--contacts .footer-contact:hover .footer-contact__text,
.footer-col--contacts .footer-col__sitemap:hover {
    color: #969ba5;
}

.footer-contact__icon {
    color: #fff;
    margin-top: 2px;
}

.footer-contact__text {
    font-size: 14px;
    line-height: 18px;
    overflow-wrap: anywhere;
}

.footer-contact__text--strong {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-messengers {
    margin: 25px 0 14px;
}

.footer-msgr {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: block;
}

.footer-col__sitemap {
    display: inline-block;
    margin-top: 6px;
    color: #0fa8ae;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col__sitemap:hover {
    color: #fff;
}

/* bottom bar */
.site-footer__bottom {
    border-top: 1px solid #555;
}

.site-footer__bottom .maxwidth-theme {
    padding-top: 43px;
    padding-bottom: 20px;
}

.site-footer__copy {
    display: block;
    color: #a7a7a7;
    font-size: 13px;
    line-height: 18px;
}

.site-footer__policy {
    display: inline-block;
    color: #0fa8ae;
    font-size: 13px;
    line-height: 18px;
    transition: color 0.2s;
}

.site-footer__policy:hover {
    color: #fff;
}

/* ===== Company / About page ===== */
.company-menu {
    background: #f9f9f9;
    list-style: none;
    margin: 0;
    padding: 0;
}

.company-menu__item {
    position: relative;
    margin: 0;
}

.company-menu__item::after {
    content: "";
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    margin: 0 30px;
    background: #e5e5e5;
}

.company-menu__item:last-child::after {
    display: none;
}

.company-menu__link {
    display: block;
    padding: 18px 30px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #222;
    background: transparent;
    transition: color 0.2s, background 0.2s;
}

.company-menu__link:hover {
    color: #222;
    background: #fff;
}

.company-menu__link.is-active {
    color: #11c3ca;
    background: transparent;
}

.company-menu__link.is-active:hover {
    color: #11c3ca;
    background: #fff;
}

.company-video {
    margin: 0 0 28px;
}

.company-video video {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    background: #000;
}

.company-video__title {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #555;
}

.company-download {
    display: inline-block;
    margin: 8px 0 24px;
    padding: 9px 20px 11px;
    background: #0fa8ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #0fa8ae;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
}

.company-download:hover {
    background: #0a8a8f;
    border-color: #0a8a8f;
}

.company-slogan {
    font-size: 15px;
    color: #555;
    text-align: center;
    font-weight: 700;
}

.company-menu__note {
    margin: 0;
    padding: 22px 0 0 30px;
    font-size: 15px;
    line-height: 22px;
    color: #555;
    font-style: italic;
}

/* ===== Diplomes page ===== */
.diplomes-page {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.diplomes-section__title {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 34px;
    color: #222;
}

.diplomes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.diplome-card {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.diplome-card__image {
    position: relative;
    height: 270px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.diplome-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.diplome-card__full {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e2e2;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.diplome-card__full:hover {
    color: #0fa8ae;
    border-color: #0fa8ae;
}

.diplome-card__title {
    margin: 0;
    padding: 16px 18px 18px;
    font-size: 14px;
    line-height: 20px;
    color: #333;
}

.diplomes-lightbox__frame {
    position: relative;
    max-width: 86vw;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.diplomes-lightbox {
    opacity: 0;
    transition: opacity 0.22s ease;
}

.diplomes-lightbox.is-open {
    opacity: 1;
}

.diplomes-lightbox.is-open .diplomes-lightbox__frame {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.diplomes-lightbox.is-closing {
    opacity: 0;
}

.diplomes-lightbox .lightbox__img {
    display: block;
    max-width: 86vw;
    max-height: calc(86vh - 42px);
    background: #fff;
}

.diplomes-lightbox .lightbox__close {
    top: -16px;
    right: -16px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    opacity: 1;
}

.diplomes-lightbox .lightbox__nav {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #111;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.diplomes-lightbox .lightbox__nav:hover {
    color: #fff;
    background: #111;
}

.diplomes-lightbox .lightbox__prev {
    left: -64px;
}

.diplomes-lightbox .lightbox__next {
    right: -64px;
}

.diplomes-lightbox__caption {
    width: max-content;
    border-radius: 280px;
    min-height: 42px;
    padding: 11px 16px;
    background: #0000009c;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

@media (max-width: 1000px) {
    .diplomes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .diplomes-lightbox .lightbox__prev {
        left: 12px;
    }

    .diplomes-lightbox .lightbox__next {
        right: 12px;
    }
}

@media (max-width: 560px) {
    .diplomes-page {
        gap: 34px;
    }

    .diplomes-section__title {
        font-size: 24px;
        line-height: 30px;
    }

    .diplomes-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .diplome-card__image {
        height: 300px;
    }
}

/* ===== Press articles ===== */
.article-detail-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-detail-stack__image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 760px;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    padding: 18px;
}

.article-detail-stack__image img {
    width: 100%;
    max-height: 770px;
    object-fit: contain;
}

.article-detail-stack__content {
    width: 100%;
}

.article-detail-stack__section .detail-text__h2 {
    margin-top: 0;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.article-gallery__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 10px;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
}

.article-gallery__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.article-files {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.article-files__link {
    display: block;
    padding: 13px 16px;
    border: 1px solid #e5e5e5;
    color: #222;
    background: #f7f7f7;
    transition: color 0.2s, border-color 0.2s;
}

.article-files__link:hover {
    color: #0fa8ae;
    border-color: #0fa8ae;
}

/* ===== Vacancy page ===== */
.vacancy-intro {
    font-size: 15px;
    line-height: 24px;
    color: #555;
    margin: 0 0 28px;
}

.vacancy-accordion {
    margin-bottom: 10px;
}

.vacancy {
    box-shadow: 0 0 0 1px #f5f5f5;
    margin-bottom: 1px;
}

.vacancy__head {
    position: relative;
    padding: 28px 80px 28px 45px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.vacancy__head:hover {
    color: #0fa8ae;
}

.vacancy__chevron {
    position: absolute;
    right: 29px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    color: #222;
    transition: transform 0.3s;
}

.vacancy.is-open .vacancy__chevron {
    transform: translateY(-50%) rotate(180deg);
}

.vacancy__body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.vacancy__inner {
    padding: 0 80px 30px 45px;
}

.vacancy__label {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    margin: 0 0 6px;
}

.vacancy__list {
    list-style: disc;
    padding-left: 18px;
    margin: 0 0 20px;
}

.vacancy__list li {
    font-size: 15px;
    line-height: 24px;
    color: #555;
    margin-bottom: 8px;
}

.vacancy__btn {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 20px 11px;
    background: #0fa8ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #0fa8ae;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.vacancy__btn:hover {
    background: #129ca2;
    border-color: #129ca2;
}

.resume-popup__dialog {
    max-width: 560px;
}

.resume-file__control {
    display: flex;
    align-items: stretch;
    min-height: 44px;
    cursor: pointer;
}

.resume-file__control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.resume-file__name {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    color: #777;
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    border-right: 0;
    border-radius: 3px 0 0 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resume-file__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    color: #fff;
    background: #0fa8ae;
    border: 1px solid #0fa8ae;
    border-radius: 0 3px 3px 0;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* ===== Staff / representatives page ===== */
.staff-card {
    display: flex;
    align-items: flex-start;
    box-shadow: 0 0 0 1px #f5f5f5;
    padding: 20px;
    margin-bottom: 1px;
}

.staff-card__image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    margin-right: 25px;
}

.staff-card__image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.staff-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.staff-card__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.staff-card__title:hover {
    color: #0fa8ae;
}

.staff-card__text {
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

.staff-card__divider {
    border: none;
    border-top: 1px solid #f5f5f5;
    height: 1px;
    margin: 12px 0 18px;
}

.staff-card__email {
    position: relative;
    display: flex;
    align-items: center;
}

.staff-card__email-icon {
    display: flex;
    color: #555;
    margin-right: 9px;
}

.staff-card__email a {
    color: #0fa8ae;
    font-size: 13px;
    transition: color 0.2s;
}

.staff-card__email a:hover {
    color: #0a8a8f;
}

/* ===== Product detail page (1-в-1 с оригиналом: галерея + табы) ===== */
.prod-top {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.prod-gallery-col {
    flex: 0 0 490px;
    max-width: 490px;
}

.prod-info-col {
    flex: 1 1 300px;
    font-size: 15px;
    line-height: 24px;
    color: #555;
    padding-top: 6px;
}

.prod-info-col p {
    margin: 0 0 12px;
}

.prod-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 5px 12px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    background: #f3f3f3;
    border-radius: 999px;
}

.prod-status__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5b700'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.prod-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.prod-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

button.order-block__btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.prod-btn--primary {
    background: #0fa8ae;
    color: #fff;
    border: 1px solid #0fa8ae;
}

.prod-btn--primary:hover {
    background: #0d9298;
    border-color: #0d9298;
}

.prod-btn--outline {
    background: #fff;
    color: #0fa8ae;
    border: 1px solid #0fa8ae;
}

.prod-btn--outline:hover {
    background: #0fa8ae;
    color: #fff;
}

.prod-btn--download {
    background: #0fa8ae;
    color: #fff;
    border: 1px solid #0fa8ae;
}

.prod-btn--download:hover {
    background: #0d9298;
    border-color: #0d9298;
    color: #fff;
}

.prod-btn--spares {
    background: #fff;
    color: #0fa8ae;
    border: 1px solid #0fa8ae;
}

.prod-btn--spares:hover {
    background: #0fa8ae;
    color: #fff;
}

.prod-tabs__panel.detail-text a.prod-btn--spares:hover {
    color: #fff;
}

.prod-preview__more {
    display: table;
    clear: both;
    margin-top: 6px;
    color: #0fa8ae;
    font-weight: 600;
    cursor: pointer;
}

.prod-preview__more:hover {
    color: #0a8a8f;
}

/* tabs */
.prod-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.prod-tabs__tab {
    padding: 18px 25px 17px;
    font-size: 15px;
    font-weight: 700;
    background: #f2f2f2;
    color: #222;
    border: none;
    border-left: 1px solid #bfbfbf;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.prod-tabs__tab:first-child {
    border-left: none;
}

.prod-tabs__tab.is-active {
    background: #0fa8ae;
    color: #fff;
    border-left-color: #0fa8ae;
}

.prod-tabs__panel {
    display: none;
    padding: 24px 2px;
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

.prod-tabs__panel.is-active {
    display: block;
}

.prod-tabs__empty {
    color: #888;
}

.prod-files {
    list-style: none;
    margin: 0;
    padding: 0;
}

.prod-files li {
    margin-bottom: 10px;
}

.prod-files a {
    color: #0fa8ae;
}

.prod-files a:hover {
    color: #0a8a8f;
}

.prod-files--cards {
    max-width: 720px;
}

.prod-file {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    background: #fff;
    color: #222;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.prod-file:hover {
    border-color: #0fa8ae;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    color: #0fa8ae;
}

.prod-file__icon {
    position: relative;
    width: 34px;
    height: 42px;
    flex: 0 0 34px;
    border-radius: 3px;
    background: #e94b4b;
}

.prod-file__icon::before {
    content: "PDF";
    position: absolute;
    left: 5px;
    bottom: 6px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.prod-file__icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid rgba(0, 0, 0, 0.18);
}

.prod-file__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.prod-file__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: inherit;
}

.prod-file__size {
    font-size: 13px;
    line-height: 18px;
    color: #888;
}

.prod-drawings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
    gap: 18px;
    align-items: start;
}

.prod-drawing {
    display: block;
    padding: 14px;
    max-width: 220px;
    border: 1px solid #e2e2e2;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.prod-drawing:hover {
    border-color: #0fa8ae;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.prod-drawing img {
    display: block;
    width: 100%;
    height: auto;
}

.prod-drawing-file {
    display: block;
    color: #0fa8ae;
}

.prod-drawing-file:hover {
    color: #0a8a8f;
}

/* списки в описании (оснащение) — с отступом слева */
.prod-tabs__panel ol {
    list-style: decimal;
    padding-left: 26px;
    margin: 0 0 14px;
}

.prod-tabs__panel ul {
    list-style: none;
    padding-left: 26px;
    margin: 0 0 14px;
}

.prod-tabs__panel li {
    margin-bottom: 5px;
}

/* characteristics table — 2 колонки 50/50, рамка #ddd */
.char-table {
    width: 100%;
    border-collapse: collapse;
}

.char-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    width: 50%;
    font-size: 15px;
    vertical-align: top;
}

.char-table td:first-child {
    background: #f8f9fa;
    font-weight: 700;
}

@media (max-width: 1000px) {
    .catalog-layout {
        display: block;
    }

    .catalog-layout>.catalog-sidebar,
    .catalog-layout>.company-sidebar-with-ask,
    .left-menu-md,
    .hidden-sm.left-menu-md,
    .hidden-xs.left-menu-md {
        display: none;
    }

    .catalog-content {
        width: 100%;
    }

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

    .subcat-grid .cat-card {
        gap: 18px;
        padding: 20px;
    }

    .subcat-grid .cat-card__img {
        width: 170px;
        flex-basis: 170px;
        min-height: 0;
    }

    .subcat-grid .cat-card__title {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 560px) {
    .subcat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .subcat-grid .cat-card {
        flex-direction: column;
        gap: 16px;
        padding: 22px 18px;
    }

    .subcat-grid .cat-card__img {
        width: 100%;
        flex: 0 0 auto;
        min-height: 150px;
    }

    .subcat-grid .cat-card__title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10px;
    }

    .subcat-grid .cat-card__more {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1000px) {
    .advantages-block {
        padding: 42px 0 48px;
    }

    .advantages-block__title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 34px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 26px;
    }

    .advantage-card__title {
        font-size: 20px;
        line-height: 25px;
    }

    .advantage-card__text {
        font-size: 15px;
        line-height: 23px;
    }
}

@media (max-width: 640px) {
    .advantages-block {
        padding: 36px 0 42px;
    }

    .advantages-block__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 28px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .advantage-card {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        column-gap: 16px;
        align-items: start;
    }

    .advantage-card__icon {
        width: 54px;
        height: 54px;
        margin: 0;
        grid-row: span 3;
    }

    .advantage-card__line {
        width: 58px;
        margin: 0 0 10px;
    }

    .advantage-card__title {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .advantage-card__text {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 420px) {
    .advantage-card {
        grid-template-columns: 1fr;
    }

    .advantage-card__icon {
        grid-row: auto;
        margin-bottom: 14px;
    }
}

@media (max-width: 1100px) {
    .site-footer__cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 40px;
        padding: 38px 0 34px;
    }

    .footer-col--contacts {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {

    .catalog-block__title,
    .certs-block__title,
    .news-block__title,
    .company-block__title,
    .advantages-block__title {
        font-size: 28px;
        line-height: 34px;
    }

    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
        gap: 16px;
    }

    .catalog-grid--count-2 {
        grid-template-columns: repeat(2, minmax(0, 300px));
    }

    .product-card {
        padding: 20px 18px 18px;
    }

    .product-card__img {
        height: 170px;
    }
}

@media (max-width: 700px) {
    .site-footer {
        margin-top: 36px;
    }

    .site-footer__cols {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 32px 0 28px;
    }

    .footer-col--contacts {
        grid-column: auto;
    }

    .footer-col__title {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .footer-col__list {
        gap: 8px;
    }

    .footer-col__list a,
    .footer-contact__text {
        font-size: 13px;
        line-height: 18px;
    }

    .footer-contact {
        margin-bottom: 11px;
    }

    .footer-messengers {
        margin: 14px 0 12px;
    }

    .site-footer__bottom .maxwidth-theme {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 560px) {

    .catalog-block__title,
    .certs-block__title,
    .news-block__title,
    .company-block__title,
    .advantages-block__title {
        font-size: 23px;
        line-height: 29px;
        margin-bottom: 24px;
    }

    .catalog-block__title {
        margin-bottom: 16px;
    }

    .catalog-grid,
    .catalog-grid--count-1,
    .catalog-grid--count-2 {
        grid-template-columns: 1fr;
    }

    .product-card__img {
        height: 190px;
    }
}

@media (max-width: 480px) {
    .site-footer__cols {
        gap: 22px;
        padding-top: 28px;
    }

    .footer-col__list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-contact__text--strong {
        font-size: 15px;
    }
}

@media (max-width: 1100px) {

    .hero-swiper,
    .hero-slide {
        height: 470px;
    }

    .hero-slide__inner {
        gap: 32px;
        padding: 0 44px;
    }

    .hero-slide__text {
        flex-basis: 470px;
        padding: 0 0 0 32px;
    }

    .hero-slide__title {
        font-size: 34px;
        line-height: 38px;
    }

    .hero-slide__img {
        max-width: 45%;
    }
}

@media (max-width: 1000px) {
    .catalog-block__more {
        display: none;
    }

    .hero {
        padding: 0;
    }

    .hero-swiper {
        height: auto;
        min-height: 500px;
    }

    .hero-slide {
        height: auto;
        min-height: 500px;
        background-position: center top;
    }

    .hero-slide__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        min-height: 500px;
        padding: 34px 48px 58px;
    }

    .hero-slide__text {
        align-items: center;
        flex: 0 0 auto;
        padding: 0;
        max-width: none;
        text-align: center;
    }

    .hero-slide__title {
        width: 100%;
        max-width: 770px;
        font-size: 40px;
        line-height: 46px;
        font-weight: 400;
        margin: 0;
        padding: 0 0 19px;
        text-align: center;
    }

    .hero-slide__desc {
        max-width: none;
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 21px;
    }

    .hero-slide__desc ul {
        display: inline-block;
        max-width: 100%;
        text-align: center;
    }

    .hero-slide__desc li {
        padding-left: 0;
    }

    .hero-slide__desc li::before {
        position: static;
        display: inline;
        margin-right: 4px;
    }

    .hero-slide__img {
        display: none;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }

    .hero-swiper .swiper-pagination {
        bottom: 18px;
    }
}

@media (max-width: 480px) {

    .hero-swiper,
    .hero-slide,
    .hero-slide__inner {
        min-height: 520px;
    }

    .hero-slide__inner {
        padding: 28px 28px 54px;
    }

    .hero-slide__title {
        font-size: 40px;
        line-height: 46px;
    }

    .hero-slide__desc {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }

    .hero-slide__btn {
        padding: 12px 20px 13px;
    }

    .hero-slide__img {
        min-height: 145px;
    }

    .hero-slide__img img {
        max-height: 190px;
    }
}

/* Staff representative detail page */
.staff-detail {
    color: #555;
    font-size: 15px;
    line-height: 24px;
}

.staff-detail__image {
    margin-bottom: 24px;
    max-width: 245px;
}

.staff-detail__image img {
    display: block;
    width: 100%;
    height: auto;
}

.staff-detail__content p {
    margin: 0 0 18px;
}

.staff-detail__content a {
    color: #0fa8ae;
}

.staff-detail__content a:hover {
    color: #0a8a8f;
}

.staff-detail__content hr {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 22px 0 18px;
}

.staff-detail__footer {
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid #f0f0f0;
    margin-top: 28px;
    padding-top: 18px;
}

.staff-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #222;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
}

.staff-detail__back:hover {
    color: #0fa8ae;
}

.staff-detail__back-arrow {
    color: #0fa8ae;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 767px) {
    .staff-card {
        flex-direction: column;
    }

    .staff-card__image {
        margin-right: 0;
        margin-bottom: 18px;
    }

    .staff-detail__footer {
        justify-content: flex-start;
    }
}

.licenses-section__text {
    margin: 0 0 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.diplome-card__text {
    margin: 10px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
