.omq-form-section {
  width: 100%;
  margin: 0 !important;
  padding: 0;
  background: #f3f3f3;
  color: #171717;
  box-sizing: border-box;
}

.omq-form-section *,
.omq-form-section *::before,
.omq-form-section *::after {
  box-sizing: border-box;
}

.omq-form-shell {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 30px 64px;
}

.omq-form-heading {
  max-width: 650px;
  margin-bottom: 34px;
}

.omq-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #222;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .2em;
}

.omq-eyebrow span {
  width: 26px;
  height: 1px;
  background: #ffc400;
}

.omq-form-heading h2 {
  margin: 0 0 14px !important;
  color: #111;
  font-family: inherit;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
}

.omq-form-heading p {
  margin: 0 !important;
  color: #686868;
  font-size: 14px;
  line-height: 1.6;
}

.omq-form {
  position: relative;
  padding: 34px;
  background: #fff;
  border: 1px solid #dedede;
}

.omq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.omq-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.omq-field--full {
  grid-column: 1 / -1;
}

.omq-field > span,
.omq-field legend {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  color: #222;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .025em;
}

.omq-field small {
  color: #777;
  font-size: 11px;
  font-weight: 400;
}

.omq-field b,
.omq-required b {
  color: #d39f00;
}

.omq-field input,
.omq-field select,
.omq-field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  outline: 0;
  background: #fafafa;
  color: #171717;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.omq-field textarea {
  min-height: 112px;
  resize: vertical;
}

.omq-field input:focus,
.omq-field select:focus,
.omq-field textarea:focus {
  border-color: #d4a400;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 196, 0, .2);
}

.omq-field input::placeholder,
.omq-field textarea::placeholder {
  color: #999;
  opacity: 1;
}

.omq-consents {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e4e4e4;
}

.omq-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0 0 14px;
  color: #5f5f5f;
  font-size: 11px;
  line-height: 1.55;
}

.omq-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #ffc400;
}

.omq-consents > p {
  margin: 18px 0 0 !important;
  color: #737373;
  font-size: 11px;
  line-height: 1.5;
}

.omq-consents a {
  color: #171717;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #ffc400;
  text-underline-offset: 2px;
}

.omq-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 50px;
  margin: 28px 0 0;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: #ffc400;
  color: #111;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.omq-submit:hover {
  background: #eeb700;
  transform: translateY(-1px);
}

.omq-submit:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.omq-required {
  display: inline-block;
  margin: 0 0 0 14px !important;
  color: #777;
  font-size: 11px;
}

.omq-notice {
  display: grid;
  gap: 4px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 4px solid #ffc400;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.omq-notice--success {
  border-left-color: #3c914d;
}

.omq-notice--error {
  border-left-color: #b74242;
}

.omq-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 700px) {
  .omq-form-shell {
    padding: 42px 20px 48px;
  }

  .omq-form-heading {
    margin-bottom: 26px;
  }

  .omq-form-heading h2 {
    font-size: 38px;
  }

  .omq-form {
    padding: 24px 18px;
  }

  .omq-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .omq-field--full {
    grid-column: auto;
  }

  .omq-submit {
    width: 100%;
  }

  .omq-required {
    display: block;
    margin: 12px 0 0 !important;
    text-align: center;
  }
}
