@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/montserrat-400-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/montserrat-400-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/montserrat-700-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/montserrat-700-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/oswald-400-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/oswald-400-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    background-color: #ffffff;
    overflow-x: clip;
}

:root {
    --color-primary: #C3E91E;

}



*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

a.menu__link:hover {
    color: rgb(109, 109, 109);

}

img {
    max-width: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
}





h2 {
    padding: 0;
    margin: 0;
}

section#universal {
    margin-top: 50px;
}


ul#menu-menu {
    display: flex;
    list-style: none;
    padding: 0;
}

ul#menu-menu li {
    color: white;
    margin-right: 31px;
}

a.brand__name {
    color: white;
    text-transform: uppercase;
    font-size: 45px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    margin-left: 10px;
}

.brand {
    display: flex;
    align-items: center;
}

img.brand__img {
    width: 60px;
}

.menu-item-has-children:hover ul {
    display: block;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

/* Скрываем все подменю по умолчанию */
.menu-item-has-children ul {
    display: none;
}

/* Показываем подменю при наведении */
.menu-item-has-children:hover ul {
    display: block;
}

.header__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.site-shell {
    overflow: hidden;
    width: 100%;
    /* position: relative; */
    position: absolute;
    right: 0px;
    left: 0;
    z-index: 1030;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.logog {
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    display: block;
}

.logo__img {
    width: 200px;
}

.header__burger-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 1000;
    cursor: pointer;
}

.header__burger-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    left: 5px;
    background-color: rgb(255, 255, 255);
    transition: background-color .3s, opacity .3s, transform .5s;
    will-change: transform;
}

.header__burger-btn:hover span {
    background-color: rgb(255, 255, 255);
}

.header__burger-btn span:nth-child(1) {
    transform: translateY(-10px);
}

/* .header__burger-btn span:nth-child(2) {} */

.header__burger-btn span:nth-child(3) {
    transform: translateY(10px);
}

nav#menu {
    display: flex;
    flex-direction: row;
}

/* Крестик */

.header.open .header__burger-btn span {
    background-color: white;
}

.header.open .header__burger-btn span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.header.open .header__burger-btn span:nth-child(2) {
    opacity: 0;
}

.header.open .header__burger-btn span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu__item:not(:last-child) {
    margin-right: 20px;
}

.menu__link {
    font-size: 16px;
    color: white;
}

.head__contact__mobail {
    display: none;
}

a.btn__telegram {
    margin-right: 10px;
}

.head__contact__pc {
    display: flex;
    align-items: center;
}

@media (max-width: 544px) {
    .header__burger-btn {
        display: none;
    }

    .container {
        max-width: 1320px;
        padding: 0 16px;
    }

    .menu {
        position: fixed;
        right: -350px;
        top: 0;
        width: 350px;

        background-color: rgb(0, 0, 0);
        visibility: hidden;
        transition: transform .5s, visibility .5s;
        will-change: transform;
    }

    .menu__list {
        display: block;
    }

    .menu__item:not(:last-child) {
        margin-right: 0;
    }

    .menu__link {
        color: white;
        font-size: 21px;
        display: block;
        padding: 10px;
    }

    .header.open .menu {
        transform: translateX(-100%);
        visibility: visible;
    }

    .head__contact__pc {
        display: none;
    }

    .head__contact__mobail {
        display: flex !important;
    }

    nav#menu {
        z-index: 1;
        height: 100vh;
        display: flex;
        align-items: center;
        opacity: 92%;
        flex-direction: column;
        justify-content: space-evenly;
    }

    ul#menu-menu {
        display: flex;
        list-style: none;
        padding: 0;
        flex-direction: column;
    }

    ul#menu-menu li {
        color: white;
        margin-right: 31px;
        margin-bottom: 20px;
    }

    section#fon-faq {
        background: black;
        height: 213px;
    }

    h2.card-title {
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        font-size: 22px!important;
    }

    .wp-block-image .alignleft {
        float: none!important;
        margin: 0px!important;
    }

}

.card-action {
    margin-top: 50px;
}




/* header */

.header__top {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

p.headertop_time {
    color: white;
}

a.header-phone {
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    color: white;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.headertop_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.headertop_contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.headertop_contacts .messengers {
    margin-left: 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: groove 1px;
}


@media (max-width: 767.98px) {
    .header__top {
        flex-direction: column;
    }

    p.headertop_time {
        text-align: center;
    }

    a.header-phone {
        justify-content: center;
    }

    .logo {

        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__burger-btn2 {
        display: block;
    }

}



/* hero */

section.hero {
    position: relative;
    height: 750px;
    padding-top: 180px;
    overflow: hidden;
    background-color: #141414;
    background-image: url("/img/hero-1920.webp");
    background-size: cover;
    background-position: center;
}

.product-band--portals { background-image: url("/img/band-portals-1600.webp"); }
.product-band--warm { background-image: url("/img/band-warm-1600.webp"); }
.product-band--cold { background-image: url("/img/band-cold-1600.webp"); }
.product-band--facade { background-image: url("/img/band-facade-1600.webp"); }

section.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgb(0 0 0 / 48%);
}

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

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgb(0 0 0 / 50%);
}

section.hero > .container {
    position: relative;
    z-index: 2;
}





.hero__inner {
    width: min(640px, 100%);
    padding-top: 48px;
}

.hero__kicker {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C3E91E;
}

h1.hero__title {
    margin: 0 0 18px;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
}

p.hero__lead {
    margin: 0 0 28px;
    padding: 0;
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.5;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    background: #fff;
    color: #111;
    padding: 14px 20px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
}

.hero__btn:hover,
.hero__btn:focus-visible {
    background: #C3E91E;
    color: #111;
}


@media (max-width: 767.98px) {
    img.hero__fon {
        width: 100%;
        position: absolute;
        top: 0;
        z-index: -1;
        height: 100vh;
        object-fit: cover;
    }

    .hero__inner {
        width: 100%;
        padding-top: 12px;
    }

    section.hero {
        height: auto;
        min-height: 0;
        padding-top: 100px;
        padding-bottom: 40px;
        background-size: cover;
        background-image: url("/img/hero-768.webp");
    }

    h1.hero__title {
        font-size: 34px;
    }

    p.hero__lead {
        color: #fff;
        max-width: none;
    }

}




/* Услуги */

img.uslugi__one__fon {
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 750px;
    height: 350px;
}

section.product-band {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 360px;
    padding: 80px 0;
    background-color: #141414;
    background-size: cover;
    background-position: center;
}

section.product-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgb(0 0 0 / 54%);
}

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

