@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* --- Gilroy Font --- */
@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../Gilroy/Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

:root {
    /* Fonts */
    --font-family: "Montserrat", sans-serif;
    --second-family: "Inter", sans-serif;
    --third-family: "Gilroy", sans-serif;

    /* Eco Vortex Brand Colors */
    --brand-green-light: #D7E9DB;
    --brand-green-lime: #8EB405;
    --brand-green-messenger: #A3D9A7;
    --brand-dark: #252a01;

    --text-gray: #666;
    --white: #fff;
    --bg-light: #f6f6fc;

    /* Принудительно светлая тема — игнорируем системный тёмный режим */
    color-scheme: light;
}

/* Принудительный сброс тёмной темы для всех браузеров/iOS */
@media (prefers-color-scheme: dark) {
    html {
        background-color: #fff;
        color: #252a01;
    }

    body {
        background-color: #fff;
        color: #252a01;
    }
}

/* --- CSS Reset & Base Styles --- */
html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


ul,
ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

body {
    font-family: var(--second-family);
    line-height: 1.5;
    background-color: var(--bg-light);
    color: var(--brand-dark);
}

.hero_desk {
    max-width: 866px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #f6f7f9;
    margin-bottom: 20px;
}

.hero_title {
    text-align: center;
    max-width: 100%;
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    color: #f6f7f9;
    margin-bottom: 20px;
    word-break: normal;
    overflow-wrap: anywhere;
}

.hero_btn {
    border-radius: 16px;
    padding: 10px 40px;
    width: 250px;
    height: 39px;
    background: #8eb405;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #f6f7f9;
}

/* --- Header Styles --- */
.header {
    max-width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body {
    padding-top: 110px;
    /* Offset for fixed header */
}

/* Remove fixed positioning on mobile devices so header scrolls away naturally */
@media (max-width: 1024px) {
    .header {
        position: fixed !important;
    }

    body {
        padding-top: 0 !important;
    }
}

.header__top {
    background-color: var(--brand-green-light);
    padding: 6px 0;
    font-size: 13px;
    font-family: var(--font-family);
    color: var(--brand-dark);
}

.container {
    max-width: 1720px;
    margin: 0 auto;
}

@media (max-width: 1919px) {
    .container {
        max-width: 100%;
        margin: 0 100px;
    }
}



.header__top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__top-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.header__top-phone {
    font-weight: 700;
}

@media (max-width: 991px) {
    .header__top {
        display: none;
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    stroke-width: 2px;
    stroke: rgba(37, 42, 1, 0.8);
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(37, 42, 1, 0.8);
}

.info-item img {
    width: 20px;
    height: 20px;
}

.info-item img[src*="map.png"] {
    width: 14px;
    height: 18px;
}


.header__main {
    padding: 10px 0;
    height: auto;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    margin-right: 246px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    width: 220px;
    height: auto;
}

.logo span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: var(--brand-dark);
}

.nav__list {
    width: 566px;
    height: 24px;
    display: flex;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-family);
    font-weight: 430;
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
}

.nav__link:hover {
    color: var(--brand-green-lime);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

/* --- Universal Messenger Icons --- */
.messenger-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
    background: transparent;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

/* Original Max Icon Style - Universal */
.messenger-icon--max {
    background: transparent !important;
    box-shadow: none !important;
}

.messenger-icon--max img {
    width: 100% !important;
    height: 100% !important;
}

/* New circular icons for WA and TG - Universal */
.messenger-icon--wa,
.messenger-icon--tg {
    background: transparent !important;
    box-shadow: none !important;
}

.messenger-icon--wa img,
.messenger-icon--tg img {
    width: 100% !important;
    height: 100% !important;
}

.messenger-icon img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
    image-rendering: auto;
    -webkit-image-rendering: auto;
}

.messenger-icon:hover {
    transform: scale(1.1) translateY(-1px);
}

/* --- Premium Messenger Group Wrapper --- */
.header__messengers {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(163, 217, 167, 0.12);
    border: 1px solid rgba(163, 217, 167, 0.35);
    border-radius: 100px;
    padding: 6px 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(142, 180, 5, 0.08);
    transition: box-shadow 0.3s ease;
}

.header__messengers:hover {
    box-shadow: 0 4px 15px rgba(142, 180, 5, 0.15);
}

/* Footer specific overrides for messengers */
.footer__messengers {
    justify-content: center !important;
    padding: 6px 12px !important;
}

/* --- Premium Call Button --- */
.btn-call {
    border-radius: 14px;
    padding: 0 24px;
    height: 52px;
    width: auto;
    min-width: 190px;
    background: linear-gradient(135deg, #8eb405 0%, #7a9c04 100%);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(142, 180, 5, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-call::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

.btn-call__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.9;
}

.btn-call:hover {
    background: linear-gradient(135deg, #9dc706 0%, #8eb405 100%);
    box-shadow: 0 6px 24px rgba(142, 180, 5, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px) scale(1.02);
}

/* ==========================================================================
   SERVICE SECTION (CONTAINERS) - ALL-IN-ONE BLOCK
   ========================================================================== */

.service {
    padding: 120px 0;
    background-color: #f7f9f0;
    position: relative;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff 0%, #f7f9f0 100%);
    pointer-events: none;
    z-index: 0;
}

.service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #f7f9f0 0%, #fff 100%);
    pointer-events: none;
    z-index: 0;
}

.service__content {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.service__call1 {
    flex: 0 0 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #252a01;
    margin-bottom: 40px;
}

.service__tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.service__tab {
    border-radius: 100px;
    padding: 5px 20px;
    width: 70px;
    height: 29px;
    border: 1px solid #ddd;
    transition: all 0.4s ease-in-out;
    background: #fff;
    cursor: pointer;
}

.service__tab:hover:not(.service__tab--active) {
    border-color: var(--brand-green-lime);
    background: rgba(142, 180, 5, 0.05);
}

.service__block {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
}

.service__block--active {
    display: flex;
    flex: 1;
    opacity: 1;
}

.service__left {
    width: 100%;
}

.service__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
    max-width: 560px;
    margin-bottom: 20px;
}

.service__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
    margin-bottom: 68px;
}

.service__stat {
    display: flex;
    flex-direction: column;
}

.service__stat-label {
    font-family: var(--font-family);
    font-size: 16px;
    color: #252a01;
    opacity: 0.7;
}

.service__stat-value {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: #252a01;
    white-space: nowrap;
}

.service__btn {
    border-radius: 16px;
    padding: 10px 40px;
    width: 230px;
    height: 48px;
    background: #8eb405;
    color: #fff;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

.service__btn:hover {
    background: var(--brand-green-messenger);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 180, 5, 0.3);
}

.service__right {
    flex: 1;
    display: flex;
}

.service__img-wrapper {
    width: 100%;
    height: 716px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(37, 42, 1, 0.08);
    overflow: hidden;
}

.service__main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service__main-img.active {
    opacity: 1;
}

/* --- ADAPTIVE RULES FOR SERVICE SECTION --- */

@media (max-width: 1200px) {
    .service__content {
        flex-direction: column;
        text-align: center;
    }

    .service__call1 {
        flex: unset;
        width: 100%;
    }

    .service__tabs {
        justify-content: center;
    }

    .service__grid {
        justify-items: center;
        gap: 10px 20px;
        margin-bottom: 40px;
    }

    .service__desc {
        margin: 0 auto 20px;
    }

    .service__img-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .features-detailed__title {
        font-size: 46px !important;
    }


    .service__tabs {
        margin-bottom: 15px;
    }

    .service__content {
        margin-bottom: 0;
        gap: 0;
    }

    .service__right {
        margin-top: 20px !important;
    }

    .service__title {
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }

    .service__img-wrapper {
        height: 350px;
    }

    .service__grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .service__img-wrapper {
        height: 250px;
    }

    .service__tab {
        padding: 5px 10px;
        width: auto;
        font-size: 14px;
    }

    .service__btn {
        width: 100%;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: calc(100vh - 150px);
    min-height: 600px;
    padding: 0 clamp(16px, 5vw, 100px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
    box-sizing: border-box;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .7;
    z-index: 2;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}


.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero__content {
    max-width: 100%;
}

.hero__badges {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.badge {
    height: 39px;
    display: flex;
    align-items: center;
    background-color: var(--brand-green-messenger);
    color: #f6f7f9;
    border-radius: 100px;
    padding: 5px 35px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
}

.hero__price {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 36px;
    line-height: 120%;
    color: #f6f7f9;
    margin-bottom: 35px;
}

.hero__list {
    margin-bottom: 50px;
}

.hero__item {
    font-family: var(--second-family);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero__item::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../images/galochka.png') no-repeat center / contain;
}

.hero__btn {
    width: 250px;
    height: 44px;
    padding: 10px 40px;
    background-color: var(--brand-green-lime);
    border-radius: 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.hero__btn:hover {
    background-color: var(--brand-green-messenger);
}

/* --- Clients Section --- */
.clients {
    padding: 50px 0;
    background-color: #fff;
}

.clients .container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.clients_content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
}

.clients__left {
    flex: 0 0 420px;
    max-width: 420px;
    position: sticky;
    top: 100px;
}

.clients__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    color: #252a01;
    margin-bottom: 40px;
}

.clients__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
}

.clients__right {
    flex: 1;
    min-width: 0;
}

.clients__list {
    display: flex;
    flex-direction: column;
}

.clients__item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.clients__item:first-child {
    padding-top: 0;
}

.clients__item-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #252a01;
    margin-bottom: 8px;
}

