.mhrf-shell {
  --mhrf-brand: #5d983c;
  --mhrf-brand-dark: #436d2d;
  --mhrf-brand-soft: #eef6e7;
  --mhrf-ink: #151b12;
  --mhrf-ink-soft: #66705f;
  --mhrf-border: #dde5d6;
  --mhrf-panel: rgba(255, 255, 255, 0.94);
  --mhrf-shadow: 0 26px 60px rgba(18, 24, 16, 0.08);
  --mhrf-danger: #b42318;
  --mhrf-danger-soft: #fdecea;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  container-type: inline-size;
  font-family: inherit;
  color: var(--mhrf-ink);
}

/* Display primitives */
.mhrf-hero,
.mhrf-question,
.mhrf-choice-grid,
.mhrf-actions,
.mhrf-stack,
.mhrf-form {
  display: grid;
}

/* Card panels */
.mhrf-hero,
.mhrf-question,
.mhrf-footer {
  background: var(--mhrf-panel);
  border: 1px solid rgba(21, 27, 18, 0.06);
  box-shadow: var(--mhrf-shadow);
  backdrop-filter: blur(10px);
}

.mhrf-hero,
.mhrf-question {
  border-radius: 30px;
  padding: 30px;
}

.mhrf-footer {
  border-radius: 22px;
  padding: 14px 20px;
}

/* ============================================================
   TOPBAR — slim progress strip
   ============================================================ */

.mhrf-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mhrf-branding {
  display: none;
}

.mhrf-progress {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhrf-progress-copy {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--mhrf-ink-soft);
  white-space: nowrap;
}

.mhrf-progress-copy span:last-child,
.mhrf-progress-copy span:nth-child(2) {
  color: var(--mhrf-ink-soft);
}

.mhrf-progress-bar {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: #edf0e8;
  overflow: hidden;
}

.mhrf-progress-bar span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mhrf-brand-dark), var(--mhrf-brand));
  transition: width 220ms ease;
}

/* ============================================================
   HERO — hidden by default, opt-in via show_hero="yes"
   ============================================================ */

.mhrf-hero {
  gap: 10px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at top left, rgba(93, 152, 60, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 247, 0.98));
}

.mhrf-hero h2,
.mhrf-question h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

.mhrf-hero h2 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.95;
  max-width: 10ch;
}

.mhrf-hero p,
.mhrf-question-copy p,
.mhrf-consent span {
  margin: 0;
  color: var(--mhrf-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   FORM
   ============================================================ */

.mhrf-form {
  gap: 16px;
}

/* ============================================================
   QUESTIONS
   ============================================================ */

.mhrf-question {
  gap: 24px;
  min-height: 0;
  align-content: start;
  opacity: 0;
  transform: translateY(8px);
  animation: mhrf-fade-in 220ms ease forwards;
}

.mhrf-question[hidden] {
  display: none !important;
}

@keyframes mhrf-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mhrf-question-copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.mhrf-step-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mhrf-brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mhrf-step-count::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(93, 152, 60, 0.48);
}

.mhrf-question h3 {
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 0.97;
  max-width: 18ch;
}

/* ============================================================
   CHOICE CARDS
   ============================================================ */

.mhrf-choice-grid {
  gap: 12px;
}

.mhrf-choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mhrf-choice-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mhrf-choice-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mhrf-choice-card {
  position: relative;
  display: block;
  min-width: 0;
}

.mhrf-choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.mhrf-choice-card-panel {
  display: grid;
  gap: 12px;
  min-height: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--mhrf-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 244, 0.98));
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.mhrf-choice-card:hover .mhrf-choice-card-panel {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 24, 16, 0.08);
}

.mhrf-choice-card input:checked + .mhrf-choice-card-panel {
  border-color: rgba(93, 152, 60, 0.45);
  box-shadow: 0 18px 34px rgba(93, 152, 60, 0.14);
  background:
    radial-gradient(circle at top left, rgba(93, 152, 60, 0.11), transparent 40%),
    #ffffff;
}

