/* Huisstijl mooimachinemodel.nl — zie vault: 12 Mooimachinemodel.nl */
:root {
  --blue: #538BAA; --blue-dark: #3d6e89; --blue-light: #e8f2f7;
  --dark: #2d2d2d; --mid: #69727d; --light: #f7f7f7; --border: #e0e0e0;
  --white: #fff; --orange: #e8721f; --green: #2e7d5e;
}
* { box-sizing: border-box; }
body {
  margin: 0; color: var(--dark);
  font-family: "Barlow", system-ui, sans-serif;
  background: #1a2028;
}
video.bg {
  position: fixed; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; opacity: .35;
}
.overlay { position: fixed; inset: 0; background: rgba(20,26,34,.55); z-index: -1; }

.wrap { display: flex; min-height: 100vh; }
.info {
  flex: 1; padding: 48px; color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.info img { width: 220px; margin-bottom: 24px; }
.info h1 { font-family: "Barlow Semi Condensed", sans-serif; font-size: 2.4rem; margin: 0 0 12px; }
.info p { max-width: 460px; line-height: 1.5; color: #dfe6ec; }
.prijs { margin-top: 20px; font-weight: 600; color: #fff; }

.panel {
  width: 460px; background: var(--white); padding: 36px 32px; overflow-y: auto;
}
.panel h2 { font-family: "Barlow Semi Condensed", sans-serif; margin: 0 0 20px; }
label { display: block; font-weight: 600; margin: 16px 0 6px; font-size: .9rem; }
input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px; font: inherit;
}
textarea { min-height: 70px; resize: vertical; }

.dropzone {
  border: 2px dashed var(--blue); border-radius: 10px; padding: 24px; text-align: center;
  color: var(--mid); cursor: pointer; background: var(--blue-light);
}
.dropzone.over { background: #d5e8f1; }
#filelist { list-style: none; padding: 0; margin: 10px 0 0; }
#filelist li { display: flex; justify-content: space-between; padding: 6px 10px; background: var(--light); border-radius: 6px; margin-bottom: 4px; }
#filelist .rm { border: none; background: none; color: var(--orange); font-size: 1.1rem; cursor: pointer; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; }
.chip span {
  display: inline-block; padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer; font-size: .9rem;
}
.chip input:checked + span { background: var(--blue); color: #fff; border-color: var(--blue); }

.row { display: flex; gap: 12px; }
.row > div { flex: 1; }

button.cta {
  margin-top: 24px; width: 100%; padding: 14px; border: none; border-radius: 8px;
  background: var(--blue); color: #fff; font-size: 1rem; font-weight: 600; cursor: pointer;
}
button.cta:hover { background: var(--blue-dark); }
button.cta:disabled { opacity: .6; cursor: default; }

#status { margin-top: 12px; font-size: .9rem; color: var(--mid); }
#status.err { color: var(--orange); }
#bevestiging { text-align: center; padding: 40px 0; }
#bevestiging .check { font-size: 3rem; color: var(--green); }

@media (max-width: 820px) {
  .wrap { flex-direction: column; }
  .info { padding: 32px; }
  .panel { width: 100%; }
}