.band__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%));
}

#uslugi .band__shade {
    background: rgb(0 0 0 / 54%);
}

section.product-band > .product-band__inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.product-band__row {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    column-gap: 56px;
    align-items: center;
}

.product-band__lead {
    padding-left: 16px;
    border-left: 3px solid #C3E91E;
}

.product-band__kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C3E91E;
}

.product-band__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    max-width: 460px;
    justify-self: end;
}

h2.product-band__heading {
    margin: 0;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

p.product-band__text {
    margin: 0;
    padding: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.55;
    text-align: left;
}

a.product-band__btn {
    float: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    padding: 13px 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

a.product-band__btn:hover {
    background: #C3E91E;
    color: #111;
}

@media (max-width: 900px) {
    section.product-band {
        min-height: 0;
        padding: 52px 0;
    }

    .product-band__row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .product-band__lead {
        padding-left: 14px;
    }

    .product-band__copy {
        align-items: stretch;
        gap: 20px;
        max-width: none;
        justify-self: stretch;
    }

    p.product-band__text {
        text-align: left;
    }

    a.product-band__btn {
        width: 100%;
    }
}





/* Приемущества */

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

section#преимущества,
section.advantages {
    background: #EFEFEF;
    padding: 80px 0 60px;
}

section#проекты {
    padding-top: 20px;
}

.advantages__text,
.advantages__head_opis {
    margin: 12px 0 0;
    color: #333;
    line-height: 1.45;
}

h2.section-title {
    font-family: "Oswald", sans-serif;
    padding-bottom: 100px;

    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
}


.advantages__head {
    display: flex;
    justify-content: space-between;
}

.advantages__name {
    font-size: 25px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.advantages__item {
    padding: 24px;
    background: white;
    width: auto;
    min-height: 160px;
    box-sizing: border-box;
}

[data-aos="priem-in"] {
    opacity: 0;
    transform: translate3d(-56px, 0, 0);
}

[data-aos="priem-in"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

ul#menu-menu {
    display: flex;
    list-style: none;
    padding: 0;
}

ul#menu-menu li {
    color: white;
    margin-right: 31px;
}






@media (max-width: 767.98px) {
    .advantages__grid {
        display: grid;
        grid-template-columns: none;
    }



}



/* gallery */

.trans {
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

section#проекты {
    background-color: #EFEFEF;
    padding-bottom: 50px;
}

.gallery__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

a.gallery__btn_body {
    background-color: white;
    padding: 15px;
    text-transform: uppercase;
    text-align: right;
    float: right;
    margin-top: 50px;
}

a.post-edit-link {
    display: none;
}



.gallery__body {
    display: flex;
    width: 100%;
    height: 80vh;
    margin-top: 10vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vh;
}

.gallery__body ul {
    list-style: none;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: border-box;
    padding: 0px;
}

.gallery__body ul li {
    position: relative;
    float: left;
    width: 25%;
    height: 25%;
    overflow: hidden;
}

.gallery__body ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    content: '';
    color: white;
    opacity: 0.4;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.gallery__body ul li:hover::before {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.90);
}

.gallery__body ul li img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.lightbox {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    top: -100%;
    /* Transition */
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    -webkit-transition: all 1s ease;
}

.lightbox:target {
    outline: none;
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    -webkit-transition: all 1.2s ease;
}

.lightbox:target img {
    top: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 1000px;
    height: auto;
    object-fit: cover;
}



/* Блог */

a.pt-cv-edit-view {
    display: none;
}

section#блог {
    padding: 50px 0;
    background-color: #EFEFEF;
}




/* footer */

.contacts__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
}

.social {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 50px;
}

.map {
    display: flex;
    justify-content: flex-end;
}

section#контакты {
    background-color: #ffffff;
}

h2.contact-zag {
    color: #000;
}

p.contact-adres {
    padding: 50px 0;
}

.telefon-con {
    padding-bottom: 50px;
}

p.raspisanie {
    padding-bottom: 50px;
}

.footer__btn {
    background-color: #000 !important;
    color: #fff;
}

.contacts__inner {
    border-bottom: groove;
}

.contacts__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    margin-bottom: 20px;
    padding-bottom: 50px;
}



@media (max-width: 767.98px) {
    .contacts__inner {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 0px;
    }

    .social {
        display: flex;
        justify-content: center;
        padding-bottom: 50px;
    }

    .contacts-left {
        text-align: center;
        margin-bottom: 70px;
    }

}

a.telefon-contacts {
    font-size: 25px;
    color: #000;
}

.dop__zag {
    text-align: left !important;
}



/* Продукция */



section.products {
    background-color: #EFEFEF;
    padding: 80px 0;
}

