
    /* ============================================
       HERO SECTION - ГИБКАЯ ВЕРСТКА (БЕЗ ABSOLUTE)
       ============================================ */

:root {
    --container-max-width: 1560px;
    --container-padding: 20px;
    --color-white: #FFFFFF;
    --color-black: #282624;
    --color-gray-100: #908171;
    --transition-base: 0.3s;
    --transition-timing: ease;
    --shadow-button-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.main-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #F6F5F3;

}


.main-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: 0 0 50px 50px;
}

.main-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(226.66deg, rgba(124, 78, 30, 0.3) 11.96%, rgba(255, 255, 255, 0) 35.14%),
    linear-gradient(90deg, rgba(124, 78, 30, 0.3) 29.71%, rgba(255, 255, 255, 0) 90.65%);
}

/* Блюр эффект - центрирован относительно контента */
.main-hero-blur {
    position: absolute;
    width: 100%;
    max-width: 848px;
    height: 729px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(143, 109, 70, 0.5);
    filter: blur(125px);
    pointer-events: none;
}

.main-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px var(--container-padding);
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.main-hero-content {
    max-width: 696px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.main-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 110%;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.02em;
}

.main-hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 135%;
    color: var(--color-white);
    margin: 0;
}

.main-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Кнопки */
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 40px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all var(--transition-base) var(--transition-timing);
    text-decoration: none;
    white-space: nowrap;
}

.main-btn-primary {
    background: var(--color-black);
    color: var(--color-white);
}

.main-btn-primary:hover {
    background: #3a3633;
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.main-btn-primary:active {
    transform: translateY(0);
}

.main-btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    color: var(--color-white);
}

.main-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.main-btn-secondary:active {
    transform: translateY(0);
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1200px) {
    .main-hero-title {
        font-size: 56px;
    }

    .main-hero-description {
        font-size: 24px;
    }

    .main-hero-content {
        max-width: 600px;
        gap: 40px;
    }

    .main-hero-blur {
        max-width: 700px;
        height: 600px;
    }
}

@media (max-width: 992px) {
    .main-hero-container {
        padding: 100px var(--container-padding);
        min-height: auto;
    }

    .main-hero-title {
        font-size: 48px;
    }

    .main-hero-description {
        font-size: 20px;
    }

    .main-hero-content {
        max-width: 550px;
        gap: 35px;
    }

    .main-btn {
        padding: 18px 32px 20px;
        font-size: 16px;
    }

    .main-hero-blur {
        max-width: 600px;
        height: 500px;
        filter: blur(100px);
    }
}

@media (max-width: 768px) {


    .main-hero-container {
        padding: 150px var(--container-padding) 60px;
    }

    .main-hero-title {
        font-size: 36px;
    }

    .main-hero-description {
        font-size: 18px;
    }

    .main-hero-content {
        max-width: 100%;
        gap: 30px;
    }

    .main-hero-buttons {
        gap: 15px;
    }

    .main-btn {
        padding: 14px 24px 16px;
        font-size: 14px;
        white-space: normal;
    }

    .main-hero-blur {
        max-width: 500px;
        height: 400px;
        filter: blur(80px);
        top: 30%;
    }
}

@media (max-width: 576px) {
    .main-hero-container {
        padding: 150px 15px 50px;
    }

    .main-hero-title {
        font-size: 42px;
    }

    .main-hero-description {
        font-size: 16px;
    }

    .main-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .main-btn {
        width: 100%;
        text-align: center;
    }

    .main-hero-blur {
        max-width: 400px;
        height: 350px;
        filter: blur(60px);
        top: 40%;
    }
}

