/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;

}

:root {
    --scope-blue: #1B437C;
    --scope-green: #64B333;
    --scope-text: #4a5568;
    --scope-bg: #F3F3F3;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

section {
    overflow: hidden;
}

.container {
    max-width: 1360px;
    padding: 15px;
    margin: auto;
}

/*Хедер*/
header
{
    margin: 15px 0;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.main-navigation a:hover {
    color: var(--scope-green);
}

/* Базовый флекс для хедера (если еще не настроен) */
.header-row {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10%;
}
.main-navigation ul
{
    display: flex;
}
.main-navigation ul li
{
    margin: 0 15px;
}
/* Скрываем кнопку бургера по умолчанию на десктопе */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    /* Цвет палочек бургера */
    transition: all 0.3s ease;
}

/* Оверлей (затемнение) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Черный с прозрачностью */
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: center;
}
.partners-galery .row div
{
    width: 25%;
    padding: 15px;;
}
/* --- МОБИЛЬНАЯ ВЕРСИЯ (Адаптив) --- */
@media (max-width: 768px) {

    .header-row {
        justify-content: space-between;
        gap: 0;
    }

    .menu-toggle {
        display: flex;
        /* Показываем бургер */
    }

    /* Превращаем меню в шторку а-ля Telegram */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        /* Выезжает слева. Если нужно справа, замени на right: 0 */
        width: 280px;
        /* Ширина меню */
        height: 100%;
        background-color: #fff;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        padding: 80px 24px 24px;
        z-index: 95;

        /* Изначально прячем меню за предел экрана влево */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    /* Когда меню активно — выдвигаем его */
    .main-navigation.is-active {
        transform: translateX(0);
    }

    /* Стили для вертикального списка в WP */
    .main-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Анимация превращения бургера в крестик (X) при открытии */
    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Запрещаем скролл страницы при открытом меню */
    body.menu-open {
        overflow: hidden;
    }
}