.cart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
}

.card-copy {
    grid-area: 1 / 1 / 2 / 4;
}


.card-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

h2.card-title {
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    font-size: 45px;
}

.card-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lead-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: black;
    color: white;
    padding: 15px 20px;
    top: -19px;
    position: relative;
    text-transform: none;
}


@media (max-width: 767.98px) {
    .cart {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        background: #ffffff;
        padding: 30px;
    }

    .card-action {
        margin-bottom: 20px;
        margin-top: 40px;
        position: static;
    }

    .lead-btn {
        background-color: black;
        color: white;
        padding: 15px 20px;
        top: -19px;
        position: relative;
        display: flex;
        justify-content: center;
    }

    h2.section-title {
        font-family: "Oswald", sans-serif;
        padding-bottom: 50px;
        font-size: 30px;
        text-transform: uppercase;
        text-align: center;
        font-weight: 400;
    }

    .fancybox__content{
        display: flex;
    width: 100%!important;

    }
    section#fon-faq {
        background: black;
        height: 204px;
    }



    

}


/* faq */

section#fon-faq {
    background: black;
    height: 173px;
}

section#faq {
    padding: 50px 0;
    background: #FAFAFA;
}

.faq-inner {
    margin-bottom: 50px;
    border-bottom: groove;
}

.faq-page {
    padding: 36px 0 80px;
    background: #f3f3f3;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 8px;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
    border-left: 4px solid transparent;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.faq-item.is-open {
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.1);
    border-left-color: #C3E91E;
}

.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 22px 58px 22px 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.35s ease;
}

.faq-item.is-open summary::after {
    transform: translateY(-20%) rotate(225deg);
}

.faq-item summary:focus-visible {
    outline: 2px solid #111;
    outline-offset: -2px;
}

.faq-item__body {
    overflow: hidden;
    height: 0;
    transition: height 0.42s ease;
}

.faq-item.is-open .faq-item__body {
    height: auto;
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: #333;
    font-size: 15px;
    line-height: 1.65;
    max-width: 68ch;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.faq-item.is-open p {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-item summary::after,
    .faq-item__body,
    .faq-item p {
        transition: none;
    }
}

.faq-cta {
    max-width: 880px;
    margin: 36px auto 0;
    padding: 28px 24px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-cta p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.faq-cta__btn {
    background: #C3E91E;
    color: #111;
}

.faq-cta__btn:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 767.98px) {
    .faq-item summary {
        padding: 18px 48px 18px 18px;
    }
    .faq-item p {
        padding: 0 18px 18px;
    }
    .faq-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .faq-cta__btn {
        width: 100%;
    }
}

.name-blog {
    text-align: center;
    font-size: 35px;
    padding: 100px 0;
}

h1.entry-title {
    display: none;
}

.entry-meta {
    display: none;
}



/* Порталы */

section#otlichie {
    background-color: #EFEFEF;
    padding-bottom: 100px;
}

.zag-otlichie {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 300;
    padding: 50px 0;
    margin: 0;
}

.otlichie-cart {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}


.otlichie-cart-top {
    display: flex;
    justify-content: space-between;
}

h2.otlichie-cart-name {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 35px;
}

.otlichie-cart-body {
    background: white;
    padding: 30px;
}

.otlichie-cart-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

p.otlichie-cart-opis {
    margin: 0;
}

.otlichie-paragraf {
    padding-bottom: 30px;
    border-bottom: groove;
    padding-top: 5px;
}

img.otlichie-cart-img {
    max-width: 100%;
    width: 130px;
    height: 130px;
    object-fit: cover;
}

section#skladdver {
    padding: 50px 0;
}


.priem-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.priem-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.priem-inner-left h2 {
    font-size: 50px;
    padding-right: 20px;
}

.priem-inner-right p {
    margin: 0;
    padding: 0;
}


.razdvizh-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
}

.razdvizh-left {
    grid-area: 1 / 1 / 2 / 3;
}

.razdvizh-right {
    grid-area: 1 / 3 / 2 / 4;
}


section#razdvizh {
    padding: 100px 0;
}

.razdvizh-left h2 {
    font-size: 35px;
    margin-bottom: 60px;
}

.razdvizh-right img {
    height: 100%;
    object-fit: cover;
}


.sravneniya-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #F8F8F8;
}


.sravneniya-colum-name {
    padding: 40px 20px;
    padding-bottom: 60px;
    background: white;
}

.sravneniya-colum-region {
    padding: 20px 20px;
    background-color: #F8F8F8;
}

.sravneniya-colum-collich {
    padding: 20px 20px;
    background-color: #F8F8F8;
}

.sravneniya-colum-tip {
    padding: 20px 20px;
    background-color: #F8F8F8;

}

h2.name-srav {
    color: #ffffff;
}






@media (max-width: 767.98px) {
    .otlichie-cart {

        grid-template-columns: repeat(1, 1fr) !important;

        grid-row-gap: 20px;
    }

    h2.otlichie-cart-name {

        font-size: 25px !important;
    }

    .priem-body {

        grid-template-columns: repeat(1, 1fr) !important;

        grid-row-gap: 20px;
    }

    .sravneniya-body {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        background-color: #F8F8F8;
    }

    .razdvizh-body {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .razdvizh-right {
        grid-area: auto;
    }

    section#razdvizh {
        padding: 100px 0;
        padding-bottom: 20px;
    }

    .sravneniya-colum-one {
        display: none;
    }

    

}

/* Готовые проекты */
section.projects-hero {
    height: 620px;
    padding-top: 160px;
    background-image: url("/img/band-portals-1600.webp");
}

