/* ===== Общие ===== */
.mod-feedback-simple-container {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.mod-feedback-simple-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1rem;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}
.mod-feedback-simple-open-btn:hover {
    background: #1d4ed8;
}

/* ===== Модальное окно ===== */
.mod-feedback-simple-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}
.mod-feedback-simple-overlay.show {
    display: flex;
}
.mod-feedback-simple-modal {
    background: #fff;
    width: 820px;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mod-feedback-simple-modal-header {
    padding: 1rem 1.8rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #fafbfc;
}
.mod-feedback-simple-modal-header span {
    font-size: 1.1rem;
    font-weight: 600;
}
.mod-feedback-simple-modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.15s;
}
.mod-feedback-simple-modal-close:hover {
    color: #ef4444;
}
.mod-feedback-simple-modal-body {
    flex: 1;
    padding: 1.8rem;
    overflow-y: auto;
}

/* ===== Форма ===== */
.mod-feedback-simple-fields-grid {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.mod-feedback-simple-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.mod-feedback-simple-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mod-feedback-simple-field .required {
    color: #ef4444;
    margin-left: 2px;
}
.mod-feedback-simple-field-icon {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mod-feedback-simple-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 0.95rem;
    background: #fafbfc;
    transition: border-color 0.15s;
    outline: none;
    font-family: inherit;
}
.mod-feedback-simple-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
textarea.mod-feedback-simple-input {
    resize: vertical;
    min-height: 80px;
    border-radius: 1.5rem;
}

.mod-feedback-simple-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.mod-feedback-simple-submit-btn {
    padding: 0.6rem 2rem;
    border: none;
    border-radius: 3rem;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
.mod-feedback-simple-submit-btn:hover {
    background: #1d4ed8;
}
.mod-feedback-simple-result {
    font-size: 0.9rem;
    padding: 0.5rem 0;
}
.mod-feedback-simple-result.success {
    color: #065f46;
}
.mod-feedback-simple-result.error {
    color: #991b1b;
}

@media (max-width: 640px) {
    .mod-feedback-simple-modal {
        width: 100%;
        max-height: 95vh;
        border-radius: 1.5rem;
    }
    .mod-feedback-simple-fields-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Полная ширина для поля ===== */
.mod-feedback-simple-field.full-width {
    grid-column: 1 / -1;
}

/* ===== Блок с заголовком и подзаголовком (стиль 6) ===== */
.mod-feedback-simple-block {
    width: 100%;
    padding: 44px 52px;
    border-radius: 32px;
    background: linear-gradient(145deg, #ffffff, #f0f6fe);
    box-shadow: 0 12px 40px rgba(26, 58, 106, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px 40px;
    transition: transform 0.25s ease, box-shadow 0.4s ease;
}
.mod-feedback-simple-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 58, 106, 0.10);
}
/* Угловой декор */
.mod-feedback-simple-block::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #1a3a6a 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.mod-feedback-simple-block-text {
    flex: 1 1 300px;
    min-width: 200px;
    z-index: 2;
}
.mod-feedback-simple-block-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #0b1e33;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}
.mod-feedback-simple-block-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #415469;
    max-width: 600px;
}
.mod-feedback-simple-block-btn-wrap {
    flex: 0 0 auto;
    z-index: 2;
}
.mod-feedback-simple-block-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 60px;
    border: 2px solid #1a3a6a;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: transparent;
    color: #1a3a6a;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: none;
}
.mod-feedback-simple-block-btn:hover {
    background: #1a3a6a;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(26, 58, 106, 0.25);
    transform: scale(1.02);
}
/* Адаптив */
@media (max-width: 820px) {
    .mod-feedback-simple-block {
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .mod-feedback-simple-block-title {
        font-size: 26px;
    }
    .mod-feedback-simple-block-subtitle {
        font-size: 15px;
        max-width: 100%;
    }
    .mod-feedback-simple-block-btn {
        white-space: normal;
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    .mod-feedback-simple-block-btn-wrap {
        width: 100%;
    }
    .mod-feedback-simple-block::after {
        width: 120px;
        height: 120px;
        top: -40px;
        right: -40px;
        opacity: 0.04;
    }
}
@media (max-width: 480px) {
    .mod-feedback-simple-block {
        padding: 20px 16px;
        border-radius: 24px;
    }
    .mod-feedback-simple-block-title {
        font-size: 22px;
    }
    .mod-feedback-simple-block-subtitle {
        font-size: 14px;
    }
    .mod-feedback-simple-block-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 820px) {
    .mod-feedback-simple-block {
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    /* добавляем */
    .mod-feedback-simple-block-text {
        flex: 1 1 auto;
        min-width: 0;
    }
    /* остальные стили … */
}

@media (max-width: 480px) {
    .mod-feedback-simple-block {
        padding: 20px 16px;
        border-radius: 24px;
    }
    .mod-feedback-simple-block-text {
        flex: 1 1 auto;
        min-width: 0;
    }
    /* остальные стили … */
}