
.vm-leadform-anchor {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 110px;
}

@media (max-width: 782px) {
  .vm-leadform-anchor {
    scroll-margin-top: 92px;
  }
}

.vmlf *,
.vmlf *::before,
.vmlf *::after { box-sizing: border-box; margin: 0; padding: 0; }

.vmlf {
  --c-brand:       #1f4426;
  --c-brand2:      #2a515a;
  --c-light:       #e6f0d6;
  --c-light2:      #c8d9b5;
  --c-accent:      #ea5b1b;
  --c-accent2:     #c94d17;
  --c-text:        #1e1912;
  --c-muted:       #525758;
  --c-border:      #c2c9d2;
  --c-bg:          #f4f6f2;
  --c-white:       #ffffff;
  --radius:        12px;
  --shadow:        0 4px 28px rgba(31,68,38,.13);
  font-family: inherit;
  background: var(--c-bg);
  color: var(--c-text);
  padding: 36px 16px 48px;
  display: flex;
  justify-content: center;
}

.vmlf__card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 700px;
  overflow: hidden;
}

.vmlf__head {
  background: var(--c-brand);
  color: var(--c-white);
  padding: 30px 40px 0;
}
.vmlf__head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 6px;
}
.vmlf__head p {
  font-size: .88rem;
  opacity: .82;
  margin-bottom: 24px;
}

.vmlf__steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.vmlf__step-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  transition: color .25s;
}
.vmlf__step-lbl.is-active { color: #fff; }
.vmlf__step-lbl.is-done   { color: rgba(255,255,255,.7); }

.vmlf__bar-bg {
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  margin-bottom: 0;
}
.vmlf__bar-fill {
  height: 4px;
  background: var(--c-accent);
  border-radius: 4px;
  width: 33.33%;
  transition: width .35s ease;
}

.vmlf__body {
  padding: 32px 40px 28px;
}

.vmlf__panel { display: none; }
.vmlf__panel.is-active {
  display: block;
  animation: vmlf-in .28s ease;
}
@keyframes vmlf-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vmlf__section-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-light2);
}

.vmlf__group { margin-bottom: 28px; }

.vmlf__grid {
  display: grid;
  gap: 10px;
}
.vmlf__grid--2 { grid-template-columns: 1fr 1fr; }

.vmlf__rc { position: relative; }
.vmlf__rc input[type="radio"],
.vmlf__rc input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.vmlf__rc label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color .18s, background .18s, box-shadow .18s;
  user-select: none;
  -webkit-user-select: none;
}
.vmlf__rc label:hover {
  border-color: var(--c-brand);
  background: var(--c-light);
}
.vmlf__rc input:checked + label {
  border-color: var(--c-brand);
  background: var(--c-light);
  box-shadow: 0 0 0 1px var(--c-brand);
  color: var(--c-brand);
  font-weight: 600;
}

.vmlf__dot {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s;
}
.vmlf__rc input:checked + label .vmlf__dot {
  border-color: var(--c-brand);
  background: var(--c-brand);
}
.vmlf__rc input:checked + label .vmlf__dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.vmlf__tick {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s, background .18s;
}
.vmlf__rc input:checked + label .vmlf__tick {
  border-color: var(--c-brand);
  background: var(--c-brand);
}
.vmlf__rc input:checked + label .vmlf__tick::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.vmlf__err {
  display: none;
  font-size: .78rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 6px;
}
.vmlf__rc.has-err label {
  border-color: var(--c-accent);
  background: #fff5f2;
}