section.projects-hero .hero__inner {
    width: min(640px, 100%);
    padding-top: 24px;
}

section.projects-page {
    background-color: #EFEFEF;
    padding: 36px 0 90px;
}

section.projects-page .container {
    padding: 0 20px;
}

section.projects-page .section-title {
    padding-bottom: 40px;
}

.project-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
    gap: 28px;
    background: #ffffff;
    padding: 28px;
    margin-bottom: 22px;
    align-items: start;
    scroll-margin-top: 110px;
}

.projects-scroller {
    --pin: 100vh;
    --count: 1;
    height: calc(var(--count) * var(--pin));
}

.projects-scroller__pin {
    position: sticky;
    top: 0;
    height: var(--pin);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.projects-scroller__count {
    margin: 0 0 16px;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

.projects-scroller__count [data-project-now] {
    color: #111;
}

.projects-scroller__stage {
    position: relative;
    min-height: 400px;
}

.projects-scroller .project-card {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    margin-bottom: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 48px, 0);
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.55s ease,
        visibility 0s linear 0.55s;
}

.projects-scroller .project-card.is-from-up {
    transform: translate3d(0, -48px, 0);
}

.projects-scroller .project-card.is-leave-up {
    transform: translate3d(0, -48px, 0);
    opacity: 0;
}

.projects-scroller .project-card.is-leave-down {
    transform: translate3d(0, 48px, 0);
    opacity: 0;
}

.projects-scroller .project-card.is-current {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0.12s, 0.12s, 0s;
}

.projects-scroller .project-card {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.projects-scroller .project-gallery {
    height: auto;
    min-height: 0;
    max-height: none;
}

.projects-scroller .project-gallery--n3 {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.projects-scroller .project-gallery--n3 .project-gallery__item:nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1;
}

.projects-scroller .project-gallery--n5 {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.projects-scroller .project-gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
}

.projects-scroller .project-gallery__item:hover img {
    transform: none;
    opacity: 1;
}

.projects-page .blog-pager {
    padding: 8px 0 8px;
}

.fancybox__container.has-project-cta .fancybox__caption,
.fancybox__container.has-project-cta .fancybox__caption__wrap {
    display: none !important;
}

.fb-to-project-wrap {
    position: absolute;
    left: 50%;
    bottom: 92px;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    pointer-events: none;
}
a.fb-to-project {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #111;
    padding: 10px 16px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
a.fb-to-project:hover {
    background: #C3E91E;
}


.blog-content p { margin: 0 0 12px; }
.blog-content h2, .blog-content h3 { font-family: "Oswald", sans-serif; font-weight: 400; text-transform: uppercase; margin: 24px 0 10px; }
.blog-content img { max-width: 100%; height: auto; }
.blog-hero-img img { width: 100%; height: auto; display: block; margin-bottom: 20px; }

.footer-map [class*="traffic"],
.footer-map [class*="Traffic"],
.footer-map [class*="listbox"] {
    display: none !important;
}

.project-card__tag {
    display: inline-block;
    background: #C3E91E;
    color: #111;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 14px;
}

.project-card__title {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.project-card__meta {
    margin: 0 0 18px;
    color: #666;
    font-size: 14px;
}

.project-card .card-action {
    margin-top: 10px;
}

.project-card .lead-btn {
    position: static;
    display: inline-block;
}

.project-gallery {
    display: grid;
    gap: 8px;
    width: 100%;
}

/* 1 фото — широкий кадр */
.project-gallery--n1 {
    grid-template-columns: 1fr;
}
.project-gallery--n1 .project-gallery__item {
    aspect-ratio: 16 / 10;
}

/* 2 фото — два равных кадра */
.project-gallery--n2 {
    grid-template-columns: 1fr 1fr;
}
.project-gallery--n2 .project-gallery__item {
    aspect-ratio: 4 / 5;
}

/* 3 фото — крупный слева, два справа */
.project-gallery--n3 {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 300px;
}
.project-gallery--n3 .project-gallery__item {
    aspect-ratio: auto;
    min-height: 0;
}
.project-gallery--n3 .project-gallery__item:nth-child(1) {
    grid-row: 1 / span 2;
}

/* 4 фото — сетка 2×2 */
.project-gallery--n4 {
    grid-template-columns: 1fr 1fr;
}
.project-gallery--n4 .project-gallery__item {
    aspect-ratio: 4 / 3;
}

/* 5 фото — крупный слева, четыре мелких справа */
.project-gallery--n5 {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 340px;
}
.project-gallery--n5 .project-gallery__item {
    aspect-ratio: auto;
    min-height: 0;
}
.project-gallery--n5 .project-gallery__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.project-gallery--n5 .project-gallery__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.project-gallery--n5 .project-gallery__item:nth-child(3) { grid-column: 3; grid-row: 1; }
.project-gallery--n5 .project-gallery__item:nth-child(4) { grid-column: 2; grid-row: 2; }
.project-gallery--n5 .project-gallery__item:nth-child(5) { grid-column: 3; grid-row: 2; }

.project-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    background: #111;
    min-width: 0;
}

.project-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, opacity .3s ease;
}

.project-gallery__item:hover img {
    transform: scale(1.05);
    opacity: 0.92;
}

@media (max-width: 767.98px) {
    section.projects-hero {
        height: auto !important;
        min-height: 520px;
        padding-bottom: 50px;
    }

    .project-card {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }

    .projects-scroller {
        --pin: auto;
        height: calc(var(--count) * 85vh);
    }

    .projects-scroller__pin {
        top: 64px;
        height: auto;
        padding: 16px 0 28px;
        align-items: flex-start;
    }

    .projects-scroller .project-gallery,
    .projects-scroller .project-gallery--n1,
    .projects-scroller .project-gallery--n2,
    .projects-scroller .project-gallery--n3,
    .projects-scroller .project-gallery--n4,
    .projects-scroller .project-gallery--n5 {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .project-card__title {
        font-size: 22px;
    }

    .project-gallery--n2 .project-gallery__item {
        aspect-ratio: 1 / 1;
    }
    .projects-scroller .project-gallery--n2 .project-gallery__item {
        aspect-ratio: 1 / 1;
    }

    .project-gallery--n3 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
    }
    .project-gallery--n3 .project-gallery__item:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }
    .project-gallery--n3 .project-gallery__item:nth-child(2),
    .project-gallery--n3 .project-gallery__item:nth-child(3) {
        aspect-ratio: 4 / 3;
    }

    .project-gallery--n5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .project-gallery--n5 .project-gallery__item {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 4 / 3;
    }
    .project-gallery--n5 .project-gallery__item:nth-child(1) {
        grid-column: 1 / span 2 !important;
        aspect-ratio: 16 / 10;
    }

    .projects-scroller .project-gallery--n3 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        aspect-ratio: auto;
        min-height: 0;
    }
    .projects-scroller .project-gallery--n3 .project-gallery__item:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }
    .projects-scroller .project-gallery--n3 .project-gallery__item:nth-child(2),
    .projects-scroller .project-gallery--n3 .project-gallery__item:nth-child(3) {
        aspect-ratio: 4 / 3;
    }
    .projects-scroller .project-gallery--n5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
        min-height: 0;
    }
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(1) {
        grid-column: 1 / span 2 !important;
        grid-row: 1 !important;
        aspect-ratio: 16 / 10;
    }
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(2),
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(3),
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(4),
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(5) {
        aspect-ratio: 4 / 3;
    }
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(2) { grid-column: 1 !important; grid-row: 2 !important; }
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(3) { grid-column: 2 !important; grid-row: 2 !important; }
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(4) { grid-column: 1 !important; grid-row: 3 !important; }
    .projects-scroller .project-gallery--n5 .project-gallery__item:nth-child(5) { grid-column: 2 !important; grid-row: 3 !important; }

    .project-gallery--n1 {
        grid-template-columns: 1fr;
    }

    .project-card .lead-btn {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* ===== Compact header + footer (hero не трогаем) ===== */
.header-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header-bar .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-bar .brand__name {
    font-size: 34px;
    letter-spacing: 0.04em;
    margin-left: 8px;
}

.header-bar .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    min-width: 0;
    gap: 20px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 44px;
}