.mhrf-choice-card input.is-invalid + .mhrf-choice-card-panel {
  border-color: var(--mhrf-danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.mhrf-choice-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--mhrf-brand-soft);
  color: var(--mhrf-brand-dark);
}

.mhrf-choice-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mhrf-choice-title {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mhrf-choice-text {
  display: block;
  color: var(--mhrf-ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   FIELDS
   ============================================================ */

.mhrf-field,
.mhrf-stack {
  gap: 14px;
}

.mhrf-field--compact {
  max-width: 560px;
}

.mhrf-form label {
  display: grid;
  gap: 8px;
}

.mhrf-form label > span {
  font-size: 13px;
  font-weight: 800;
  color: var(--mhrf-ink);
}

.mhrf-form input[type="text"],
.mhrf-form input[type="email"],
.mhrf-form input[type="tel"],
.mhrf-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--mhrf-border);
  border-radius: 18px;
  background: #f8faf5;
  color: var(--mhrf-ink);
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.mhrf-form input[type="text"]:focus,
.mhrf-form input[type="email"]:focus,
.mhrf-form input[type="tel"]:focus,
.mhrf-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(93, 152, 60, 0.68);
  box-shadow: 0 0 0 4px rgba(93, 152, 60, 0.12);
}

.mhrf-form textarea {
  min-height: 160px;
  resize: vertical;
}

.mhrf-form input.is-invalid,
.mhrf-form textarea.is-invalid,
.mhrf-consent input.is-invalid {
  border-color: var(--mhrf-danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

/* ============================================================
   CONSENT
   ============================================================ */

.mhrf-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: #f8faf5;
  border: 1px solid var(--mhrf-border);
}

.mhrf-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.mhrf-consent a {
  color: var(--mhrf-brand-dark);
  font-weight: 700;
}

/* ============================================================
   FOOTER — compact single row
   ============================================================ */

.mhrf-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mhrf-footnote {
  display: none;
}

.mhrf-actions {
  display: flex;
  gap: 10px;
}

.mhrf-footer.is-submitting {
  opacity: 0.72;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.mhrf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--mhrf-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
  font-family: inherit;
}

.mhrf-button:hover:not(:disabled) {
  background: var(--mhrf-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(67, 109, 45, 0.22);
}

.mhrf-button--secondary {
  background: #edf1e8;
  color: var(--mhrf-ink);
  box-shadow: none;
}

.mhrf-button--secondary:hover:not(:disabled) {
  background: #e6ebe0;
}

.mhrf-button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.mhrf-shell.is-complete .mhrf-topbar {
  opacity: 0.35;
}

.mhrf-form.is-submitting .mhrf-question,
.mhrf-form.is-submitting .mhrf-footer {
  pointer-events: none;
}

/* ============================================================
   STATUS
   ============================================================ */

.mhrf-status {
  display: none;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.mhrf-status.is-visible {
  display: block;
}

.mhrf-status.is-success {
  background: var(--mhrf-brand-soft);
  border: 1px solid rgba(93, 152, 60, 0.24);
  color: var(--mhrf-brand-dark);
}

.mhrf-status.is-error {
  background: var(--mhrf-danger-soft);
  border: 1px solid rgba(180, 35, 24, 0.18);
  color: var(--mhrf-danger);
}

/* ============================================================
   SUCCESS
   ============================================================ */

.mhrf-success {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(93, 152, 60, 0.14);
  background:
    radial-gradient(circle at top left, rgba(93, 152, 60, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 243, 0.98));
  box-shadow: var(--mhrf-shadow);
  animation: mhrf-success-in 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mhrf-success[hidden] {
  display: none !important;
}

.mhrf-success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(93, 152, 60, 0.12);
  color: var(--mhrf-brand);
}

.mhrf-success-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mhrf-success-copy {
  display: grid;
  gap: 8px;
  max-width: 56ch;
}

.mhrf-success-copy h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.mhrf-success-copy p {
  margin: 0;
  color: var(--mhrf-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.mhrf-success-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.mhrf-success-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(93, 152, 60, 0.12);
}

.mhrf-success-item span {
  font-size: 11px;
  font-weight: 800;
  color: var(--mhrf-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mhrf-success-item strong {
  font-size: 15px;
  line-height: 1.4;
  color: var(--mhrf-ink);
}

.mhrf-success-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

@keyframes mhrf-success-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   HONEYPOT
   ============================================================ */

.mhrf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .mhrf-choice-grid--two,
  .mhrf-choice-grid--three,
  .mhrf-choice-grid--four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mhrf-hero,
  .mhrf-question {
    padding: 22px;
    border-radius: 24px;
  }

  .mhrf-hero h2,
  .mhrf-question h3 {
    max-width: none;
  }

  .mhrf-footer {
    flex-wrap: wrap;
  }

  .mhrf-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .mhrf-button {
    flex: 1;
  }
}

/* ============================================================
   LAYOUT VARIANTS
   ============================================================ */

/* --- Karte -------------------------------------------------- */
.mhrf-shell--card {
  width: 100%;
  max-width: 100%;
  background: var(--mhrf-panel);
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.mhrf-shell--card .mhrf-topbar {
  padding: 16px 28px 0;
}

.mhrf-shell--card .mhrf-hero {
  border-radius: 0;
  padding: 24px 28px;
}

.mhrf-shell--card .mhrf-hero h2 {
  font-size: clamp(22px, 4vw, 32px);
}

.mhrf-shell--card .mhrf-question {
  border-radius: 0;
  padding: 24px 28px;
}

.mhrf-shell--card .mhrf-footer {
  border-radius: 0;
  border-top: 1px solid var(--mhrf-border);
  padding: 14px 28px;
}

/* --- Kompakt ------------------------------------------------ */
.mhrf-shell--compact {
  width: 100%;
  max-width: 100%;
}

.mhrf-shell--compact .mhrf-question {
  padding: 16px;
  border-radius: 16px;
}

.mhrf-shell--compact .mhrf-question h3 {
  font-size: 18px;
}

.mhrf-shell--compact .mhrf-question-copy p {
  font-size: 13px;
}

.mhrf-shell--compact .mhrf-choice-card-panel {
  padding: 12px;
  border-radius: 14px;
}

.mhrf-shell--compact .mhrf-choice-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.mhrf-shell--compact .mhrf-choice-icon svg {
  width: 18px;
  height: 18px;
}

.mhrf-shell--compact .mhrf-choice-text {
  display: none;
}

.mhrf-shell--compact .mhrf-choice-title {
  font-size: 13px;
}

.mhrf-shell--compact .mhrf-footer {
  padding: 10px 16px;
  border-radius: 14px;
}

.mhrf-shell--compact .mhrf-button {
  padding: 9px 16px;
  font-size: 13px;
}

/* --- Modal -------------------------------------------------- */
.mhrf-modal-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--mhrf-brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(93, 152, 60, 0.35);
  font-family: inherit;
}

.mhrf-modal-trigger:hover {
  background: var(--mhrf-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(93, 152, 60, 0.40);
}

.mhrf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 14, 10, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: mhrf-overlay-in 0.2s ease;
}

.mhrf-modal-overlay[hidden] {
  display: none;
}

@keyframes mhrf-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mhrf-modal-inner {
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 28px;
  position: relative;
  animation: mhrf-modal-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes mhrf-modal-in {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.mhrf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s;
  font-family: inherit;
}

.mhrf-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.mhrf-modal-inner .mhrf-shell {
  max-width: none;
  margin: 0;
}

.mhrf-modal-inner .mhrf-question {
  border-radius: 0;
}

.mhrf-modal-inner .mhrf-hero {
  border-radius: 0;
}

.mhrf-modal-inner .mhrf-footer {
  border-radius: 0;
  border-top: 1px solid var(--mhrf-border);
}

@container (max-width: 900px) {
  .mhrf-choice-grid--two,
  .mhrf-choice-grid--three,
  .mhrf-choice-grid--four {
    grid-template-columns: 1fr;
  }
}

@container (max-width: 640px) {
  .mhrf-hero,
  .mhrf-question {
    padding: 22px;
    border-radius: 24px;
  }

  .mhrf-hero h2,
  .mhrf-question h3 {
    max-width: none;
  }

  .mhrf-footer {
    flex-wrap: wrap;
  }

  .mhrf-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .mhrf-button {
    flex: 1;
  }

  .mhrf-success {
    padding: 22px;
    border-radius: 24px;
  }

  .mhrf-success-actions {
    display: grid;
  }
}

/* ============================================================
   CONTACT FORM (2-step, standalone)
   ============================================================ */

.mhcf-wrap {
  font-family: inherit;
  color: #1a1a1a;
  max-width: 620px;
  container-type: inline-size;
}

/* Step indicator */
.mhcf-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.mhcf-step-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8e4d0;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
}

.mhcf-step-dot.is-active {
  background: #5d983c;
  transform: scale(1.35);
}

.mhcf-step-dot.is-done {
  background: #5d983c;
}

.mhcf-step-line {
  flex: 1;
  height: 2px;
  background: #d8e4d0;
  margin: 0 8px;
  transition: background 200ms ease;
}

.mhcf-step-line.is-done {
  background: #5d983c;
}

.mhcf-step-label {
  margin-left: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #66705f;
  white-space: nowrap;
}

/* Form */
.mhcf-form {
  display: grid;
  gap: 14px;
}

/* Step panels */
.mhcf-panel {
  display: grid;
  gap: 14px;
}

.mhcf-panel[hidden] {
  display: none;
}

/* Two-column grid */
.mhcf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Field labels */
.mhcf-label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.mhcf-label input,
.mhcf-label textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid #dde5d6;
  border-radius: 10px;
  background: #f8faf5;
  color: #1a1a1a;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.45;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.mhcf-label input:focus,
.mhcf-label textarea:focus {
  outline: none;
  background: #fff;
  border-color: rgba(93, 152, 60, 0.68);
  box-shadow: 0 0 0 3px rgba(93, 152, 60, 0.12);
}

.mhcf-label textarea {
  min-height: 140px;
  resize: vertical;
}

.mhcf-label input.is-invalid,
.mhcf-label textarea.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

/* Consent row */
.mhcf-consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 14px;
  border-radius: 10px;
  background: #f8faf5;
  border: 1px solid #dde5d6;
  cursor: pointer;
}

.mhcf-consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #5d983c;
  cursor: pointer;
}

.mhcf-consent-row input[type="checkbox"].is-invalid {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.mhcf-consent-row span {
  font-size: 13px;
  font-weight: 400;
  color: #66705f;
  line-height: 1.55;
}

.mhcf-consent-row a {
  color: #436d2d;
  font-weight: 700;
}

/* reCAPTCHA */
.mhcf-recaptcha {
  display: flex;
}

/* Status */
.mhcf-status {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.mhcf-status.is-visible {
  display: block;
}

.mhcf-status.is-success {
  background: #eef6e7;
  border: 1px solid rgba(93, 152, 60, 0.24);
  color: #436d2d;
}

.mhcf-status.is-error {
  background: #fdecea;
  border: 1px solid rgba(180, 35, 24, 0.18);
  color: #b42318;
}

/* Actions */
.mhcf-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhcf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 120ms ease, transform 100ms ease, box-shadow 120ms ease;
}

.mhcf-btn--next,
.mhcf-btn--submit {
  background: #5d983c;
  color: #fff;
}

.mhcf-btn--next:hover,
.mhcf-btn--submit:hover {
  background: #436d2d;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(67, 109, 45, 0.2);
}

.mhcf-btn--back {
  background: #edf1e8;
  color: #1a1a1a;
}

.mhcf-btn--back:hover {
  background: #e0e8d8;
}

.mhcf-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.mhcf-btn[hidden] {
  display: none !important;
}

/* Honeypot */
.mhcf-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .mhcf-grid-2 {
    grid-template-columns: 1fr;
  }
}

@container (max-width: 560px) {
  .mhcf-grid-2 {
    grid-template-columns: 1fr;
  }
}
