body.modal-open {
  overflow: hidden;
}
.privacy-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
  line-height: 1.5;
}
.privacy-consent input {
  width: 18px !important;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
}
.privacy-consent a {
  color: #075eb2;
  font-weight: 800;
}
.contact-float {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  border: 0;
  border-radius: 16px 16px 4px 16px;
  padding: 14px 13px;
  background: #ff6726;
  color: #fff;
  font:
    900 13px Inter,
    Arial,
    sans-serif;
  box-shadow: 0 15px 35px rgba(255, 103, 38, 0.34);
  cursor: pointer;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(3, 15, 27, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open {
  display: flex;
}
.contact-modal {
  width: min(620px, 100%);
  max-height: calc(100vh - 30px);
  overflow: auto;
  background: #fff;
  color: #061525;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
  position: relative;
  text-align: left;
}
.contact-modal h2 {
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 16px;
}
.contact-modal .lead {
  color: #667b8f;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: #eef3f6;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 12px;
  font-weight: 850;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd9e2;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: #061525;
}
.field textarea {
  min-height: 125px;
  resize: vertical;
}
.field-error {
  color: #b7371d;
  font-size: 11px;
  min-height: 15px;
}
.form-status {
  display: none;
  margin: 15px 0;
  padding: 14px;
  border-radius: 12px;
  background: #fff4db;
  color: #6a4c00;
  font-size: 13px;
}
.form-status.show {
  display: block;
}
.form-status a {
  font-weight: 900;
  color: #b44d1d;
}
@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .contact-modal {
    padding: 28px 20px;
  }
  .contact-float {
    right: 10px;
    padding: 12px 10px;
  }
}
