/* ============================================================
   INTEGRATIE-CHECK · gedeelde component-stijlen
   Tokens + fonts komen uit colors_and_type.css.
   Layout (sectievolgorde / kolommen) staat per variant in de pagina zelf.
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--canvas); color: var(--ink-1); overflow-x: hidden; }
:root { --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); }

.shell { max-width: 1120px; margin: 0 auto; padding: 0 56px; }

/* ---------- TOP RIBBON · header + footer komen van home.css (HmTopribbon/HmFooter) ---------- */

/* ---------- HERO ---------- */
.ic-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--ink-4);
  display: inline-flex; align-items: center; gap: 9px;
}
.ic-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad-warm);
  box-shadow: 0 0 0 0 rgba(248,60,114,0.4); animation: icDot 3.4s var(--ease-in-out) infinite;
}
@keyframes icDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248,60,114,0.35); }
  50% { box-shadow: 0 0 0 6px rgba(248,60,114,0); }
}
.ic-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.03; letter-spacing: -0.02em;
  color: var(--ink-1); margin: 20px 0 0; text-wrap: balance;
}
.ic-h1 .grad, .grad {
  background: var(--grad-full); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ic-lead { font-size: 18px; line-height: 1.55; color: var(--ink-3); text-wrap: pretty; }

/* ---------- DE CHECK ---------- */
.ic-check { position: relative; }
.ic-field {
  position: relative; z-index: 2; cursor: text;
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1.5px solid var(--border-strong); border-radius: 16px;
  padding: 5px 5px 5px 20px; box-shadow: var(--shadow-md);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.ic-field.focus { border-color: transparent; box-shadow: var(--shadow-lg), 0 0 0 2px rgba(248,60,114,0.18); }
.ic-field .qmark {
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  color: var(--ink-4); flex: none; user-select: none; white-space: nowrap;
}
.ic-field input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: var(--font-body); font-size: 16px; color: var(--ink-1);
  padding: 14px 0; min-width: 0;
}
.ic-field input::placeholder { color: var(--ink-5); }
.ic-go {
  flex: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff;
  background: var(--ink-1); height: 44px; padding: 0 20px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.18s var(--ease-out), background 0.2s;
}
.ic-go:hover { background: var(--brand-purple); transform: translateY(-1px); }
.ic-go:disabled { opacity: 0.45; cursor: default; transform: none; background: var(--ink-1); }
.ic-go .arr { transition: transform 0.2s var(--ease-out); }
.ic-go:hover:not(:disabled) .arr { transform: translateX(3px); }

.ic-glow {
  position: absolute; z-index: 1; inset: -26px -34px; border-radius: 40px;
  background: radial-gradient(60% 120% at 50% 50%, rgba(248,60,114,0.16), rgba(251,153,63,0.10) 45%, transparent 72%);
  opacity: 0.55; filter: blur(8px); transition: opacity 0.5s var(--ease-out); pointer-events: none;
}
.ic-check.alive .ic-glow { opacity: 0.8; }
.ic-check.thinking .ic-glow { opacity: 1; animation: icPulse 1s var(--ease-in-out) infinite; }
@keyframes icPulse {
  0%, 100% { transform: scale(0.985); opacity: 0.6; }
  50%      { transform: scale(1.02);  opacity: 1; }
}

/* Suggesties */
.ic-suggest {
  position: absolute; z-index: 5; left: 0; right: 0; top: calc(100% + 10px);
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-xl); padding: 7px; overflow: hidden; display: none; text-align: left;
}
.ic-suggest.open { display: block; animation: icDrop 0.22s var(--ease-out); }
@keyframes icDrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.ic-sug { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 11px; cursor: pointer; transition: background 0.12s; }
.ic-sug:hover, .ic-sug.hl { background: #FAF7F4; }
.ic-sug .nm { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-1); }
.ic-sug .cat { margin-left: auto; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-4); }
.ic-sug .tick { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-6); flex: none; }
.ic-sug.b-a .tick { background: #1F9D57; }
.ic-sug.b-b .tick { background: var(--brand-purple); }
/* "Bedoel je…" kopje + de rij met je eigen ingetypte tekst */
.ic-sug-head {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--ink-4);
  padding: 6px 14px 8px;
}
.ic-sug-literal .nm { color: var(--ink-2); }
.ic-sug-literal .cat { color: var(--ink-5); }
.ic-sug-literal .mag {
  flex: none; width: 14px; height: 14px; border: 1.6px solid var(--ink-4); border-radius: 50%; position: relative;
}
.ic-sug-literal .mag::after {
  content: ""; position: absolute; right: -2px; bottom: -3px; width: 1.6px; height: 5px;
  background: var(--ink-4); border-radius: 1px; transform: rotate(-45deg);
}