/*Хиро*/
.hero-wrap {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.hero-title {
    text-align: center;
}

.hero-title img {
    margin-right: 40px;
}

.hero-mission {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    max-width: 970px;
    margin: 30px 0;
}

.hero-text {
    max-width: 700px;
}
.hero.page-hero .hero-title {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
}
.hero.page-hero .hero-wrap
{
    align-items: flex-start;
}
.hero.page-hero .hero-text
{
    max-width: 500px;
    text-align: left;
}
.hero.page-hero .hero-text p
{
    margin: 0;
}
.hero-button {
    margin: 30px 0;
    background: #fff;
    text-transform: uppercase;
    color: #000;
    font-size: 18px;
    border-radius: 48px;
    width: 255px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    border: none;
    cursor: pointer;
}

.hero-button.green {
    background: #64B333;
}

.hero-button i {
    margin-left: 10px;
    font-size: 48px;
    color: #64B333;
    transition: .3s;
}

.hero-button.green i {
    color: #fff;
}

.hero-button:hover {
    color: #64B333;
}

.hero-button.green:hover {
    color: #fff;
}

.hero-button:hover i {
    transform: translateX(6px);
}

/*Импакт*/
.climate-impact {
    padding: 60px 0;
}

.climate-impact .hero-button {
    margin: 30px 90px 30px auto;
}


/* Шапка блока с линией */
.climate-impact__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.climate-impact__title-wrap {
    position: relative;
}

/* Декоративный серый цветок (заглушка, замените на svg/png) */
.climate-impact__decor {
    position: absolute;
    left: -30px;
    top: -50px;
    width: 120px;
    height: 125px;
    background: url(/image/flower.svg) no-repeat center / contain;
    z-index: -1;
}

.climate-impact__subtitle {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: #1B437C;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.climate-impact__title {
    font-size: 48px;
    font-weight: 700;
    color: #1B437C;
    text-transform: uppercase;
    margin: 0;
}

/* Тонкая синяя линия справа */
.climate-impact__line {
    flex-grow: 1;
    height: 4px;
    background-color: #1B437C;
    margin-left: 30px;
    margin-bottom: 45px;
    width: 2000px;
    position: absolute;
    left: calc(1360px - 45%);
}

/* Описание */
.climate-impact__description {
    max-width: 550px;
    font-size: 18px;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 45px;
}

.climate-impact__description p {
    margin: 0;
}

/* Сетка с цифрами */
.climate-impact__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.climate-impact__stat-item {
    display: flex;
    flex-direction: column;
}

.climate-impact__stat-number {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    color: #5cb85c;
    /* Зеленый цвет цифр */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.climate-impact__stat-text {
    font-size: 20px;
    color: var(--scope-blue);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .climate-impact__stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .climate-impact__line {
        display: none;
        /* Скрываем линию на мобильных, чтобы не ломать верстку */
    }
}

@media (max-width: 576px) {
    .climate-impact__stats-grid {
        grid-template-columns: 1fr;
    }

    .climate-impact__title {
        font-size: 26px;
    }
}


/*О нас*/
.what-flower
{
    position: absolute;
    right: 0;
    margin-top: -150px;
    z-index: -1;
}
.news-section .what-flower
{
    left: -10%;
    right: auto;
}
.what-we-do {
    position: relative;
    background-color: var(--scope-bg);
    padding: 80px 20px;
    font-family: sans-serif;
    clip-path: polygon(0% 0%, 100% 11%, 100% 100%, 0% 100%);
    border-top-right-radius: 40%;
}

.wwd-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* --- Левая колонка (Одиночное изображение) --- */
.wwd-image-column {
    flex: .9;
}

.wwd-main-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Правая колонка (Контент) --- */
.wwd-content-column {
    flex: 1.1;
}

.wwd-subtitle {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1B437C;
}

.wwd-title {
    font-size: 32px;
    font-weight: 700;
    color: #1B437C;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.wwd-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.wwd-description p {
    margin: 0 0 15px 0;
}

.wwd-description p:last-child {
    margin-bottom: 0;
}

.wwd-divider {
    border: none;
    border-top: 3px solid #1B437C;
    margin: 0 0 25px 0;
    width: 100%;
}

/* Нижняя часть */
.wwd-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wwd-bottom-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

/* Кнопка */
.wwd-btn {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.wwd-btn:hover {
    background-color: var(--scope-green);
}

.wwd-btn-text {
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wwd-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color:var(--scope-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
}
/* ==========================================================================
   Секция About Carbon Pro (с одиночным изображением)
   ========================================================================== */

.carbon-about-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 15px;
    position: relative;
}
.carbon-about-top .climate-impact__decor
{
    top: -15px;
}
.carbon-about-top .scope-services__badge
{
    background: var(--scope-bg);
}
.page-template-certeficatiion .advantages-section
{
    background: var(--scope-bg);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 92%);
}
.carbon-about-top .scope-services__badge::after
{
    display: none;
}
.carbon-subtitle {
    color: var(--scope-blue);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.carbon-tag {
    color: var(--scope-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Двухколоночная сетка */
.carbon-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Ровно две колонки */
    gap: 60px;
}

/* Левая колонка */
.carbon-col-left {
    display: flex;
    flex-direction: column;
}

/* Гигантский заголовок Carbon Pro */
.carbon-main-title {
    font-size: 82px;
    font-weight: 700;
    color: var(--scope-blue);
    margin: 0 0 35px 0;
    line-height: 1.05;
    letter-spacing: -1px;
}

/* Синий акцентный текст */
.carbon-text-highlight {
    color: var(--scope-blue);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 540px;
    margin-top: 15px;
}

/* Правая колонка */
.carbon-col-right {
    display: flex;
    flex-direction: column;
    padding-top: 52px; /* Сдвигаем контент ниже, вровень с началом текста слева */
}
.page-template-certeficatiion .parners-flower
{
    top: 900px;
}

/* Контейнер для одиночного изображения */
.carbon-about-single-image {
    width: 100%;
    overflow: hidden;
    border-radius: 24px; /* Мягкие скругления углов */
}

.carbon-about-single-image img {
    width: 100%;
    height: 320px; /* Фиксированная высота картинки под макет */
    object-fit: cover; /* Защита от деформации при растягивании */
    display: block;
}
.page-template-certeficatiion .what-we-do
{
    background: transparent;
}
.page-template-certeficatiion .what-flower
{
    margin-top: 150px;
}
.page-template-certeficatiion .wwd-subtitle
{
    margin: 0;
}
.col-6
{
    width: 50%;
    padding: 15px;
}
.sert-last
{
    padding: 30px 0;
}
.sert-last img
{
    margin: 15px 0;
}
/* ==========================================================================
   Адаптивность (Медиазапросы)
   ========================================================================== */

@media (max-width: 992px) {
    .page-template-certeficatiion .advantages-section
    {
        clip-path:none;
    }
    .col-6
    {
        width: 100%;
    }
    .carbon-about-grid {
        grid-template-columns: 1fr; /* Схлопываем в 1 колонку на планшетах */
        gap: 30px;
    }
    .carbon-col-right {
        padding-top: 0; /* Сбрасываем верхний отступ на мобильных */
    }
    .carbon-main-title {
        font-size: 56px;
    }
}

@media (max-width: 576px) {
    .carbon-main-title {
        font-size: 42px;
    }
    .carbon-about-single-image img {
        height: 220px; /* Делаем картинку пониже на маленьких экранах телефонов */
    }
}
/* --- Адаптивность --- */
@media (max-width: 992px) {
    .wwd-container {
        flex-direction: column;
        gap: 40px;
    }

    .wwd-image-column {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .wwd-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .wwd-btn {
        width: 100%;
        justify-content: center;
    }
}




/* Общие стили кнопок на основе вашего дизайна, добавляем белый вариант для баннера */
.hero-button.white-btn {
    background: #ffffff !important;
    color: #0a3d7a !important;
}

.hero-button.white-btn i {
    color: var(--scope-green) !important;
}

/* Стили структуры Scope of Services */
.scope-services {
    background-color: var(--scope-bg);
    padding: 80px 0 120px;
    font-family: sans-serif;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 95%);
    border-bottom-left-radius: 15%;
    margin-top: -1px;
}

.scope-services__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.scope-services__header-left {
    flex: 0 0 50%;
}

.scope-services__header-right {
    flex: 0 0 45%;
}

.scope-services__badge {
    display: inline-block;
    position: relative;
    padding: 6px 16px;
    background: #ffffff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    color: var(--scope-blue);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}
.scope-services__badge::after
{
    display: block;
    content: '';
    position: absolute;
    width: 2000px;
    left: 100%;
    height: 4px;
    background: #fff;
    top: calc(50% - 2px);
}
.scope-services__main-title {
    color: var(--scope-blue);
    font-size: 60px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.scope-services__top-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--scope-blue);
    margin-bottom: 20px;
}

.scope-services__mini-gallery {
    display: flex;
    gap: 15px;
}

.scope-services__mini-gallery img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.scope-services__content {
    align-items: flex-end;
    display: flex;
    gap: 5%;
}

.scope-services__main-col {
    flex: 0 0 55%;
}

.scope-services__sidebar {
    flex: 0 0 40%;
}

.scope-services__list {
    margin-bottom: 40px;
}

.scope-services__item {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    align-items: center;
    border-bottom: 2px solid #fff;
    padding: 20px 0;
}

.scope-services__item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scope-services__item-num {
    font-size: 20px;
    font-weight: bold;
    color: var(--scope-blue);
}

.scope-services__item-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.scope-services__item-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--scope-blue);
    margin: 0;
    padding-right: 20px;
}

.scope-services__item-features {
    font-size: 13px;
    color: var(--scope-text);
}

.scope-services__item-features ul {
    margin: 0;
    padding-left: 15px;
}

.scope-services__item-features ul li {
    font-size: 16px;
    font-weight: 400;
    color: var(--scope-blue);
    margin-bottom: 5px;
}

/* Активное состояние (Зеленые строки) */
.scope-services__item--accent .scope-services__item-num,
.scope-services__item--accent .scope-services__item-title,
.scope-services__item--accent .scope-services__item-features {
    color: var(--scope-green);
}

.scope-services__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.scope-services__footer-text {
    font-size: 16px;
    line-height: 1.4;
    color: var(--scope-blue);
    margin: 0;
    max-width: 450px;
}

/* Правый Баннер */
.scope-banner {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    height: 100%;
    max-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 15px 40px;
    box-sizing: border-box;
}

.scope-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scope-banner__logo {
    width: 100px;
    height: auto;
    align-self: flex-start;
}

.scope-banner__counter {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.scope-banner__counter-text {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.scope-banner__content .hero-button {
    align-self: flex-end;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 991px) {

    .scope-services__header,
    .scope-services__content {
        flex-direction: column;
        gap: 30px;
    }

    .scope-services__header-left,
    .scope-services__header-right,
    .scope-services__main-col,
    .scope-services__sidebar {
        flex: 0 0 100%;
    }

    .scope-services__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .scope-services__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Основная секция-обертка */
.advantages-section {
    position: relative;
    padding: 30px 0;
}
.home .advantages-section
{
    clip-path: polygon(0% 0%, 100% 7%, 100% 100%, 0% 100%);
    background-color: var(--scope-bg);
}
/* Синий фон с рабочими по бокам */
.advantages-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(50% - 650px);
    height: 340px; 
    background-image: url('/image/wind-turbine-bg.jpg'); 
    background-size: cover;
    background-position:left center;
    z-index: 1;
}
.advantages-section::after
{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(50% - 650px);
    height: 340px; 
    background-image: url('/image/wind-turbine-bg.jpg'); 
    background-size: cover;
    background-position:right  center;
    z-index: 1;
}
/* Контейнер для центрирования */
.advantages-section .container {
    position: relative;
    z-index: 2;
}

/* Зеленая плашка */
.advantages-block {
    background-color: var(--scope-green); 
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Главный заголовок ADVANTAGES */
.advantages-block__title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Сетка для 4 колонок */
.advantages-block__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки в ряд на десктопе */
    gap: 30px;
    margin-bottom: 30px;
}

/* Элемент списка (колонка) */
.advantages-block__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Обертка для иконки (чтобы они были на одной линии по высоте) */
.advantages-block__icon-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.advantages-block__icon-wrapper img {
    max-height: 100%;
    height: 85px;
    width: auto;
    object-fit: contain;
}

/* Темно-синий заголовок преимущества */
.advantages-block__item-title {
    color: var(--scope-blue); 
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Белое описание */
.advantages-block__item-desc {
    color: var(--scope-blue); 
    font-size: 16px;
    line-height: 1.5;
}

/* Обертка кнопки (прижимает к правому краю) */
.advantages-block__btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Белая кнопка OUR PROJECTS */
.advantages-block__btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advantages-block__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Зеленый кружок со стрелкой внутри кнопки */
.advantages-block__btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
}
.advantages-block .hero-button
{
    margin-left: auto;
}
/* --- Адаптивность (Медиа-запросы) --- */

@media (max-width: 992px) {
    .advantages-block__list {
        grid-template-columns: repeat(2, 1fr); /* На планшетах сетка становится 2х2 */
    }
}

@media (max-width: 576px) {
    .advantages-block {
        padding: 30px 20px 30px;
    }
    
    .advantages-block__list {
        grid-template-columns: 1fr; /* На мобилках колонки встают в один ряд */
        gap: 40px;
    }
    
    .advantages-block__btn-wrapper {
        justify-content: center; /* Кнопка центрируется на телефоне */
    }
}


.wwd-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--scope-bg);
    overflow: hidden;
    border-bottom-left-radius: 40%;
}
/* Шапка секции */
.wwd-header {
    max-width: 900px;
    margin-bottom: 60px;
}

.wwd-header__title {
    color:var(--scope-green);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.wwd-header__desc {
    color: var(--scope-blue);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Сетка карточек */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
    margin-bottom: 15px;
}

.wwd-grid__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
}

/* Заголовки у всех карточек одинаковые */
.wwd-grid__item-title {
    color: var(--scope-blue);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 5px 0;
}

.wwd-grid__item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wwd-grid__item-list li {
    position: relative;
    color:var(--scope-blue);
    font-size: 16px;
    line-height: 1.5;
    padding-left: 15px;
    margin-bottom: 8px;
}

.wwd-grid__item-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: inherit;
}

/* Одинарная большая картинка снизу */
.wwd-image-single {
    margin-top: 50px;
    width: 100%;
}

.wwd-image-single img {
    width: 100%;
    height: auto;
    display: block;
}
.partners-section {
    position: relative;
    padding: 60px 0;
}


/* Светло-серый фон самого блока */
.partners-block {
    position: relative;
  
    padding: 50px 60px 45px;
}
.partners-block::after
{
    position: absolute;
    content: '';
    display: block;
    width: 2000px;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--scope-bg);
    border-radius: 16px;
    z-index: -1;
}
/* Главный темно-синий заголовок */
.partners-block__title {
    color: var(--scope-blue);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Сетка для логотипов партнеров */
.partners-block__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 логотипа в ряд */
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-bottom: 45px;
}

