:root{
  --bg:#0b1324;
  --panel:#101a33;
  --panel2:#0e1730;
  --text:#e6ebf5;
  --muted:#9aa4bf;
  --border:rgba(255,255,255,.10);
  --accent:#ff6a00;
  --accentSoft:rgba(255,106,0,.14);
  --radius:16px;
  --shadow:0 24px 60px rgba(0,0,0,.55);
  --shadow2:0 18px 40px rgba(0,0,0,.35);
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

.insighta-sales{
  font-family:var(--font);
  color:var(--text);
  background:linear-gradient(180deg,#0b1324 0%, #070d1a 100%);
  padding:72px 18px;
}

.insighta-sales *{ box-sizing:border-box; }

.insighta-hero{
  max-width:1100px;
  margin:0 auto 42px auto;
  text-align:center;
}

.insighta-hero__badge{
  display:inline-block;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.3px;
  margin-bottom:16px;
}

.insighta-hero__title{
  margin:0 0 14px 0;
  font-size:38px;
  line-height:1.15;
  font-weight:800;
}

.insighta-hero__subtitle{
  margin:0 auto 18px auto;
  max-width:820px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

.insighta-hero__trust{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}

.pill{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}

.insighta-cards{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

@media (max-width: 980px){
  .insighta-cards{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .insighta-cards{ grid-template-columns:1fr; }
  .insighta-hero__title{ font-size:30px; }
}

.card{
  position:relative;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:26px 22px;
  box-shadow:var(--shadow2);
  display:flex;
  flex-direction:column;
  min-height: 520px;
}

.card--recommended{
  border-color:rgba(255,106,0,.55);
  box-shadow:0 0 0 2px var(--accentSoft), var(--shadow2);
}

.card__ribbon{
  position:absolute;
  top:-12px;
  right:18px;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(255,106,0,.18);
}

.card__head{ margin-bottom:18px; }
.card__title{
  margin:0 0 8px 0;
  font-size:22px;
  font-weight:800;
}
.card__tagline{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.card__price{
  border:1px solid var(--border);
  background:rgba(0,0,0,.18);
  border-radius:14px;
  padding:14px 14px;
  margin-bottom:16px;
}

.price__value{
  font-size:30px;
  font-weight:900;
  line-height:1.1;
}

.price__meta{
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}

.card__features{
  list-style:none;
  padding:0;
  margin:0 0 18px 0;
  flex:1;
}

.card__features li{
  position:relative;
  padding-left:18px;
  margin:10px 0;
  color:var(--text);
  font-size:14px;
  line-height:1.5;
}

.card__features li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:900;
}

.card__cta{
  border:none;
  background:var(--accent);
  color:#fff;
  border-radius:12px;
  padding:13px 14px;
  font-weight:800;
  cursor:pointer;
  font-size:14px;
  transition:transform .12s ease, filter .12s ease;
}

.card__cta:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.card__fineprint{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
}

/* =========================
   Modal
   ========================= */

.insighta-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(5,10,25,.82);
  z-index:9999;
  padding:18px;
}

.insighta-modal.is-open{
  display:flex;
}

.insighta-modal__backdrop{
  position:absolute;
  inset:0;
}

.insighta-modal__panel{
  position:relative;
  width:100%;
  max-width:780px;
  border-radius:18px;
  border:1px solid var(--border);
  background:var(--panel);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.insighta-modal__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 18px 12px 18px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.modal-close{
  border:none;
  background:transparent;
  color:var(--muted);
  font-size:22px;
  cursor:pointer;
  line-height:1;
  padding:6px 10px;
  border-radius:10px;
}

.modal-close:hover{
  background:rgba(255,255,255,.05);
  color:var(--text);
}

.insighta-modal__body{
  padding:18px;
}

.insighta-modal__footer{
  border-top:1px solid var(--border);
  padding:14px 18px 18px 18px;
  background:rgba(0,0,0,.14);
}

.steps{ width:100%; max-width:520px; }
.steps__bar{
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  overflow:hidden;
}
.steps__barFill{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--accent), #ff9b55);
}

.steps__labels{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
}

.wizard-error{
  color:#ffb4b4;
  font-size:13px;
  min-height:18px;
  margin-bottom:10px;
}

.wizard-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.btn{
  border-radius:12px;
  padding:12px 14px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  border:1px solid transparent;
}

.btn--primary{
  background:var(--accent);
  color:#fff;
}

.btn--ghost{
  background:transparent;
  color:var(--muted);
  border-color:var(--border);
}

.btn--ghost:hover{
  background:rgba(255,255,255,.04);
  color:var(--text);
}

/* Basic form look inside wizard body (when injected by JS) */
.insighta-modal__body label{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin:12px 0 6px 0;
}

.insighta-modal__body input,
.insighta-modal__body select,
.insighta-modal__body textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--panel2);
  color:var(--text);
  padding:11px 12px;
  outline:none;
}

.insighta-modal__body input:focus,
.insighta-modal__body select:focus,
.insighta-modal__body textarea:focus{
  border-color:rgba(255,106,0,.55);
  box-shadow:0 0 0 2px var(--accentSoft);
}

/* Terms checkbox netjes links */
.terms-left{
  display:flex;
  align-items:flex-start;
  gap:10px;
  cursor:pointer;
  margin-top:14px;
}
.terms-left input{ margin-top:4px; }

/* KvK keuze popup (binnen modal) */
.kvk-popup{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(5,10,25,.72);
  z-index: 10;
  padding:18px;
}
.kvk-popup.is-open{ display:flex; }

.kvk-popup__inner{
  width:100%;
  max-width:680px;
  border-radius:18px;
  border:1px solid var(--border);
  background:var(--panel);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.kvk-popup__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.kvk-popup__title{ font-weight:900; }
.kvk-popup__close{
  border:none;
  background:transparent;
  color:var(--muted);
  font-size:22px;
  cursor:pointer;
  padding:6px 10px;
  border-radius:10px;
}
.kvk-popup__close:hover{ background:rgba(255,255,255,.05); color:var(--text); }

.kvk-popup__body{ padding:16px; }
.kvk-popup__hint{ color:var(--muted); font-size:13px; margin-bottom:10px; }

.kvk-popup__list{
  display:grid;
  gap:10px;
  max-height: 360px;
  overflow:auto;
  padding-right: 2px;
}

.kvk-popup__item{
  text-align:left;
  border:1px solid var(--border);
  background:rgba(0,0,0,.12);
  color:var(--text);
  border-radius:14px;
  padding:12px 12px;
  cursor:pointer;
}
.kvk-popup__item:hover{ border-color: rgba(255,106,0,.45); }
.kvk-popup__item.is-selected{
  border-color: rgba(255,106,0,.75);
  box-shadow: 0 0 0 2px var(--accentSoft);
}

.kvk-popup__name{ font-weight:900; }
.kvk-popup__meta{ color:var(--muted); font-size:12px; margin-top:4px; }

.kvk-popup__footer{
  border-top:1px solid var(--border);
  padding:14px 16px;
  background:rgba(0,0,0,.14);
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

/* --- Wizard polish: checkbox rows + summary layout --- */

.sales-choice {
  margin-top: 8px;
  margin-bottom: 12px;
}

.sales-choice--spaced {
  margin-top: 14px;
  margin-bottom: 10px;
}

.sales-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  line-height: 1.35;
}

.sales-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
}

.sales-check span {
  display: inline-block;
  margin: 0;
}

.sales-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.sales-muted {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.sales-summary {
  border: 1px solid var(--border);
  background: rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.sales-summary__section {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.sales-summary__section:first-child {
  padding-top: 0;
  border-top: 0;
}

.sales-summary__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: start;
}

.sales-summary__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.sales-summary__value {
  font-size: 14px;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 520px) {
  .sales-summary__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* =========================
   Accept page styling
   ========================= */
.insighta-accept{
  max-width: 880px;
  margin: 34px auto;
  padding: 22px 18px;
  font-family: var(--font);
  color: var(--text);
}
.insighta-accept h2{
  margin: 0 0 10px 0;
  font-size: 26px;
  font-weight: 900;
}
.insighta-accept p{
  margin: 0 0 14px 0;
  color: var(--muted);
  line-height: 1.55;
}
.insighta-accept .accept-box{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow2);
}
.insighta-accept .accept-status{
  min-height: 18px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
}
.insighta-accept .accept-status.is-ok{ color: #b6ffcf; }
.insighta-accept .accept-status.is-err{ color: #ffb4b4; }
.insighta-accept .accept-status.is-warn{ color: #ffd39b; }
.insighta-accept .accept-fineprint{
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}
