/* ============================================================
   Шапка и подвал на всех страницах: шрифты, переменные, кнопки
   ============================================================ */

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/cera-pro/CeraPro-Light.woff2") format("woff2"), url("../fonts/cera-pro/CeraPro-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/cera-pro/CeraPro-Medium.woff2") format("woff2"), url("../fonts/cera-pro/CeraPro-Medium.woff") format("woff");
    font-weight: 400 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/cera-pro/CeraPro-Bold.woff2") format("woff2"), url("../fonts/cera-pro/CeraPro-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cera Pro";
    src: url("../fonts/cera-pro/CeraPro-Black.woff2") format("woff2"), url("../fonts/cera-pro/CeraPro-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.layout-2026 {
    --ff: "Cera Pro", Arial, sans-serif;
    --fw-medium: 500;
    --fw-bold: 700;
    --c-ink: #121316;
    --c-ink-2: #1c1d23;
    --c-ink-3: #3a3f45;
    --c-grey: #6e7378;
    --c-line: #e2e2de;
    --c-line-dark: #1c1d23;
    --c-bg-soft: #f6f6f4;
    --c-bg-card: #f4f7f8;
    --c-teal: #17998c;
    --c-teal-btn: #067a8a;
    --c-teal-light: #23bacf;
    --c-deep: #0b2a31;
    --c-green: #3bb300;
    --container: 1792px;
    --gutter: 64px;
    --section-gap: 40px;
    --t-fast: 0.3s ease;
    --t-base: 0.45s ease;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.layout-2026 #container {
    padding-top: 0;
    overflow: clip;
}

.layout-2026 .fh,
.layout-2026 .ff {
    font-family: var(--ff);
    font-weight: var(--fw-medium);
    -webkit-font-smoothing: antialiased;
}

.layout-2026 .fh *,
.layout-2026 .ff * {
    text-transform: none;
    letter-spacing: normal;
    box-sizing: border-box;
}

.layout-2026 :where(.fh ul, .ff ul) {
    margin: 0;
    padding: 0;
    list-style: none;
}

.layout-2026 .fh li::before,
.layout-2026 .ff li::before {
    content: none;
}

.layout-2026 .fh p,
.layout-2026 .ff p {
    margin: 0;
}

.layout-2026 .fh img,
.layout-2026 .ff img {
    display: block;
    max-width: 100%;
    border-radius: 0;
}

.layout-2026 .fh a,
.layout-2026 .ff a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast), opacity var(--t-fast);
}

.layout-2026 .fh button,
.layout-2026 .ff button {
    font-family: inherit;
    cursor: pointer;
}

.layout-2026 .fh__container,
.layout-2026 .ff__container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ------------------------------------------------------------
   Кнопки
   ------------------------------------------------------------ */

.layout-2026 .fbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 38px;
    font-family: var(--ff);
    font-size: 17px;
    font-weight: var(--fw-medium);
    line-height: 1.3;
    white-space: nowrap;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.layout-2026 .fbtn:hover {
    transform: translateY(-1px);
}

.layout-2026 .fbtn--primary {
    background: var(--c-teal-btn);
    color: #fff;
}

.layout-2026 .fbtn--primary:hover {
    background: #056b79;
    color: #fff;
}

.layout-2026 .fbtn--white {
    padding: 22px 40px;
    background: #fff;
    color: var(--c-ink);
}

.layout-2026 .fbtn--white:hover {
    background: #eef0f0;
    color: var(--c-ink);
}

.layout-2026 .fbtn--dark {
    padding: 20px 34px;
    font-size: 16px;
    background: var(--c-ink);
    color: #fff;
}

.layout-2026 .fbtn--dark:hover {
    background: #2a2c31;
    color: #fff;
}

/* ------------------------------------------------------------
   01 Шапка
   ------------------------------------------------------------ */

.layout-2026 .fh {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    color: var(--c-ink);
    transition: box-shadow var(--t-base);
}

.layout-2026.is-scrolled .fh {
    box-shadow: 0 8px 30px rgba(18, 19, 22, 0.08);
}

.layout-2026 .fh__top {
    max-height: 90px;
    overflow: hidden;
    border-bottom: 1px solid var(--c-line);
    transition: max-height var(--t-base), border-color var(--t-base);
}

