.bitentis-contact {
  margin-top: 34px;
}

.contact-delivery-note,
.contact-message {
  margin: 0 0 30px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line, #dedbd2);
  border-radius: var(--radius, 18px);
  background: var(--surface, #fff);
}

.contact-delivery-note {
  border-left: 5px solid var(--brand, #28366f);
}

.contact-delivery-note h2,
.contact-message h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.contact-delivery-note p,
.contact-message p {
  margin: 8px 0 0;
}

.contact-delivery-note code {
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--soft, #efede7);
  color: var(--brand-strong, #17204b);
  font-size: .95em;
}

.contact-message-success {
  border-left: 5px solid #25846e;
  background: #f3faf7;
}

.contact-message-error {
  border-left: 5px solid #c25372;
  background: #fff6f7;
}

.contact-required-note {
  margin: 0 0 16px;
  color: var(--muted, #66717f);
  font-size: .88rem;
}

.contact-required,
.contact-required-note span {
  color: #b33a30;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink, #18202b);
  font-weight: 800;
}

.contact-optional {
  display: inline-block;
  margin-left: 7px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--soft, #efede7);
  color: var(--muted, #66717f);
  font-size: .72rem;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line, #dedbd2);
  border-radius: 10px;
  background: var(--surface, #fff);
  color: var(--ink, #18202b);
  line-height: 1.6;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 210px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--brand, #28366f);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(40, 54, 111, .12);
}

.contact-field-help {
  margin: 6px 0 0;
  color: var(--muted, #66717f);
  font-size: .82rem;
}

.contact-consent {
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--soft, #efede7);
}

.contact-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--brand, #28366f);
}

.contact-submit {
  justify-self: start;
  min-height: 50px;
  padding: 12px 26px;
  border: 1px solid var(--brand, #28366f);
  border-radius: 999px;
  background: var(--brand, #28366f);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--brand-strong, #17204b);
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(231, 101, 79, .4);
  outline-offset: 3px;
}

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

@media (max-width: 640px) {
  .contact-submit {
    width: 100%;
  }
}