/* ---------- ANTWOORD-KAART ---------- */
.ic-answer { min-height: 1px; }
.ic-answer.empty { display: none; }
.ic-card {
  position: relative; text-align: left; background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 34px 36px 30px; box-shadow: var(--shadow-lg);
  transform-origin: top center; animation: icSpring 0.62s var(--ease-spring) both;
}
@keyframes icSpring {
  0%   { opacity: 0; transform: translateY(14px) scale(0.965); }
  55%  { opacity: 1; transform: translateY(-3px) scale(1.006); }
  100% { opacity: 1; transform: none; }
}
.ic-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; margin-bottom: 16px;
}
.ic-card .badge .bdot { width: 8px; height: 8px; border-radius: 50%; }
.ic-card.b-a .badge { background: #E3F5EA; color: #1B7A45; }
.ic-card.b-a .badge .bdot { background: #1F9D57; }
.ic-card.b-b .badge { background: var(--surface-tint-purple); color: var(--tint-purple); }
.ic-card.b-b .badge .bdot { background: var(--brand-purple); }
.ic-card.b-c .badge { background: var(--surface-tint-orange); color: var(--tint-orange); }
.ic-card.b-c .badge .bdot { background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange)); }
.ic-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.14; letter-spacing: -0.015em; color: var(--ink-1); margin: 0;
}
.ic-card h3 .sys { background: var(--grad-full); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ic-card .cap { font-size: 16px; line-height: 1.55; color: var(--ink-3); margin: 14px 0 0; text-wrap: pretty; }
.ic-card .caselink {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--brand-purple); text-decoration: none;
}
.ic-card .caselink:hover { color: var(--brand-pink); }
.ic-card .caselink .arr { transition: transform 0.2s var(--ease-out); }
.ic-card .caselink:hover .arr { transform: translateX(3px); }
.ic-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--hairline); }
.ic-btn-primary {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  background: var(--ink-1); color: #fff; text-decoration: none; padding: 13px 24px; border-radius: 999px;
  transition: transform 0.18s var(--ease-out), background 0.2s;
}
.ic-btn-primary:hover { transform: translateY(-1px); background: var(--brand-purple); color:#fff; }
.ic-btn-ghost {
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-2);
  background: transparent; cursor: pointer; border: 1.5px solid var(--border-strong); padding: 12px 22px; border-radius: 999px;
  transition: border-color 0.18s, color 0.18s;
}
.ic-btn-ghost:hover { border-color: var(--ink-1); color: var(--ink-1); }
.ic-reset {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  background: none; border: 0; cursor: pointer; font-family: var(--font-body); font-size: 14px; color: var(--ink-4); transition: color 0.18s;
}
.ic-reset:hover { color: var(--ink-2); }

/* ---------- "HOE" · kaarten (variant kan ander aantal kolommen zetten) ---------- */
.ic-ways { display: grid; gap: 16px; }
.ic-way { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px 22px 22px; }
.ic-way .n { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); letter-spacing: 0.04em; }
.ic-way h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 14px 0 8px; letter-spacing: -0.01em; }
.ic-way p { font-size: 14.5px; line-height: 1.5; color: var(--ink-3); margin: 0; }

