@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Bold.ttf') format('truetype');
   font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Extra-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
:root {
    --orange: #d7691b;
    --dark: #202020;
    --light: #ffffff;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
:root {
    --orange: #A35737;
    --dark: #232323;
    --gray: #555;
}

/* === ОСНОВНОЙ ХЕДЕР === */
.header-234231 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 100;
    padding: 25px 60px;
    display: flex;
    justify-content: center;
}
.header-234231-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ЛОГОТИП */
.header-234231-logo img {
    height: 38px;
    width: auto;
}

/* ПРАВАЯ ЧАСТЬ */
.header-234231-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

/* МЕНЮ */
.nav-234231-top {
    display: flex;
    gap: 36px;
}
.nav-234231-top a {
    text-decoration: none;
    color: var(--gray);
    font-size: 15px;
    transition: 0.3s;
}
.nav-234231-top a:hover { color: var(--orange); }

/* КОНТАКТЫ */
.contacts-234231-bottom {
    display: flex;
    align-items: center;
    padding-top:20px;
    gap: 36px;
}
.contacts-234231-block p,
.contacts-234231-phones p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.3;
}
.contacts-234231-block strong { color: var(--dark); }
.contacts-234231-mail a {
    color: var(--gray);
    font-size: 14px;
    text-decoration: underline;
    transition: 0.3s;
}
.contacts-234231-mail a:hover { color: var(--orange); }
.contacts-234231-icons {
    display: flex;
    gap: 10px;
}
.contacts-234231-icons img {
    width: 20px;
    height: 20px;
}

/* КНОПКА */
.btn-234231-orange {
    border-radius: 5px;
    background: linear-gradient(261deg, #A35737 11.23%, #F59119 97.15%);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    transition: 0.3s ease;
    font-family: 'Montserrat';
}
.btn-234231-orange:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* === МОБИЛЬНАЯ ВЕРСИЯ === */
.header-234231-mobile {
    display: none;
    align-items: center;
    gap: 14px;
}

/* Бургер */
.burger-234231 {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.burger-234231 span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: 0.3s;
}
.burger-234231.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    position: relative;
}
.burger-234231.active span:nth-child(2) { opacity: 0; }
.burger-234231.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
    position: relative;
}