.header-nav li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.header-nav a {
    display: flex;
    align-items: center;
    height: 44px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.header-nav a:hover {
    color: #C3E91E;
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
    height: 44px;
}

.header-bar .header-phone {
    display: flex;
    align-items: center;
    height: 44px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.header-bar .header-phone:hover {
    color: #C3E91E;
}

.header-actions .messengers {
    height: 44px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    background: #fff;
    color: #111;
    padding: 11px 16px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.header-cta:hover {
    background: #C3E91E;
    color: #111;
}

.faq-cta .faq-cta__btn:hover {
    background: #fff;
    color: #111;
}

.hero__btn,
a.product-band__btn,
.header-cta,
.faq-cta__btn,
.footer-contacts .header-cta,
.footer-contacts .footer__btn,
.lead-btn,
.lead-modal .lead-modal__done-btn,
.lead-form button.wpcf7-submit,
.lead-form input.wpcf7-submit,
.blog-pager__btn,
.blog-pager__num {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a.messenger {
    transition: opacity 0.22s ease;
}

.messengers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

a.messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    line-height: 0;
    flex-shrink: 0;
    color: inherit;
}

a.messenger svg {
    display: block;
    width: 32px;
    height: 32px;
}

.messengers--light,
.header .messengers {
    color: #fff;
}

.messengers--dark {
    color: #111;
}

a.messenger:hover {
    opacity: 0.55;
}

/* Footer */
.site-footer {
    background: #fff;
    color: #111;
    padding: 56px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.55fr;
    gap: 36px 32px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e5e5;
}

.footer-title,
.we-online__title {
    margin: 0 0 16px;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
    text-align: left;
    padding-bottom: 0;
}

.footer-addr,
.footer-hours {
    margin: 0 0 8px;
    padding: 0;
    color: #333;
    font-size: 15px;
}

.footer-phone,
.footer-mail {
    display: block;
    width: fit-content;
    max-width: 100%;
    border-bottom: 2px solid transparent;
}

.footer-phone {
    margin: 10px 0 8px;
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #111;
}

.footer-mail {
    margin: 0 0 12px;
    color: #111;
    font-size: 15px;
}

.footer-phone:hover,
.footer-mail:hover {
    color: #111;
    border-bottom-color: #C3E91E;
}

.footer-contacts .header-cta,
.footer-contacts .footer__btn {
    margin-top: 16px;
    background: #111 !important;
    color: #fff !important;
    position: static;
}

.footer-contacts .header-cta:hover,
.footer-contacts .footer__btn:hover {
    background: #C3E91E !important;
    color: #111 !important;
}

.footer-messengers {
    margin-top: 18px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin: 0 0 10px;
}

.footer-menu a {
    display: inline;
    color: #111;
    font-size: 15px;
    border-bottom: 2px solid transparent;
}

.footer-menu a:hover {
    color: #111;
    border-bottom-color: #C3E91E;
    opacity: 1;
}

.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.we-online {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-map {
    width: 100%;
    height: 320px;
    max-height: 320px;
    overflow: hidden;
}

.footer-map > ymaps,
.footer-map iframe {
    width: 100% !important;
    height: 320px !important;
    max-height: 320px !important;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    padding-top: 18px;
    font-size: 13px;
    color: #666;
}

.footer-legal a {
    color: #666;
}

.footer-legal a:hover {
    color: #111;
}

@media (max-width: 1100px) {
    .site-shell {
        overflow: visible;
    }

    .header .header__burger-btn {
        display: block;
        margin-left: auto;
        z-index: 1000;
    }

    .header-bar .menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 28px;
        padding: 88px 28px 40px;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform .35s ease, visibility .35s;
        z-index: 999;
    }

    .header.open .header-bar .menu {
        transform: translateX(0);
        visibility: visible;
    }

    .header-bar .header-actions,
    .header-actions {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: nowrap;
        margin-left: 0;
        height: auto;
        gap: 16px;
    }

    .header-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-nav a {
        font-size: 22px;
        height: auto;
    }
}

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

    .footer-map {
        display: none;
    }

    .we-online {
        align-items: flex-start;
    }
}

@media (max-width: 544px) {
    .header .header__burger-btn {
        display: block !important;
    }
}

/* Правовые страницы: хедер в потоке, не поверх текста */
body.is-legal-page .site-shell {
    position: relative;
    overflow: visible;
}

body.is-legal-page .header {
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.is-legal-page .legal-hero {
    padding-top: 36px;
}

/* Правовые страницы */
.legal-hero {
    padding: 150px 0 40px;
    background: #111;
    color: #fff;
}

.legal-eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C3E91E;
}

.legal-title {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.2;
}

.legal-updated {
    margin: 12px 0 0;
    color: #bbb;
    font-size: 14px;
}

.legal-body {
    background: #f3f3f3;
    padding: 36px 0 80px;
}

.legal-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 36px 40px 44px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
    color: #222;
    font-size: 16px;
    line-height: 1.7;
}

.legal-page > p:first-of-type {
    margin: 0 0 22px;
    padding-left: 16px;
    border-left: 4px solid #C3E91E;
    font-size: 18px;
    line-height: 1.55;
    color: #333;
}

.legal-page h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 36px 0 14px;
    color: #111;
}

