/* NESKO Central — formulieren (shortcode [nesko_form]) */
.nesko-form {
  max-width: 720px;
  margin: 0 auto;
  font-family: inherit;
}
.nesko-form__title {
  margin: 0 0 .5rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
}
.nesko-form__intro {
  margin: 0 0 1.5rem;
  opacity: .8;
}
.nesko-form__row {
  margin-bottom: 1rem;
}
.nesko-form__label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
  font-size: .92rem;
}
.nesko-form__req {
  color: #c0392b;
  margin-left: .15rem;
}
.nesko-form__input {
  width: 100%;
  padding: .7rem .85rem;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.nesko-form__input:focus {
  outline: none;
  border-color: var(--nesko-form-btn, #0f3d5c);
  box-shadow: 0 0 0 3px rgba(15, 61, 92, .12);
}
.nesko-form__check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  line-height: 1.4;
}
.nesko-form__check input {
  margin-top: .2rem;
}
.nesko-form__submit {
  display: inline-block;
  margin-top: .5rem;
  padding: .8rem 1.6rem;
  border: 0;
  border-radius: 8px;
  background: var(--nesko-form-btn, #0f3d5c);
  color: var(--nesko-form-btn-fg, #fff);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.nesko-form__submit:hover {
  filter: brightness(1.08);
}
.nesko-form__submit[disabled] {
  opacity: .6;
  cursor: progress;
}
.nesko-form__status:empty {
  display: none;
}
.nesko-form__status {
  margin-top: .75rem;
  color: #c0392b;
  font-size: .9rem;
}
.nesko-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nesko-form__success {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(15, 61, 92, .06);
}
.nesko-form__success h3 {
  margin: 0 0 .5rem;
}
.nesko-form--error {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(192, 57, 43, .08);
  color: #c0392b;
  font-size: .95rem;
}

/* Calendly-boeker (native slot-picker) */
.nesko-booking__h { margin: 0 0 .75rem; font-size: 1.05rem; }
.nesko-booking__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .5rem;
  margin-bottom: 1rem;
}
.nesko-booking__opt {
  padding: .7rem .9rem;
  border: 1px solid rgba(15, 61, 92, .25);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .15s, background .15s;
}
.nesko-booking__opt:hover {
  border-color: var(--nesko-form-btn, #0f3d5c);
  background: rgba(15, 61, 92, .05);
}
.nesko-booking__back {
  margin-left: .75rem;
  border: 0;
  background: none;
  color: var(--nesko-form-btn, #0f3d5c);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}
.nesko-booking__chosen { font-weight: 600; margin: 0 0 1rem; }
.nesko-booking__error:empty { display: none; }
.nesko-booking__error { color: #c0392b; margin-top: .75rem; }