@media (max-width: 480px) {
    .main-hero-title {
        font-size: 32px;
    }

    .main-hero-description {
        font-size: 14px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blurFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.main-hero-title {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0s;
}

.main-hero-description {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.main-hero-buttons {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.main-hero-blur {
    animation: blurFadeIn 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}




    /* ============================================
     CATALOG SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
     ============================================ */

    .catalog {
        width: 100%;
        background: #FFFFFF;
        padding: 80px 0 100px;
    }

    .catalog .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ============================================
       ЗАГОЛОВОК
       ============================================ */

    .catalog__header {
        text-align: center;
        margin-bottom: 60px;
    }

    .catalog__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 54px;
        line-height: 115%;
        text-align: center;
        color: #282624;
        margin-bottom: 10px;
    }

    .catalog__subtitle {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 28px;
        line-height: 135%;
        text-align: center;
        color: #282624;
        margin: 0;
    }

    /* ============================================
       СЕТКА КАТАЛОГА
       ============================================ */

    .catalog__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 10px;
    }

    /* ============================================
       КАРТОЧКА ТОВАРА (теперь это ссылка)
       ============================================ */

    .catalog-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-decoration: none; /* Убираем подчеркивание у ссылки */
        color: inherit; /* Наследуем цвет текста */
        transition: transform 0.3s ease; /* Плавная анимация при наведении */
    }

    .catalog-item:hover {
        transform: translateY(-5px); /* Небольшой подъем карточки при наведении */
    }

    /* Изображение */
    .catalog-item__image {
        width: 100%;
        height: 580px;
        background: #F6F5F3;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .catalog-item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .catalog-item:hover .catalog-item__image img {
        transform: scale(1.05);
    }

    /* Контент */
    .catalog-item__content {
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .catalog-item__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 28px;
        line-height: 120%;
        color: #282624;
        margin: 0;
    }

    .catalog-item__description {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 145%;
        color: #282624;
        margin: 0;
    }

    /* ============================================
       АДАПТИВНОСТЬ
       ============================================ */

    @media (max-width: 1200px) {
        .catalog__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 20px;
        }

        .catalog-item__image {
            height: 500px;
        }

        .catalog-item__title {
            font-size: 24px;
        }

        .catalog-item__description {
            font-size: 16px;
        }
    }

    @media (max-width: 992px) {
        .catalog {
            padding: 60px 0 80px;
        }

        .catalog__title {
            font-size: 42px;
        }

        .catalog__subtitle {
            font-size: 22px;
        }

        .catalog-item__image {
            height: 450px;
        }

        .catalog-item__title {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .catalog {
            padding: 40px 0 60px;
        }

        .catalog__title {
            font-size: 32px;
        }

        .catalog__subtitle {
            font-size: 18px;
        }

        .catalog__grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .catalog-item__image {
            height: 400px;
        }

        .catalog-item__title {
            font-size: 20px;
        }

        .catalog-item__description {
            font-size: 14px;
        }
    }

    @media (max-width: 576px) {
        .catalog__title {
            font-size: 28px;
        }

        .catalog__subtitle {
            font-size: 16px;
        }

        .catalog-item__image {
            height: 320px;
        }

        .catalog-item__title {
            font-size: 18px;
        }

        .catalog-item__description {
            font-size: 13px;
        }
    }

    /* ============================================
       АНИМАЦИИ
       ============================================ */

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .catalog__title,
    .catalog__subtitle {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .catalog__title {
        animation-delay: 0s;
    }

    .catalog__subtitle {
        animation-delay: 0.1s;
    }

    .catalog-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .catalog-item:nth-child(1) { animation-delay: 0.2s; }
    .catalog-item:nth-child(2) { animation-delay: 0.25s; }
    .catalog-item:nth-child(3) { animation-delay: 0.3s; }
    .catalog-item:nth-child(4) { animation-delay: 0.35s; }
    .catalog-item:nth-child(5) { animation-delay: 0.4s; }
    .catalog-item:nth-child(6) { animation-delay: 0.45s; }
    .catalog-item:nth-child(7) { animation-delay: 0.5s; }
    .catalog-item:nth-child(8) { animation-delay: 0.55s; }

    /* ============================================
   HOW WE WORK SECTION - ТОЧНОЕ СООТВЕТСТВИЕ ДИЗАЙНУ
   ============================================ */

.how-we-work {
    position: relative;
    width: 100%;
    min-height: 624px;
    background: #5d5346;
    border-radius: 50px 50px 0 0;
    padding: 80px 0 100px;
    overflow: hidden;
}

/* Фоновое изображение/текстура */
.how-we-work__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px 50px 0 0;
    pointer-events: none;
}

.how-we-work__texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('{{ "assets/images/texture.png"|theme }}');
    background-repeat: repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.how-we-work__container {
    position: relative;
    z-index: 2;
}

/* Заголовок */
.how-we-work__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 115%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Сетка шагов */
.how-we-work__steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Карточка шага */
.how-we-work__step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 248px;
}