.vmlf__field { margin-bottom: 18px; }
.vmlf__field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 6px;
}
.vmlf__field label .req { color: var(--c-accent); margin-left: 2px; }
.vmlf__field input,
.vmlf__field select,
.vmlf__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
  -webkit-appearance: none;
}
.vmlf__field input:focus,
.vmlf__field select:focus,
.vmlf__field textarea:focus {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(31,68,38,.1);
}
.vmlf__field textarea { resize: vertical; min-height: 90px; }
.vmlf__field.has-err input,
.vmlf__field.has-err select,
.vmlf__field.has-err textarea { border-color: var(--c-accent); }
.vmlf__field.has-err .vmlf__err { display: block; }
.vmlf__fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vmlf__privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: border-color .18s, background .18s;
}
.vmlf__privacy:hover { border-color: var(--c-brand); background: var(--c-light); }
.vmlf__privacy input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  pointer-events: none !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}
.vmlf__privacy .vmlf__tick { margin-top: 1px; }
.vmlf__privacy span {
  font-size: .82rem;
  color: var(--c-muted);
  line-height: 1.5;
}
.vmlf__privacy a { color: var(--c-brand); text-decoration: underline; }
.vmlf__privacy input:checked ~ .vmlf__tick {
  border-color: var(--c-brand);
  background: var(--c-brand);
}
.vmlf__privacy input:checked ~ .vmlf__tick::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.vmlf__privacy.has-err { border-color: var(--c-accent); background: #fff5f2; }

.vmlf__redirect {
  display: none;
  background: var(--c-light);
  border: 1.5px solid var(--c-light2);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--c-brand);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.vmlf__redirect.is-visible { display: block; }

.vmlf__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 28px;
  border-top: 1px solid var(--c-border);
  background: var(--c-white);
}
.vmlf__req-note {
  font-size: .75rem;
  color: var(--c-muted);
  padding: 0 40px 20px;
  display: none;
}

.vmlf__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, opacity .18s;
  line-height: 1;
}
.vmlf__btn--back {
  background: transparent;
  border: 1.5px solid var(--c-border);
  color: var(--c-muted);
}
.vmlf__btn--back:hover { border-color: var(--c-brand); color: var(--c-brand); background: var(--c-light); }
.vmlf__btn--next {
  background: var(--c-brand);
  color: var(--c-white);
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(31,68,38,.25);
}
.vmlf__btn--next:hover { background: var(--c-brand2); box-shadow: 0 4px 16px rgba(31,68,38,.3); }
.vmlf__btn--submit {
  background: var(--c-accent);
  color: var(--c-white);
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(234,91,27,.3);
}
.vmlf__btn--submit:hover { background: var(--c-accent2); }
.vmlf__btn[disabled],
.vmlf__btn.is-disabled { opacity: .5; pointer-events: none; cursor: not-allowed; }

.vmlf__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: vmlf-spin .7s linear infinite;
  display: inline-block;
}
@keyframes vmlf-spin { to { transform: rotate(360deg); } }

.vmlf__success {
  display: none;
  text-align: center;
  padding: 48px 40px;
}
.vmlf__success.is-active { display: block; animation: vmlf-in .3s ease; }
.vmlf__success-icon {
  width: 64px;
  height: 64px;
  background: var(--c-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.vmlf__success-icon svg { width: 32px; height: 32px; }
.vmlf__success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-brand);
  margin-bottom: 10px;
}
.vmlf__success p {
  font-size: .9rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.vmlf__global-err {
  display: none;
  background: #fff5f2;
  border: 1.5px solid var(--c-accent);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .85rem;
  color: var(--c-accent);
  margin: 0 40px 16px;
}
.vmlf__global-err.is-visible { display: block; }

.vmlf__hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

@media (max-width: 580px) {
  .vmlf__head { padding: 24px 20px 0; }
  .vmlf__body { padding: 24px 20px 20px; }
  .vmlf__nav  { padding: 16px 20px 24px; }
  .vmlf__req-note { padding: 0 20px 16px; }
  .vmlf__global-err { margin: 0 20px 12px; }
  .vmlf__grid--2 { grid-template-columns: 1fr; }
  .vmlf__fields-row { grid-template-columns: 1fr; }
  .vmlf__head h2 { font-size: 1.25rem; }
  .vmlf__success { padding: 36px 20px; }
}

.vmlf {
  --c-brand: #1f4426;
  --c-brand2: #2a515a;
  --c-light: #e6f0d6;
  --c-light2: #c8d9b5;
  --c-salbei: #9bb69b;
  --c-accent: #ea5b1b;
  --c-accent2: #c94d17;
  --c-text: #1e1912;
  --c-muted: #525758;
  --c-border: #dfe6dd;
  --c-bg: #f7faf4;
  --c-white: #ffffff;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(31,68,38,.16);
  background: var(--c-bg);
  padding: 40px 16px 56px;
  display: block;
}

.vmlf__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(520px, 1.15fr);
  align-items: stretch;
  background: var(--c-salbei);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(31,68,38,.12);
}