.clients__item-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 145%;
    color: #555;
}

.clients__item:last-child {
    border-bottom: none;
}

.clients__item-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(215, 233, 219, 0.5);
    border-radius: 16px;
    padding: 10px;
}

.clients__item-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.clients__item-text {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #252a01;
}

/* --- Slider Styles --- */
.clients__slider-section {
    margin-top: 80px;
    width: 100%;
    padding: 15px 0;
}

.clients__slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.clients__slider-container:active {
    cursor: grabbing;
}

.clients__slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    user-select: none;
}

.clients__slider::-webkit-scrollbar {
    display: none;
}

.clients__card {
    flex: 0 0 428px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.clients__card-img {
    width: 428px;
    height: 331px;
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
}

.clients__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.clients__card-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #252a01;
    margin-bottom: 20px;
    text-align: left;
}

.clients__card-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
    max-width: 100%;
    text-align: left;
}

/* --- Calculate Section --- */
.calculate {
    position: relative;
    background: url('../images/stats_bg.png') no-repeat center / cover !important;
    display: flex;
    align-items: center;
    padding: 100px;
    min-height: 524px;
}

.calculate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.45); */
    z-index: 1;
}

.calculate .container {
    position: relative;
    z-index: 2;
    margin: 0;
    width: 100%;
}

.calculate__tittle {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    color: #f6f7f9;
    margin-bottom: 10px;
}

.calculate__subtitle {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #f6f7f9;
    margin-bottom: 30px;
}

.calculate__btn {
    padding: 10px 40px;
    background-color: var(--brand-green-lime);
    border-radius: 16px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
    width: 311px;
    height: 52px;
}

.calculate__btn:hover {
    background-color: var(--brand-green-messenger);
    transform: translateY(-2px);
}


/* --- Stats Banner Section --- */
.stats {
    position: relative;
    padding: 120px 0;
    background: url('../images/truck_bg.png') no-repeat center / cover !important;
    text-align: center;
}

.stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Overlay is in background-image now */
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats__number {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 96px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 20px;
}

.stats__text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Numbers Section --- */
.numbers {
    padding: 50px 0;
    background-color: #fff;
}

.numbers__title {
    text-align: center;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .numbers__title {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .numbers__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

.numbers__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

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

.numbers__card {
    box-shadow: 0 10px 30px rgba(163, 217, 167, 0.2);
    background: #d7e9db;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.numbers__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(163, 217, 167, 0.4);
}

.numbers__card-val {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .numbers__card-val {
        font-size: 48px;
    }
}

.numbers__card-label {
    color: #888;
    line-height: 1.55;
    font-size: 17px;
    text-align: center;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .numbers__card-label {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.numbers__card-text {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
}

.numbers__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.numbers__info-text {
    flex: 2.5;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #252a01;
}

.numbers__info-text b {
    font-weight: 800;
}

.numbers__info-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.numbers__info-img img {
    max-width: 420px;
    max-height: 393px;
}

@media (max-width: 991px) {
    .numbers__info {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .numbers__info-img {
        justify-content: center;
    }
}


/* --- Mission Banner --- */
.mission {
    position: relative;
    padding: 120px 0;
    background: url('../images/gazel.png') no-repeat center / cover !important;
    text-align: center;
}

.mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.mission .container {
    position: relative;
    z-index: 2;
}

.mission__text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.features-detailed__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #f6f7f9;
    margin-bottom: 5%;
}

/* --- Features Section --- */
.features {
    background-color: #fff;
}

.features__row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.benefit {
    flex: 1;
}

.benefit__header {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 15px;
}

.benefit__icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.benefit__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #252a01;
}

.benefit__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-align: justify;
    color: #252a01;
}

.features__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.features__cards .feature-card {
    grid-column: span 2;
}

.features__cards .feature-card:nth-child(4),
.features__cards .feature-card:nth-child(5) {
    grid-column: span 3;
}

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

    .features__cards .feature-card,
    .features__cards .feature-card:nth-child(4),
    .features__cards .feature-card:nth-child(5) {
        grid-column: auto;
    }
}

.feature-card {
    height: 320px;
    background-color: #f6f7f9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.feature-card:hover img {
    transform: scale(1.08);
}


/* --- Eco Vortex for You Section --- */
.eco_vortex_foryou {
    padding: 60px 0 100px 0;
    background-color: #fff;
}

.eco_vortex_foryou_tittle {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    color: #252a01;
    text-align: center;
    margin-bottom: 80px;
}

.eco_vortex_foryou_cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.eco_vortex_foryou_card {
    position: relative;
    flex: 1;
    background: #D7E9DB;
    border-radius: 24px;
    padding: 50px 40px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.eco_vortex_foryou_card_info {
    position: relative;
    z-index: 2;
}

.eco_vortex_foryou_card_title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    color: #252a01;
    margin-bottom: 20px;
}

.eco_vortex_foryou_card_desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #252a01;
}

.eco_vortex_foryou_card_icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-25%);
    width: 220px;
    height: auto;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(11%) sepia(26%) saturate(2222%) hue-rotate(34deg) brightness(97%) contrast(101%);
}

@media (max-width: 1024px) {
    .eco_vortex_foryou_cards {
        flex-direction: column;
        gap: 24px;
    }

    .eco_vortex_foryou_tittle {
        font-size: 48px;
        margin-bottom: 40px;
    }

    .eco_vortex_foryou_card {
        height: auto;
        padding: 40px;
        min-height: 240px;
    }

    .eco_vortex_foryou_card_icon {
        width: 180px;
    }
}

/* ===== Section: features-detailed ===== */
.features-detailed {
    padding: 80px 0;
    background: url('../images/grid-section_images/Rectangle 30.png') no-repeat center / cover;
    position: relative;
}

.features-detailed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.features-detailed .container {
    position: relative;
    z-index: 1;
}

.feature-card-detailed__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 36px;
    line-height: 120%;
    color: #252a01;
    margin-bottom: 20px;

}

.feature-card-detailed__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: justify;
    color: #252a01;
    flex-grow: 1;
    margin-bottom: 16px;
}

.feature-card-detailed__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0 40px;
    height: 52px;
    margin-top: 20px;
    background: #8eb405;
    text-decoration: none;

    font-family: var(--font-family);
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    color: #252a01;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-card-detailed__btn:hover {
    background: #a3cc06;
}

/* ===== Grid ===== */
.features-detailed_content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

/* ===== Карточки ===== */
.feature-card-detailed {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    min-height: 0;
}

/* Картинки */
.feature-card-detailed img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Контент */
.feature-card-detailed__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ===== Верхний ряд: 3 карточки по 2 колонки ===== */
.features-detailed_content>.feature-card-detailed:nth-child(1),
.features-detailed_content>.feature-card-detailed:nth-child(2),
.features-detailed_content>.feature-card-detailed:nth-child(3) {
    grid-column: span 2;
}

/* ===== Нижний ряд: 2 карточки по 3 колонки ===== */
.features-detailed_content>.feature-card-detailed:nth-child(4),
.features-detailed_content>.feature-card-detailed:nth-child(5) {
    grid-column: span 3;
}

/* ===== Мобильный адаптив ===== */
@media (max-width: 768px) {
    .features-detailed {
        padding: 60px 0;
    }

    .features-detailed_content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .features-detailed_content>.feature-card-detailed:nth-child(1),
    .features-detailed_content>.feature-card-detailed:nth-child(2),
    .features-detailed_content>.feature-card-detailed:nth-child(3),
    .features-detailed_content>.feature-card-detailed:nth-child(4),
    .features-detailed_content>.feature-card-detailed:nth-child(5) {
        grid-column: 1 / -1;
    }

    .feature-card-detailed img {
        height: 220px;
    }

    .feature-card-detailed__title {
        font-size: clamp(20px, 5vw, 28px);
    }
}

/* --- Partners Section --- */
.partners {
    position: relative;
    padding: 50px 0 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.partners .container {
    position: relative;
}

.partners__title {
    left: 0;
    top: 0;
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    color: #252a01;
    max-width: 400px;
    z-index: 3;
}

.partners__wrapper {
    position: relative;
    padding-left: 580px;
}

.partners__truck-left {
    position: absolute;
    left: -180px;
    top: 281px;
    width: 650px;
    z-index: 1;
}

.partners__truck-right {
    position: absolute;
    right: -130px;
    top: -55px;
    width: 700px;
    z-index: 1;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(2, 558px);
    grid-auto-rows: 131px;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.partner-box {
    width: 558px;
    height: 131px;
    background: var(--line, #f1f1f1);
    border-radius: 12px;
}

/* --- Process Section --- */
.process {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.process__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Убрано затемнение */
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    margin-bottom: 80px;
}

.process__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.process__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.process__card:nth-child(-n+3) {
    grid-column: span 2;
}

.process__card:nth-child(n+4) {
    grid-column: span 3;
}

.process__card-img {
    height: 380px;
    background: #e4e4e4;
    overflow: hidden;
}

.process__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process__card-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.process__card-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 32px;
    color: #252a01;
    margin-bottom: 20px;
}

.process__card-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
    margin-bottom: 30px;
    flex-grow: 1;
}

.process__card-btn {
    width: 100%;
    margin-top: auto;
}

/* --- Furniture Banner --- */
.furniture-banner {
    position: relative;
    padding: 150px 0;
    background: url('../images/divani.png') no-repeat center / cover !important;
    text-align: center;
}

.furniture-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Darkening removed */
    z-index: 1;
}

