.popup-overlay {
    display:none;
    position: fixed;
    top:0;left:0;
    width:100%;height:100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 900;
}
.popup-window {
    display:none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    width: 50%;
    padding: 32px;
    border-radius: 36px;
    z-index: 1000;
}
.popup-close {
    position: absolute;
    top: 39px; right: 39px;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EDEDED;
}
.popup-close svg { transition: transform 0.3s; }
.popup-close:hover svg { transform: rotate(90deg); }
.popup-form {

}
.popup-form .home__section.s12 {
    padding: 20px 0;
}
.popup-form .form__feedback {
    border-radius: 28px;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px;
    margin-top: 20px;
}
.popup-form .form__feedback .ff-left h2 {
    font-size: 30px;
}
.popup-form .form__feedback .ff-left p {
    font-size: 18px;
    font-weight: 400;
}
.agree-text {
    margin-top: 15px;
}
/***********************************/
/* Блок и сетка */
.feedback-section {}
.feedback-container {}
.feedback-inner {
    display: grid;
    gap: 24px;
}
@media (min-width: 768px) {
    .feedback-inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Левая колонка */
.feedback-title {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.5%;
}
.popup-form .form__feedback label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #A4A4A4;
    font-weight: 400;
    font-size: 20px;
    padding: 0;
}
.feedback-subtitle {
    margin: 0;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.5%;
}

/* Общие ошибки сервера */
.feedback-errors {
    margin-bottom: 16px;
}
.feedback-errors .error-line {
    color: #e53935;
    margin: 4px 0;
}

/* Форма */
.feedback-form {}
.form-field {
    margin-bottom: 22px;
}
.form-field--checkbox {
    margin-top: 8px;
}
.form-label {
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
}
.field-required {
    color: #e53935;
}

/* Инпуты */
.form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #cfd8dc;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus {
    outline: none;
    border-color: #90caf9;
    box-shadow: 0 0 0 3px rgba(144, 202, 249, .25);
}
.popup-form .input-error {
    border: 1px solid red !important;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.5);
}

/* Подсказки об ошибке */
.error-text {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.3;
    color: #e53935;
}
.is-hidden { display: none; }
.is-visible { display: block; }

/* Чекбокс */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}
.checkbox-input {
    width: 18px;
    height: 18px;
}
.checkbox-text { color: #333; }
.checkbox-link {
    color: #1976d2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Кнопка */
.form-submit { margin-top: 12px; }
.btn {
    display: inline-block;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    background: #1976d2;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .02s, box-shadow .2s, background .2s;
}
.btn:hover { background: #1565c0; }
.btn:active { transform: translateY(1px); }
.btn:disabled {
    background: #b0bec5;
    cursor: not-allowed;
}
.form-field.form-field--checkbox  {

}
.form-field.form-field--checkbox span.checkbox-text {
    font-size: 14px;
    font-weight: 400;
    color: #0F1013;
}
.form-field.fform-field--checkbox span.checkbox-text a {
    font-size: 14px;
    font-weight: 400;
    color: #4786FF;
}