.legal-page p,
.legal-page li {
    margin: 0 0 12px;
}

.legal-page ul {
    padding-left: 20px;
    margin: 0 0 16px;
}

.legal-page a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-page a:hover {
    background: #C3E91E;
    text-decoration: none;
}

.legal-doc__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 36px 0 0;
    padding-top: 22px;
    border-top: 1px solid #eee;
}
.legal-doc__nav a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid #C3E91E;
}
.legal-doc__nav a:hover {
    background: #C3E91E;
}

.legal-body .faq-cta {
    margin-top: 24px;
}

@media (max-width: 767.98px) {
    .legal-body { padding: 24px 0 56px; }
    .legal-page { padding: 24px 18px 32px; }
    .legal-page > p:first-of-type { font-size: 16px; }
}

/* Форма заявки */
.fancybox__content:has(.lead-modal) {
    padding: 0 !important;
    overflow: hidden;
    max-width: min(380px, calc(100vw - 24px)) !important;
    width: min(380px, calc(100vw - 24px)) !important;
}

.lead-modal {
    width: min(380px, 100%);
    max-width: 100%;
    padding: 28px 24px 24px;
    background: #fff;
    color: #111;
    box-sizing: border-box;
}

.lead-modal__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

.lead-modal__title,
#hidden h2,
#hidden2 h2,
.lead-modal h2 {
    margin: 0 0 10px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 28px;
    text-transform: uppercase;
    text-align: left;
    color: #111;
}

.lead-modal__text {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.lead-modal__text.is-error {
    color: #9b1c1c;
}

.lead-modal.is-sent .lead-form {
    display: none !important;
}

.lead-modal.is-sent .lead-modal__title {
    margin-bottom: 12px;
}

.lead-modal.is-sent .lead-modal__text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.lead-modal .lead-modal__done-btn {
    display: block;
    width: 100%;
    border: 0;
    background: #111;
    color: #fff;
    padding: 15px 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
}

.lead-modal .lead-modal__done-btn:hover {
    background: #C3E91E;
    color: #111;
}

.lead-status {
    display: none;
}

.lead-form .wpcf7-form,
.lead-form {
    display: block !important;
}

.lead-form .wpcf7-form > p,
.lead-form > p {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin: 0 0 12px;
}

.lead-form .wpcf7-form-control-wrap[data-name="your-name"],
.lead-form .wpcf7-form-control-wrap[data-name="your-tel"] {
    display: block;
    width: 100%;
}

.lead-form input.wpcf7-text,
.lead-form input.wpcf7-tel,
.lead-form input.wpcf7-email,
.lead-form textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    min-height: 48px;
    border: 1px solid #d5d5d5 !important;
    background: #f6f6f6 !important;
    padding: 13px 14px !important;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #111;
    float: none !important;
}

.lead-form input.wpcf7-text:focus,
.lead-form input.wpcf7-tel:focus {
    outline: none;
    border-color: #111 !important;
    background: #fff !important;
}

.lead-form input.wpcf7-tel.is-invalid,
.lead-form input.wpcf7-tel.is-invalid:focus {
    border-color: #c0392b !important;
    background: #fff6f6 !important;
}

.lead-form button.wpcf7-submit,
.lead-form input.wpcf7-submit {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    background: #111 !important;
    color: #fff !important;
    padding: 15px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    float: none !important;
}

.lead-form button.wpcf7-submit:hover,
.lead-form input.wpcf7-submit:hover {
    background: #C3E91E !important;
    color: #111 !important;
}