/* ---------- "HOE" · veilig-blok (data minimisation) ---------- */
.ic-safe {
  margin-top: 24px; display: flex; gap: 20px; align-items: flex-start;
  padding: 26px 30px; border-radius: 16px;
  background:
    radial-gradient(120% 140% at 0% 0%, #EEF9F1 0%, rgba(238,249,241,0) 60%),
    #FAFCFB;
  border: 1px solid #DCEAE1;
}
.ic-safe .lock {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: #E3F5EA; border: 1px solid #C9E6D3;
  display: flex; align-items: center; justify-content: center;
}
.ic-safe .lock .body { position: relative; width: 15px; height: 12px; border-radius: 3px; background: #1B7A45; }
.ic-safe .lock .body::before {
  content: ""; position: absolute; left: 50%; top: -8px; transform: translateX(-50%);
  width: 9px; height: 9px; border: 2px solid #1B7A45; border-bottom: none; border-radius: 5px 5px 0 0;
}
.ic-safe .lock .body::after {
  content: ""; position: absolute; left: 50%; top: 4px; transform: translateX(-50%);
  width: 3px; height: 4px; border-radius: 2px; background: #E3F5EA;
}
.ic-safe h4 { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin: 2px 0 0; color: var(--ink-1); }
.ic-safe p { font-size: 15px; line-height: 1.6; color: var(--ink-3); margin: 8px 0 0; max-width: 68ch; text-wrap: pretty; }
@media (max-width: 640px) {
  .ic-safe { flex-direction: column; gap: 14px; padding: 22px; }
}

/* ---------- "HOE" · compacte stepper-rij ---------- */
.ic-steps { display: flex; gap: 0; counter-reset: step; }
.ic-step { flex: 1; position: relative; padding: 0 22px; }
.ic-step:first-child { padding-left: 0; }
.ic-step:not(:last-child)::after {
  content: ""; position: absolute; top: 13px; right: 0; width: 1px; height: calc(100% - 13px); background: var(--hairline);
}
.ic-step .num {
  width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #fff; background: var(--ink-1);
}
.ic-step h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin: 14px 0 6px; letter-spacing: -0.01em; }
.ic-step p { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin: 0; }

/* ---------- "HOE" · minimale tekstkolommen met hairlines ---------- */
.ic-cols { display: grid; gap: 0; }
.ic-col { padding: 4px 26px; border-left: 1px solid var(--hairline); }
.ic-col:first-child { border-left: 0; padding-left: 0; }
.ic-col .n { font-family: var(--font-mono); font-size: 12px; color: var(--brand-pink); letter-spacing: 0.04em; }
.ic-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 12px 0 8px; letter-spacing: -0.01em; }
.ic-col p { font-size: 14.5px; line-height: 1.5; color: var(--ink-3); margin: 0; }

/* ---------- PROOF · titel + namen ---------- */
.ic-proof-line { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.8vw, 34px); letter-spacing: -0.015em; margin: 0; }
.ic-proof-note { font-size: 15px; color: var(--ink-4); margin: 10px 0 0; }

/* Marquee · namen-strips */
.ic-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ic-track { display: flex; align-items: center; width: max-content; gap: 14px; will-change: transform; }
.ic-marquee.row-a .ic-track { animation: icScrollA 90s linear infinite; }
.ic-marquee.row-b .ic-track { animation: icScrollB 110s linear infinite; }
.ic-marquee.row-solo .ic-track { animation: icScrollA 130s linear infinite; }
.ic-marquee:hover .ic-track { animation-play-state: paused; }
@keyframes icScrollA { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes icScrollB { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ic-name {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-2);
  white-space: nowrap; background: #fff; border: 1px solid var(--border); padding: 11px 18px; border-radius: 999px;
}

/* Statische namen-wolk (voor de twee-kolom variant) */
.ic-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.ic-cloud .ic-name { font-size: 13.5px; padding: 8px 14px; }

/* ---------- FOOT CTA ---------- */
.ic-cta { padding: 100px 56px; background: var(--canvas-alt); text-align: center; margin-top: 70px; }
.ic-cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 58px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; color: var(--ink-1);
}
.ic-cta p { font-size: 17px; line-height: 1.55; color: var(--ink-3); max-width: 56ch; margin: 22px auto 34px; }
.ic-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ic-cta-row .ic-btn-ghost { text-decoration: none; display: inline-flex; align-items: center; }

/* ---------- FOOT META ---------- */
.foot-meta {
  background: var(--canvas); color: var(--ink-4); border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  padding: 28px 56px; font-family: var(--font-body); font-size: 13px;
}
.foot-meta .brand { display: inline-flex; align-items: center; line-height: 0; }
.foot-meta .brand img { height: 28px; width: auto; display: block; }
.foot-meta .links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-meta a { color: var(--ink-3); text-decoration: none; transition: color 0.18s; }
.foot-meta a:hover { color: var(--brand-purple); }

/* ---------- RESPONSIVE (chrome + check) ---------- */
@media (max-width: 768px) {
  .shell { padding: 0 20px; }
  .ic-field { padding: 5px 5px 5px 16px; flex-wrap: wrap; }
  .ic-go { width: 100%; justify-content: center; }
  .ic-card { padding: 26px 22px 24px; }
  .ic-cta { padding: 64px 22px; }
  .foot-meta { padding: 24px 20px; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .foot-meta .links { justify-content: center; gap: 14px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .ic-card { animation: none; }
  .ic-track { animation: none; }
  .ic-check.thinking .ic-glow { animation: none; }
  .ic-eyebrow .dot { animation: none; }
  html { scroll-behavior: auto; }
}
