.feedback-form {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00204D 0%, #00367D 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 32, 77, 0.15);
    overflow: hidden;
    position: relative;
}

.feedback-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/form-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.feedback-form__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    padding: 60px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feedback-form__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

.feedback-form__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.feedback-form__description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.feedback-form__unit form {
    display: grid;
    gap: 16px;
}

.feedback-form__field {
    position: relative;
}

.feedback-form__unit form input,
.feedback-form__unit form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #212b36;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feedback-form__unit form input:focus,
.feedback-form__unit form textarea:focus {
    outline: none;
    border-color: #4F6BED;
    box-shadow: 0 0 0 4px rgba(79, 107, 237, 0.1);
    background: #ffffff;
    transform: translateY(-2px);
    color: #212b36;
}

.feedback-form__unit form input:hover,
.feedback-form__unit form textarea:hover {
    border-color: rgba(79, 107, 237, 0.3);
}

.feedback-form__unit form input::placeholder,
.feedback-form__unit form textarea::placeholder {
    color: #637381;
    opacity: 0.7;
}

.feedback-form__unit .form-actions {
    margin-top: 8px;
        width: 100%;
    padding: 0;
    background: linear-gradient(135deg, #4F6BED 0%, #3A56C8 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(79, 107, 237, 0.3);
    font-style: unset;
}

.feedback-form__unit .webform-button--submit {

}

.feedback-form__unit .webform-button--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(79, 107, 237, 0.4);
    background: linear-gradient(135deg, #5A75F0 0%, #465FD8 100%);
}

.feedback-form__unit .webform-button--submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(79, 107, 237, 0.3);
}

/* Валидация */
.feedback-form__unit form input:invalid:not(:placeholder-shown),
.feedback-form__unit form textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4757;
}

.feedback-form__unit form input:valid:not(:placeholder-shown),
.feedback-form__unit form textarea:valid:not(:placeholder-shown) {
    border-color: #2f1489;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feedback-form__inner {
    animation: fadeIn 0.6s ease-out;
}

/* Адаптивность */
@media (max-width: 1024px) {


    .feedback-form__inner {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 30px;
    }

    .feedback-form__title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .feedback-form {
        border-radius: unset;

    }

    .feedback-form__inner {
        padding: 32px 24px;
        gap: 24px;
    }

    .feedback-form__title {
        font-size: 1.75rem;
    }

    .feedback-form__unit form input,
    .feedback-form__unit form textarea {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .feedback-form__unit .webform-button--submit {
        padding: 16px 24px;
        border-radius: 12px;
    }
}


/* Фокус-видимый для доступности */
.feedback-form__unit form input:focus-visible,
.feedback-form__unit form textarea:focus-visible {
    outline: 2px solid #4F6BED;
    outline-offset: 2px;
}

/* Улучшенная читаемость для мобильных */
@media (max-width: 480px) {
    .feedback-form__inner {
        padding: 24px 16px;
    }
    
    .feedback-form__title {
        font-size: 1.5rem;
    }
    
    .feedback-form__description {
        font-size: 1rem;
    }
}