.vmlf__intro {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
}

.vmlf__telli {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto 34px;
}

.vmlf__intro h1 {
  margin: 0 0 18px;
  font-size: clamp(31px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--c-brand);
  letter-spacing: -0.03em;
}

.vmlf__intro p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  font-weight: 500;
  color: #284934;
}

.vmlf__formarea {
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.36);
}

.vmlf__card {
  width: 100%;
  max-width: none;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.vmlf__head {
  background: var(--c-white);
  color: var(--c-brand);
  padding: 30px 40px 0;
}

.vmlf__head h2 {
  color: var(--c-brand);
  font-size: 1.6rem;
}

.vmlf__head p {
  color: var(--c-muted);
  opacity: 1;
}

.vmlf__step-lbl {
  color: #9aa89a;
}

.vmlf__step-lbl.is-active,
.vmlf__step-lbl.is-done {
  color: var(--c-brand);
}

.vmlf__bar-bg {
  background: #dfe7dc;
  height: 7px;
  border-radius: 99px;
}

.vmlf__bar-fill {
  background: var(--c-brand);
  height: 7px;
  border-radius: 99px;
}

.vmlf__body {
  padding: 32px 40px 28px;
}

.vmlf__section-title {
  color: var(--c-brand);
  border-bottom: 1px solid var(--c-border);
  text-transform: none;
  letter-spacing: 0;
  font-size: .96rem;
}

.vmlf__rc label,
.vmlf__privacy,
.vmlf__field input,
.vmlf__field select,
.vmlf__field textarea {
  border-radius: 13px;
  border-color: var(--c-border);
}

.vmlf__rc label {
  padding: 14px 16px;
}

.vmlf__rc label:hover,
.vmlf__privacy:hover {
  border-color: var(--c-salbei);
  background: #f7faf4;
  box-shadow: 0 8px 20px rgba(31,68,38,.08);
}

.vmlf__rc input:checked + label {
  border-color: var(--c-brand);
  background: var(--c-light);
  box-shadow: 0 0 0 1px var(--c-brand);
}

.vmlf__btn {
  border-radius: 999px;
  padding: 14px 26px;
}

.vmlf__btn--next {
  background: var(--c-brand);
}

.vmlf__btn--submit {
  background: var(--c-accent);
}

.vmlf__nav {
  border-top: 1px solid var(--c-border);
}

@media (max-width: 980px) {
  .vmlf {
    padding: 24px 12px 36px;
  }

  .vmlf__shell {
    grid-template-columns: 1fr;
  }

  .vmlf__intro {
    min-height: auto;
    padding: 32px 24px;
    text-align: center;
  }

  .vmlf__intro p {
    margin: 0 auto;
  }

  .vmlf__telli {
    width: min(260px, 72%);
    margin-bottom: 22px;
  }

  .vmlf__formarea {
    padding: 0 16px 24px;
  }
}

.vmlf,
.vmlf__shell,
.vmlf__formarea,
.vmlf__card,
.vmlf__body,
.vmlf__panel {
  overflow-anchor: none;
}

.vmlf {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #f7faf4 !important;
}

.vmlf__shell {
  width: min(1180px, calc(100% - 32px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 580px) {
  .vmlf__shell {
    width: calc(100% - 24px) !important;
  }
}

.vmlf__redirect {
  display: none !important;
}

.vmlf .vmlf__success.message.success,
.vmlf .vmlf__success {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

.vmlf .vmlf__success.message.success::before,
.vmlf .vmlf__success.message.success::after,
.vmlf .vmlf__success::before,
.vmlf .vmlf__success::after {
  display: none !important;
  content: none !important;
}

.vmlf,
.vmlf *,
.vmlf input,
.vmlf select,
.vmlf option,
.vmlf textarea,
.vmlf button,
.vmlf label,
.vmlf ::placeholder {
  text-transform: none !important;
}
