.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;  /* ← добавь паддинг */
    box-sizing: border-box;  /* ← ДОБАВЬ ЭТО */
}


.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    transition: all .25s ease;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    box-sizing: border-box;
}

.feature-card:hover {
    border-color: #033A68;
    box-shadow: 0 8px 20px rgba(3, 58, 104, 0.15);
    transform: translateY(-2px);
}

.icon {
    width: 48px !important;
    height: 48px !important;
    background: #e8f1f7 !important;  /* ← Светлый синий */
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
    transition: background .25s ease !important;
}

.feature-card:hover .icon {
    background: #033A68 !important;  /* ← Насыщенный синий при наведении */
}

.icon img {
    width: 26px !important;
    height: 26px !important;
    /* ← УДАЛИЛИ старый зелёный фильтр */
    filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(500%) hue-rotate(190deg) brightness(90%) contrast(100%) !important;
    transition: filter .25s ease !important;
}

.feature-card:hover .icon img {
    filter: brightness(0) invert(1) !important;  /* ← Белая иконка */
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.feature-card p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.45em;
}
.features-title {
    text-align: center;
    margin-bottom: 8px; /* 2 см */
}

.features-subtitle {
    text-align: center;
    margin-bottom: 48px; /* 4 см */
}
.features-section,
.features-title,
.features-subtitle,
.feature-card,
.feature-card h3,
.feature-card p {
    font-family: "TildaSans", sans-serif !important;
}
.features-title {
    font-family: "TildaSans", sans-serif !important;
    font-size: 42px; /* размер заголовка */
    font-weight: 700;
    margin-top: 90px;

}
.features-section {
    padding: 40px 0 40px 0 !important;  /* ← добавь эту строку */
    width: 100%;  /* ← ДОБАВЬ ЭТО */
    box-sizing: border-box;  /* ← ДОБАВЬ ЭТО */
    overflow: hidden;  /* ← ДОБАВЬ ЭТО */
}

.features-subtitle {
    font-family: "TildaSans", sans-serif !important;
    font-size: 20px; /* размер подзаголовка */
    font-weight: 400;
}
.t396__artboard {
    background-color: #F6F6F6 !important;
    padding-bottom: 100px !important;  /* ← добавляем это */
}

.who-we-help-section {
    padding: 50px 0 30px 0;
}

.who-we-help-title {
    font-family: "TildaSans", sans-serif !important;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
    color: #333;
}

.who-we-help-subtitle {
    font-family: "TildaSans", sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #555;
    margin: 0 0 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.help-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e5e5;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    text-align: center;
}

.help-card:hover {
    border-color: #033A68 !important;
    box-shadow: 0 12px 32px rgba(3, 58, 104, 0.15) !important;
    transform: translateY(-4px);
    background: #e8f1f7 !important;  /* ← Светлый синий фон */
}

.help-icon {
    width: 80px !important;
    height: 80px !important;
    background: #e8f1f7 !important;  /* ← Светлый синий */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px !important;
    transition: all 0.25s ease !important;
}

.help-card:hover .help-icon {
    background: #033A68 !important;  /* ← Насыщенный синий при наведении */
    transform: scale(1.1) !important;
}

.help-icon img {
    width: 40px !important;
    height: 40px !important;
    filter: brightness(0) saturate(100%) invert(30%) sepia(80%) saturate(500%) hue-rotate(190deg) brightness(90%) contrast(100%) !important;  /* ← СИНЯЯ иконка */
    transition: filter 0.25s ease !important;
}

.help-card:hover .help-icon img {
    filter: brightness(0) invert(1) !important;  /* ← БЕЛАЯ иконка при наведении */
}

.help-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    font-family: "TildaSans", sans-serif !important;
    transition: color 0.25s ease;
}

.help-card:hover h3 {
    color: #033A68 !important;  /* ← Синий текст при наведении */
}

.help-card p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    font-family: "TildaSans", sans-serif !important;
    transition: color 0.25s ease;
}

.help-card:hover p {
    color: #444;
}

/* ЗАМЕНИ ВЕСЬ АДАПТИВ НА ЭТО */

/* Мобильные (до 480px) */
@media (max-width: 479px) {
    .features-grid,
    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);  /* ← ДОБАВЬ ЭТО ДЛЯ НОРМАЛЬНОГО ОТОБРАЖЕНИЯ */
        gap: 12px;
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .features-title,
    .who-we-help-title {
        font-size: 24px;
        margin-top: 0;
        padding: 0 16px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .features-subtitle,
    .who-we-help-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
        padding: 0 16px;
        box-sizing: border-box;
        max-width: 100%;
    }

    /* Блок "Почему выбирают нас" */
    .feature-card {
        padding: 16px;
        box-sizing: border-box;
    }

    .feature-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.3;
    }

    .icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .icon img {
        width: 18px;
        height: 18px;
    }

    /* Блок "Кому мы помогаем" */
    .help-card {
        padding: 14px 12px;
        box-sizing: border-box;
    }

    .help-card h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .help-card p {
        font-size: 11px;
        line-height: 1.2;
    }

    .help-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto 12px;
    }

    .help-icon img {
        width: 22px;
        height: 22px;
    }

    .features-section {
        padding: 30px 0 30px 0 !important;
    }

    .who-we-help-section {
        padding: 30px 0 40px 0;
    }

    .t396__artboard {
        padding-bottom: 0 !important;
    }
}

/* Очень маленькие экраны (320px - 360px) */
@media (max-width: 360px) {
    .features-grid,
    .help-cards-grid {
        padding: 0 12px;
    }

    .features-title,
    .who-we-help-title {
        font-size: 20px;
        padding: 0 12px;
    }

    .features-subtitle,
    .who-we-help-subtitle {
        font-size: 11px;
        padding: 0 12px;
    }

    .feature-card,
    .help-card {
        padding: 12px;
    }

    .features-grid,
    .help-cards-grid {
        gap: 8px;
    }

    .feature-card h3 {
        font-size: 13px;
    }

    .help-card h3 {
        font-size: 11px;
    }
    
    .features-section {
        padding: 30px 0 0 0 !important;  /* ← ДОБАВЬ: паддинг-bottom 0 на маленьких экранах */
    }
}

/* Планшеты горизонтальные (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .features-title,
    .who-we-help-title {
        font-size: 32px;
        margin-top: 0;
    }

    .features-subtitle,
    .who-we-help-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .feature-card {
        padding: 18px;
    }

    .help-card {
        padding: 16px;
    }
}

/* Планшеты и десктоп (768px+) */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px;
    }

    .help-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 20px;
    }
}