.furniture-banner .container {
    position: relative;
    z-index: 2;
}

.furniture-banner__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.furniture-banner__text b {
    font-weight: 800;
}

.furniture-banner__link {
    color: var(--brand-green-lime);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.furniture-banner__link:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid var(--brand-green-lime);
}

/* --- Reviews Section --- */
.reviews {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
    pointer-events: none;
    z-index: 0;
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-light) 0%, #fff 100%);
    pointer-events: none;
    z-index: 0;
}

.reviews__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.reviews__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    color: #252a01;
}

.reviews__nav {
    display: flex;
    gap: 20px;
}

.reviews__nav-btn {
    font-size: 32px;
    color: #252a01;
    transition: 0.3s;
}

.reviews__nav-btn:hover {
    color: var(--brand-green-lime);
}



.reviews__slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.reviews__slider-container:active {
    cursor: grabbing;
}

.reviews__cards {
    display: flex;
    gap: 60px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding-bottom: 20px;
    /* Space for shadow/interaction */
    user-select: none;
    touch-action: pan-y;
}

.reviews__cards::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
}

.review-card {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.review-card__img {
    max-height: 480px;
    max-width: 480px;
    margin-bottom: 20px;
    border-radius: 16px;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.review-card__header {
    max-width: 480px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-card__heading {
    max-width: 480px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: #252a01;
}

.review-card__stars {
    color: var(--brand-green-lime);
    font-size: 24px;
    letter-spacing: 2px;
}

.review-card__text {
    max-width: 480px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    color: #252a01;
    margin-bottom: 30px;
}

.review-card__author {
    max-width: 480px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #252a01;
    text-align: right;
    margin-top: auto;
}

/* --- CTA Banner (Bottom Section) --- */
.cta-banner {
    position: relative;
    padding: 180px 0;
    background: url('../images/vmesto2gifki.jpg') no-repeat center / cover !important;
    text-align: center;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Убрано зеленое затемнение */
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-banner__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #f6f7f9;
    margin-bottom: 40px;
}

.cta-banner__btn {
    background: var(--brand-green-lime);
    border-radius: 16px;
    padding: 15px 50px;
    color: #fff;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    transition: 0.3s;
}

.cta-banner__btn:hover {
    background: var(--brand-green-messenger);
    transform: translateY(-2px);
}

/* --- Modal Contact Form --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 42, 1, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    -webkit-overflow-scrolling: touch;
}

.modal--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.modal__content {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 50px 40px 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal--active .modal__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    color: #252a01;
    cursor: pointer;
    transition: 0.3s;
}

.modal__close:hover {
    color: var(--brand-green-lime);
}

.modal__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 36px;
    color: #252a01;
    margin-bottom: 15px;
}

.modal__subtitle {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 30px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal__input {
    width: 100%;
    height: 54px;
    padding: 0 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.modal__input:focus {
    border-color: var(--brand-green-lime);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(142, 180, 5, 0.1);
}

.modal__btn {
    height: 54px;
    background: var(--brand-green-lime);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s;
    margin-top: 5px;
}

.modal__btn:hover {
    background: var(--brand-green-messenger);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 180, 5, 0.3);
}

.modal__contacts {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal__contacts-text {
    font-family: var(--font-family);
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.modal__contacts-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__phone {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 24px;
    color: var(--brand-dark);
}

.modal__phone:hover {
    color: var(--brand-green-lime);
}

.modal__info-container {
    padding: 10px 0;
}

.modal__card-img-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    animation: fadeIn 0.6s ease;
}

.modal__card-img-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.modal__card-desc {
    line-height: 1.6;
    color: var(--brand-dark);
    font-size: 1.15rem;
    text-align: center;
    font-family: var(--font-family);
    animation: slideUp 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal__socials {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    /* Без backdrop-filter — он создаёт проблемы с рендерингом в Safari внутри модалки */
    background: transparent;
}

/* Universal styles apply to .messenger-icon */

.footer {
    background-color: var(--brand-dark);
    /* #252a01 */
    color: #fff;
    padding-top: 80px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
}

.footer__col-1 {
    width: 450px;
}

.footer__col-2 {
    width: 177px;
}

.footer__col-3 {
    width: 166px;
}

.footer__col-4 {
    width: 219px;
}

.footer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer__logo-wrap img {
    height: 48px;
    object-fit: contain;
}

.footer__logo-text {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 32px;
    color: #fff;
}

.footer__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.7);
}

.footer__heading {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer__link:hover {
    color: #fff;
}

.footer__contact {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 150%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom {
    padding: 30px 0;
    text-align: center;
}

.footer__copyright {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   PREMIUM MOBILE NAV — complete redesign
   ============================================================ */

/* Burger Button */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(142, 180, 5, 0.1);
    border: 1px solid rgba(142, 180, 5, 0.2);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.burger:hover {
    background: rgba(142, 180, 5, 0.18);
    border-color: rgba(142, 180, 5, 0.4);
}

.burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        width 0.3s ease;
    transform-origin: center;
}

.burger--open {
    opacity: 0;
    pointer-events: none;
}

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.4s;
}

.mobile-nav--open {
    pointer-events: all;
    visibility: visible;
    transition: visibility 0s linear 0s;
}

/* Backdrop */
.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 0, 0.6);
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mobile-nav--open .mobile-nav__backdrop {
    opacity: 1;
}

/* Panel — slides from right, premium glass-dark style */
.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    /* Slide from right */
    bottom: 0;
    width: 100vw;
    background: linear-gradient(160deg, #1c2000 0%, #252a01 60%, #1a1e00 100%);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    /* Start off-screen right */
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    /* Shadow towards left */
    outline: none;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(142, 180, 5, 0.3) transparent;
}

.mobile-nav--open .mobile-nav__panel {
    transform: translateX(0);
}

/* Header row */
.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(142, 180, 5, 0.15);
    position: sticky;
    top: 0;
    z-index: 2;
    flex-shrink: 0;
}

.mobile-nav__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* Close btn — X with animated lines */
.mobile-nav__close {
    width: 44px;
    height: 44px;
    position: relative;
    background: rgba(37, 42, 1, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.mobile-nav__close:hover {
    background: rgba(37, 42, 1, 0.15);
}

.mobile-nav__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--brand-dark);
    border-radius: 2px;
}

.mobile-nav__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Ensure mobile nav close button is in similar spot to burger for seamless UX */
.mobile-nav__header {
    height: 74px;
    /* Matches mobile header height approx */
}

/* Nav list */
.mobile-nav__list {
    display: flex;
    flex-direction: column;
    padding: 24px 20px 16px;
    gap: 4px;
    list-style: none;
    margin: 0;
}

.mobile-nav__item {
    position: relative;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.22s ease;
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.01em;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
    color: #c9eb5a;
    background: rgba(142, 180, 5, 0.12);
}

.mobile-nav__link:active {
    transform: scale(0.98);
}

/* Active page indicator */
.mobile-nav__link.is-active {
    color: #c9eb5a;
    background: rgba(142, 180, 5, 0.15);
    border-left: 3px solid var(--brand-green-lime);
}

/* Accordion */
.mobile-nav__accordion-btn {
    border: none;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.mobile-nav__accordion--open .accordion-icon {
    transform: rotate(180deg);
    color: var(--brand-green-lime);
}

.mobile-nav__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
    opacity: 0;
}

.mobile-nav__accordion--open .mobile-nav__accordion-content {
    max-height: 500px;
    opacity: 1;
    padding: 4px 0 8px;
}

.mobile-nav__sublist {
    list-style: none;
    padding: 0 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav__sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-family: var(--font-family);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 10px;
    border-left: none;
    position: relative;
}

.mobile-nav__sublink::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(142, 180, 5, 0.5);
    flex-shrink: 0;
    transition: background 0.2s;
}

.mobile-nav__sublink:hover {
    color: #c9eb5a;
    background: rgba(142, 180, 5, 0.1);
}

.mobile-nav__sublink:hover::before {
    background: var(--brand-green-lime);
}

