/*
 * cooperation.css - Стили для блока "Дистрибьюторам" (Сотрудничество)
 */

/* ===== БЛОК ДИСТРИБЬЮТОРАМ (СОТРУДНИЧЕСТВО) ===== */
.cooperation {
    padding: 80px 0;
}

.cooperation__wrapp {
    flex-direction: column;
    gap: 50px;
}

.cooperation__top {
    align-items: center;
    gap: 40px;
    position: relative;
}

.cooperation__img {
    max-width: 100px;
    height: auto;
}

.cooperation__img-desc {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cooperation__img-mob {
    display: none;
}

.cooperation__content {
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.cooperation__title {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.cooperation__text {
    font-size: 18px;
    line-height: 1.6;
    color: #282C31;
    margin: 0;
}

.cooperation__offers {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.cooperation__offer {
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.cooperation__offer:last-child {
    margin-bottom: 0;
}

.cooperation__offer .circle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #1EAD82;
    border-radius: 50%;
    position: relative;
    margin-top: 3px;
}

.cooperation__offer .circle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.cooperation__offer p {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    color: #282C31;
}

/* Форма */
.cooperation__form-wrapp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

.site-form__input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.site-form__input:focus {
    border-color: #1EAD82;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 173, 130, 0.1);
}

.site-form__btn {
    grid-column: span 2;
    background: #1EAD82;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.site-form__btn:hover {
    background: #18976c;
     color: white!important;
    transform: translateY(-2px);
}

.site-form__btn:active {
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 991px) {
    .cooperation {
        padding: 50px 0;
    }
    
    .cooperation__top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cooperation__img-desc {
        display: none;
    }
    
    .cooperation__img-mob {
        display: block;
        margin: 30px auto 0;
        max-width: 80px;
    }
    
    .cooperation__title {
        font-size: 26px;
    }
    
    .cooperation__text {
        font-size: 16px;
    }
    
    .cooperation__form-wrapp {
        grid-template-columns: 1fr;
    }
    
    .site-form__btn {
        grid-column: 1;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .cooperation__title {
        font-size: 22px;
    }
    
    .cooperation__text {
        font-size: 15px;
    }
    
    .cooperation__offer p {
        font-size: 15px;
    }
    
    .site-form__input {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .site-form__btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}