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

.project-type-field {
  min-width: 0;
  margin: 0;
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.project-type-field legend {
  width: 100%;
  margin-bottom: 16px;
  color: rgba(236, 238, 242, .9);
  font-size: 12px;
  font-weight: 560;
}

.project-type-field legend small {
  margin-left: 8px;
  color: rgba(196, 199, 206, .48);
  font-size: 10px;
  font-weight: 400;
}

.project-type-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.option-chip {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.option-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-chip span {
  display: flex !important;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .015);
  color: rgba(221, 224, 230, .62) !important;
  font-size: 11px !important;
  font-weight: 470 !important;
  line-height: 1.35 !important;
  text-align: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.option-chip:hover span {
  border-color: rgba(170, 183, 250, .42);
  color: rgba(240, 242, 246, .9) !important;
}

.option-chip input:focus-visible + span {
  outline: 2px solid #aab7fa;
  outline-offset: 2px;
}

.option-chip input:checked + span {
  border-color: #aab7fa;
  background: rgba(170, 183, 250, .11);
  color: #dfe4ff !important;
}

.project-type-field.is-invalid {
  border-bottom-color: rgba(255, 126, 126, .72);
}

.project-type-error {
  min-height: 18px;
  margin: 10px 0 0;
  color: #ff9f9f;
  font-size: 11px;
  line-height: 1.5;
}

.privacy-field {
  display: flex !important;
  align-items: flex-start;
  gap: 12px !important;
  padding-top: 12px;
}

.privacy-field input {
  flex: 0 0 auto;
  width: 17px !important;
  height: 17px !important;
  margin-top: 2px;
  accent-color: #aab7fa;
}

.privacy-field > span {
  color: rgba(220, 223, 229, .68) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.form-message {
  min-height: 24px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.65;
}

.form-message[data-state="loading"] { color: #aab7fa; }
.form-message[data-state="success"] { color: #91d8bb; }
.form-message[data-state="error"] { color: #ff9f9f; }

.contact-form button:disabled {
  opacity: .58;
  cursor: wait;
}

@media (max-width: 980px) {
  .project-type-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .project-type-options {
    grid-template-columns: 1fr;
  }

  .option-chip span {
    justify-content: flex-start;
    min-height: 40px;
    padding-inline: 13px;
    text-align: left;
  }
}