/* Блок с номером */
.how-we-work__step-number {
    position: relative;
    width: 68px;
    height: 52px;
}

.how-we-work__step-number-bg {
    position: absolute;
    width: 68px;
    height: 52px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    top: 0;
    left: 0;
}

.how-we-work__step-number-text {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* Контент шага */
.how-we-work__step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.how-we-work__step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #FFFFFF;
    margin: 0;
}

.how-we-work__step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    color: #E2E1DF;
    margin: 0;
}

/* Кнопка */
.how-we-work__steps-action {
    text-align: center;
    position: relative;
    z-index: 2;
}

.how-we-work__btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 22px 40px 24px;
    gap: 10px;
    border: none;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    text-align: center;
    color: #282624;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 460px;
}

.how-we-work__btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f5f5f5;
}

.how-we-work__btn-white:active {
    transform: translateY(0);
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1400px) {
    .how-we-work__steps-grid {
        gap: 30px;
        max-width: 1200px;
    }

    .how-we-work__step-item {
        max-width: 220px;
    }

    .how-we-work__step-title {
        font-size: 22px;
    }

    .how-we-work__step-description {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .how-we-work {
        padding: 60px 0 80px;
    }

    .how-we-work__title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .how-we-work__steps-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .how-we-work__step-item {
        flex: 0 0 calc(33.333% - 40px);
        max-width: none;
    }

    .how-we-work__btn-white {
        min-width: 400px;
        padding: 18px 32px 20px;
    }
}

@media (max-width: 992px) {
    .how-we-work {
        border-radius: 40px 40px 0 0;
        padding: 50px 0 60px;
    }

    .how-we-work__title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .how-we-work__step-item {
        flex: 0 0 calc(50% - 40px);
    }

    .how-we-work__step-number {
        width: 60px;
        height: 46px;
    }

    .how-we-work__step-number-bg {
        width: 60px;
        height: 46px;
        border-radius: 23px;
    }

    .how-we-work__step-number-text {
        font-size: 24px;
    }

    .how-we-work__step-title {
        font-size: 20px;
    }

    .how-we-work__step-description {
        font-size: 15px;
    }

    .how-we-work__btn-white {
        min-width: 350px;
        padding: 16px 28px 18px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        border-radius: 30px 30px 0 0;
        padding: 40px 0 50px;
    }

    .how-we-work__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .how-we-work__steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .how-we-work__step-item {
        flex: 1;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 20px;
    }

    .how-we-work__step-number {
        flex-shrink: 0;
    }

    .how-we-work__step-content {
        flex: 1;
    }

    .how-we-work__step-title {
        font-size: 18px;
    }

    .how-we-work__step-description {
        font-size: 14px;
    }

    .how-we-work__btn-white {
        min-width: 280px;
        padding: 14px 24px 16px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .how-we-work {
        padding: 30px 0 40px;
        border-radius: 25px 25px 0 0;
    }

    .how-we-work__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .how-we-work__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        padding: 20px;
    }

    .how-we-work__step-number {
        margin: 0 auto;
    }

    .how-we-work__step-content {
        text-align: center;
    }

    .how-we-work__step-title {
        font-size: 18px;
    }

    .how-we-work__step-description {
        font-size: 14px;
    }

    .how-we-work__btn-white {
        min-width: 100%;
        padding: 12px 20px 14px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.how-we-work__step-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.how-we-work__step-item:nth-child(1) { animation-delay: 0.1s; }
.how-we-work__step-item:nth-child(2) { animation-delay: 0.2s; }
.how-we-work__step-item:nth-child(3) { animation-delay: 0.3s; }
.how-we-work__step-item:nth-child(4) { animation-delay: 0.4s; }
.how-we-work__step-item:nth-child(5) { animation-delay: 0.5s; }

.how-we-work__title {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0s;
}

.how-we-work__btn-white {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

/* Hover эффект для карточек */
.how-we-work__step-item {
    transition: transform 0.3s ease;
}

.how-we-work__step-item:hover {
    transform: translateY(-5px);
}

.how-we-work__step-item:hover .how-we-work__step-number-bg {
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
}


   /* ============================================
            WHY CHOOSE US SECTION - ВСЕ КЛАССЫ С ПРЕФИКСОМ
            ============================================ */

     .why-choose-us {
         position: relative;
         width: 100%;
         background: #F6F5F3;
         border-radius: 0 0 50px 50px;
         padding: 0 0 100px;
         overflow: hidden;
     }

    .why-choose-us__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
        border-radius: 0 0 50px 50px;
    }

    .why-choose-us__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .why-choose-us__container {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .why-choose-us__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 54px;
        line-height: 115%;
        color: #282624;
        margin: 0 0 60px;
        padding-top: 80px;
        max-width: 290px;
    }

    .why-choose-us__advantages-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }

    .why-choose-us__advantages-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .why-choose-us__advantages-row--centered {
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
        max-width: 1105px;
        margin: 0 auto;
    }

    .why-choose-us__advantage-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(25px);
        border-radius: 20px;
        padding: 20px 24px;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: fit-content;
    }

    .why-choose-us__advantage-card-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }

    .why-choose-us__advantage-card-title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        color: #282624;
        margin: 0;
    }

    .why-choose-us__advantage-card-description p {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 145%;
        color: #282624;
        margin: 0;
    }

    .why-choose-us__advantage-card--tall {
        grid-row: span 2;
    }

    .why-choose-us__advantage-card--wide {
        grid-column: span 2;
    }

    .why-choose-us__advantage-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* ============================================
       АДАПТИВНОСТЬ
       ============================================ */

    @media (max-width: 1200px) {
        .why-choose-us__title {
            font-size: 48px;
            margin-bottom: 50px;
            padding-top: 60px;
        }

        .why-choose-us__advantages-row {
            gap: 20px;
        }

        .why-choose-us__advantage-card-title {
            font-size: 22px;
        }

        .why-choose-us__advantage-card-description {
            font-size: 16px;
        }
    }

    @media (max-width: 992px) {
        .why-choose-us {
            border-radius: 0 0 40px 40px;
            padding-bottom: 60px;
        }

        .why-choose-us__bg {
            border-radius: 0 0 40px 40px;
        }

        .why-choose-us__title {
            font-size: 42px;
            margin-bottom: 40px;
            padding-top: 50px;
            max-width: none;
            text-align: center;
        }

        .why-choose-us__advantages-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .why-choose-us__advantages-row--centered {
            grid-template-columns: repeat(2, 1fr);
        }

        .why-choose-us__advantage-card--tall {
            grid-row: span 1;
        }

        .why-choose-us__advantage-card--wide {
            grid-column: span 1;
        }
    }

    @media (max-width: 768px) {
        .why-choose-us {
            border-radius: 0 0 30px 30px;
            padding-bottom: 40px;
        }

        .why-choose-us__bg {
            border-radius: 0 0 30px 30px;
        }

        .why-choose-us__title {
            font-size: 32px;
            margin-bottom: 30px;
            padding-top: 40px;
        }

        .why-choose-us__advantages-row {
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .why-choose-us__advantages-row--centered {
            grid-template-columns: 1fr;
        }

        .why-choose-us__advantage-card {
            padding: 18px 20px;
        }

        .why-choose-us__advantage-card-title {
            font-size: 20px;
        }

        .why-choose-us__advantage-card-description {
            font-size: 15px;
        }
    }

    @media (max-width: 576px) {
        .why-choose-us {
            border-radius: 0 0 25px 25px;
            padding-bottom: 30px;
        }

        .why-choose-us__bg {
            border-radius: 0 0 25px 25px;
        }

        .why-choose-us__title {
            font-size: 28px;
            margin-bottom: 25px;
            padding-top: 30px;
        }

        .why-choose-us__advantage-card {
            padding: 14px 16px;
        }

        .why-choose-us__advantage-card-title {
            font-size: 18px;
        }

        .why-choose-us__advantage-card-description {
            font-size: 14px;
        }
    }

    /* ============================================
       АНИМАЦИИ
       ============================================ */

    @keyframes why-choose-us-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .why-choose-us__title {
        animation: why-choose-us-fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: 0s;
    }

    .why-choose-us__advantage-card {
        animation: why-choose-us-fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .why-choose-us__advantages-row .why-choose-us__advantage-card:nth-child(1) { animation-delay: 0.1s; }
    .why-choose-us__advantages-row .why-choose-us__advantage-card:nth-child(2) { animation-delay: 0.2s; }
    .why-choose-us__advantages-row .why-choose-us__advantage-card:nth-child(3) { animation-delay: 0.3s; }
    .why-choose-us__advantages-row .why-choose-us__advantage-card:nth-child(4) { animation-delay: 0.4s; }
    .why-choose-us__advantages-row--centered .why-choose-us__advantage-card:nth-child(1) { animation-delay: 0.5s; }
    .why-choose-us__advantages-row--centered .why-choose-us__advantage-card:nth-child(2) { animation-delay: 0.6s; }
    .why-choose-us__advantages-row--centered .why-choose-us__advantage-card:nth-child(3) { animation-delay: 0.7s; }



         /* ============================================
        INDEX PORTFOLIO SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
        ============================================ */

     .index-portfolio {
         position: relative;
         width: 100%;
         background: var(--color-bg-primary);
     }

    /* Контейнер */
    .index-portfolio__container {
        max-width: 1400px;
        margin: 80px auto;
        padding: 0 20px;
    }

    /* ============================================
       ЗАГОЛОВОК
       ============================================ */

    .index-portfolio__header {
        text-align: center;
        margin-bottom: 50px;
    }

    .index-portfolio__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 54px;
        line-height: 115%;
        text-align: center;
        color: #282624;
        margin-bottom: 10px;
        max-width: 680px;
        margin: 0 auto;
    }


    .index-portfolio__subtitle {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 28px;
        line-height: 135%;
        text-align: center;
        color: #282624;
        margin: 0;
    }

    /* ============================================
       СЕТКА КАРТОЧЕК
       ============================================ */

    .index-portfolio__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 50px 10px;
        margin-bottom: 80px;
    }

    /* ============================================
       КАРТОЧКА ПРОЕКТА
       ============================================ */

    .index-portfolio-card {
        width: calc(50% - 5px);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* Изображение */
    .index-portfolio-card__image {
        width: 100%;
        height: 432px;
        overflow: hidden;
        border-radius: 20px;
    }

    .index-portfolio-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .index-portfolio-card:hover .index-portfolio-card__image img {
        transform: scale(1.05);
    }

    /* Контент карточки */
    .index-portfolio-card__content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 10px;
        gap: 15px;
        flex-direction: column;
    }

    /* Информация (название + адрес) */
    .index-portfolio-card__info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        flex: 1;
    }

    .index-portfolio-card__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 28px;
        line-height: 120%;
        color: #282624;
        margin: 0;
    }

    .index-portfolio-card__address {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 145%;
        color: #282624;
        margin: 0;
    }

    /* Цена */
    .index-portfolio-card__price {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 28px;
        line-height: 120%;
        color: #282624;
        white-space: nowrap;
    }

    /* ============================================
       КНОПКА
       ============================================ */

    .index-portfolio__action {
        text-align: center;
    }

    .index-btn-black {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #282624;
        padding: 22px 40px 24px;
        gap: 10px;
        border: none;
        border-radius: 15px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 145%;
        text-align: center;
        color: #FFFFFF;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 460px;
    }

    .index-btn-black:hover {
        transform: translateY(-2px);
        background: #3a3633;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .index-btn-black:active {
        transform: translateY(0);
    }

    /* ============================================
       АДАПТИВНОСТЬ
       ============================================ */

    @media (max-width: 1400px) {
        .index-portfolio__container {
            max-width: 1200px;
        }

        .index-portfolio__title {
            font-size: 48px;
        }

        .index-portfolio__subtitle {
            font-size: 24px;
        }
    }

    @media (max-width: 1200px) {
        .index-portfolio-card__image {
            height: 380px;
        }

        .index-portfolio-card__title,
        .index-portfolio-card__price {
            font-size: 24px;
        }

        .index-portfolio-card__address {
            font-size: 16px;
        }

        .index-btn-black {
            min-width: 400px;
            padding: 18px 32px 20px;
            font-size: 16px;
        }
    }

    @media (max-width: 992px) {

        .index-portfolio__header {
            margin-bottom: 60px;
        }

        .index-portfolio__title {
            font-size: 42px;
        }

        .index-portfolio__subtitle {
            font-size: 22px;
        }

        .index-portfolio__grid {
            gap: 40px 20px;
            margin-bottom: 60px;
        }

        .index-portfolio-card {
            width: calc(50% - 10px);
        }

        .index-portfolio-card__image {
            height: 320px;
        }

        .index-portfolio-card__title,
        .index-portfolio-card__price {
            font-size: 22px;
        }

        .index-portfolio-card__address {
            font-size: 15px;
        }

        .index-btn-black {
            min-width: 350px;
            padding: 16px 28px 18px;
            font-size: 15px;
        }
    }

    @media (max-width: 768px) {


        .index-portfolio__header {
            margin-bottom: 40px;
        }

        .index-portfolio__title {
            font-size: 32px;
        }

        .index-portfolio__subtitle {
            font-size: 18px;
        }

        .index-portfolio__grid {
            flex-direction: column;
            gap: 30px;
            margin-bottom: 50px;
        }

        .index-portfolio-card {
            width: 100%;
        }

        .index-portfolio-card__image {
            height: 280px;
        }

        .index-portfolio-card__content {
            padding: 0;
            flex-direction: column;
            gap: 10px;
        }

        .index-portfolio-card__title,
        .index-portfolio-card__price {
            font-size: 20px;
        }

        .index-portfolio-card__address {
            font-size: 14px;
        }

        .index-portfolio-card__price {
            white-space: normal;
        }

        .index-btn-black {
            min-width: 280px;
            padding: 14px 24px 16px;
            font-size: 14px;
            border-radius: 12px;
        }
    }

    @media (max-width: 576px) {


        .index-portfolio__title {
            font-size: 28px;
        }

        .index-portfolio__subtitle {
            font-size: 16px;
        }

        .index-portfolio-card__image {
            height: 220px;
            border-radius: 16px;
        }

        .index-portfolio-card__title,
        .index-portfolio-card__price {
            font-size: 18px;
        }

        .index-portfolio-card__address {
            font-size: 13px;
        }

        .index-btn-black {
            min-width: 100%;
            padding: 12px 20px 14px;
            font-size: 14px;
        }
    }

    /* ============================================
       АНИМАЦИИ
       ============================================ */

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .index-portfolio__title,
    .index-portfolio__subtitle {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .index-portfolio__title {
        animation-delay: 0s;
    }

    .index-portfolio__subtitle {
        animation-delay: 0.1s;
    }

    .index-portfolio-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .index-portfolio-card:nth-child(1) { animation-delay: 0.2s; }
    .index-portfolio-card:nth-child(2) { animation-delay: 0.3s; }
    .index-portfolio-card:nth-child(3) { animation-delay: 0.4s; }
    .index-portfolio-card:nth-child(4) { animation-delay: 0.5s; }
    .index-portfolio-card:nth-child(5) { animation-delay: 0.6s; }
    .index-portfolio-card:nth-child(6) { animation-delay: 0.7s; }

    .index-btn-black {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: 0.8s;
    }




         /* ============================================
        REVIEWS SECTION - ТОЧНОЕ СООТВЕТСТВИЕ МАКЕТУ
        ============================================ */

     .reviews {
         position: relative;
         width: 100%;
         background: #F6F5F3;
         border-radius: 50px 50px 0 0;
         padding: 80px 0 100px;
     }

    .reviews .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Заголовок */
    .reviews__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 54px;
        line-height: 115%;
        text-align: center;
        color: #282624;
        margin-bottom: 80px;
    }



    /* ============================================
       АДАПТИВНОСТЬ
       ============================================ */



    @media (max-width: 992px) {
        .reviews {
            padding: 60px 0 80px;
            border-radius: 40px 40px 0 0;
        }

        .reviews__title {
            font-size: 42px;
            margin-bottom: 60px;
        }


    }

    @media (max-width: 768px) {
        .reviews {
            padding: 40px 0 60px;
            border-radius: 30px 30px 0 0;
        }

        .reviews__title {
            font-size: 32px;
            margin-bottom: 40px;
        }


    }

    @media (max-width: 576px) {
        .reviews__title {
            font-size: 28px;
        }


    }

    /* ============================================
       АНИМАЦИИ
       ============================================ */

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reviews__title {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: 0s;
    }



         /* ============================================
            FREE MEASUREMENT SECTION - ГИБКАЯ ВЕРСТКА (БЕЗ ABSOLUTE)
            ============================================ */

     .free-measurement {
         position: relative;
         width: 100%;
         background: #282624;
         border-radius: 0 0 50px 50px;
         overflow: hidden;

     }

    /* Фон со свечением */
    .free-measurement__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .free-measurement__glow {
        position: absolute;
        width: 100%;
        max-width: 1489px;
        height: 719px;
        left: 50%;
        top: 437px;
        transform: translateX(-50%);
        background: radial-gradient(circle, rgba(243, 191, 130, 0.3) 0%, rgba(40, 38, 36, 0) 70%);
        filter: blur(50px);
        pointer-events: none;
    }

    /* Контейнер */
    .free-measurement .container {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 20px 0 20px;
    }

    /* Обертка для контента и изображения */
    .free-measurement__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    /* Контент */
    .free-measurement__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        max-width: 1212px;
        width: 100%;
        margin: 0 auto;
    }

    /* ============================================
       ТЕКСТ
       ============================================ */

    .free-measurement__text {
        text-align: center;
        max-width: 955px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .free-measurement__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 54px;
        line-height: 115%;
        text-align: center;
        color: #FFFFFF;
        margin: 0;
    }

    .free-measurement__subtitle {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 28px;
        line-height: 135%;
        text-align: center;
        color: #E2E1DF;
        margin: 0;
    }

    /* ============================================
       ПРЕИМУЩЕСТВА
       ============================================ */

    .free-measurement__features {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
        width: 100%;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 0 1 auto;
    }

    .feature-item__icon {
        flex-shrink: 0;
        width: 82px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-item__icon img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .feature-item__content {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .feature-item__title {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 125%;
        color: #FFFFFF;
        margin: 0;
    }

    .feature-item__description {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 145%;
        color: #E2E1DF;
        margin: 0;
    }

    /* Индивидуальные размеры для разных преимуществ */
    .feature-item:first-child .feature-item__description {
        max-width: 161px;
    }

    .feature-item:nth-child(2) .feature-item__description {
        max-width: 135px;
    }

    .feature-item:nth-child(3) .feature-item__description {
        max-width: 226px;
    }

    /* ============================================
       КНОПКА
       ============================================ */

    .free-measurement__action {
        text-align: center;
        width: 100%;
    }

    .btn-white {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #FFFFFF;
        padding: 22px 40px 24px;
        gap: 10px;
        border: none;
        border-radius: 15px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 145%;
        text-align: center;
        color: #282624;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 460px;
    }

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        background: #f5f5f5;
    }

    .btn-white:active {
        transform: translateY(0);
    }

    /* ============================================
       ИЗОБРАЖЕНИЕ ЗАМЕРЩИКА
       ============================================ */

    .free-measurement__image {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        max-width: 353px;
        margin: 0 auto;
    }

    .free-measurement__image img {
        width: 100%;
        height: auto;
        max-height: 547px;
        object-fit: contain;
        display: block;
    }

    /* ============================================
       АДАПТИВНОСТЬ
       ============================================ */

    @media (max-width: 1400px) {
        .free-measurement__glow {
            max-width: 1200px;
            top: 400px;
        }
    }

    @media (max-width: 1200px) {
        .free-measurement__title {
            font-size: 48px;
        }

        .free-measurement__subtitle {
            font-size: 24px;
        }

        .free-measurement__features {
            gap: 50px;
        }

        .feature-item__title {
            font-size: 22px;
        }

        .feature-item__description {
            font-size: 16px;
        }

        .btn-white {
            min-width: 400px;
            padding: 18px 32px 20px;
            font-size: 16px;
        }

        .free-measurement__image {
            max-width: 300px;
        }
    }

    @media (max-width: 992px) {
        .free-measurement {
            border-radius: 0 0 40px 40px;
            margin-top: 60px;
        }

        .free-measurement .container {
            padding: 60px 20px 0 20px;
        }

        .free-measurement__wrapper {
            gap: 40px;
        }

        .free-measurement__title {
            font-size: 42px;
        }

        .free-measurement__subtitle {
            font-size: 22px;
        }

        .free-measurement__features {
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .feature-item {
            width: 100%;
            max-width: 400px;
            justify-content: flex-start;
        }

        .feature-item__content {
            text-align: left;
        }

        .feature-item:first-child .feature-item__description,
        .feature-item:nth-child(2) .feature-item__description,
        .feature-item:nth-child(3) .feature-item__description {
            max-width: 100%;
        }

        .free-measurement__image {
            max-width: 280px;
        }
    }

    @media (max-width: 768px) {
        .free-measurement {
            border-radius: 0 0 30px 30px;
            margin-top: 40px;
        }

        .free-measurement .container {
            padding: 40px 20px 0 20px;
        }

        .free-measurement__wrapper {
            gap: 30px;
        }

        .free-measurement__title {
            font-size: 32px;
        }

        .free-measurement__subtitle {
            font-size: 18px;
        }

        .free-measurement__features {
            gap: 25px;
        }

        .feature-item {
            flex-direction: column;
            text-align: center;
            gap: 15px;
            justify-content: center;
        }

        .feature-item__content {
            text-align: center;
        }

        .feature-item__title {
            font-size: 20px;
        }

        .feature-item__description {
            font-size: 14px;
        }

        .btn-white {
            min-width: 280px;
            padding: 14px 24px 16px;
            font-size: 14px;
            border-radius: 12px;
        }

        .free-measurement__image {
            max-width: 240px;
        }

        .free-measurement__glow {
            max-width: 800px;
            height: 500px;
            top: 300px;
        }
    }

    @media (max-width: 576px) {
        .free-measurement__title {
            font-size: 28px;
        }

        .free-measurement__subtitle {
            font-size: 16px;
        }

        .feature-item__title {
            font-size: 18px;
        }

        .feature-item__description {
            font-size: 13px;
        }

        .feature-item__icon {
            width: 60px;
        }

        .btn-white {
            min-width: 100%;
            width: 100%;
            padding: 12px 20px 14px;
            font-size: 14px;
        }

        .free-measurement__image {
            max-width: 200px;
        }
    }

    /* ============================================
       АНИМАЦИИ
       ============================================ */

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes glowPulse {
        0% {
            opacity: 0.5;
            transform: translateX(-50%) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }
    }

    .free-measurement__glow {
        animation: glowPulse 3s ease-in-out infinite alternate;
    }

    .free-measurement__title,
    .free-measurement__subtitle {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .free-measurement__title {
        animation-delay: 0s;
    }

    .free-measurement__subtitle {
        animation-delay: 0.1s;
    }

    .feature-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .feature-item:nth-child(1) { animation-delay: 0.2s; }
    .feature-item:nth-child(2) { animation-delay: 0.3s; }
    .feature-item:nth-child(3) { animation-delay: 0.4s; }

    .free-measurement__action {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: 0.5s;
    }

    .free-measurement__image {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
        animation-delay: 0.6s;
    }