/* Иконки */
.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #A35737;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.icon-circle:hover { background: #F59119; }
.icon-circle img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    margin-left:-2px;
}
.idsu {display:block;}
.isu {display:none !important;}
/* Выпадающее меню */
.mobile-menu-234231 {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px 20px 35px;
    z-index: 99;
}
.mobile-menu-234231.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}
.mobile-nav-234231 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.mobile-nav-234231 a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}
.mobile-nav-234231 a:hover { color: #A35737; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === АДАПТИВ === */
@media (max-width: 992px) {
    .contacts-234231-bottom { flex-wrap: wrap; justify-content: flex-end; }
    .nav-234231-top { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 768px) {

    .nav-234231-top,
    .contacts-234231-bottom {
        display: none !important;
    }
    .header-234231-right { display: none; }
    .header-234231-mobile { display: flex; }
    .header-234231 { padding: 14px 20px; }
    .header-234231-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== HERO ===== */
.section-234231-hero {
    position: relative;
    height: 80vh;
    background: url('../img/background-1.png') center/cover no-repeat;
    display: flex;

    align-items: center;
    justify-content: center;
    margin-top: 90px; /* компенсируем фиксированный хедер */
}

.section-234231-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.section-234231-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--light);
    max-width: 1300px;
    padding: 0 20px;
    animation: fadeIn 1.2s ease forwards;
    width:100%;
}

.section-234231-title {
    font-family: 'Benzin';
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-234231-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-234231-orange {
    display: inline-block;
    background: linear-gradient(261deg, #A35737 11.23%, #F59119 97.15%);
    color: #fff;
    font-weight: 400;

    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 12px 16.41px 12px 16.41px;font-family: 'Montserrat';
}

.btn-234231-orange:hover {

    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===== ADVANTAGES ===== */
.section-234231-advantages {
    background: #CC7041;
    padding: 70px 0;
    text-align: center;
    color: var(--light);
}

.section-234231-advantages h2 {
    font-family: 'Benzin', sans-serif;
    text-transform: uppercase;
    font-size: 34px;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 400;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.advantages-234231-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    text-align:left;
}

.advantages-234231-item {
    background: #fff;
    color: var(--dark);
    flex: 1 1 250px;
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s ease;
    width:100%;
}
.advantages-234231-item img {
    max-height: 67px;
}

.advantages-234231-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.advantages-234231-item h3 {
    font-family: 'Benzin', sans-serif;
    color: #CC7041;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 20px;
}

.advantages-234231-item p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .header-234231 { padding: 14px 30px; }
    .section-234231-title { font-size: 34px; }
    .section-234231-subtitle { font-size: 16px; }
}

@media (max-width: 992px) {
    .nav-234231 { display: none; } /* можно заменить на бургер */
    .header-234231-right { flex-direction: column; gap: 8px; align-items: flex-end; }
    .section-234231-title { font-size: 30px; }
}

@media (max-width: 768px) {
    .advantages-234231-item {
        background: #fff;
        color: var(--dark);
        flex: 1 1 250px;
        border-radius: 10px;
        padding: 25px;
        transition: 0.3s ease;
        width:88%;
    }
    .section-234231-hero { height: 80vh; }
    .section-234231-title { font-size: 22px;font-weight:400; }
    .section-234231-subtitle { font-size: 16px; }
    .advantages-234231-grid { flex-direction: column; align-items: center; }
    .header-234231 { padding: 10px 20px; }
    .isu {display:block !important;}
    .idsu {display:none !important;}
}
.hero-234231-bricks {
    position: absolute;
    right: 0;
    top: -5%; /* кирпичи заходят на второй блок */
    width: 320px;
    height: 110vh;
    pointer-events: none;
}

.brick-234231-top,
.brick-234231-bottom {
    position: absolute;
    max-width: 40vw;
    transition: transform 0.8s ease;
}

.brick-234231-top {
    top: 0;
    right: 60px;
    z-index: 3;
    transform: rotate(-10deg);
}

.brick-234231-bottom {
    bottom: 0;
    right: 0;
    z-index: 2;
    transform: rotate(12deg);
}

/* лёгкий hover для динамики */
.section-234231-hero:hover .brick-234231-top {
    transform: rotate(-8deg) translateY(-5px);
}

.section-234231-hero:hover .brick-234231-bottom {
    transform: rotate(10deg) translateY(5px);
}

/* адаптив */
@media (max-width: 1200px) {
    .hero-234231-bricks {
        width: 38px;
        bottom: -80px;
        right: 35px;
    }
    .brick-234231-top, .brick-234231-bottom { max-width: 140px; }
}

@media (max-width: 768px) {
    .brick-234231-top {
        top: 10px;
        right: -31px;
        z-index: 3;
        transform: rotate(0deg);
    }
    .brick-234231-bottom {
        bottom: 100px;
        right: 0;
        z-index: 2;
        transform: rotate(12deg);
    }
    .hero-234231-bricks { display: block; } /* на мобильных убираем */
}
.container-234231 { max-width: 1300px; margin: 0 auto; padding: 0 20px; }




/* === Ассортимент === */
.section-234231-assortment {
    padding: 30px 0 60px;
    background: #fff;
}

.assortment-234231-grid {
    display: grid;
    height:620px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px;
    grid-template-areas:
    "red cappuccino cappuccino"
    "red graphite peach";
}

.assortment-234231-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #f2f2f2 0%, #cfcfcf 100%);
    transition: 0.4s ease;
}

.assortment-234231-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.assortment-234231-item:hover img {
    transform: scale(1.05);
}

.assortment-234231-item p {
    display: flex;
    align-items: center;
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    color: #3E3E3E;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 600;
}

/* Стрелочка */
.arrow-234231 {
    position: absolute;
    top: 15px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: transform 0.3s ease;
}
.assortment-234231-item:hover .arrow-234231 {
    transform: translateX(3px);
}
.assortment-234231-btn {display:flex;    justify-content: center;padding-top:30px;}
.red { grid-area: red; height: 620px; }
.cappuccino { grid-area: cappuccino; height: 375px;}
.graphite { grid-area: graphite; height: 225px;}
.peach { grid-area: peach; height: 225px;}

@media (max-width: 1200px) {
    .assortment-234231-grid {
        grid-template-areas:
      "red cappuccino"
      "red graphite"
      "peach peach";
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .section-234231-advantages {
        background: #CC7041;
        padding: 70px 20px;
        text-align: center;
        color: var(--light);
    }
    .section-234231-advantages h2 {
        font-family: 'Benzin', sans-serif;
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 40px;
        text-align: left;
        font-weight: 400;
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
    .assortment-234231-grid {
        grid-template-areas:
      "red"
      "cappuccino"
      "graphite"
      "peach";
        grid-template-columns: 1fr;
        height:100%;
    }
    .red { grid-area: red; height: 180px; }
    .cappuccino { grid-area: cappuccino; height: 180px;}
    .graphite { grid-area: graphite; height: 180px;}
    .peach { grid-area: peach; height: 180px;}
}
/* === Контакт === */
.section-234231-contact {
    position: relative;
    background: url('../img/brick-wall.png') center/cover no-repeat;
    padding: 90px 0;
    text-align: center;
    color: #fff;
}
.contact-234231-overlay {
    position: absolute;
    inset: 0;

}
.section-234231-contact .container-234231 { position: relative; z-index: 2; }
.contact-234231-subtitle { margin-bottom: 40px; font-size: 16px; }
/* Форма: 3 поля в строке при ширине, затем кнопка на отдельной строке */
.contact-234231-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.contact-234231-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.contact-234231-inputs input {
    padding: 12px 16px;
    border-radius: 4px;
    border: none;
    width: 260px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.contact-234231-form .btn-234231-orange {
    margin-top: 10px;
    padding: 12px 36px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F39200 0%, #A0461A 100%);
    color: #fff;
    border: none;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Montserrat';
}

.contact-234231-form .btn-234231-orange:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-234231-inputs {
        flex-direction: column;
        align-items: center;
        margin-left:-35px;
        width:91%;
    }
    .contact-234231-inputs input {
        width: 100%;
        max-width: 360px;
    }
}
/* === Характеристики === */
.section-234231-specs .section-234231-title {
    margin-bottom:30px;
}
.section-234231-specs { padding: 30px 0 80px; background: #fff; }
.specs-234231-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.specs-234231-item {
    border: 1px solid #d7691b;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: 0.3s;
}
.specs-234231-item:hover { background: #fff5ec; transform: translateY(-4px); }
.specs-234231-item h3 {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #3E3E3E;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 0;
}
.specs-234231-item p {
    font-size: 16px;
    color: #555;
    margin: 0;
}
.specs-234231-btn { text-align: center; margin-top: 40px; }

@media (max-width: 768px) {
    .section-234231-assortment, .section-234231-specs { padding: 30px 0;position:relative; }
    .contact-234231-form input { width: 100%; max-width: 400px; }
}

.about-234231-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-234231-card,
.about-234231-video {
    border-radius: 10px;
    border-left: 3px solid #A35737;
    background: #FFF;
    box-shadow: 6px 6px 18px 0 rgba(0, 0, 0, 0.09);
    padding: 40px 30px;
}
.about-234231-card h2 {
    font-family: 'Benzin', sans-serif;
    text-transform: uppercase;
    color: #3E3E3E;
    font-size: 34px;
    line-height: 1.2;
    padding-bottom: 120px;
    font-weight: 400;
}
.about-234231-card h2 span {  background: linear-gradient(262deg, #EF8C1C 3.25%, #A35737 50.67%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.about-234231-card p { font-family: 'Montserrat'; margin: 20px 0 30px; }
.video-placeholder {
    display: flex; align-items: center; justify-content: center;
    height: 100%; color: #666; font-weight: 400;
    font-family: 'Benzin';
}
@media(max-width:992px){.about-234231-grid{grid-template-columns:1fr;}}
.factory-234231 {padding: 40px 0 0 0;}
.factory-234231-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

/* Карточки */
.factory-card {
    position: relative;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
}

/* Индивидуальные высоты — по макету */
.card1 { height: 340px; }   /* кирпичи в год */
.card2 { height: 220px; }   /* 105 человек */
.card3 { height: 340px; }   /* 100 млн */
.card4 { height: 220px; }   /* дилеры */
.card5 { height: 340px;    margin-top: -120px; }   /* Казахстан и СНГ */
.card6 { height: 220px; }   /* 100 лет */

/* Текст */
.factory-info {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.factory-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 0 0 4px;
}

.factory-info h3 {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
   font-weight: 400;
    margin: 0;
}

/* Оверлей */
.factory-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(12deg, rgb(0 0 0 / 91%) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}
.factory-card:hover::before {
    opacity: 0.8;
}

/* Hover эффект */
.factory-card:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* Адаптив */
@media (max-width: 1200px) {
    .factory-234231-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .factory-234231-grid {
        grid-template-columns: 1fr;
    }
    .factory-card { height: 260px !important; }
}
.projects-234231 {
    margin-top: 0;
    margin-bottom: 30px;
}

.projects-234231 .section-234231-title {
    font-family: 'Benzin', sans-serif;
    font-size: 28px;
   font-weight: 400;
    margin-top: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    grid-template-areas:
    "p1 p2 p3"
    "p4 p5 p6"
    "p7 p8 p9";
}

.projects-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* Пример разных высот — как в макете */
.p1 { grid-area: p1; height: 262px; }
.p2 { grid-area: p2; height: 262px; margin-top: 50px;}
.p3 { grid-area: p3; height: 262px; }
.p4 { grid-area: p4; height: 555px; margin-top: -50px;}
.p5 { grid-area: p5; height: 555px; }
.p6 { grid-area: p6; height: 262px; margin-top: -50px;}
.p7 { grid-area: p7; height: 262px; margin-top: -50px;}
.p8 { grid-area: p8; height: 262px; }
.p9 { grid-area: p9; height: 555px;    margin-top: -342px; }

@media(max-width: 992px){
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
      "p1 p2"
      "p3 p4"
      "p5 p6"
      "p7 p8"
      "p9 p9";
    }
}
@media(max-width:600px){
    .projects-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4"
      "p5"
      "p6"
      "p7"
      "p8"
      "p9";
    }
}

.projects-234231-grid img:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Кнопка */
.projects-234231-btn {
    text-align: center;
    margin-top: 20px;
}
/* Межблок с кирпичами */
.footer-bricks-234231 {
    position: absolute;
    height: 120px;
    background: transparent;
    width: 300px;
    right: 0;
    z-index: 99;
    margin-top: -210px;
}
.footer-bricks-234231 img {
    position: absolute;
    right: 0;
    top: -60px; /* половина кирпичей над формой */
    width: 400px;
    max-width: none;
    z-index: 5;
    pointer-events: none;
    user-select: none;
}

/* Футер */
.footer-234231 {
    background-color: #2F3837;
    color: #F2F2F2;
    position: relative;
    padding: 60px 0 40px;
}

.footer-234231-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.footer-234231-left img {
    max-width: 240px;
    margin-bottom: 10px;
}

.footer-234231-left p {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-234231-nav {
    display: flex;
    gap: 80px;
}
.footer-234231-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-234231-nav li {
    margin-bottom: 8px;
}
.footer-234231-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}
.footer-234231-nav a:hover {
    opacity: 0.8;
}

.footer-234231-policy {
    text-align: right;
    max-width: 1300px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.footer-234231-policy a {
    color: #bfbfbf;
    font-size: 13px;
    text-decoration: none;
}
.footer-234231-policy a:hover {
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 992px) {
    .footer-234231-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .footer-bricks-234231 img {
        width: 260px;
        top: -40px;
    }
    .footer-234231-policy {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .footer-bricks-234231 {
        position: absolute;
        height: 80px;
        background: transparent;
        width: 270px;
        right: 0;
        z-index: 99;
        margin-top: 245px;
    }
    .footer-bricks-234231 img {
        width: 130px;
        top: -40px;
    }
.specs-234231-grid {
    display: grid    ;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
    .assortment-234231-item p {
        display: flex;
        align-items: center;
        position: absolute;
        top: 15px;
        left: 20px;
        right: 20px;
        color: #3E3E3E;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        line-height: 1.3;
        text-transform: uppercase;
        font-weight: 600;
    }
    .about-234231-card h2 {
        font-family: 'Benzin', sans-serif;
        text-transform: uppercase;
        color: #3E3E3E;
        font-size: 22px;
        line-height: 1.2;
        padding-bottom: 0;
        font-weight: 400;
    }
    .section-234231-hero {
        position: relative;

        background: url(../img/background-1.png) center / cover no-repeat;
        display: flex    ;
        align-items: center;
        justify-content: center;
        margin-top: 60px;
    }
}
.slider-234231 {
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    border-radius: 16px;
    overflow: hidden;
}
.slide.active {
    display: block;
    animation: fadeIn 0.6s ease;
}
.slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Точки-пагинация */
.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 6px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    transition: 0.3s;
    cursor: pointer;
}
.dot.active {
    background: #A35737;
    transform: scale(1.2);
}

/* Анимация */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    .slider-234231 {
        max-width: 100%;
        padding:20px;
    }
}

.about-234231 {
    width: 100%;
    background: #fff;
    overflow: visible;
}

/* ==== ВЕРХНИЙ ФОН === */
.about-234231-hero {
    width: 100%;
    height: 20vh;
    min-height: 200px;
    background-image: url("../img/back-about.jpg");
    background-size: cover;
    background-position: center;
    position: relative;padding-top:135px;
}
.about-234231-hero::after {
    content: "";


}

/* ==== КОНТЕНТ === */
.about-234231-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px;
}

.section-title1 {
    font-family: 'Benzin', sans-serif;
    font-size: 34px;
    font-weight: 400;
    margin: 40px 0 16px;
    color: white;
    text-transform: uppercase;
    padding-top: 65px;
}
.section-title {
    font-family: 'Benzin', sans-serif;
    font-size: 34px;
    font-weight: 400;
    margin: 40px 0 16px;
    color: black;
    text-transform: uppercase;

}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ==== ПРОИЗВОДСТВО === */
.production-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
    margin-top: 32px;
}

.production-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #EF8C1C;
    border-radius: 8px;
    padding: 14px 18px;
    background: #fff;
}

.num {
    background: #EF8C1C;
    color: #fff;
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step h3 {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    color: #A35737;
    margin: 0 0 6px;
}

.step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.production-image img {
    max-width: 102%;
    border-radius: 12px;
    object-fit: cover;
}

/* ==== АДАПТИВ === */
@media (max-width: 992px) {

    .production-grid {
        grid-template-columns: 1fr;
    }
    .production-image {
        order: -1;
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .section-title {
        font-size: 22px;
        text-align: left;
    }
    .about-text {
        font-size: 14px;
        text-align: justify;
    }
    .step {
        flex-direction: row;
        align-items: flex-start;
        padding: 12px 14px;
    }
    .num {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
.production-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;

}

.step {
    position: relative;
    border: 2px solid #CC7041;
    border-radius: 12px;
    padding: 24px 26px 24px 56px;
    margin-left:20px;
    background: #fff;
}

.step .num {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: #CC7041;
    color: #fff;
    font-family: 'Benzin', sans-serif;
    font-weight: 500;
    font-size: 35px;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.step h3 {
    font-family: 'Benzin', sans-serif;
    color: #CC7041;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.step p {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* адаптив */
@media (max-width: 768px) {

    .step {
        padding: 18px 18px 18px 48px;margin-left:20px;
    }
    .step .num {
        width: 55px;
        height: 55px;
        font-size: 35px;
        left: -28px;
    }
    .step h3 {
        font-size: 16px;
    }
    .step p {
        font-size: 14px;
    }
}
.certificates-234231 {
    padding: 20px 0;
    background: #fff;
    display: flex;
    justify-content: center;
}

.certificates-container {
    max-width: 1300px;
    width: 100%;
    text-align: left;
}



.cert-text {
    text-align:left;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;



}

.cert-slider {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.cert-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    padding: 0 30px;
}
.cert-track::-webkit-scrollbar {
    display: none;
}

.cert-track img {
    flex: 0 0 auto;
    width: 230px;
    height: auto;
    border-radius: 8px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}
.cert-track img:hover {
    transform: scale(1.03);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #33333347;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;
    z-index: 5;
}
.arrow:hover {
    background: #EF8C1C;
    color: #fff;
}
.arrow.prev { left: 0;padding: 0 4px 4px 0; }
.arrow.next { right: 0;padding: 0 0 4px 4px; }

/* === адаптив === */
@media (max-width: 992px) {
    .cert-track img { width: 200px; }
}

@media (max-width: 768px) {
    .production-image img {
        max-width: 100%;
        width:100%;
        border-radius: 12px;
        object-fit: cover;
    }
    .section-title1 {
        font-family: 'Benzin', sans-serif;
        font-size: 22px;
        font-weight: 400;
        margin: 40px 0 16px;
        color: white;
        text-transform: uppercase;
        padding-top: 0;
    }
    .certificates-234231 {
        padding: 20px;
        background: #fff;
        display: flex    ;
        justify-content: center;
    }
    .about-234231-hero {
        background-size: cover;
        background-position: right;
        height: 100px;
        min-height: 100px;
    }
    .section-title { font-size: 24px; }
    .cert-text { font-size: 14px; }
    .cert-track { gap: 14px; }
    .cert-track img { width: 160px; }
}
.divine {    display: flex;
    flex-direction: column;
    width: 100%;}
.divine>a>img {
    width:100%;
    margin-bottom:20px;
}
.about-234231-hero1 {
    width: 100%;
    height: 20vh;
    min-height: 200px;
    background-image: url("../img/back-catalogue.jpg");
    background-size: cover;
    background-position: center;
    position: relative;padding-top:135px;
}
.about-234231-hero2 {
    width: 100%;
    height: 30vh;
    min-height: 300px;
    background-image: url(../img/back-catalogue.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 135px;
}
.about-234231-hero3 {
    width: 100%;
    height: 30vh;
    min-height: 300px;
    background-image: url(../img/back-catalogue.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 135px;
}
.about-234231-hero1::after {
    content: "";
}
@media (max-width: 768px) {
    .about-234231-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .about-234231-hero1 {
        background-size: cover;
        background-position: right;
        height: 100px;
        min-height: 100px;
    }
    .about-234231-hero2 {
        width: 100%;
        height: 50vh;
        min-height: 560px;
        background-image: url(../img/back-catalogue.jpg);
        background-size: cover;
        background-position: center;
        position: relative;
        padding-top: 75px;
    }
    .about-234231-hero3 {
        width: 100%;
        height: 20vh;
        min-height: 390px;
        background-image: url(../img/back-catalogue.jpg);
        background-size: cover;
        background-position: center;
        position: relative;
        padding-top: 75px;
    }

}
.techblock-234231 {
    background: #fff;
    padding: 10px 0 45px 0;
    display: flex;
    justify-content: center;
}

.techblock-container {
    display: flex;
    max-width: 1300px;
    width: 100%;
    gap: 60px;
    align-items: flex-start;
}

/* Левая колонка */
.techblock-description {
    flex: 1;
    background: #fff;
    border-left: 4px solid #A35737;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 60px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #222;
    line-height: 1.7;
}

.techblock-description p {
    margin-bottom: 18px;
}

/* Правая колонка */
.techblock-table {
    flex: 1.6;
}

.techblock-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #222;
}

.techblock-table td {
    border-bottom: 1px solid #ddd;
    padding: 12px 8px;
    vertical-align: top;
}

.techblock-table td:first-child {
    font-weight: 600;
    color: #444;
    width: 45%;
}

/* Адаптив */
@media (max-width: 992px) {
    .techblock-234231 {
        background: #fff;
        padding: 10px 20px;
        display: flex    ;
        justify-content: center;
    }
    .techblock-container {
        flex-direction: column;
        gap: 40px;
    }
    .techblock-description, .techblock-table {
        width: 83%;
    }
    .techblock-description {
        flex: 1;
        background: #fff;
        border-left: 4px solid #A35737;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 0px 28px;
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: #222;
        line-height: 1.7;
    }
}
.kaolin-section {
    padding: 10px 0 45px 0;
    background: #fff;
    display: flex;
    justify-content: center;
}

.kaolin-container {
    max-width: 1300px;
    width: 100%;
}

.kaolin-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 40px;
}

.kaolin-title {
    font-family: 'Benzin', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #222;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.kaolin-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
}

.kaolin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kaolin-card {
    display: flex;
    border: 2px solid #A35737;
    border-radius: 10px;
    padding: 18px 22px;
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
    box-sizing: border-box;
    height: 115px;
    flex-direction: column;
    justify-content: center;
}

.kaolin-card h3 {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    margin-top:0;
}

.kaolin-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* адаптив */
@media (max-width: 1024px) {
    .kaolin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 780px) {
.kaolin-section {
    padding: 0 20px 45px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
}
    .kaolin-card h3 {
        font-family: 'Benzin', sans-serif;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 6px;
        text-transform: uppercase;
        margin-top:0;
    }
}

@media (max-width: 640px) {
    .kaolin-grid {
        grid-template-columns: 1fr;
    }
    .kaolin-title {
        font-size: 22px;
    }
}
.news-section {
    background: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.news-container {
    width: 100%;
    max-width: 1300px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.news-item {
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

.news-item img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 14px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.news-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #222;
    text-decoration: none;
}

/* адаптив */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 780px) {
.news-section {
    background: #fff;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
}
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .news-item p {
        font-size: 14px;
    }
}

.exhibition-section {
    background: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.exhibition-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.exhibition-content {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

.exhibition-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.exhibition-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.exhibition-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.exhibition-content strong {
    font-weight: 600;
}

.exhibition-content ul {
    margin: 10px 0 20px 18px;
    padding: 0;
}

.exhibition-content ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.exhibition-image {
    flex: 0 0 40%;
}

.exhibition-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* адаптив */
@media (max-width: 992px) {
    .exhibition-container {
        flex-direction: column;
        gap: 40px;
    }
    .specs-234231-item h3 {
        font-family: 'Benzin', sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #3E3E3E;
        text-transform: uppercase;
        margin-bottom: 10px;
        margin-top: 0;
    }
    .exhibition-image {
        order: -1;
    }

    .exhibition-content h2 {
        font-size: 20px;
    }
}
.contacts-hkz {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 70px 20px;
    font-family: 'Montserrat', sans-serif;
}

.contacts-hkz-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* Левая колонка */
.contacts-hkz-left {
    flex: 0 0 50%;
    font-size: 15px;
    color: #111;
    line-height: 1.55;
}

.contacts-hkz-left p {
    margin: 0 0 22px;
    letter-spacing: 0.1px;
}

.contacts-hkz-left strong {
    font-weight: 600;
}

.contacts-hkz-left a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contacts-hkz-left a:hover {
    color: #A35737;
}

/* Правая колонка (карта или изображение) */
.contacts-hkz-right {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #d9d9d9;
    border-radius: 3px;
}

/* Адаптив */
@media (max-width: 992px) {
    .contacts-hkz-container {
        flex-direction: column;
        gap: 40px;
    }
    .contacts-hkz-left {
        flex: none;
    }
    .contacts-hkz-right {
        width: 100%;
    }
}
.map-yandex-container{
width: 100%;
height: 500px;}
.map-yandex-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 4px;
}
.gallery-234231 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 165px 0 30px 0;
    background: #fff;
}

.gallery-234231-container {
    max-width: 1300px;
    width: 100%;
    padding: 0 15px;
}

.gallery-234231-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-234231-item {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-234231-item:hover {
    transform: scale(1.02);
}

/* Модальное окно */
.gallery-234231-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.gallery-234231-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 6px;
}

.gallery-234231-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-234231-close:hover {
    color: #ff7f27;
}

@media (max-width: 768px) {
.gallery-234231 {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 65px 0;
    background: #fff;
}
}
.lang-switcher-234231 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-right: 15px;
}

.lang-switcher-234231 .divider {
    color: #999;
}

.lang-switcher-234231 .lang-btn {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.lang-switcher-234231 .lang-btn:hover {
    color: #A35737;
}

.lang-switcher-234231 .lang-btn.active {
    font-weight: 600;
    color: #A35737;
}

@media (max-width: 992px) {
    .lang-switcher-234231 {
        order: -1;
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }
}