.contact-form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #496282;
}

.contact-form-status.is-error {
  color: #a53737;
}

.contact-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-feedback-modal.is-open {
  display: flex;
}

.contact-feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 31, 0.62);
  backdrop-filter: blur(6px);
}

.contact-feedback-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 32px 28px 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  box-shadow: 0 28px 70px rgba(7, 18, 39, 0.22);
  border: 1px solid rgba(19, 49, 104, 0.08);
}

.contact-feedback-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 49, 104, 0.08);
  color: #17336b;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.contact-feedback-modal__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #17336b;
  background: rgba(19, 49, 104, 0.08);
}

.contact-feedback-modal__badge.is-success {
  color: #0d6a52;
  background: rgba(14, 166, 117, 0.14);
}

.contact-feedback-modal__badge.is-error {
  color: #9f2f2f;
  background: rgba(217, 78, 78, 0.14);
}

.contact-feedback-modal__title {
  margin: 18px 0 10px;
  color: #172b4f;
  font-size: 30px;
  line-height: 1.15;
}

.contact-feedback-modal__message {
  margin: 0;
  color: #496282;
  font-size: 15px;
  line-height: 1.7;
}

.contact-feedback-modal__list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #496282;
  font-size: 14px;
  line-height: 1.7;
}

.contact-feedback-modal__actions {
  margin-top: 24px;
}

.contact-feedback-modal__button {
  min-width: 148px;
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d4694 0%, #17336b 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(23, 51, 107, 0.2);
}

@media (max-width: 767px) {
  .contact-feedback-modal {
    padding: 16px;
  }

  .contact-feedback-modal__dialog {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }

  .contact-feedback-modal__title {
    font-size: 24px;
  }
}
