@charset "utf-8";
/* CSS Document */
:root {
  --bg:#f6f8fa;
  --card:#ffffff;
  --accent:#f3702a;
  --muted:#6b7280;
  --glass: rgba(43,124,255,0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {

}

.wrap {
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), #145dbf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(15,23,42,0.06);
	    overflow: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 580px);
  gap: 18px;
}

@media (max-width: 880px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.input-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

input[type="number"] {
  width: 140px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6eefb;
  background: #fff;
  font-size: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.option-prijs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #eef2ff;
  cursor: pointer;
  background: transparent;
}

.option.selected {
  border-color: var(--accent);
  box-shadow: 0 6px 18px var(--glass);
  background: linear-gradient(180deg, rgba(43,124,255,0.04), rgba(43,124,255,0.02));
}

.small {
  font-size: 13px;
  color: var(--muted);
}

.tiers {
  margin-top: 12px;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid #f1f5f9;
}

.tier-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--muted);
}

.price-box {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 10px;
  border: 1px solid #eff6ff;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bold {
  font-weight: 700;
}

.bold-lg {
  font-weight: 700;
  font-size: 18px;
}

.text-right {
  text-align: right;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #eef2ff;
}

.total {
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  padding-top: 12px;
}

.cta {
  display: flex;
  gap: 10px;
	    margin-top: 10px;
}

@media (max-width: 600px) {
  .cta {
    flex-direction: column;
  }
}

.btn2 {
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.btn2.primary {
  background: var(--accent);
  color: white;
}

.btn2.ghost {
  background: #ccc;
  border: 1px solid #e6eefb;
  color: #0f172a;
}

.extra-info {
  margin-top: 12px;
}

footer {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.offerte-actie {
  text-align: center;
  margin-top: 25px;
}

#btn-offerte {
  background-color: #67d449;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

#btn-offerte:hover {
  background-color: #ff6600;
}
.thankyou-message {padding:10px;
  display: none;
  font-weight: bold;
  margin-top: 20px;
  display: block; /* wordt getoond via JS */
}

#mx_form_2785 form { background:#fff; padding:20px; border-radius:8px; max-width:500px; width:100%; }
#mx_form_2785 {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#mx_form_2785 form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
}
#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
/* Popup overlay */
#popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* Popup box */
#popup {
  background: #fff;
  max-width: 500px;
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  overflow: auto;
}

/* Header en tekst altijd zichtbaar boven het formulier */
#popup h3,
#popup p,
#popup-close {
  position: relative;
  z-index: 2;
}

#popup h3 {
  margin-top: 0;
  color: #333;
}

#popup p {
  margin-bottom: 0;
  color: #555;
	padding-bottom: 0;
}

/* Sluitknop */
#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  color: #888;
  cursor: pointer;
  z-index: 3;
}

#popup-close:hover {
  color: #000;
}

/* MX-form binnen popup */
#mx_form_2785 {
  display: block !important;
  position: relative;
  z-index: 1;
  margin-top: 15px;
}

/* Formulierelementen */
#mx_form_2785 input,
#mx_form_2785 textarea,
#popup input,
#popup textarea {
  padding: 10px;
  margin-top: 0px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}
#mx_form_2785 textarea {height:100px;}
#mx_form_2785 button,
#popup button[type="submit"] {

}

#mx_form_2785 button:hover,
#popup button[type="submit"]:hover {
 
}

/* Animatie */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* Responsief */
@media (max-width: 600px) {
  #popup {
    padding: 20px;
  }

  #popup button[type="submit"],
  #btn-offerte {
    width: 100%;
  }
}