.partners-block__logo-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-block__logo-item img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100px; /* Защита от слишком высоких логотипов */
    object-fit: contain;
}

/* Нижняя панель с текстом и кнопкой */
.partners-block__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.partners-block__footer-left {
    flex: 0 1 600px; /* Ограничиваем ширину текста */
}

.partners-block__desc {
    color: var(--scope-blue);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.partners-block__footer-right {
    flex-shrink: 0;
}
 /* Контейнер всей формы */
.wpcf7-form {
    max-width: 650px;
    margin: 0 auto;
    font-family: inherit;
}

/* Главный заголовок */
.cf7-contact__title {
    color: var(--scope-blue); /* Фирменный темно-синий */
    font-size: 32px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Двухколоночная сетка для полей */
.cf7-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
    margin-bottom: 5px;
}

/* Поле во всю ширину (для textarea) */
.cf7-contact__field--full {
    grid-column: span 2;
}

/* Стили подписей (Labels) */
.cf7-contact__label {
    display: block;
    color: var(--scope-blue);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

/* Общие стили для инпутов, селектов и текстареа */
.cf7-contact__input,
.cf7-contact__select,
.cf7-contact__textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: #dcdcdc; /* Светло-серый фон как на макете */
    border: none;
    border-radius: 14px; /* Мягкое скругление полей */
    padding: 14px 18px;
    color: #333333;
    font-size: 14px;
    outline: none;
    transition: background-color 0.2s ease;
}

/* Для выпадающего списка чуть корректируем высоту и внешний вид */
.cf7-contact__select {
    height: 46px;
    appearance: none; /* Убираем дефолтную стрелку браузера */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231d4289' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

/* Высота для поля сообщения */
.cf7-contact__textarea {
    height: 90px;
    resize: vertical;
}

/* Фокус на полях ввода */
.cf7-contact__input:focus,
.cf7-contact__select:focus,
.cf7-contact__textarea:focus {
    background-color: #cfcfcf;
}

/* Нижняя часть формы */
.cf7-contact__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 5px;
}

/* Текст о конфиденциальности слева */
.cf7-contact__privacy {
    color: var(--scope-blue);
    font-size: 14px;
    line-height: 1.2;
    flex: 0 1 350px;
}

.cf7-contact__submit-wrapper {
    flex-shrink: 0;
}

/* Кнопка отправки */
.cf7-contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #63b333; /* Фирменный зеленый */
    color: #000000;
    border: none;
    padding: 14px 35px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cf7-contact__btn:hover {
    transform: translateY(-2px);
    background-color: #559e2a;
}

/* Белый кружок со стрелкой внутри кнопки */
.cf7-contact__btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #63b333;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

/* Сброс стандартных стилей лоадера и ошибок CF7, чтобы они не ломали верстку */
.wpcf7 .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    right: 20px;
    margin: 0;
}