.lead-form .wpcf7-acceptance,
.lead-form__consent {
    font-size: 11px;
    line-height: 1.4;
    color: #666;
}

.lead-form .wpcf7-acceptance .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    white-space: normal;
}

.lead-form .wpcf7-acceptance .wpcf7-list-item-label {
    display: block;
    white-space: normal !important;
    font-size: 11px;
    line-height: 1.4;
}

.lead-form .wpcf7-acceptance a {
    color: #111;
    text-decoration: underline;
}

.lead-form .wpcf7-form-control-wrap[data-name="company_website"],
.lead-form .lead-hp-wrap,
.lead-form .lead-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.lead-form .wpcf7-not-valid-tip {
    font-size: 12px;
}

.lead-form .wpcf7-response-output {
    margin: 12px 0 0;
    font-size: 13px;
}


.lead-overlay { position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center; }
.lead-overlay[hidden] { display: none !important; }
.lead-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.lead-modal { position: relative; z-index: 1; }
.lead-close { position: absolute; top: 10px; right: 14px; border: 0; background: none; font-size: 28px; cursor: pointer; line-height: 1; color: #111; }
.lead-status { font-size: 13px; color: #333; min-height: 1.2em; }

.home-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
.home-gallery .project-gallery__item {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.home-gallery .project-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#преимущества,
#проекты,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}
#блог,
.home-blog {
    overflow-x: clip;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 70px;
}
.blog-card {
    display: block;
    background: #fff;
    color: #111;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    padding: 14px 12px 18px;
    margin: 0;
    line-height: 1.25;
}
@media (max-width: 767.98px) {
    .home-gallery, .blog-grid { grid-template-columns: 1fr 1fr; }
}

.blog-index {
    padding: 36px 0 80px;
    background: #f3f3f3;
}

.blog-index .blog-grid {
    padding-bottom: 0;
}

.blog-index .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
    border-left: 4px solid transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.blog-index .blog-card:hover {
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.1);
    border-left-color: #C3E91E;
    transform: translateY(-4px);
    color: #111;
}

.blog-index .blog-card img {
    height: 190px;
}

.blog-index .blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 16px 18px;
}

.blog-index .blog-card h3 {
    padding: 0 0 10px;
}

.blog-index .blog-card p {
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.blog-index .blog-card__cta {
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 36px;
}
.blog-pager__pages {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-pager__btn,
.blog-pager__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #111;
    border: 0;
    background: none;
}
.blog-pager__btn {
    padding: 8px 0;
    border-bottom: 2px solid #C3E91E;
}
.blog-pager__btn:hover {
    background: #C3E91E;
    color: #111;
}
.blog-pager__btn.is-disabled {
    border-bottom-color: transparent;
    color: #bbb;
    pointer-events: none;
}
.blog-pager__num {
    min-width: 36px;
    height: 36px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}
a.blog-pager__num:hover {
    background: #111;
    color: #fff;
}
.blog-pager__num.is-current {
    background: #111;
    color: #C3E91E;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .blog-index .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
    .blog-index { padding: 28px 0 56px; }
    .blog-index .blog-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-index .blog-card { transition: none; }
}

.legal-eyebrow a {
    color: inherit;
    text-decoration: none;
}
.legal-eyebrow a:hover {
    color: #fff;
}

.blog-article {
    padding: 36px 0 80px;
    background: #f3f3f3;
}
.blog-article__wrap {
    max-width: 880px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}
.blog-article__hero {
    margin: 0;
}
.blog-article__hero img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.blog-article__body {
    padding: 36px 40px 44px;
    color: #222;
    font-size: 16px;
    line-height: 1.7;
}
.blog-article__lead {
    margin: 0 0 22px;
    padding-left: 16px;
    border-left: 4px solid #C3E91E;
    font-size: 18px;
    line-height: 1.55;
    color: #333;
}
.blog-article__body h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 36px 0 14px;
    color: #111;
}
.blog-article__body h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin: 28px 0 10px;
    color: #111;
}
.blog-article__body p {
    margin: 0 0 14px;
}
.blog-article__body ul,
.blog-article__body ol {
    margin: 0 0 18px;
    padding-left: 20px;
}
.blog-article__body li {
    margin: 0 0 8px;
}
.blog-article__body a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.blog-article__body a:hover {
    color: #111;
    background: #C3E91E;
    text-decoration: none;
}
.blog-figure {
    margin: 24px 0;
}
.blog-figure img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-figure figcaption {
    margin: 8px 12px 0;
    color: #666;
    font-size: 13px;
}
.blog-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 16px;
}
.blog-pair__myth,
.blog-pair__fact {
    padding: 16px 18px;
}
.blog-pair__myth {
    background: #111;
    color: #fff;
}
.blog-pair__fact {
    background: #C3E91E;
    color: #111;
}
.blog-pair strong {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-pair p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}
.blog-article__more {
    max-width: 1100px;
    margin: 40px auto 0;
}
.blog-article__more-title {
    margin: 0 0 18px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    color: #111;
}
.blog-article .blog-grid {
    padding-bottom: 8px;
}
.blog-article .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
    border-left: 4px solid transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.blog-article .blog-card:hover {
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.1);
    border-left-color: #C3E91E;
    transform: translateY(-4px);
    color: #111;
}
.blog-article .blog-card img {
    height: 170px;
}
.blog-article .blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 16px 18px;
}
.blog-article .blog-card h3 {
    padding: 0 0 10px;
    font-size: 18px;
}
.blog-article .blog-card p {
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}
.blog-article .blog-card__cta {
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-article .faq-cta {
    max-width: 1100px;
}
.blog-article__all {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: 2px solid #C3E91E;
}
.blog-article__all:hover {
    background: #C3E91E;
}

@media (max-width: 767.98px) {
    .legal-title { font-size: 26px; }
    .blog-article { padding: 24px 0 56px; }
    .blog-article__hero img { height: 220px; }
    .blog-article__body { padding: 24px 18px 32px; }
    .blog-article__lead { font-size: 16px; }
    .blog-pair { grid-template-columns: 1fr; }
    .blog-article .blog-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-article .blog-card { transition: none; }
    .projects-scroller .project-card {
        transition: none;
    }
}

section.advantages .section-title,
section#преимущества .section-title,
section#проекты .section-title,
section#блог .section-title {
    padding-bottom: 40px;
}