.layout-2026.is-scrolled .fh__top {
    max-height: 0;
    border-color: transparent;
}

.layout-2026 .fh__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.layout-2026 .fh__info {
    display: flex;
    gap: 72px;
}

.layout-2026 .fh__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--c-ink-3);
    white-space: nowrap;
}

.layout-2026 .fh__contacts {
    display: flex;
    align-items: center;
    gap: 28px;
}

.layout-2026 .fh__phone {
    font-size: 24px;
    font-weight: var(--fw-bold);
    line-height: 1.3;
    white-space: nowrap;
}

.layout-2026 .fh__phone:hover {
    color: var(--c-teal-btn);
}

.layout-2026 .fh__socials {
    display: flex;
    align-items: center;
    gap: 22px;
}

.layout-2026 .fh__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--c-ink);
}

.layout-2026 .fh__social svg,
.layout-2026 .fh__social img {
    width: 26px;
    height: auto;
}

.layout-2026 .fh__social:hover {
    color: var(--c-teal-btn);
}

.layout-2026 .fh__social img {
    filter: invert(1);
}

.layout-2026 .fh__main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 11px;
    padding-bottom: 11px;
}

.layout-2026 .fh__logo {
    display: block;
    flex: 0 0 auto;
}

.layout-2026 .fh__logo-img {
    width: 210px;
    height: 42px;
    object-fit: contain;
}

.layout-2026 .fh__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.layout-2026 .fh__search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--c-ink);
    transition: color var(--t-fast);
}

.layout-2026 .fh__search-toggle:hover {
    color: var(--c-teal-btn);
}

.layout-2026 .fh__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.layout-2026 .fh__menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.layout-2026 .fh__menu > li > a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 0;
    font-size: 17px;
    font-weight: var(--fw-medium);
    letter-spacing: -0.1px;
    line-height: 1.25;
    white-space: nowrap;
    color: var(--c-ink);
}

.layout-2026 .fh__menu > li > a:hover {
    color: var(--c-teal-btn);
}

.layout-2026 .fh__menu > li.menu-item-has-children > a::after {
    content: "";
    width: 8px;
    height: 5px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.3' height='5.3' viewBox='0 0 9.3 5.3' fill='none'%3E%3Cpath d='M0.65 0.65L4.65 4.65L8.65 0.65' stroke='%23121316' stroke-opacity='0.5' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform var(--t-fast);
}

.layout-2026 .fh__menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.layout-2026 .fh__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -24px;
    z-index: 20;
    min-width: 300px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--c-line);
    box-shadow: 0 16px 40px rgba(18, 19, 22, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}

.layout-2026 .fh__menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.layout-2026 .fh__menu .sub-menu a {
    display: block;
    padding: 9px 24px;
    font-size: 15px;
    font-weight: var(--fw-medium);
    line-height: 1.35;
    color: var(--c-ink);
    white-space: nowrap;
}

.layout-2026 .fh__menu .sub-menu a:hover {
    color: var(--c-teal-btn);
    background: var(--c-bg-soft);
}

.layout-2026 .fh__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.layout-2026 .fh__cta {
    padding: 21px 40px;
}

.layout-2026 .fh__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: 0;
}

.layout-2026 .fh__burger span {
    display: block;
    height: 2px;
    background: var(--c-ink);
    transition: transform var(--t-base), opacity var(--t-base);
}

.layout-2026.menu-open .fh__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.layout-2026.menu-open .fh__burger span:nth-child(2) {
    opacity: 0;
}

.layout-2026.menu-open .fh__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.layout-2026 .fh__search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border-top: 1px solid var(--c-line);
    box-shadow: 0 20px 40px rgba(18, 19, 22, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}

.layout-2026.search-open .fh__search {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.layout-2026 .fh__search-form {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 20px var(--gutter);
}

.layout-2026 .fh__search-input {
    flex: 1 1 auto;
    height: 56px;
    padding: 0 20px;
    font-family: var(--ff);
    font-size: 18px;
    font-weight: var(--fw-medium);
    color: var(--c-ink);
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
    border-radius: 0;
    outline: 0;
    transition: border-color var(--t-fast);
}

.layout-2026 .fh__search-input:focus {
    border-color: var(--c-teal-btn);
}

.layout-2026 .fh__search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--c-ink);
    border: 0;
    color: #fff;
    transition: background-color var(--t-fast);
}