/* Divider line */
.mobile-nav__divider {
    height: 1px;
    margin: 8px 20px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

/* Footer section */
.mobile-nav__footer {
    margin-top: auto;
    padding: 24px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.mobile-nav__footer-label {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav__call {
    width: 100%;
    height: 54px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #8eb405 0%, #7a9c04 100%);
    box-shadow: 0 6px 24px rgba(142, 180, 5, 0.3);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav__call:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(142, 180, 5, 0.45);
}

.mobile-nav__messenger-group {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
}

.mobile-nav__messenger-group .messenger-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Phone number block */
.mobile-nav__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--third-family);
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0 4px;
}

.mobile-nav__phone:hover {
    color: #c9eb5a;
}

.mobile-nav__phone-icon {
    width: 36px;
    height: 36px;
    background: rgba(142, 180, 5, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-green-lime);
}

/* Scroll lock */
.body--locked {
    overflow: hidden;
    /* touch-action: none убран — блокировал все касания на iOS */
}

/* ============================================================
   ACTIVE TAB & SERVICE TRANSITIONS
   ============================================================ */
.service__tab--active,
.service__tab--active:hover,
.service__tab--active:active,
.service__tab--active:focus {
    background-color: #8eb405 !important;
    color: #fff !important;
    border-color: #8eb405 !important;
    outline: none;
}

.service__right {
    transition: opacity 0.3s ease;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- 1600px: header tightening for laptop screens --- */
@media (max-width: 1600px) {
    .logo {
        margin-right: 60px;
    }

    .nav__list {
        gap: 24px;
        width: auto;
    }
}

/* --- 1440px: slight padding reduction --- */
@media (max-width: 1440px) {
    .container {
        margin: 0 60px;
    }

    .partners__wrapper {
        padding-left: 420px;
    }

    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-box {
        width: 100%;
    }
}

/* --- 1200px: two-column → single for service, hide trucks --- */
@media (max-width: 1200px) {
    .container {
        margin: 0 40px;
    }

    /* Header */
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Header actions: hide call button on tablet but show burger */
    .header__main {
        height: auto;
        padding: 20px 0;
    }

    /* Service: Image BEFORE Text on mobile */
    .service__block {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    /* Partners */
    .partners__wrapper {
        padding-left: 0;
    }

    .partners__title {
        position: static;
        margin-bottom: 40px;
        text-align: center;
        max-width: 100%;
        font-size: clamp(36px, 6vw, 64px);
    }

    .partners__grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-box {
        width: 100%;
    }

    .partners__truck-left,
    .partners__truck-right {
        display: none;
    }
}

/* --- 1024px: moderate mobile layout --- */
@media (max-width: 1024px) {
    .container {
        margin: 0 32px;
    }

    /* Hero */
    .hero {
        padding: 0 32px;
        min-height: 520px;
    }

    .hero__title {
        font-size: clamp(40px, 6vw, 64px);
    }

    /* Clients */
    .clients .container {
        flex-direction: column;
        gap: 48px;
    }

    .clients__left {
        max-width: 100%;
    }

    .clients__title {
        font-size: clamp(36px, 6vw, 56px);
    }

    /* Numbers */
    .numbers__cards {
        flex-wrap: wrap;
    }

    .numbers__card {
        min-width: calc(50% - 15px);
    }

    .numbers__info {
        flex-direction: column;
        gap: 32px;
    }

    .numbers__info-img {
        justify-content: center;
    }

    /* Process */
    .process__cards {
        flex-direction: column;
        align-items: center;
    }

    .process__card {
        width: 100%;
        max-width: 540px;
        height: auto;
    }

    /* Footer */
    .footer__top {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__col-1,
    .footer__col-2,
    .footer__col-3,
    .footer__col-4 {
        width: calc(50% - 20px);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .header__content {
        gap: 30px;
    }

    .service__container {
        flex-direction: column;
        text-align: center;
    }

    .service__tabs {
        justify-content: center;
    }

    .service__grid {
        justify-content: center;
        transform: none;
        padding-right: 0;
    }

    .service__right {
        width: 100%;
        margin-top: 50px;
    }

    .service__right img {
        max-width: 600px;
    }

    .partners__wrapper {
        padding-left: 0;
    }

    .partners__title {
        position: static;
        margin-bottom: 50px;
        text-align: center;
        max-width: 100%;
    }

    .partners__grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-box {
        width: 100%;
    }

    .partners__truck-left,
    .partners__truck-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero__title {
        font-size: 60px;
    }

    .hero__content {
        padding: 100px 0;
    }

    .calculate__container {
        flex-direction: column;
        border: none;
        padding: 20px;
    }

    .numbers__cards {
        flex-direction: column;
        gap: 40px;
    }

    .features__cards,
    .features__cards-bottom {
        flex-direction: column;
    }

    .process__cards {
        flex-direction: column;
        align-items: center;
    }

    .process__card {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .reviews__title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* --- 768px: mobile-first layout --- */
@media (max-width: 768px) {
    .container {
        margin: 0 24px;
    }

    /* Header: hide desktop-only actions */
    .header__actions .btn-call,
    .header__divider {
        display: none;
    }

    .header__main {
        padding: 24px 0;
        /* Увеличена высота */
    }

    .header__messengers {
        display: flex !important;
        /* Показываем мессенджеры на мобилке */
        gap: 8px;
    }

    /* Universal styles apply to .messenger-icon */

    .logo img {
        width: 190px;
        /* Увеличен логотип */
    }

    .burger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 0 24px;
        min-height: 480px;
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero__title {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 110%;
    }

    .hero__price {
        font-size: clamp(20px, 5vw, 28px);
    }

    .hero__badges {
        gap: 8px;
    }

    .badge {
        font-size: clamp(14px, 3.5vw, 18px);
        padding: 5px 20px;
        height: auto;
    }

    .hero__item {
        font-size: 16px;
    }

    /* Section headings — fluid */
    .clients__title,
    .numbers__title,
    .reviews__title,
    .process__title,
    .calculate__tittle {
        font-size: clamp(28px, 7vw, 48px);
    }

    /* Stats */
    .stats__number {
        font-size: clamp(48px, 12vw, 72px);
    }

    .stats__text {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    /* Service tabs: horizontal scroll */
    .service__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        padding-bottom: 4px;
    }


    /* Numbers */
    .numbers__cards {
        flex-direction: column;
    }

    .numbers__card {
        min-width: unset;
    }

    .numbers__card-val {
        font-size: clamp(40px, 10vw, 56px);
    }

    .numbers__info-text {
        font-size: 16px;
        text-align: justify;
    }

    /* Features */
    .features__row {
        flex-direction: column;
        gap: 30px;
    }

    .features__cards,
    .features__cards-bottom {
        grid-template-columns: 1fr;
    }

    .benefit__icon {
        width: 56px;
        height: 56px;
    }

    .benefit__title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .benefit__desc {
        font-size: 16px;
    }

    /* Clients slider */
    .clients__slider-container {
        padding-left: 24px;
    }

    .clients__slider {
        gap: 20px;
    }

    .clients__card {
        min-width: 100%;
    }

    .clients__card-img {
        width: 100%;
        height: 350px;
    }

    /* Reviews */
    .reviews__cards {
        padding-left: 0;
        padding-right: 0;
        scroll-snap-type: x mandatory;
        gap: 20px;
    }

    .reviews__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
    }

    /* Reviews Slider Fix */
    .reviews__cards {
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }

    .review-card {
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .review-card__img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    /* Partners */
    .partners__grid {
        grid-template-columns: 1fr;
    }

    /* Calculate */
    .calculate {
        padding: 60px 24px;
    }

    .calculate__tittle {
        font-size: clamp(28px, 7vw, 48px);
    }

    .calculate__subtitle {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .calculate__btn {
        width: 100%;
    }

    /* Footer */
    .footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .footer__col-1,
    .footer__col-2,
    .footer__col-3,
    .footer__col-4 {
        width: 100%;
    }

    /* CTA banner */
    .cta-banner {
        padding: 100px 24px;
    }

    .cta-banner__title {
        font-size: clamp(16px, 4vw, 20px);
    }

    .cta-banner__btn {
        width: 100%;
        padding: 15px 24px;
        font-size: 16px;
    }

    /* Modal */
    .modal__content {
        padding: 30px 20px;
        border-radius: 20px;
        width: calc(100% - 32px);
        margin: 0 16px;
    }

    .modal__title {
        font-size: clamp(24px, 6vw, 32px);
    }
}

/* --- 480px: small phones --- */
@media (max-width: 480px) {
    .container {
        margin: 0 16px;
    }

    .service__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px 10px;
    }

    .hero__content {
        padding: 0 0;
        padding-top: 22px !important;
    }

    .service__img-wrapper {
        height: 150px;
    }

    .service__desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .clients__slider-container {
        padding-left: 0px;
    }


    .clients__card {
        min-width: 100%;
    }

    .review-card {
        min-width: 100%;
    }

    .mission__text,
    .furniture-banner__text {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    /* Removed redundant min-width override */

    .process__card-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .logo img {
        width: 200px;
        height: auto;
    }

    .header__top {
        display: none;
        /* Save space on very small screens */
    }
}

/* --- 375px: standard iPhone size --- */
@media (max-width: 375px) {
    .container {
        margin: 0 14px;
    }

    .hero__title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .service__tabs {
        gap: 6px;
    }

    .service__tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .mobile-nav__panel {
        width: 100vw;
        border-radius: 0;
    }

    /* Removed redundant min-width override */
}

/* --- 320px: absolute minimum --- */
@media (max-width: 320px) {
    .container {
        margin: 0 12px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__price {
        font-size: 18px;
    }

    .service__tab {
        padding: 6px 10px;
        font-size: 12px;
    }

    .modal__content {
        padding: 24px 16px;
        width: calc(100% - 16px);
        margin: 0 8px;
    }

    .modal__title {
        font-size: 22px;
    }

    .footer__copyright {
        font-size: 11px;
    }

    .btn-call {
        font-size: 13px;
        padding: 10px 16px;
        width: auto;
    }

    .clients__card {
        min-width: 240px;
    }

    .review-card {
        min-width: 240px;
    }

    .numbers__card-val {
        font-size: 36px;
    }
}




/* Legacy duplicate media blocks removed — replaced by the comprehensive
   adaptive section at the bottom of this file */

/* --- Premium SaaS Animated Glow Background --- */
.premium-glow {
    position: relative !important;
    overflow: hidden !important;
}

.premium-glow .container {
    position: relative !important;
    z-index: 10 !important;
}

.premium-glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.premium-glow__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    pointer-events: none;
    will-change: transform;
}

.process.premium-glow .premium-glow__blob {
    opacity: 0.35;
}

.premium-glow__blob--1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #8a2be2, transparent 70%);
    top: -15%;
    left: 15%;
    animation: glow-float-1 25s infinite ease-in-out;
}

.premium-glow__blob--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00ced1, transparent 70%);
    bottom: -20%;
    right: 10%;
    animation: glow-float-2 30s infinite ease-in-out;
}

.premium-glow__blob--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1e90ff, transparent 70%);
    top: 35%;
    right: 20%;
    animation: glow-float-3 22s infinite ease-in-out;
}

.premium-glow__blob--4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff1493, transparent 70%);
    bottom: 25%;
    left: -5%;
    animation: glow-float-1 28s infinite ease-in-out reverse;
}

.premium-glow__blob {
    transform: translate(calc(var(--mx, 0) * var(--parallax-factor, 1)), calc(var(--my, 0) * var(--parallax-factor, 1)));
}

.premium-glow__blob--1 {
    --parallax-factor: 0.6;
}

.premium-glow__blob--2 {
    --parallax-factor: -0.9;
}

.premium-glow__blob--3 {
    --parallax-factor: 1.4;
}

.premium-glow__blob--4 {
    --parallax-factor: -0.5;
}

@keyframes glow-float-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.1);
    }

    33% {
        transform: translate(40px, 60px) scale(1.2);
    }

    66% {
        transform: translate(-30px, 30px) scale(1);
    }
}

