/* Обертка (Фон на всю ширину) */
.feedback-wrapper {
    width: 100%;
    background: #f3f4f5;
    height: 380px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Декор (Эллипс) */
.feedback-decor {
    position: absolute;
    top: 30px;
    left: 0px; /* Сдвигаем к левому краю контента */
    width: 284px;
    height: 98px;
    transform: rotate(-6deg);
    z-index: 1;
    pointer-events: none;
}

.feedback-wrap{max-width: 1360px; margin:0 auto;}

/* Контейнер контента (1360px) */
.feedback-inner {
    max-width: 1360px;
    height: 100%;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Выравнивание по верху */
    position: relative;
    z-index: 2;
}

/* Левая колонка */
.feedback-left {
    width: 514px;
    padding-top: 78px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-title {
    color: #292A2A !important;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.feedback-subtitle {
    color: #292A2A;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Блок соцсетей */
.feedback-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #DEE2E3;
    padding: 16px;
    border-radius: 12px;
    margin-top: 32px;
    width:68%
}

.fs-text {
    color: #292A2A;
    font-size: 16px;
    line-height: 1.4;
    flex: 1;
}

.fs-icons {
    display: flex;
    gap: 8px;
}

.fs-icon-link {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.fs-icon-link:hover {
    transform: scale(1.1);
}

/* Правая колонка */
.feedback-right {
    width: 785px;
    padding-top: 80px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Ряд инпутов */
.ff-row {
    display: flex;
    gap: 12px;
}

.ff-input {
    flex: 1;
    height: 48px;
    background: #fff;
    border: 1px solid #DEE2E3;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.ff-input::placeholder {
    color: #878D91;
}

/* Текстовое поле */
.ff-textarea {
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #DEE2E3;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    resize: none;
}

.ff-textarea::placeholder {
    color: #878D91;
}

/* Подвал формы */
.ff-footer {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ff-submit {
    width: 253px;
    height: 48px;
    background: #00B1BA;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.ff-submit:hover {
    background: #0099a1;
}

/* Чекбокс */
.ff-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    user-select: none;
}

.ff-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 2px solid #00B1BA;
    border-radius: 4px;
}

.ff-checkbox input:checked ~ .checkmark {
    background-color: #00B1BA;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.ff-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.ff-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ff-checkbox .text {
    color: #878d91;
    font-size: 14px;
    line-height: 1.35;
}

.ff-checkbox .text a {
    color: #878d91;
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 1200px) {
    .feedback-wrapper {
        height: auto;
        padding: 40px 20px;
    }
    .feedback-inner {
        flex-direction: column;
        gap: 40px;
    }
    .feedback-left, .feedback-right {
        width: 100%;
        padding-top: 0;
    }
    .feedback-decor {
        display: none;
    }
}