/* ==========================================================================
   Keuzehulp – stijlen (schermflow + printbaar rapport)
   ========================================================================== */
.ck-wrap {
  padding: 24px 0 72px;
}
.ck-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.ck-progress {
  margin-bottom: 28px;
}
.ck-progress-bar {
  height: 6px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
}
.ck-progress-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.ck-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}
.ck-intro h2,
.ck-q h2,
.ck-glimpse h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 10px;
}
.ck-intro-list {
  margin: 0 0 24px;
  padding-left: 1.2em;
  color: var(--ink-2);
}
.ck-intro-list li {
  margin-bottom: 6px;
}
.ck-help {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  max-width: 60ch;
}
.ck-options {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}
.ck-options--dense {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 560px) {
  .ck-options--dense {
    grid-template-columns: 1fr;
  }
}
.ck-option {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.98rem;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.ck-option:hover {
  border-color: var(--ink);
}
.ck-option:active {
  transform: scale(0.995);
}
.ck-option-mark {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.ck-option.is-selected {
  border-color: var(--green);
  background: var(--mint-2);
}
.ck-option.is-selected .ck-option-mark {
  border-color: var(--green);
  background: var(--green);
}
.ck-option.is-selected .ck-option-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}
[role="checkbox"] .ck-option-mark {
  border-radius: 6px;
}
[role="checkbox"].is-selected .ck-option-mark::after {
  border-radius: 2px;
}
.ck-number {
  margin: 8px 0 12px;
}
.ck-number-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ck-number-input {
  font: inherit;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  width: 180px;
  padding: 10px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  letter-spacing: -0.02em;
}
.ck-number-input:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}
.ck-unit {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}
.ck-slider {
  width: 100%;
  accent-color: var(--green);
  margin: 6px 0 14px;
}
.ck-unknown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
  cursor: pointer;
}
.ck-unknown input {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
}
.ck-number.is-unknown .ck-number-input,
.ck-number.is-unknown .ck-slider {
  opacity: 0.4;
}
.ck-select,
.ck-text {
  width: 100%;
  font: inherit;
  padding: 14px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  font-size: 1.05rem;
}
.ck-text {
  max-width: 220px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ck-select:focus,
.ck-text:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}
.ck-postcode .hint {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.ck-images {
  margin-top: 14px;
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  padding: 10px 14px;
}
.ck-images summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.ck-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.ck-images-grid img {
  border-radius: 10px;
}
.ck-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.ck-nav .btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.ck-save {
  font-size: 0.78rem;
  margin: 16px 0 0;
}
.ck-error {
  color: #b42318;
  font-size: 0.9rem;
  margin: 12px 0 0;
}
.ck-glimpse .lead {
  font-size: 1.15rem;
}
.ck-honest {
  border-left: 4px solid var(--green);
  padding-left: 20px;
}
.ck-honest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ck-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--green-dark);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

/* Compass */
.ck-compass-wrap {
  display: grid;
  gap: 20px;
  justify-items: center;
}
.ck-compass {
  position: relative;
  width: 260px;
  height: 260px;
}
.ck-compass svg {
  width: 260px;
  height: 260px;
}
.ck-compass-btn {
  position: absolute;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ck-compass-btn:hover {
  border-color: var(--ink);
}
.ck-compass-btn.is-selected {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.ck-compass-wrap .ck-options {
  width: 100%;
}

/* Contact */
.ck-contact {
  display: grid;
  gap: 14px;
}

/* Result */
.ck-result {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.ck-result-card {
  max-width: none;
}
.ck-result-print-head {
  display: none;
}
.ck-headline {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
}
.ck-headline strong {
  font-weight: 700;
}
.ck-figures {
  display: grid;
  gap: 12px;
  margin: 24px 0 16px;
}
@media (min-width: 640px) {
  .ck-figures {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ck-figures .figure {
  background: var(--mint-2);
  border: 1px solid #cfe7d8;
}
.ck-figures .val {
  font-size: 1.4rem;
}
.ck-disclaimer {
  font-size: 0.85rem;
  max-width: 70ch;
}
.ck-details {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.ck-details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
}
.ck-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 14px 0 18px;
}
.ck-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.ck-table td.num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ck-table .total td {
  font-weight: 700;
  border-bottom: 0;
}
.ck-assumptions {
  font-size: 0.85rem;
  color: var(--ink-2);
  padding-left: 1.1em;
}
.ck-points {
  display: grid;
  gap: 12px;
}
.ck-point {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 16px;
}
.ck-point strong {
  display: block;
  margin-bottom: 2px;
}
.ck-point p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.ck-next {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.ck-next .eyebrow {
  color: var(--on-dark-muted);
}
.ck-next p {
  color: var(--on-dark-muted);
}
.ck-next .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.ck-next .btn--primary {
  background: #fff;
  color: var(--ink);
}
.ck-lead-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.ck-cross {
  background: var(--mint-2);
  border-color: #cfe7d8;
}
.ck-cross p {
  margin-bottom: 12px;
}

/* Hub cards */
.check-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.check-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.check-card .media img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.check-card .body {
  padding: 22px;
}
.check-card .meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.check-card h3 {
  margin-bottom: 6px;
}
.check-card p {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------------ */
/* Print / PDF                                                         */
/* ------------------------------------------------------------------ */
@media print {
  @page {
    margin: 16mm 14mm;
  }
  body {
    background: #fff;
    color: #000;
  }
  .site-header,
  .site-footer,
  .ck-noprint,
  .page-hero,
  .cta-band,
  .ck-lead-meta,
  .skip-link {
    display: none !important;
  }
  .ck-wrap {
    padding: 0;
  }
  .ck-result {
    max-width: none;
    display: block;
  }
  .ck-result-card {
    margin-bottom: 8mm;
  }
  .ck-result-print-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8mm;
    border-bottom: 1px solid #ddd;
    font-size: 11pt;
  }
  .ck-card {
    box-shadow: none;
    border: 1px solid #ddd;
    padding: 8mm;
    break-inside: avoid;
  }
  .ck-next {
    background: #f4f2ee;
    color: #000;
    border-color: #ddd;
  }
  .ck-next p,
  .ck-next .eyebrow {
    color: #333;
  }
  .ck-details {
    border-top: 0;
  }
  .ck-details[open] > *,
  .ck-details > * {
    display: block;
  }
  .ck-details > summary {
    display: none !important;
  }
  .ck-details::before {
    content: "Opbouw van de investering";
    display: block;
    font-weight: 700;
    margin-top: 4mm;
  }
  .ck-figures {
    grid-template-columns: repeat(2, 1fr);
  }
  .ck-figures .figure {
    background: #f4f2ee;
    border-color: #ddd;
  }
  .ck-point {
    background: #f7f6f2;
  }
  a[href]::after {
    content: "";
  }
}

.ck-profile-note {
  background: var(--mint-2);
  border: 1px solid #cfe7d8;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}