.wpcf7-not-valid-tip {
    color: #ff3333;
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 10px 15px !important;
    border-radius: 8px;
    font-size: 14px;
}
.contacts-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.contacts-section form br
{
    display: none;
}
.contacts-section form p
{
    margin: 0;;
}
/* Огромный заголовок CONTACTS */
.contacts-section__main-title {
    color: var(--scope-blue);
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Главная двухколоночная сетка секции */
.contacts-section__grid {
    display: grid;
    grid-template-columns: 420px 1fr; /* Фиксированная левая колонка, правая резиновая */
    gap: 60px;
    align-items: start;
}

/* --- ЛЕВАЯ КОЛОНКА (Плашка COMPANY DETAILS) --- */
.contacts-section__info-box {
    background-color: #f0f0f0; /* Серый фон карточки реквизитов */
    border-radius: 12px;
    padding: 30px 20px;
}

.contacts-section__box-title {
    color: var(--scope-blue);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.contacts-section__company-name {
    color: var(--scope-blue);
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

.contacts-section__sub-title {
    color: var(--scope-blue);
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
}

.contacts-section__text {
    color: #4a607a;
    font-size: 15px;
    line-height: 1.4;
}

/* Нижний блок контактов в плашке */
.contacts-section__meta {
    margin-top: 35px;
    border-top: 1px solid #dcdcdc;
    padding-top: 20px;
}

.contacts-section__meta-item {
    font-size: 15px;
    color: var(--scope-blue);
    margin: 8px 0;
}

.contacts-section__meta-item strong {
    font-weight: 600;
}

.contacts-section__meta-item a {
    color: var(--scope-blue);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contacts-section__meta-item a:hover {
    opacity: 0.8;
}

/* --- ПРАВАЯ КОЛОНКА (Контейнер под форму) --- */
.contacts-section__form-box {
    position: relative;
    z-index: 2; /* Чтобы форма была поверх декоративных линий */
}

/* Декоративная интеграция фона (абстрактные волны) */
.contacts-section::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -50px;
    width: 350px;
    height: 300px;
    /* Сюда можно добавить SVG-линию фоном, если потребуется */
    pointer-events: none;
    z-index: 1;
}
.site-footer {
    background-color: var(--scope-blue);
    padding: 70px 0 60px;
    color: #ffffff;
    line-height: 1.4;
}

/* Флекс-сетка в одну линию, как на десктопном макете */
.site-footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Базовое поведение колонок */
.site-footer__col {
    flex: 1;
}

/* Специфические ширины для идеального выравнивания */
.site-footer__col--logo {
    flex: 0 0 220px;
}

.site-footer__col--logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-footer__logo-fallback {
    color: #63b333; /* Зеленый бренд-текст, если нет картинки */
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
}

/* Стилизация меню WordPress */
.site-footer__col--menu {
    flex: 0 0 260px;
}

.site-footer__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__menu-list li {
    margin-bottom: 12px;
}

.site-footer__menu-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.site-footer__menu-list a:hover {
    opacity: 0.8;
}

/* Колонка реквизитов (Адрес и компания) */
.site-footer__col--details {
    flex: 0 0 300px;
}

.site-footer__company-name {
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

.site-footer__sub-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
}

.site-footer__text {
    font-size: 14px;
    font-weight: 100;
}

/* Колонка контактов-ссылок */
.site-footer__col--meta {
    flex: 0 0 250px;
}

.site-footer__meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 100;
}

.site-footer__meta-list li {
    margin-bottom: 8px;
}

.site-footer__meta-list strong {
    color: #ffffff;
    font-weight: 500;
}

.site-footer__meta-list a {
    color: #bacbdf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__meta-list a:hover {
    color: #ffffff;
}

/* Языковой переключатель */
.site-footer__col--lang {
    flex: 0 0 40px;
    text-align: right;
}

.site-footer__lang-switcher {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}
#footer-menu
{
    flex-direction: column;
}
#footer-menu li
{
    margin-bottom: 8px;
}
.parners-flower
{
    position: absolute;
    z-index: -1;
    right: 0;
    top: 400px;
}
/* --- Мобильная и планшетная адаптивность --- */

@media (max-width: 992px) {
    .site-footer__grid {
        flex-wrap: wrap; /* Разрешаем перенос строк на средних экранах */
        gap: 40px 20px;
    }
    
    .site-footer__col--logo {
        flex: 1 0 100%; /* Логотип занимает всю ширину сверху */
        margin-bottom: 10px;
    }
    
    .site-footer__col--menu,
    .site-footer__col--details,
    .site-footer__col--meta {
        flex: 1 0 40%; /* Остальные бьются по парам */
    }
}
/* Сетка на 4 колонки */
.custom-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Стили карточки */
.post-card {
    background: #f8f9fa; /* Светлый фон карточки */
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Дата */
.post-card__date {
    text-align: right;
    font-size: 16px;
    color: var(--scope-blue);
    margin-bottom: 10px;
}

/* Картинка */
.post-card__thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Заголовок */
.post-card__title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 auto 0; /* Выталкивает футер вниз, если заголовки разной длины */
}

.post-card__title a {
    color: var(--scope-blue);
    text-decoration: none;
    font-weight: bold;
}

/* Нижняя часть */
.post-card__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

.post-card__category {
    margin-top: 10px;
    color: #76AFE0;
    text-transform: uppercase;
}

.post-card__more {
    color: var(--scope-blue); 
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    position: relative;
}
.post-card__more::before
{
    content: '';
    width: 40px;
    height: 2px;
    top: -5px;
    right: -15px;
    background: var(--scope-blue);
    position: absolute;
}
.post-card__more .arrow {
    display: flex;
    align-items: center;
    margin-left: 5px;
}
.post-card__more .arrow svg {
    width:12px;
}
.post-card a:hover {
    color: var(--scope-green);
}
.post-card__more:hover:before {
    background: var(--scope-green);
}
.post-card a:hover svg path{
    fill:var(--scope-green);
}
#load-more-btn
{
    margin: 30px auto;
}
.post-meta-container
{
    display: flex;
    justify-content: space-between;
}
.col-but
{
    width: 20%;
    padding: 15px;
}
.col-cont
{
    width: 80%;
    max-width: 890px;
    padding: 15px;
}
.col-cont img
{
    width: 100%;
}
.col-cont .post-image
{
    margin: 20px 0;
}
.col-cont .post-image img
{
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
.alingn-start
{
    align-items: flex-start;
}
.single-content
{
    color: var(--scope-blue);
}
.return
{
    color: var(--scope-blue);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}
.col-cont .post-tags
{
    color: #76AFE0;
    text-transform: uppercase;
}
.return i
{
    margin-right: 5px;
}
.single header .container
{
    border-bottom: 4px solid #000;
}
.single-but 
{
    margin: 60px auto;
}
.category-projects .post-card__date,
.category-projects .post-card__footer,
.category-projects .post-card__category
{
    display: none;
}
.category-projects .post-card
{
    padding: 0;
    position: relative
}
.category-projects .post-card__thumbnail img
{
    filter: brightness(0.5);
    height: 400px;
    margin: 0;
}
.category-projects .post-card__title
{
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.category-projects .post-card__title a
{
    color: #fff;
}
.implement-content
{
    max-width: 650px;
}
.implement-content div
{
    margin-top: 15px;
}
.page-template-activities .wwd-section
{
    background: transparent;
}
.page-template-activities .climate-impact__stats-grid
{
    margin: 30px 0;
}
.projects-implemented
{
    padding: 30px 0;
}
/* Общая обертка слайдера */
.custom-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 60px; /* Отступы, чтобы стрелки не наезжали на контент */
    box-sizing: border-box;
}

/* Окно просмотра */
.custom-slider-container {
    overflow: hidden;
    width: 100%;
}

/* Рельс для слайдов */
.custom-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Слайд (по 2 в ряд на десктопе) */
.hero-projects
{
    padding-top: 60px;
}
.custom-slide {
    flex: 0 0 50%;
    padding: 0 15px; /* Зазор между карточками */
    box-sizing: border-box;
}

/* Карточка проекта (Белая плашка, скругленная, как на скрине) */
.project-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 24px; /* Сильное скругление карточки */
    padding: 5px;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Легкая тень для объема */
    width: 100%;
    height: 100%;
}
.hero-projects-title
{
    margin: 5px 0;
}
/* Миниатюра (Слева) */
.project-thumbnail {
    flex: 0 0 90px; /* Фиксированная ширина картинки */
    max-width: 90px;
    margin-right: 15px;
}

.project-thumbnail img {
    width: 100%;
    height: 60px;
    object-fit: cover; /* Чтобы картинка не искажалась при обрезке */
    border-radius: 16px; /* Скругление углов у самой картинки */
    display: block;
}

/* Блок с текстом (Справа) */
.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Заголовок (Яркий синий) */
.project-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.project-title a {
    color: var(--scope-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.project-title a:hover {
    color: var(--scope-green);
}

/* Подзаголовки / Метаданные (Салатово-зеленый) */
.project-meta {
    color: #99eb33; /* Яркий салатовый цвет */
    font-size: 14px;
    font-weight: 500;
}

/* Тонкие полупрозрачные стрелки Назад / Вперед */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.8); /* Белые полупрозрачные стрелки */
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 32px; /* Крупный размер самого знака стрелки */
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, transform 0.2s;
    z-index: 10;
}

/* Эффект при наведении на стрелки */
.slider-btn:hover {
    color: #ffffff;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.news-section .scope-services__badge {
    background: var(--scope-green);
}
.news-section .scope-services__badge::after {
    background: var(--scope-green);
}
.news-archive-container
{
    text-align: right;
    margin: 15px 0;
}
.news-archive-link
{
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.news-archive-container i
{
    color: var(--scope-green);
}
/* Адаптивность под мобильные экраны */
@media (max-width: 992px) {
    .custom-slide {
        flex: 0 0 100%; /* Показываем по 1 карточке на планшетах/мобильных */
    }
    .custom-slider-wrapper {
        padding: 0 45px;
    }
}

@media (max-width: 480px) {
    .project-card {
        flex-direction: column; /* На совсем маленьких экранах картинка встанет над текстом */
        align-items: flex-start;
        border-radius: 16px;
    }
    .project-thumbnail {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
    }
    .project-thumbnail img {
        height: 140px;
    }
}
/* Адаптивность для мобилок */
@media (max-width: 1024px) {
    .custom-post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .custom-post-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .site-footer {
        padding: 50px 0;
    }

    .site-footer__grid {
        flex-direction: column; /* На смартфонах строго все в один ряд */
        align-items: flex-start;
        gap: 35px;
    }

    .site-footer__col {
        flex: none !important;
        width: 100%;
    }
    
    .site-footer__col--lang {
        text-align: left; /* Переключатель выравниваем по левому краю */
    }
}
/* --- Адаптивность --- */
@media (max-width: 992px) {
    .contacts-section__grid {
        grid-template-columns: 1fr; /* Перестраиваем в одну колонку на планшетах */
        gap: 40px;
    }
    
    .contacts-section__info-box {
        max-width: 100%;
    }
    
    .contacts-section__main-title {
        font-size: 48px;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .contacts-section {
        padding: 50px 0;
    }
    
    .contacts-section__info-box {
        padding: 25px;
    }
    
    .contacts-section__main-title {
        font-size: 38px;
    }
}
/* Адаптивная верстка */
@media (max-width: 992px) {
    .cf7-contact__privacy
    {
        flex: 0;
    }
        .hero.page-hero .hero-title
    {
        font-size: 32px;
    }
    .hero.page-hero .hero-text span
    {
        font-size: 16px !important;
    }
    .hero-wrap
    {
        padding: 30px 15px;
    }
    br
    {
        display: none;
    }
    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .advantages-block__title,
    .scope-services__main-title,
    .hero-mission,
    .wwd-subtitle
    {
        font-size: 36px;
    }
    .scope-services__item-meta
    {
        justify-content: center;
    }
    .advantages-block__icon-wrapper
    {
        margin: 15px auto;
    }
    .advantages-block__item-title,
    .scope-services__item-title
    {
        font-size: 26px;
        text-align: center;
        margin: 15px auto;
    }
    .wwd-title
    {
        font-size: 28px;
    }
    .wwd-section,
    .scope-services,
    .what-we-do,
    .climate-impact
    {
        padding: 30px 0;
    }
    .climate-impact__stat-number,
    .climate-impact__stat-text
    {
        text-align: center;

    }
    .hero-button
    {
        margin: 30px auto !important;
    }
    .wwd-header__title {
        font-size: 42px;
    }
    .wwd-section,
    .home .advantages-section,
    .scope-services,
    .what-we-do
    {
        clip-path:none;
        border-radius: 0;
    }
    .scope-services__sidebar
    {
        
        margin:0 -15px;
        
    }
    .advantages-block
    {
        padding: 30px 15px;
        margin-left: -15px;
        margin-right: -15px;
    }
       .partners-block {
        padding: 40px 30px;
    }
    .partners-block__title {
        font-size: 42px;
    }
    .partners-block__grid {
        grid-template-columns: repeat(2, 1fr); /* На планшетах логотипы 2х2 */
        gap: 30px;
    }
    .partners-block__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .partners-block__footer-left {
        flex: none;
        width: 100%;
    }

    .partners-block__grid {
        grid-template-columns: 1fr; /* На мобилках логотипы в один ряд */
        gap: 35px;
    }
    .partners-block__btn {
        width: 100%;
        justify-content: space-between; /* Кнопка растягивается на весь экран телефона */
    }
        .cf7-contact__grid {
        grid-template-columns: 1fr; /* Перестраиваем поля в одну колонку */
    }
    
    .cf7-contact__field--full {
        grid-column: span 1;
    }
    
    .cf7-contact__footer {
        flex-direction: column-reverse; /* На мобилке кнопка будет сверху, а текст под ней */
        align-items: stretch;
        gap: 20px;
    }
    
    .cf7-contact__btn {
        width: 100%;
        justify-content: space-between; /* Растягиваем кнопку на весь экран телефона */
    }
}

@media (max-width: 768px) {
    .wwd-grid {
        grid-template-columns: 1fr;
    }
    .wwd-image-single {
        margin-top: 30px;
    }
}
