/* ===== FEATURES TEXT SECTION ===== */
.ft-section {
    padding: 80px 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: unset;
}

.ft-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Картинка перед заголовком */
.ft-top-image {
    text-align: center;
    margin-bottom: 20px;
}

.ft-top-img {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

/* Заголовок блока */
.ft-heading {
    text-align: center;
    margin-bottom: 40px;
}

.ft-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: transparent;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.ft-divider {
    width: 120px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: var(--border-radius-sm);
}

/* Верхняя часть: текст */
.ft-top {
    margin-bottom: 60px;
}

.ft-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ft-text-content p {
    margin-bottom: 1.5em;
}

.ft-text-content strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

/* Нижняя часть: 3 иконки с заголовками */
.ft-bottom {
    margin-top: 40px;
}

.ft-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.ft-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

/* ЗАГОЛОВКИ - БЕЛЫЙ ЦВЕТ */
.ft-item-title {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ft-item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

/* Контейнер для иконки - квадратная градиентная подложка */
.ft-icon-box {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 25px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(200, 144, 36, 0.3);
}

.ft-item:hover .ft-icon-box {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(200, 144, 36, 0.5);
}

/* Иконка - черные, без фильтра */
.ft-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Анимации (совместимость с animate.js) */
[data-animate] {
    opacity: 0;
    visibility: hidden;
}

[data-animate].animated {
    opacity: 1;
    visibility: visible;
}

[data-animate="fadeInDown"].animated {
    animation: fadeInDown 0.8s ease forwards;
}

[data-animate="fadeInUp"].animated {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== АДАПТИВНАЯ ВЕРСИЯ ===== */
@media (max-width: 1100px) {
    .ft-icons {
        gap: 40px;
    }
    
    .ft-item {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .ft-section {
        padding: 60px 0;
    }
    
    .ft-container {
        padding: 0 20px;
    }
    
    .ft-top-img {
        max-width: 160px;
    }
    
    .ft-title {
        font-size: 2rem;
    }
    
    .ft-heading {
        margin-bottom: 30px;
    }
    
    .ft-top {
        margin-bottom: 40px;
    }
    
    .ft-text-content {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .ft-icons {
        gap: 30px;
    }
    
    .ft-item {
        min-width: 150px;
    }
    
    .ft-icon-box {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
    
    .ft-item-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .ft-top-img {
        max-width: 140px;
    }
    
    .ft-title {
        font-size: 1.8rem;
    }
    
    .ft-icons {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .ft-item {
        width: 100%;
        max-width: 250px;
    }
    
    .ft-icon-box {
        width: 140px;
        height: 140px;
        padding: 25px;
    }
}