* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Text-font';
    text-decoration: none;
}

:root {
    --color-text: #878786;
    --color-title: #e64011;
    --color-bg: #e2e2e2;
    --radius: 10px;
}

@font-face {
    font-family: 'Title-font';
    src: url('../fonts/MullerBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Text-font';
    src: url('../fonts/MullerLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Для всех браузеров */
html,
body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE и Edge */
}

/* Для WebKit браузеров (Chrome, Safari) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Отключаем скроллбар */
}

/* ОБЩИЕ КЛАССЫ */

.box {
    max-width: 1440px;
    margin: 0 auto;
}

.box-wrap {
    padding: 20px 50px;
    display: inline-block;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    background: #00000096;
}

.title {
    text-align: center;
    color: var(--color-title);
    font-family: 'Title-font';
    font-size: 40px;
    margin: 20px 0;
}

.subtitle {
    color: var(--color-text);
    font-size: 15px;
    font-family: 'Text-font';
    text-align: center;
    margin-top: 40px;
}

.btn {
    margin: 20px 0 0 0;
    padding: 15px 5px;
    border: none;
    border-radius: var(--radius);
    font-size: 25px;
    cursor: pointer;
    background: var(--color-title);
    color: var(--color-bg);
    font-family: 'Text-font';
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* ОБЩИЕ КЛАССЫ */

.menu-btn {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    background: #00000096;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    z-index: 999;
}

.menu-btn div {
    height: 4px;
    width: 100%;
    background: var(--color-title);
    border-radius: 2px;
    transition: 0.4s;
    position: relative;
}

/* Анимация крестика */
.menu-btn.active div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu-btn.active div:nth-child(2) {
    opacity: 0;
}

.menu-btn.active div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.menu {
    width: 100%;
    height: 100%;
    padding: 20px 50px;
    background: #e2e2e2;
    opacity: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    transition: opacity 1s, visibility 1s;
}

.menu img {
    position: absolute;
    left: 50%;
    top: 200px;
    width: 300px;
    transform: translateX(-50%);
}

.menu.active {
    z-index: 100;
    opacity: 0.9;
}

body {
    background: var(--color-bg);
}


/* ГЛАВНЫЙ ЭКРАН */

.screen {
    width: 100%;
    height: 100dvh;
    padding: 50px 50px 0 50px;
    position: relative;
    background: url(../img/bg.png) center center/cover no-repeat;
    background-position: bottom;
}

.screen .subtitle {
    text-align: left;
    font-size: 25px;
}

.screen .box-wrap {
    width: 650px;
}

.screen .btn {
    min-width: 197px;
    background: var(--color-bg);
    color: var(--color-title);
}

.screen h1 {
    margin-bottom: 20px;
    font-size: 45px;
    text-transform: uppercase;
    color: var(--color-title);
    font-family: 'Title-font';
}

.screen .call-btn {
    width: 650px;
    display: block;
    color: var(--color-bg);
    background: var(--color-title);
    font-family: 'Title-font';
    text-transform: uppercase;
}

.screen .perks {
    width: calc(100% - 100px);
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--color-title);
}

.icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.feature-link {
    border: 1px solid var(--color-text);
    border-radius: var(--radius);
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-link p {
    font-family: "Text-font";
    font-size: 25px;
    color: var(--color-text);
}

.feature-link:hover,
.feature-link:hover p {
    background: var(--color-bg);
    background: #232323;
    color: #FF6600;
}

.feature-link:hover .icon {
    color: #ff6600;
    /* например, яркий оранжевый */
    transform: scale(1.1);
}

/* ГЛАВНЫЙ ЭКРАН */


/* УСЛУГИ */

.services {
    text-align: center;
    padding: 40px 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service-card {
    width: 32%;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(31, 41, 55, 0.09);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
}

.card-big {
    min-width: 49%;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.18);
}

.service-icon {
    color: #ff6600;
    font-size: 2rem;
    margin-bottom: -10px;
}

.service-card h3 {
    font-size: 25px;
    margin: 0 0 12px 0;
    color: var(--color-text);
}

.service-card p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

/* УСЛУГИ */

/* ЭТАЫ РАБОТ */

.work-steps {
    padding: 0 50px;
    display: flex;
    gap: 20px;
}

.work-steps .img {
    width: 50%;
    height: 420px;
    border-radius: var(--radius);
    background: url(../img/work.avif) center center/cover no-repeat;
}

.work-steps h2 {
    text-align: center;
    color: var(--color-title);
    font-size: 2.4rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-list {
    height: 420px;
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    counter-increment: step-counter;
    content: counter(step-counter);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-bg);
    background-color: var(--color-title);
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: var(--radius);
    text-align: center;
    margin-right: 25px;
    user-select: none;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(230, 64, 17, 0.45);
}

.step-content h3 {
    margin: 0 0 8px;
    color: var(--color-title);
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 700px;
}

/* ЭТАЫ РАБОТ */

/* ОТЗЫВЫ */

.review {
    padding: 40px 50px;
}

.review-wrap {
    height: 500px;
    display: flex;
    gap: 20px;
}

.review-wrap .item {
    width: 50%;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(31, 41, 55, 0.09);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.22s, box-shadow 0.22s;
}

.item-wrap {
    width: 50%;
}

.item-wrap .item {
    width: 100%;
    height: 46%;
}

.item-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.item-title .img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: var(--radius);
}

.photo-review {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border-radius: var(--radius);
}

/* ОТЗЫВЫ */

/* FAQ */

.faq-section {
    background: #fff;
    padding: 20px 50px;
    padding-bottom: 50px;
}

.faq-title {
    margin-bottom: 38px;
    color: var(--color-title);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    box-shadow: 0 2px 10px rgba(230, 64, 17, 0.06);
    transition: box-shadow 0.2s;
}

.faq-question {
    width: 100%;
    border: none;
    padding: 20px 32px 20px 24px;
    font-size: 1.18rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: color 0.2s;
}

.faq-question:hover,
.faq-item.active .faq-question {
    color: var(--color-title);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-title);
    margin-left: 22px;
    width: 30px;
    display: inline-block;
    text-align: center;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: var(--color-text);
    font-size: 1rem;
    padding: 0 28px;
    line-height: 1.6;
    transition: max-height 0.33s cubic-bezier(0.5, 0, 0.1, 1), padding 0.33s;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    /* можно увеличить, если ответ длиннее */
    padding: 12px 28px 22px;
}


/* FAQ */