.reveal {
    opacity: 0;
    transform: none;
    transition: opacity .6s ease, transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left {
    transform: translate3d(-28px, 0, 0);
}
.reveal-right {
    transform: translate3d(28px, 0, 0);
}
.reveal-scale {
    transform: scale(0.96);
}
.reveal-fade {
    transform: none;
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}

.home-kicker {
    margin: 0 0 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

#проекты .gallery__btn {
    margin: 8px 0 0;
}

#проекты .gallery__btn .header-cta,
#блог .gallery__btn .header-cta {
    float: none;
    margin: 0;
}

.home-blog .blog-card {
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
    border-left: 4px solid transparent;
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-blog .blog-card:hover {
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.1);
    border-left-color: #C3E91E;
    color: #111;
}
.home-blog .blog-card.reveal.is-in:hover {
    transform: none;
}
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .4s; }
.reveal-d6 { transition-delay: .48s; }
.reveal-d7 { transition-delay: .56s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__btn,
    a.product-band__btn,
    .header-cta,
    .faq-cta__btn,
    .footer-contacts .header-cta,
    .footer-contacts .footer__btn,
    .lead-btn,
    .lead-modal .lead-modal__done-btn,
    .lead-form button.wpcf7-submit,
    .lead-form input.wpcf7-submit,
    .blog-pager__btn,
    .blog-pager__num,
    a.messenger {
        transition: none;
    }
}
#lightbox img { max-width: 92vw; max-height: 90vh; }


.lead-overlay { position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center; }
.lead-overlay[hidden] { display: none !important; }
.lead-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.lead-modal { position: relative; z-index: 1; }
.lead-close { position: absolute; top: 10px; right: 14px; border: 0; background: none; font-size: 28px; cursor: pointer; line-height: 1; color: #111; }
.lead-status { font-size: 13px; color: #333; min-height: 1.2em; }
#lightbox img { max-width: 92vw; max-height: 90vh; }


.advantages__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.advantages__icon svg {
    width: 40px;
    height: 40px;
}
#universal {
    margin-top: 40px;
    padding-bottom: 70px;
}

.legal-body + .docs-section {
    padding-top: 0;
}

.docs-section {
    padding: 8px 0 80px;
    background: #f3f3f3;
}

.docs-section .section-title {
    padding-bottom: 36px;
}

.docs-section .faq-cta {
    margin-top: 40px;
}

.docs-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 32px 40px;
    align-items: start;
}

.docs-about {
    position: sticky;
    top: 96px;
    background: #fff;
    padding: 32px 28px 28px;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

.docs-about__eyebrow {
    margin: 0 0 14px;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
}

.docs-about__lead {
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 4px solid #C3E91E;
    color: #111;
    font-size: 17px;
    line-height: 1.5;
}

.docs-about__copy {
    margin: 0 0 22px;
    color: #555;
    font-size: 14px;
    line-height: 1.55;
}

.docs-about__facts {
    margin: 0;
}

.docs-about__facts > div {
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.docs-about__facts > div:last-child {
    padding-bottom: 0;
}

.docs-about__facts dt {
    margin: 0 0 4px;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.docs-about__facts dd {
    margin: 0;
    color: #111;
    font-size: 15px;
    line-height: 1.4;
}

.docs-main .home-kicker {
    text-align: left;
}

.docs-main .section-title {
    text-align: left;
    padding-bottom: 24px;
}

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

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

.doc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #111;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(17, 17, 17, 0.16);
    color: #111;
}

.doc-card__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    padding: 22px 20px 26px;
    background:
        linear-gradient(180deg, #ececec 0%, #e2e2e2 100%);
    overflow: hidden;
}

.doc-card__stage::before,
.doc-card__stage::after {
    content: "";
    position: absolute;
    width: 72%;
    height: 78%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
    z-index: 0;
}

.doc-card__stage::before {
    transform: rotate(-5deg) translate(10px, 8px);
}

.doc-card__stage::after {
    transform: rotate(3.5deg) translate(-6px, 10px);
}

.doc-card__stage img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 18px 36px rgba(17, 17, 17, 0.28),
        0 4px 10px rgba(17, 17, 17, 0.16);
}

.doc-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #C3E91E;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 8px;
}

.doc-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px 20px;
    min-height: 132px;
}

.doc-card__title {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.doc-card__meta {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.doc-card__cta {
    margin-top: auto;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.doc-card:hover .doc-card__cta {
    color: #111;
}

@media (max-width: 1024px) {
    .docs-layout { grid-template-columns: 1fr; }
    .docs-about { position: static; }
    .docs-grid,
    .docs-layout .docs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
    .docs-section { padding: 32px 0 56px; }
    .docs-about { padding: 24px 18px 22px; }
    .docs-grid,
    .docs-layout .docs-grid { grid-template-columns: 1fr; }
}