.layout-2026 .fh__search-submit:hover {
    background: var(--c-teal-btn);
}

.layout-2026 .fh__mobile {
    display: none;
}

.layout-2026 .fh__mobile-cta {
    display: none;
}

/* ------------------------------------------------------------
   12 Подвал
   ------------------------------------------------------------ */

.layout-2026 .ff {
    background: var(--c-deep);
    color: #fff;
}

.layout-2026 .ff__container {
    padding-top: 40px;
    padding-bottom: 22px;
}

.layout-2026 .ff__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.layout-2026 .ff__logo img {
    width: 280px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
}

.layout-2026 .ff__tagline {
    font-size: 16px;
    line-height: 1.55;
    text-align: right;
    color: rgba(255, 255, 255, 0.55);
}

.layout-2026 .ff__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-top: 32px;
}

.layout-2026 .ff__label {
    display: block;
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 1.04px;
    text-transform: uppercase;
    color: var(--c-teal-light);
}

.layout-2026 .ff__menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.layout-2026 .ff__label + .ff__menu {
    margin-top: 24px;
}

.layout-2026 .ff__menu li {
    margin: 0;
    padding: 0;
}

.layout-2026 .ff__menu a {
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.82);
}

.layout-2026 .ff__menu a:hover {
    color: #fff;
}

.layout-2026 .ff__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.layout-2026 .ff__phone {
    margin-top: 22px;
    font-size: 34px;
    font-weight: var(--fw-bold);
    line-height: 1.1;
    color: #fff;
}

.layout-2026 .ff__phone:hover {
    color: var(--c-teal-light);
}

.layout-2026 .ff__email {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.82);
}

.layout-2026 .ff__email:hover {
    color: #fff;
}

.layout-2026 .ff__address {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.55);
}

.layout-2026 .ff__socials-label {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.45);
}

.layout-2026 .ff__socials {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.layout-2026 .ff__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    transition: background-color var(--t-fast), border-color var(--t-fast);
}

.layout-2026 .ff__social svg,
.layout-2026 .ff__social img {
    width: 26px;
    height: auto;
}

.layout-2026 .ff__social:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.layout-2026 .ff__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #2e3033;
    font-size: 14px;
    line-height: 1.3;
}

.layout-2026 .ff__copy {
    color: #616366;
}

.layout-2026 .ff__docs {
    display: flex;
    gap: 26px;
    color: #9ea1a3;
}

.layout-2026 .ff__docs a:hover {
    color: #fff;
}

/* ------------------------------------------------------------
   Мобильное меню
   ------------------------------------------------------------ */

.layout-2026.menu-open {
    overflow: hidden;
}

@media (max-width: 1601px) {
    .layout-2026 {
        --gutter: 48px;
    }

    .layout-2026 .fh__info {
        gap: 48px;
    }

    .layout-2026 .fh__nav {
        gap: 24px;
    }

    .layout-2026 .fh__menu {
        gap: 22px;
    }
}

@media (max-width: 1281px) {
    .layout-2026 {
        --gutter: 32px;
        --section-gap: 56px;
    }

    .layout-2026 .fh__info-item {
        font-size: 14px;
    }

    .layout-2026 .fh__phone {
        font-size: 20px;
    }

    .layout-2026 .fh__menu > li > a {
        font-size: 15px;
    }

    .layout-2026 .fh__menu {
        gap: 18px;
    }

    .layout-2026 .fh__cta {
        padding: 16px 26px;
        font-size: 15px;
    }

    .layout-2026 .ff__brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .layout-2026 .ff__tagline {
        text-align: left;
    }
}

