.inquiry-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #cbdbe5;
  border-radius: 12px;
  background: #f7fbfd;
  color: #0b1d2c;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.captcha-refresh {
  width: 44px;
  height: 44px;
  border: 1px solid #cbdbe5;
  border-radius: 12px;
  background: #ffffff;
  color: #0878b6;
  font-size: 1.25rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.captcha-refresh:hover {
  transform: rotate(45deg);
  border-color: #0878b6;
  background: #eef8fd;
}

.captcha-refresh:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  min-height: 24px;
  margin: 14px 0;
  font-size: 0.95rem;
  font-weight: 650;
}

.form-status--success {
  color: #176b3a;
}

.form-status--error {
  color: #b42318;
}

#inquiry-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .captcha-row {
    align-items: stretch;
  }

  .captcha-question {
    flex: 1;
  }
}
