@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: #F39200;
    --brown: #A0461A;
    --dark: #3E3E3E;
    --gray: #5B5B5B;
    --light: #fff;
}

.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: 18px 60px;
    display: flex;
    justify-content: center;
}

.header-234231-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ЛОГОТИП */
.header-234231-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.header-234231-logo img {
    height: 38px;
    width: auto;
}

.logo-234231-name {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.logo-234231-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2px;
}

/* ПРАВАЯ ЧАСТЬ */
.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;
    gap: 36px;
}
.pt-22 {
    padding-top: 22px;
}
.mar-15 {margin-left: 15px;}
.contacts-234231-block p,
.contacts-234231-phones p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.3;
}

.contacts-234231-block strong {
    font-weight: 700;
    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 svg {
    transition: 0.3s;
}

.contacts-234231-icons a:hover svg {
    fill: var(--orange);
}

/* КНОПКА */
.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: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.btn-234231-orange:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* АДАПТИВ */
@media (max-width: 1200px) {
    .header-234231 { padding: 15px 30px; }
    .nav-234231-top a { font-size: 14px; }
}

@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) {
    .header-234231-container { flex-direction: column; align-items: center; gap: 10px; }
    .header-234231-right { align-items: center; }
    .contacts-234231-bottom { flex-direction: column; gap: 10px; align-items: center; }
}

/* ===== HERO ===== */
.section-234231-hero {
    position: relative;
    height: 90vh;
    background: url('hero-bg.jpg') 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: center;
    color: var(--light);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1.2s ease forwards;
}

.section-234231-title {
    font-family: 'Benzin';
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    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: 600;

    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s;
    padding: 12px 16.41px 12px 16.41px;
}

.btn-234231-orange:hover {
    background: #f0802b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===== ADVANTAGES ===== */
.section-234231-advantages {
    background: var(--orange);
    padding: 70px 0;
    text-align: center;
    color: var(--light);
}

.section-234231-advantages h2 {
    font-family: 'Benzin', sans-serif;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 40px;
}

.advantages-234231-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-234231-item {
    background: #fff;
    color: var(--dark);
    flex: 1 1 250px;
    border-radius: 8px;
    padding: 25px;
    transition: 0.3s ease;
}

.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: var(--orange);
    margin-bottom: 10px;
    font-size: 18px;
}

.advantages-234231-item p {
    font-size: 15px;
    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) {
    .section-234231-hero { height: 70vh; }
    .section-234231-title { font-size: 26px; }
    .section-234231-subtitle { font-size: 14px; }
    .advantages-234231-grid { flex-direction: column; align-items: center; }
    .header-234231 { padding: 10px 20px; }
}