@media (max-width: 991px) {
    .layout-2026 {
        --section-gap: 28px;
    }

    .layout-2026 .fh__top {
        display: none;
    }

    .layout-2026 .fh__main-inner {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .layout-2026 .fh__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        display: block;
        width: min(420px, 100%);
        padding: 96px var(--gutter) 40px;
        overflow-y: auto;
        background: #fff;
        box-shadow: -20px 0 60px rgba(18, 19, 22, 0.15);
        transform: translateX(100%);
        transition: transform var(--t-base);
    }

    .layout-2026.menu-open .fh__nav {
        transform: translateX(0);
    }

    .layout-2026 .fh__search-toggle {
        display: none;
    }

    .layout-2026 .fh__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .layout-2026 .fh__menu > li {
        border-top: 1px solid var(--c-line);
    }

    .layout-2026 .fh__menu > li > a {
        justify-content: space-between;
        padding: 16px 0;
        font-size: 18px;
    }

    .layout-2026 .fh__menu > li.menu-item-has-children > a::after {
        width: 12px;
        height: 7px;
    }

    .layout-2026 .fh__menu > li.is-open > a::after {
        transform: rotate(180deg);
    }

    .layout-2026 .fh__menu .sub-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 0 12px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .layout-2026 .fh__menu > li.is-open > .sub-menu {
        display: block;
    }

    .layout-2026 .fh__menu .sub-menu a {
        padding: 8px 0 8px 16px;
        white-space: normal;
    }

    .layout-2026 .fh__actions {
        position: relative;
        z-index: 210;
        gap: 12px;
    }

    .layout-2026 .fh__burger {
        display: flex;
    }

    .layout-2026 .fh__cta {
        transition: opacity var(--t-fast), visibility var(--t-fast), background-color var(--t-fast);
    }

    .layout-2026.menu-open .fh__cta {
        opacity: 0;
        visibility: hidden;
    }

    .layout-2026 .fh__mobile {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 205;
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: min(420px, 100%);
        padding: 24px var(--gutter) 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform var(--t-base);
    }

    .layout-2026.menu-open .fh__mobile {
        pointer-events: auto;
        transform: none;
    }

    .layout-2026 .fh__mobile-phone {
        font-size: 20px;
        font-weight: var(--fw-bold);
    }

    .layout-2026 .fh__mobile-info {
        display: none;
    }

    .layout-2026 .fh__mobile-socials {
        display: none;
    }

    .layout-2026 .ff__container {
        padding-top: 32px;
        padding-bottom: 16px;
    }

    .layout-2026 .ff__body {
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
    }

    .layout-2026 .ff__contacts {
        align-items: flex-start;
        text-align: left;
    }

    .layout-2026 .ff__phone {
        font-size: 28px;
    }

    .layout-2026 .ff__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .layout-2026 .ff__docs {
        flex-wrap: wrap;
        gap: 8px 20px;
    }
}

@media (max-width: 767px) {
    .layout-2026 {
        --gutter: 20px;
        --section-gap: 20px;
    }

    .layout-2026 .fbtn {
        padding: 16px 28px;
        font-size: 16px;
    }

    .layout-2026 .fbtn--white {
        padding: 18px 32px;
    }

    .layout-2026 .fh__logo-img {
        width: 140px;
        height: 28px;
    }

    .layout-2026 .fh__cta {
        padding: 11px 14px;
        font-size: 13px;
    }

    .layout-2026 .fh__mobile-info,
    .layout-2026 .fh__mobile-socials {
        display: flex;
    }

    .layout-2026 .fh__mobile {
        gap: 8px;
    }

    .layout-2026 .fh__mobile-info {
        flex-direction: column;
        gap: 4px;
        font-size: 14px;
        color: var(--c-grey);
    }

    .layout-2026 .fh__mobile-socials {
        gap: 16px;
        margin-top: 4px;
    }

    .layout-2026 .fh__mobile-cta {
        display: inline-flex;
        align-self: flex-start;
        margin-top: 12px;
    }

    .layout-2026 .fh__nav {
        padding-top: 220px;
    }

    .layout-2026 .ff__logo img {
        width: 220px;
        height: 44px;
    }

    .layout-2026 .ff__phone {
        font-size: 24px;
    }

    .layout-2026 .ff__social {
        width: 48px;
        height: 48px;
    }

    .layout-2026 .ff__social svg,
    .layout-2026 .ff__social img {
        width: 22px;
    }
}

@media (max-width: 540px) {
    .layout-2026 .ff__docs {
        flex-direction: column;
    }
}

@media (max-width: 441px) {
    .layout-2026 .fh__logo-img {
        width: 118px;
        height: 24px;
    }

    .layout-2026 .fh__actions {
        gap: 6px;
    }

    .layout-2026 .fh__cta {
        padding: 10px 11px;
        font-size: 12px;
    }

    .layout-2026 .fbtn--white {
        width: 100%;
    }
}