@keyframes glow-float-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.2);
    }

    33% {
        transform: translate(-60px, -30px) scale(1.1);
    }

    66% {
        transform: translate(50px, -50px) scale(1.05);
    }
}

@keyframes glow-float-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.2);
    }
}


/* ============================================================
   ADAPTIVE IMPROVEMENTS — complete mobile-first overhaul
   Breakpoints: 1280 → 1024 → 768 → 480 → 375 → 320
   ============================================================ */

/* === 1280px+ desktop guard: ensure nothing breaks === */
@media (min-width: 1025px) {
    .for-whom-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .header__messengers {
        display: flex;
    }

    .header__divider {
        display: block;
    }

    .logo img {
        width: 220px;
        height: auto;
    }

    /* Hero height on large screens */
    .hero {
        height: calc(100vh - 90px);
        min-height: 600px;
    }

    /* Service layout: side-by-side on desktop */
    .service__left {
        flex: 0 0 500px;
    }
}

/* === ≤1024px: tablet === */
@media (max-width: 1024px) {

    /* Header: hide call button text only, keep icon hidden from actions — burger takes over */
    .header__actions .btn-call {
        display: none;
    }

    .header__actions .header__messengers {
        display: flex;
    }

    .header__divider {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 0 32px;
        min-height: 480px;
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero__title {
        font-size: clamp(36px, 5.5vw, 56px);
    }

    /* Clients layout */
    .clients {
        padding: 70px 0;
    }

    .clients_content {
        gap: 48px;
    }

    .clients__left {
        flex: 0 0 320px;
        max-width: 320px;
        position: static;
    }

    .clients__right {
        flex: 1;
    }

    .clients__title {
        font-size: clamp(36px, 5vw, 52px);
    }

    /* Numbers */
    .numbers__cards {
        flex-wrap: wrap;
    }

    .numbers__card {
        min-width: calc(50% - 15px);
    }

    .numbers__info {
        flex-direction: column;
        gap: 32px;
    }

    .numbers__info-img {
        justify-content: center;
    }

    /* Process */
    .process__cards {
        grid-template-columns: 1fr;
    }

    .process__card {
        width: 100%;
        max-width: 560px;
        height: auto;
        grid-column: span 1 !important;
    }

    /* Footer */
    .footer__top {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__col-1,
    .footer__col-2,
    .footer__col-3,
    .footer__col-4 {
        width: calc(50% - 20px);
    }
}

/* === ≤768px: mobile layout === */
@media (max-width: 768px) {
    .logo {
        margin-right: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .container {
        margin: 0 20px;
    }

    /* Header */
    .header__main {
        padding: 16px 0;
    }

    .header__actions .header__messengers,
    .header__actions .header__divider {
        display: none;
    }

    /* Clients: stack vertically */
    .clients {
        padding: 60px 0;
    }

    .clients_content {
        flex-direction: column;
        gap: 40px;
    }

    .clients__left {
        flex: unset;
        max-width: 100%;
        width: 100%;
        position: static;
    }

    .clients__right {
        flex: unset;
        width: 100%;
    }

    .clients__title {
        font-size: clamp(30px, 7.5vw, 44px);
        margin-bottom: 24px;
    }

    .clients__desc {
        font-size: 15px;
        margin-bottom: 0;
    }

    .clients__item {
        gap: 16px;
        padding: 16px 0;
    }

    .clients__item-icon {
        width: 48px;
        height: 48px;
        padding: 8px;
    }

    .clients__item-icon img {
        width: 30px;
        height: 30px;
    }

    .clients__slider-section {
        margin-top: 48px;
    }

    .header__top {
        padding: 6px 0;
        font-size: 13px;
    }

    .logo img {
        width: 160px;
    }

    /* Hero */
    .hero {
        padding: 60px 20px;
        min-height: 420px;
        height: auto;
    }

    .hero__title {
        font-size: clamp(28px, 7vw, 44px);
        line-height: 1.1;
    }

    .hero__price {
        font-size: clamp(20px, 5vw, 28px);
    }

    .badge {
        font-size: clamp(13px, 3.2vw, 17px);
        padding: 5px 16px;
        height: auto;
    }

    .hero__item {
        font-size: 15px;
    }

    .hero_btn,
    .hero__btn {
        width: 100%;
        max-width: 320px;
        min-height: 48px;
        font-size: 15px;
    }

    /* Section titles */
    .clients__title,
    .numbers__title,
    .reviews__title,
    .process__title,
    .calculate__tittle,
    .eco_vortex_foryou_tittle {
        font-size: clamp(26px, 6.5vw, 44px);
    }

    /* Stats */
    .stats {
        padding: 80px 0;
    }

    .stats__number {
        font-size: clamp(44px, 11vw, 68px);
    }

    .stats__text {
        font-size: clamp(13px, 3vw, 17px);
    }

    /* Numbers */
    .numbers__cards {
        flex-direction: column;
    }

    .numbers__card {
        min-width: unset;
    }

    .numbers__card-val {
        font-size: clamp(36px, 9vw, 52px);
    }

    .numbers__info-text {
        font-size: 15px;
    }

    /* Features */
    .features__row {
        flex-direction: column;
        gap: 24px;
    }

    .features__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features__cards-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit__icon {
        width: 52px;
        height: 52px;
    }

    .benefit__title {
        font-size: 22px;
    }

    .benefit__desc {
        font-size: 15px;
    }


    /* Calculate */
    .calculate {
        padding: 60px 20px;
    }

    .calculate__tittle {
        font-size: clamp(26px, 6.5vw, 44px);

        br {
            display: none;
        }
    }

    .calculate__subtitle {
        font-size: clamp(13px, 3.2vw, 17px);
    }

    .calculate__btn {
        width: 100%;
        min-height: 52px;
    }

    /* Clients slider */
    .clients__slider {
        scroll-snap-type: x mandatory;
        gap: 16px;
    }

    .clients__card {
        min-width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .clients__card-img {
        width: 100%;
        height: 260px;
    }

    /* Reviews */
    .reviews {
        padding: 60px 0;
    }

    .reviews__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .reviews__cards {
        scroll-snap-type: x mandatory;
        gap: 16px;
    }

    .review-card {
        min-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .review-card__img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    /* Mission/CTA/Furniture banners */
    .mission {
        padding: 80px 0;
    }

    .mission__text {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .furniture-banner {
        padding: 80px 0;
    }

    .furniture-banner__text {
        font-size: clamp(14px, 3.5vw, 18px);
    }

    .cta-banner {
        padding: 80px 20px;
    }

    .cta-banner__title {
        font-size: clamp(15px, 3.8vw, 20px);
    }

    .cta-banner__btn {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
    }

    /* Footer */
    .footer__top {
        flex-direction: column;
        gap: 28px;
    }

    .footer__col-1,
    .footer__col-2,
    .footer__col-3,
    .footer__col-4 {
        width: 100%;
    }

    .footer__logo-text {
        font-size: 24px;
    }

    /* Modal */
    .modal__content {
        padding: 28px 18px;
        border-radius: 18px;
        width: calc(100% - 28px);
        margin: 0 14px;
    }

    .modal__title {
        font-size: clamp(22px, 5.5vw, 30px);
    }

    /* Process section */
    .process {
        padding: 60px 0;
    }

    .process__title {
        font-size: clamp(26px, 6.5vw, 44px);
        margin-bottom: 40px;
    }

    .process__cards {
        grid-template-columns: 1fr;
    }

    .process__card {
        width: 100%;
        max-width: 560px;
        height: auto;
    }

    .process__card-title {
        font-size: clamp(18px, 4.5vw, 24px);
    }

    /* Eco for you */
    .eco_vortex_foryou {
        padding: 40px 0 60px;
    }

    .eco_vortex_foryou_cards {
        flex-direction: column;
        gap: 16px;
    }

    .eco_vortex_foryou_card {
        height: auto;
        min-height: 200px;
        padding: 32px 28px;
    }

    .eco_vortex_foryou_card_title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .eco_vortex_foryou_tittle {
        margin-bottom: 36px;
    }
}

/* === ≤480px: small phones === */
@media (max-width: 480px) {
    .container {
        margin: 0 14px;
    }

    .header__top {
        display: none;
    }

    .logo img {
        width: 160px;
    }

    /* Hero */
    .hero {
        padding: 50px 14px;
    }

    .hero__title {
        font-size: clamp(24px, 7.5vw, 36px);
    }

    .hero__badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .badge {
        font-size: 13px;
        padding: 4px 14px;
    }

    .hero__price {
        font-size: clamp(18px, 5vw, 24px);
    }

    .hero__item {
        font-size: 14px;
    }

    .hero_btn,
    .hero__btn {
        width: 100%;
    }

    /* Section titles */
    .clients__title {
        font-size: clamp(24px, 7.5vw, 36px);
    }

    .numbers__title,
    .reviews__title,
    .process__title,
    .eco_vortex_foryou_tittle {
        font-size: clamp(22px, 7vw, 34px);
    }

    .calculate__tittle {
        font-size: clamp(22px, 7vw, 34px);
    }



    .service__title {
        font-size: clamp(20px, 5.5vw, 28px);
        margin-bottom: 20px;
    }

    .service__img-wrapper {
        aspect-ratio: 4 / 3;
    }

    .service__stat {
        padding: 12px 16px;
        border-radius: 8px;
    }

    .service__stat-label {
        font-size: 13px;
    }

    .service__stat-value {
        font-size: 14px;
    }

    .service__desc {
        font-size: 14px;
    }

    /* Stats */
    .stats {
        padding: 60px 0;
    }

    .stats__number {
        font-size: clamp(38px, 10vw, 56px);
    }

    .stats__text {
        font-size: 13px;
    }

    /* Numbers */
    .numbers__card-val {
        font-size: clamp(32px, 9vw, 48px);
    }

    .numbers__card {
        padding: 28px 20px;
    }

    /* Clients slider */
    .clients__slider-section {
        margin-top: 40px;
    }

    .clients__card-img {
        height: 220px;
    }

    .clients__card-title {
        font-size: 18px;
    }

    .clients__card-desc {
        font-size: 13px;
    }

    /* Review card */
    .review-card__heading {
        font-size: 18px;
    }

    .review-card__text {
        font-size: 14px;
    }

    /* Features */
    .features {
        padding: 50px 0;
    }

    .benefit__header {
        gap: 16px;
    }

    .benefit__title {
        font-size: 20px;
    }

    /* Process cards */
    .process__card-content {
        padding: 24px 20px;
    }

    .process__card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    /* Eco for you */
    .eco_vortex_foryou_card_title {
        font-size: clamp(24px, 6.5vw, 32px);
    }

    .eco_vortex_foryou_card_icon {
        width: 140px;
    }

    /* Footer */
    .footer {
        padding-top: 48px;
    }

    .footer__logo-text {
        font-size: 20px;
    }

    .footer__heading {
        font-size: 16px;
    }

    .footer__link,
    .footer__contact {
        font-size: 14px;
    }

    /* Modal */
    .modal__content {
        padding: 24px 14px;
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    .modal__title {
        font-size: 20px;
    }

    .modal__input {
        font-size: 14px;
    }

    .modal__btn {
        font-size: 15px;
    }
}

/* === ≤375px: standard iPhone === */
@media (max-width: 375px) {
    .container {
        margin: 0 12px;
    }

    .logo img {
        width: 156px;
    }

    .hero {
        padding: 44px 12px;
    }

    .hero__title {
        font-size: clamp(22px, 8vw, 32px);
    }

    .hero__price {
        font-size: 18px;
    }

    .hero__item {
        font-size: 13px;
        gap: 10px;
    }

    .badge {
        font-size: 12px;
        padding: 4px 12px;
    }


    .numbers__card-val {
        font-size: 36px;
    }

    .eco_vortex_foryou_card {
        padding: 24px 20px;
        min-height: 180px;
    }

    .eco_vortex_foryou_card_title {
        font-size: clamp(22px, 6.5vw, 28px);
    }

    .mobile-nav__panel {
        width: 100vw;
        border-radius: 0;
    }

    .mobile-nav__link {
        font-size: 18px;
        min-height: 52px;
    }

    .footer__col-1 {
        width: 100%;
    }

    .review-card__heading {
        font-size: 16px;
    }

    .process__card-content {
        padding: 20px 16px;
    }

    .process__card-title {
        font-size: 16px;
    }
}

/* === ≤320px: absolute minimum === */
@media (max-width: 320px) {
    .container {
        margin: 0 10px;
    }

    .logo img {
        width: 144px;
    }

    .hero {
        padding: 36px 10px;
    }

    .hero__title {
        font-size: 22px;
        line-height: 1.15;
    }

    .hero__price {
        font-size: 16px;
    }

    .hero__item {
        font-size: 12px;
    }

    .hero_btn,
    .hero__btn {
        font-size: 13px;
        min-height: 44px;
    }

    .badge {
        font-size: 11px;
        padding: 3px 10px;
    }


    .service__stat-value {
        font-size: 13px;
    }

    .stats__number {
        font-size: 38px;
    }

    .stats__text {
        font-size: 12px;
    }

    .numbers__card-val {
        font-size: 32px;
    }

    .numbers__card {
        padding: 20px 14px;
    }

    .calculate__tittle {
        font-size: 22px;
    }

    .calculate__subtitle {
        font-size: 12px;
    }

    .calculate__btn {
        font-size: 13px;
        min-height: 48px;
    }

    .benefit__title {
        font-size: 18px;
    }

    .benefit__desc {
        font-size: 13px;
    }

    .eco_vortex_foryou_card_title {
        font-size: 20px;
    }

    .eco_vortex_foryou_card_icon {
        width: 100px;
    }

    .review-card__img {
        aspect-ratio: 4 / 3;
    }

    .review-card__heading {
        font-size: 15px;
    }

    .review-card__text {
        font-size: 12px;
    }

    .clients__card {
        min-width: 100%;
    }

    .clients__card-title {
        font-size: 16px;
    }

    .clients__card-desc {
        font-size: 12px;
    }

    .clients__card-img {
        height: 180px;
    }

    .cta-banner {
        padding: 60px 10px;
    }

    .cta-banner__title {
        font-size: 13px;
    }

    .cta-banner__btn {
        font-size: 13px;
        min-height: 46px;
    }

    .mission__text,
    .furniture-banner__text {
        font-size: 13px;
    }

    .process__card-title {
        font-size: 15px;
    }

    .process__card-text {
        font-size: 12px;
    }

    .footer__logo-text {
        font-size: 18px;
    }

    .footer__heading {
        font-size: 14px;
    }

    .footer__link,
    .footer__contact {
        font-size: 13px;
    }

    .footer__copyright {
        font-size: 11px;
    }

    .modal__content {
        padding: 20px 12px;
        width: calc(100% - 16px);
        margin: 0 8px;
    }

    .modal__title {
        font-size: 18px;
    }

    .modal__input {
        height: 46px;
        font-size: 13px;
    }

    .modal__btn {
        height: 46px;
        font-size: 14px;
    }

    .mobile-nav__link {
        font-size: 16px;
        padding: 0 12px;
    }

    .mobile-nav__sublink {
        font-size: 14px;
        padding: 10px 12px;
    }

    .btn-call.mobile-nav__call {
        font-size: 13px;
        min-height: 48px;
    }

    .reviews__nav-btn {
        font-size: 24px;
    }

    .clients__item-title {
        font-size: 16px;
    }

    .clients__item-desc {
        font-size: 13px;
    }
}

/* ============================================================
   HERO_TITLE ALIAS — mirrors .hero__title responsive rules
   (In HTML the element uses class="hero_title" not "hero__title")
   ============================================================ */
@media (max-width: 1024px) {
    .hero_title {
        font-size: clamp(36px, 5.5vw, 56px);
    }
}

@media (max-width: 768px) {
    .hero_title {
        font-size: clamp(28px, 7vw, 44px);
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .hero_title {
        font-size: clamp(24px, 7.5vw, 36px);
    }
}

@media (max-width: 375px) {
    .hero_title {
        font-size: clamp(22px, 8vw, 32px);
    }
}

@media (max-width: 320px) {
    .hero_title {
        font-size: 22px;
        line-height: 1.15;
    }
}

/* --- Зона Мессенджеров в мобильном меню --- */
.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.mobile-nav__messenger-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.mobile-nav__messenger-group .messenger-icon {
    /* Universal styles apply to .messenger-icon */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-nav__messenger-group .messenger-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav__messenger-group .messenger-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav__messenger-group .messenger-icon:active {
    transform: scale(0.95);
}


/* ============================================================
   NEW SECTIONS — What We Do
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    padding-bottom: 2%;
    font-size: 17px;
    color: #777;
    line-height: 1.7;
}

.what-we-do {
    padding: 80px 0;

    padding-bottom: 0;
    background: #fff;
}

.for-whom-cards {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 20px;
    width: 100%;
}

.for-whom-card {
    background: #d7e9db;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px;
    box-sizing: border-box;
}

.for-whom-card:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: #d4d9a0;
    box-shadow: 0 16px 36px rgba(37, 42, 1, 0.07);
}

.for-whom-icon {
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
}

.for-whom-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: 0.3s;
}

.for-whom-card:hover .for-whom-icon img {
    filter: none;
}

.for-whom-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
}

.for-whom-card p {
    color: #888;
    line-height: 1.55;
    font-size: 15px;
    text-align: left;
}

/* ============================================================
   ADVANTAGES — Redesigned (list style, minimal & elegant)
   ============================================================ */
.advantages-vortex {
    padding: 80px 0;
    background: #17190a;
    color: #fff;
    overflow: hidden;
}

.adv-header {
    margin-bottom: 56px;
}

.adv-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a8b840;
    margin-bottom: 14px;
}

.adv-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.adv-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.25s;
}

.adv-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.adv-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.adv-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(168, 184, 64, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8b840;
    transition: all 0.25s;
}

.adv-item:hover .adv-item__icon {
    background: rgba(168, 184, 64, 0.1);
    border-color: #a8b840;
}

.adv-item__body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.adv-item__body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   REAL CASES — Swiper Slider Refined
   ============================================================ */
.real-cases-slider {
    padding: 100px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.section-title-centered {
    text-align: center;
    font-family: var(--third-family);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    color: #252a01;
    margin-bottom: 60px;
}

.swiper-container-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    z-index: 10;
}

.real-cases-swiper {
    padding: 20px 0 60px;
    z-index: 2;
}

/* Base Card Class & Aliases for compatibility */
.case-card-new-new,
.case-card-new {
    background: #fff;
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Variant without image */
.case-card-new-new--no-img {
    display: block;
}

.case-card-new-new--no-img .case-card-new-new__content {
    max-width: 100%;
}

.case-card-new-new__img,
.case-card-new__img {
    flex: none;
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.case-card-new-new__img img,
.case-card-new__img img {
    border-radius: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card-new-new:hover .case-card-new-new__img img,
.case-card-new:hover .case-card-new__img img {
    transform: scale(1.04);
}

/* Content hidden above 991px — shows only on mobile */
.case-card-new-new__content {
    display: none;
}

.case-card-new__content {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
}

.case-card-new-new__label,
.case-tag {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #a8b840 !important;
    margin-bottom: 16px;
    display: block;
    text-transform: none;
}

.case-card-new-new__title,
.case-card-new__content h3 {
    font-family: var(--third-family);
    font-weight: 800 !important;
    font-size: clamp(24px, 2.5vw, 32px) !important;
    line-height: 1.25;
    color: #252a01;
    margin-bottom: 24px;
}

.case-card-new-new__desc,
.case-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: auto;
    padding-bottom: 40px;
}

.case-card-new-new__stats,
.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1.5px solid #d7e9db;
    /* Light green separator line */
    padding-top: 30px;
}

.case-stat-new,
.case-stat {
    display: flex;
    flex-direction: column;
}

.case-stat-new__val,
.case-stat__val {
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 24px;
    color: #252a01;
    line-height: 1.1;
}

.case-stat-new__label,
.case-stat__lbl {
    font-size: 14px;
    color: #999;
    font-family: var(--font-family);
    margin-top: 6px;
}

/* Swiper navigation & dots */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252a01;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--brand-green-lime);
    color: #fff;
    box-shadow: 0 8px 25px rgba(168, 184, 64, 0.3);
}

.swiper-pagination-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background: var(--brand-green-lime);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 991px) {

    .case-card-new-new,
    .case-card-new {
        flex-direction: column;
    }

    .case-card-new-new__img,
    .case-card-new__img {
        flex: 0 0 380px;
        height: 380px;
    }

    .case-card-new-new__content,
    .case-card-new__content {
        padding: 40px 30px;
    }

    .swiper-container-wrapper {
        padding: 0 20px;
    }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
    .for-whom-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .adv-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE — 992px (tablets)
   ============================================================ */
@media (max-width: 992px) {
    .what-we-do {
        padding: 60px 0;
    }

    .advantages-vortex {
        padding: 60px 0;
    }

    .real-cases {
        padding: 60px 0;
    }

    .adv-list {
        grid-template-columns: 1fr;
    }

    .adv-item:nth-child(odd) {
        border-right: none;
    }

    .case-card {
        grid-template-columns: 1fr;
    }

    .case-card__img {
        min-height: 300px;
    }

    .case-card__content {
        padding: 40px 36px;
    }

    .case-stats {
        gap: 24px;
    }
}

/* ============================================================
   RESPONSIVE — 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
    .about_content {
        margin-top: 100px;

    }

    .section-header {
        margin-bottom: 36px;
    }

    .clients__slider-header {
        flex-direction: column !important;
        gap: 20px !important;
        height: auto !important;
    }

    .clients__slider-nav {
        position: static !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 34px);
    }

    .section-desc {
        font-size: 15px;
    }

    /* What We Do */
    .what-we-do {
        padding: 48px 0;
    }

    .for-whom-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .for-whom-card {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .for-whom-card h3 {
        font-size: 18px;
    }

    /* Advantages */
    .advantages-vortex {
        padding: 48px 0;
    }

    .adv-title {
        font-size: clamp(26px, 7vw, 36px);
    }

    .adv-item {
        padding: 22px 0;
        gap: 16px;
    }

    .adv-item__icon {
        width: 40px;
        height: 40px;
    }

    .adv-item__body h3 {
        font-size: 16px;
    }

    /* Real Cases */
    .real-cases {
        padding: 48px 0;
    }

    .case-card__img {
        min-height: 240px;
    }

    .case-card__content {
        padding: 32px 28px;
        gap: 16px;
    }

    .case-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .case-stat__val {
        font-size: 22px;
    }


}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .section-title {
        font-size: clamp(22px, 7vw, 28px);
    }

    .what-we-do {
        padding: 40px 0;
    }

    .for-whom-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .for-whom-icon img {
        height: 44px;
    }

    .for-whom-card h3 {
        font-size: 17px;
    }

    .for-whom-card p {
        font-size: 14px;
    }

    .advantages-vortex {
        padding: 40px 0;
    }

    .adv-header {
        margin-bottom: 36px;
    }

    .adv-eyebrow {
        font-size: 11px;
    }

    .adv-title {
        font-size: clamp(22px, 8vw, 30px);
    }

    .adv-item {
        padding: 18px 0;
        gap: 14px;
    }

    .adv-item__icon {
        width: 36px;
        height: 36px;
    }

    .adv-item__icon svg {
        width: 18px;
        height: 18px;
    }

    .adv-item__body h3 {
        font-size: 15px;
    }

    .adv-item__body p {
        font-size: 13px;
    }

    .real-cases {
        padding: 40px 0;
    }

    .case-card {
        border-radius: 16px;
    }

    .case-card__img {
        min-height: 200px;
    }

    .case-card__content {
        padding: 24px 20px;
    }

    .case-card h3 {
        font-size: 22px;
    }

    .case-desc {
        font-size: 14px;
    }

    .case-stats {
        padding-top: 16px;
        gap: 12px;
    }

    .case-stat__val {
        font-size: 20px;
    }

    .case-stat__lbl {
        font-size: 12px;
    }

    .case-card__badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ============================================================
   RESPONSIVE — 375px
   ============================================================ */
@media (max-width: 375px) {
    .adv-title {
        font-size: 22px;
    }

    .for-whom-card {
        padding: 20px 16px;
    }

    .case-card__content {
        padding: 20px 16px;
    }

    .case-stats {
        gap: 10px;
    }

    .case-stat__val {
        font-size: 18px;
    }
}

/* ============================================================
   RESPONSIVE — 320px (smallest phones)
   ============================================================ */
@media (max-width: 320px) {
    .section-title {
        font-size: 20px;
    }

    .section-desc {
        font-size: 13px;
    }

    .for-whom-cards {
        gap: 10px;
    }

    .for-whom-card {
        padding: 18px 14px;
        border-radius: 10px;
    }

    .for-whom-card h3 {
        font-size: 15px;
    }

    .for-whom-card p {
        font-size: 13px;
    }

    .for-whom-icon img {
        height: 36px;
    }

    .adv-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .adv-title {
        font-size: 20px;
        line-height: 1.2;
    }

    .adv-item {
        gap: 12px;
        padding: 16px 0;
    }

    .adv-item__icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .adv-item__icon svg {
        width: 16px;
        height: 16px;
    }

    .adv-item__body h3 {
        font-size: 14px;
    }

    .adv-item__body p {
        font-size: 12px;
    }

    .case-card__img {
        min-height: 170px;
    }

    .case-card__content {
        padding: 16px 14px;
        gap: 12px;
    }

    .case-card h3 {
        font-size: 18px;
    }

    .case-desc {
        font-size: 13px;
    }

    .case-stats {
        flex-wrap: wrap;
        gap: 8px;
    }

    .case-stat__val {
        font-size: 16px;
    }

    .case-stat__lbl {
        font-size: 11px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}



/* Advantages Vortex */
.advantages-vortex {
    padding: 80px 0;
    background: #252a01;
    color: #fff;
}

.advantages-vortex .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.adv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.adv-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.adv-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.adv-card p {
    font-size: 14px;
    opacity: 0.7;
}

/* Real Cases Slider */
.real-cases {
    padding: clamp(60px, 12vw, 160px) 0;
    background: #f6f7f9;
    overflow: hidden;
    position: relative;
}

.real-cases-swiper {
    --swiper-theme-color: transparent !important;
    --swiper-navigation-size: 0 !important;
    padding: 40px 0 100px;
    overflow: visible !important;
}

.real-cases-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    /* Strictly center slides vertically */
}

.real-cases-swiper .swiper-slide {
    width: 80%;
    /* Ensure side slides are visible */
    max-width: 1380px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    opacity: 1 !important;
}

/* Internal card container - this is what we scale and blur */
.case-card-new-new {
    background: #fff;
    border-radius: 16px;
    /* 16px as requested */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    width: 100%;
    /* Fill the 80% slide container */
    max-width: 1380px;
    height: 512px;
    /* Fixed height on desktop */
    padding: 40px;
    /* 40px padding all sides */
    overflow: hidden;
    transform: scale(0.85);
    filter: blur(8px);
    opacity: 0.5;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
    gap: 40px;
    /* Gap between image and text */
}

/* Active slide state - applied to the internal card */
.real-cases-swiper .swiper-slide-active .case-card-new-new {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Minimalist Circular Arrows */
.cases-prev,
.cases-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Suppressing default Swiper arrows (Force hide blue elements) */
.cases-prev:after,
.cases-next:after,
.swiper-button-prev:after,
.swiper-button-next:after {
    content: none !important;
    display: none !important;
}

/* Minimalist Arrow Icons (Strictly custom) */
.cases-prev::before,
.cases-next::before {
    content: '';
    width: 14px;
    height: 14px;
    border-left: 2.5px solid var(--brand-dark);
    border-bottom: 2.5px solid var(--brand-dark);
    display: block;
}

.cases-prev::before {
    transform: translateX(4px) rotate(45deg);
}

.cases-next::before {
    transform: translateX(-4px) rotate(-135deg);
}

.cases-prev:hover,
.cases-next:hover {
    background: var(--brand-green-lime);
    box-shadow: 0 8px 25px rgba(142, 180, 5, 0.3);
}

.cases-prev:hover::before,
.cases-next:hover::before {
    border-color: #fff;
}

.cases-prev {
    left: clamp(10px, 4vw, 80px);
}

.cases-next {
    right: clamp(10px, 4vw, 80px);
}

/* Pagination Styling */
.cases-pagination {
    bottom: 30px !important;
}

.cases-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    opacity: 1;
    transition: all 0.4s ease;
}

.cases-pagination .swiper-pagination-bullet-active {
    background: var(--brand-green-lime);
    width: 32px;
    border-radius: 12px;
}

/* Image container and strict centering */
.case-card-new-new__img {
    flex: 0 0 630px;
    /* Exact 630px width */
    height: 432px;
    /* Exact 432px height */
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    /* 16px as requested */
    background: #eee;
}

.case-card-new-new__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Strictly centered image */
    display: block;
}

.case-card-new-new__content {
    flex: 1;
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.case-card-new-new__label {
    display: inline-block;
    color: var(--brand-green-lime);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.case-card-new-new__title {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: clamp(22px, 3.5vw, 36px);
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 30px;
    word-break: break-word;
}

.case-card-new-new__desc {
    font-family: var(--font-family);
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    word-break: break-word;
}

.case-card-new-new__stats {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(142, 180, 5, 0.15);
}

.case-stat-new__val {
    font-family: var(--third-family);
    font-weight: 800;
    font-size: clamp(20px, 2.8vw, 32px);
    color: var(--brand-dark);
}

.case-stat-new__label {
    font-size: 12px;
    color: #999;
}

/* Responsive Overrides */
@media (max-width: 1712px) {
    .real-cases-swiper .swiper-slide {
        width: 90%;
    }
}

@media (max-width: 1670px) {
    .real-cases-swiper .swiper-slide {
        width: 95vw;
    }

    .case-card-new-new {
        width: 100%;
        max-width: 1380px;
    }

    .case-card-new-new__img {
        flex: 0 0 480px;
    }
}

@media (max-width: 991px) {
    .case-card-new-new {
        height: auto;
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    /* Show content below image from 991px */
    .case-card-new-new__content {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

    .case-card-new-new__img {
        flex: none;
        width: 100%;
        height: 320px;
    }

    .cases-prev,
    .cases-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .case-card-new-new {
        padding: 20px;
        gap: 20px;
    }

    .case-card-new-new__img {
        height: 240px;
    }
}

/* Calculator Complex */
.calculator-complex {
    padding: 80px 0;
    background: #fff;
}

.calc-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.calc-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-field label {
    font-weight: 600;
    color: #333;
}

.calc-field input,
.calc-field select {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
}

.calc-result {
    background: #252a01;
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.calc-price {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}

.cases-pagination {
    display: none !important;
}

.calc-btn-final {
    width: 100%;
    background: #e9ff2c;
    color: #252a01;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 992px) {
    .case-card {
        flex-direction: column;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-form {
        grid-template-columns: 1fr;
    }
}

/* Modal Triggers UI */
.principles_cards_card,
.stroitelniymusor_krasnodae_btn_call,
.btn-call {
    cursor: pointer !important;
}

.principles_cards_card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principles_cards_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ============================================================ 
   NEW MOBILE ADAPTIVE OVERRIDES
   ============================================================ */

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .container {
        margin: 0 20px;
    }

    .header__main {
        padding: 0px 0;

        /* Premium height */
    }

    .header__inner {
        position: relative;
        justify-content: flex-end;
        /* Actions stay on right */
        height: 70px;
    }

    .header__inner>.logo {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 5;
    }



    /* Actions positioning */
    .header__actions {
        gap: 15px;
    }

    .case-card-new-new__title,
    .case-card-new__content h3 {
        font-size: clamp(19px, 2.5vw, 32px) !important;
        margin-bottom: 15px;
    }

    .cases-pagination {
        margin-bottom: -20% !important;
    }

    .case-card-new-new__desc,
    .case-desc {

        padding-bottom: 0px;
    }

    .header__main .messenger-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .header__main .header__messengers {
        padding: 4px 10px;
        gap: 8px;
    }

    .header__divider {
        display: none;
    }

    .hero__title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .features-detailed__title {
        font-size: 49px;
    }

    body {
        padding-top: 80px;
    }

    .container {
        margin: 0 16px;
    }

    .header__main {
        padding: 0;
        height: 56px;
        display: flex;
        align-items: center;
    }

    .header__inner {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        position: relative;
    }

    .header__inner>.logo {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        flex-shrink: 0;
        z-index: 2;
        margin: 0;
    }

    .header__inner>.logo img {
        height: 34px !important;
        width: auto !important;
        max-width: 130px;
        object-fit: contain !important;
    }

    .header__actions {
        position: static;
    }

    /* Messengers on the right, fixed size block */
    .header__main .header__messengers {
        display: flex !important;
        position: absolute;
        right: 48px;
        top: 50%;
        transform: translateY(-50%);
        padding: 4px 6px;
        gap: 6px;
        background: rgba(255, 255, 255, 0.95);
        /* Солидный фон вместо размытия для iPhone */
        border: 1px solid rgba(163, 217, 167, 0.4);
        border-radius: 100px;
        z-index: 10;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .header__main .messenger-icon {
        width: 32px !important;
        height: 32px !important;
        background: transparent !important;
    }

    .burger {
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        z-index: 10;
        display: flex;
    }

    .hero__title {
        font-size: 26px;
    }

    /* Mobile Nav Panel Header */
    .mobile-nav__header {
        height: 80px;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
    }

    .mobile-nav__logo img {
        height: 38px !important;
        width: auto !important;
        max-width: 140px;
        object-fit: contain !important;
    }
}

/* Extra support for tiny screens 320-340px */
@media (max-width: 340px) {

    .header__inner>.logo img,
    .mobile-nav__logo img {
        height: 34px !important;
        max-width: 125px;
    }

    .header__main .header__messengers {
        right: 46px;
        /* Space for 40px burger and 6px gap */
        padding: 2px 4px;
        gap: 6px;
    }

    .header__main .messenger-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .burger {
        width: 40px !important;
        height: 40px !important;
    }
}

.cll-btn,
.calculate__btn {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: clip;
    font-size: clamp(14px, 4vw, 18px) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 15px !important;
    height: 52px !important;
    max-width: 100%;
}

.burger.burger--open {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

html,
body {
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

* {
    max-width: 100vw;
}

/* ============================================================
   COOKIE-БАННЕР
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #252A01;
    color: #fff;
    z-index: 99999;
    padding: 16px 24px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: #ccc;
    flex: 1;
    min-width: 240px;
}

.cookie-banner__link {
    color: #8EB405;
    text-decoration: underline;
}

.cookie-banner__link:hover {
    color: #fff;
}

.cookie-banner__btn {
    background: #8EB405;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.cookie-banner__btn:hover {
    background: #7a9c04;
}

@media (max-width: 600px) {
    .cookie-banner__content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cookie-banner__btn {
        text-align: center;
        width: 100%;
        padding: 12px;
    }
}

/* ============================================================
   БЛОК СОГЛАСИЯ В ФОРМАХ (чекбокс + ссылка на политику)
   ============================================================ */
.consent-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0 4px;
    line-height: 1.45;
}

.consent-block input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: #8EB405;
    cursor: pointer;
}

.consent-block label {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    line-height: 1.5;
}

.consent-block a {
    color: #8EB405;
    text-decoration: underline;
}

.consent-block a:hover {
    color: #252A01;
}

/* Вариант для тёмного фона (форма заявки) */
.consent-block--dark label {
    color: #bbb;
}

.consent-block--dark a {
    color: #a8cc06;
}

.consent-block--dark a:hover {
    color: #fff;
}

/* ============================================================
   ПОДВАЛ — ссылка на политику
   ============================================================ */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer__legal-link {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__legal-link:hover {
    color: #8EB405;
    text-decoration: underline;
}