/* ==========================================================================
   Claritalk — design system
   Brand: violet #682577 · yellow #FDE594 · lila #E1D8EC · honey #FCF4DE
          aubergine #30163A · gray #F4F4F5
   Rules: no ALL CAPS anywhere · 5px radius · buttons padding 8px 16px
          Funnel Display for titles · Syne for body · never pure black
   ========================================================================== */

@font-face { font-family: 'Funnel Display'; src: url('../fonts/FunnelDisplay-Regular.ttf'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Funnel Display'; src: url('../fonts/FunnelDisplay-Medium.ttf'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Funnel Display'; src: url('../fonts/FunnelDisplay-SemiBold.ttf'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Syne'; src: url('../fonts/Syne-Regular.ttf'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Syne'; src: url('../fonts/Syne-SemiBold.ttf'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Syne'; src: url('../fonts/Syne-Bold.ttf'); font-weight: 700; font-display: swap; }

:root {
  --ct-violet: #682577;
  --ct-violet-dark: #521b66;
  --ct-yellow: #FDE594;
  --ct-yellow-dark: #d9bd6c;
  --ct-lila: #E1D8EC;
  --ct-honey: #FCF4DE;
  --ct-aubergine: #30163A;
  --ct-white: #FFFFFF;
  --ct-gray: #F4F4F5;
  --ct-green: #29BA1F;
  --ct-red: #BA1F24;
  --ct-gradient: linear-gradient(to right, #E1D8EC, #FCF4DE);
  --ct-font-display: 'Funnel Display', 'Segoe UI', sans-serif;
  --ct-font-body: 'Syne', 'Segoe UI', sans-serif;
  --ct-radius: 5px;
  --ct-muted: rgba(48, 22, 58, 0.66);
  --ct-hairline: #F4F4F5;
  --ct-shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

/* Het hidden-attribuut moet winnen van elke display-regel hieronder. Zonder dit
   blijft bijvoorbeeld een gefilterde event-card zichtbaar, want die is display: grid. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ct-white);
  color: var(--ct-aubergine);
  font-family: var(--ct-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ct-violet); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--ct-font-display);
  font-weight: 500;
  color: var(--ct-aubergine);
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.15rem, 5vw, 3.9rem); text-wrap: balance; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.25; }
h4 { font-size: 1rem; }
p  { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- layout ---------- */
.shell { width: 100%; max-width: var(--ct-shell); margin: 0 auto; padding: 0 24px; }
.shell-narrow { max-width: 860px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-lila { background: var(--ct-lila); }
.section-honey { background: var(--ct-honey); }
.section-gray { background: var(--ct-gray); }
.section-gradient { background: var(--ct-gradient); }
.section-dark { background: var(--ct-aubergine); color: var(--ct-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ct-white); }
.section-dark p { color: var(--ct-lila); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--ct-muted); }
.section-dark .section-head p { color: var(--ct-lila); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ct-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ct-violet);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--ct-yellow);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--ct-yellow); }
.section-dark .eyebrow::before { background: var(--ct-yellow); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ct-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  border: none;
  border-radius: var(--ct-radius);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ct-violet); color: var(--ct-white); }
.btn-primary:hover { background: var(--ct-violet-dark); color: var(--ct-white); }
.btn-secondary { background: var(--ct-yellow); color: var(--ct-aubergine); }
.btn-secondary:hover { background: var(--ct-yellow-dark); color: var(--ct-aubergine); }
.btn-text { background: transparent; color: var(--ct-violet); padding: 0; font-weight: 600; }
.btn-text:hover { text-decoration: underline; }
.section-dark .btn-text { color: var(--ct-yellow); }
.btn-lg { font-size: 1rem; padding: 8px 16px; min-height: 46px; }
.btn-block { width: 100%; justify-content: center; }
.btn-ghost-light { background: transparent; border: 1.5px solid var(--ct-white); color: var(--ct-white); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); color: var(--ct-white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.arrow::after { content: "\2192"; font-family: var(--ct-font-body); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ct-hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.header-logo img { height: 38px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.header-nav a {
  font-size: 0.93rem;
  color: var(--ct-aubergine);
  font-weight: 400;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.header-nav a:hover { text-decoration: none; border-bottom-color: var(--ct-yellow); }
.header-nav a.is-active { border-bottom-color: var(--ct-yellow); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-link {
  font-family: var(--ct-font-body); font-size: 0.92rem; font-weight: 600;
  color: var(--ct-aubergine); white-space: nowrap;
}
.header-link:hover { color: var(--ct-violet); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ct-hairline);
  border-radius: var(--ct-radius);
  width: 38px; height: 38px;
  cursor: pointer;
  align-items: center; justify-content: center;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--ct-aubergine); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ct-aubergine);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 32px;
  background: var(--ct-white);
}
.hero-orb {
  position: absolute;
  top: -260px; right: -180px;
  width: 900px; height: 900px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(104,37,119,0.14) 0%, transparent 60%),
    radial-gradient(circle, #E1D8EC 0%, #FCF4DE 50%, transparent 70%);
  opacity: 0.85;
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: 40px; align-items: center; }
.hero h1 { margin-bottom: 14px; font-size: clamp(2rem, 3.9vw, 2.95rem); }
.hero-lede { font-size: 1.08rem; color: var(--ct-muted); max-width: 34em; margin-bottom: 22px; }
.hero-proof { margin-top: 18px; font-size: 0.85rem; color: var(--ct-muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-proof .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ct-green); display: inline-block; }

/* de band met kantoornamen die de hero afsluit en tot scrollen uitnodigt */
.hero-proof-band {
  padding: 0 0 28px;
  background: var(--ct-white);
  border-bottom: 1px solid var(--ct-hairline);
}
.hero-proof-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ct-muted);
  margin: 0 0 14px;
}
.hero-proof-band .klant-chip {
  min-height: 36px;
  padding: 6px 14px;
  font-size: 0.84rem;
  background: var(--ct-gray);
  border-color: transparent;
  color: var(--ct-muted);
}
.hero-proof-band .klant-logo { height: 20px; }

/* ---------- logo / integration strip ---------- */
.logo-strip { border-top: 1px solid var(--ct-hairline); border-bottom: 1px solid var(--ct-hairline); padding: 22px 0; background: var(--ct-white); }
.logo-strip-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.logo-strip-label { font-size: 0.82rem; color: var(--ct-muted); }
.sys-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ct-font-display); font-weight: 500; font-size: 1rem;
  color: var(--ct-aubergine); opacity: 0.78;
}
.sys-chip .sys-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--ct-violet); }
.sys-logo { height: 22px; width: auto; max-width: 120px; object-fit: contain; }
.sys-name { white-space: nowrap; }
.sys-more { margin-top: 14px; font-size: 0.9rem; color: var(--ct-muted); }
/* ---------- dekkingsdiagram: waar in het traject staat een tool ---------- */
.coverage {
  display: grid;
  grid-template-columns: 150px repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  min-width: 720px;
}
.coverage-head {
  font-family: var(--ct-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ct-muted);
  padding: 0 4px 8px;
  line-height: 1.3;
  align-self: end;
}
.coverage-label {
  font-family: var(--ct-font-display);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.coverage-cell {
  border-radius: var(--ct-radius);
  padding: 14px 12px;
  font-size: 0.78rem;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 62px;
}
.cov-none { background: var(--ct-gray); color: rgba(48, 22, 58, 0.4); }
.cov-partial { background: var(--ct-honey); color: var(--ct-aubergine); }
.cov-full { background: var(--ct-violet); color: var(--ct-white); font-weight: 600; }
/* Een dekkingsraster met vier kolommen in plaats van vijf. */
.coverage-4 { grid-template-columns: 150px repeat(4, minmax(0, 1fr)); }

.coverage-legend {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 20px; font-size: 0.82rem; color: var(--ct-muted);
}
.coverage-legend span { display: inline-flex; align-items: center; gap: 8px; }
.coverage-legend i {
  width: 14px; height: 14px; border-radius: 3px; display: inline-block; font-style: normal;
}

/* ---------- video ---------- */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ct-aubergine);
  border: 1px solid rgba(48, 22, 58, 0.1);
  border-radius: var(--ct-radius);
  overflow: hidden;
  width: 100%;
}
.video-frame img.video-poster { width: 100%; height: 100%; object-fit: cover; }
/* Een beeld uit de video als achtergrond. De sluier eroverheen houdt de knop
   leesbaar, ook op een licht beeld. */
.video-frame.has-poster { background-size: cover; background-position: center; }
.video-frame.has-poster .video-play { background: rgba(48, 22, 58, 0.5); }
.video-frame.has-poster .video-play:hover { background: rgba(48, 22, 58, 0.42); }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(48,22,58,0.15), rgba(48,22,58,0.55));
  border: 0; cursor: pointer;
  font-family: var(--ct-font-body); color: var(--ct-white);
}
.video-play:hover .video-play-btn { background: var(--ct-yellow-dark); }
.video-play-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--ct-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.video-play-btn svg { width: 22px; height: 22px; color: var(--ct-aubergine); margin-left: 3px; }
.video-play-label { font-size: 0.9rem; font-weight: 600; }
.video-play-note { font-size: 0.78rem; opacity: 0.8; }
.video-caption { font-size: 0.85rem; color: var(--ct-muted); margin-top: 10px; }

/* ---------- events ---------- */
.event-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-chip {
  font-family: var(--ct-font-body); font-size: 0.88rem; font-weight: 600;
  background: var(--ct-gray); color: rgba(48, 22, 58, 0.6);
  border: 1px solid transparent; border-radius: var(--ct-radius);
  padding: 8px 16px; cursor: pointer;
}
.filter-chip:hover { color: var(--ct-aubergine); }
.filter-chip.is-active { background: var(--ct-white); border-color: var(--ct-violet); color: var(--ct-aubergine); }

.event-list { display: grid; gap: 16px; }
.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--ct-white);
  border: 1px solid var(--ct-hairline);
  border-radius: var(--ct-radius);
  padding: 24px;
}
.event-card h3 { margin: 12px 0 6px; }
.event-card p { color: var(--ct-muted); font-size: 0.95rem; margin: 0; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.event-format { font-size: 0.8rem; color: var(--ct-muted); }
.event-empty { text-align: center; padding: 32px; color: var(--ct-muted); }
@media (max-width: 720px) {
  .event-card { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- use cases ---------- */
.usecase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }
.usecase h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.usecase-index { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.usecase-index a {
  font-size: 0.88rem; font-weight: 600;
  background: var(--ct-gray); color: var(--ct-aubergine);
  border-radius: var(--ct-radius); padding: 8px 16px;
}
.usecase-index a:hover { background: var(--ct-yellow); text-decoration: none; }

.usecase-contrast { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contrast-col { border-radius: var(--ct-radius); padding: 20px; height: 100%; }
.contrast-col h4 {
  font-family: var(--ct-font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 14px;
}
.contrast-col ul { list-style: none; margin: 0; padding: 0; }
.contrast-col li { position: relative; padding-left: 20px; font-size: 0.9rem; margin-bottom: 10px; line-height: 1.5; }
.contrast-col li:last-child { margin-bottom: 0; }
.contrast-before { background: var(--ct-gray); color: var(--ct-muted); }
.contrast-before h4 { color: rgba(48, 22, 58, 0.55); }
.contrast-before li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1.5px; background: rgba(48, 22, 58, 0.3);
}
.contrast-after { background: var(--ct-honey); color: var(--ct-aubergine); border: 1px solid rgba(104, 37, 119, 0.14); }
.contrast-after h4 { color: var(--ct-violet); }
.contrast-after li::before { content: "\2713"; position: absolute; left: 0; color: var(--ct-violet); font-weight: 700; }
.section-dark .contrast-before { background: rgba(255, 255, 255, 0.06); color: var(--ct-lila); }
.section-dark .contrast-before h4 { color: rgba(225, 216, 236, 0.6); }

@media (max-width: 980px) {
  .usecase { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .usecase-reverse > *:first-child { order: 2; }
  .usecase-reverse > *:last-child { order: 1; }
}
@media (max-width: 560px) {
  .usecase-contrast { grid-template-columns: minmax(0, 1fr); }
}

/* klantenwand: logo waar we het hebben, anders de naam */
.klant-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* doorlopende scroller met een selectie van klanten */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee + .marquee { margin-top: 12px; }
.marquee-track { display: flex; width: max-content; animation: marquee-left 64s linear infinite; }
.marquee-reverse .marquee-track { animation-name: marquee-right; animation-duration: 76s; }
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; gap: 12px; padding-right: 12px; }

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .marquee-track { animation: none; }
}
.klant-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  background: var(--ct-white);
  border: 1px solid rgba(48, 22, 58, 0.07);
  border-radius: var(--ct-radius);
  font-family: var(--ct-font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ct-aubergine);
}
.klant-logo { height: 24px; width: auto; max-width: 140px; object-fit: contain; }
.klant-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--ct-muted);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.partner-logo { height: 30px; width: auto; max-width: 170px; object-fit: contain; margin-bottom: 12px; }

/* ---------- cards ---------- */
.card {
  background: var(--ct-white);
  border: 1px solid var(--ct-hairline);
  border-radius: var(--ct-radius);
  padding: 24px;
  height: 100%;
}
.card-honey { background: var(--ct-honey); border-color: rgba(48,22,58,0.06); }
.card-lila { background: var(--ct-lila); border-color: rgba(48,22,58,0.06); }
.card-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }
/* De kaart die in een tweeluik het antwoord is, niet de vergelijking. */
.card-featured { background: var(--ct-honey); border-color: rgba(104, 37, 119, 0.3); box-shadow: 0 2px 10px rgba(48,22,58,0.06); }
.card p { color: var(--ct-muted); font-size: 0.96rem; }
.card-dark p { color: var(--ct-lila); }
.card-icon {
  width: 38px; height: 38px; border-radius: var(--ct-radius);
  background: var(--ct-lila); color: var(--ct-violet);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-dark .card-icon { background: rgba(253,229,148,0.16); color: var(--ct-yellow); }
.card-icon svg { width: 20px; height: 20px; }
.card-link { display: inline-flex; gap: 6px; margin-top: 14px; font-size: 0.92rem; font-weight: 600; }

.tag {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  background: var(--ct-yellow);
  color: var(--ct-aubergine);
  font-size: 0.74rem; font-weight: 600;
  padding: 3px 12px;
}
.tag-soft { background: var(--ct-gray); color: var(--ct-muted); }
.tag-live { background: rgba(41,186,31,0.12); color: #1d7a17; }

/* ---------- phase tabs (voor / tijdens / na) ---------- */
.phase-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.phase-tab {
  font-family: var(--ct-font-body);
  font-size: 0.95rem; font-weight: 600;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(48,22,58,0.55);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 0;
}
.phase-tab .phase-num { color: var(--ct-violet); margin-right: 8px; font-weight: 600; }
.phase-tab[aria-selected="true"] { color: var(--ct-aubergine); border-bottom-color: var(--ct-yellow); }
.section-dark .phase-tab { color: rgba(225,216,236,0.6); }
.section-dark .phase-tab[aria-selected="true"] { color: var(--ct-white); }
.section-dark .phase-tab .phase-num { color: var(--ct-yellow); }
.phase-panel { display: none; }
.phase-panel.is-active { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 48px; align-items: center; }
.phase-list { list-style: none; margin: 20px 0 0; padding: 0; }
.phase-list li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ct-muted); font-size: 0.98rem; }
.section-dark .phase-list li { color: var(--ct-lila); }
.phase-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; border-radius: 2px; background: var(--ct-yellow);
}

/* ---------- product mockup ---------- */
.mock {
  border: 1px solid rgba(48,22,58,0.1);
  border-radius: var(--ct-radius);
  background: var(--ct-white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(48,22,58,0.08);
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--ct-gray);
  border-bottom: 1px solid var(--ct-hairline);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: #d8d8dd; }
.mock-url {
  margin-left: 8px; font-size: 0.72rem; color: var(--ct-muted);
  background: var(--ct-white); border-radius: var(--ct-radius);
  padding: 3px 12px; flex: 1;
}
.mock-body { display: grid; grid-template-columns: 168px minmax(0, 1fr); min-height: 330px; }
/* In de hero is het scherm het kader waarin het paneel ligt: het moet dus net
   iets hoger zijn dan het paneel, anders hangt het paneel er onderuit. */
/* Het scherm is nu net hoog genoeg voor de cijfers. Connect is korter dan dat
   scherm en hangt er onderuit, zodat de bovenste rijen vrij blijven. */
.hero-mock .mock { width: min(306px, 100%); }
.hero-mock .mock-body { min-height: 372px; }
/* In de hero krimpt de navigatie tot een strook: de cijfers moeten de ruimte
   krijgen, want die zijn waar het om draait. Connect legt zich rechtsonder
   over het scherm en laat de linkerkolom met de posten vrij. */
.hero-mock .mock-body { grid-template-columns: 34px minmax(0, 1fr); }
.hero-mock .mock-side { padding: 14px 0; }
.hero-mock .mock-navitem { justify-content: center; padding: 8px 0; font-size: 0; gap: 0; }
.hero-mock .mock-main { padding: 14px 14px; }
/* Clara staat in de hero op één regel: het paneel moet korter blijven dan het
   scherm eronder, anders zijn de cijfers niet meer te zien. */
.hero-panel .clara-card { align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-panel .clara-avatar { width: 30px; height: 30px; flex-basis: 30px; font-size: 0.85rem; }
.hero-panel .clara-name { display: none; }
.hero-panel .clara-says { font-size: 0.82rem; }
.hero-panel .connect-panel-body { padding: 11px 13px 12px; }
.mock-side { background: var(--ct-aubergine); padding: 16px 12px; }
.mock-side img { height: 22px; width: auto; margin: 4px 6px 18px; }
.mock-navitem {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.82);
  padding: 7px 10px; border-radius: var(--ct-radius); margin-bottom: 2px;
}
.mock-navitem.is-active { background: var(--ct-yellow); color: var(--ct-aubergine); font-weight: 600; }
.mock-navitem .mock-navdot { width: 6px; height: 6px; border-radius: 2px; background: currentColor; opacity: 0.7; }
.mock-main { padding: 18px 20px; background: var(--ct-white); }
.mock-sidebrand {
  display: block; background: var(--ct-white); border-radius: var(--ct-radius);
  padding: 6px 10px; margin: 2px 4px 16px; width: fit-content;
}
.mock-sidebrand img { height: 13px; width: auto; display: block; }
.mock-period { font-family: var(--ct-font-body); font-size: 0.72rem; font-weight: 400; color: var(--ct-muted); }
.mock-figs { width: 100%; border-collapse: collapse; font-size: 0.8rem; font-variant-numeric: tabular-nums; }
.mock-figs th {
  font-family: var(--ct-font-body); font-size: 0.68rem; font-weight: 600;
  color: var(--ct-muted); text-align: right; padding: 0 0 8px; border-bottom: 1px solid var(--ct-hairline);
}
.mock-figs th:first-child { text-align: left; }
.mock-figs td:first-child { width: 40%; }
/* Het bedrag moet volledig binnen het zichtbare deel vallen; wat het paneel
   afdekt is de kolom met het verschil, niet een half getal. */
.hero-mock .mock-figs td:nth-child(2), .hero-mock .mock-figs th:nth-child(2) { width: 26%; }
.mock-figs td { padding: 9px 0; border-bottom: 1px solid var(--ct-hairline); text-align: right; }
.mock-figs td:first-child { text-align: left; color: var(--ct-muted); }
.mock-figs tbody tr:last-child td { border-bottom: none; font-weight: 600; }
.mock-figs .is-up { color: #1d7a17; }
.mock-figs .is-down { color: var(--ct-red); }
.mock-h {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ct-font-display); font-size: 0.98rem; font-weight: 500;
  margin-bottom: 14px;
}
.mock-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--ct-hairline); border-radius: var(--ct-radius);
  padding: 11px 14px; margin-bottom: 8px; background: var(--ct-white);
}
.mock-row-title { font-size: 0.85rem; font-weight: 600; }
.mock-row-meta { font-size: 0.74rem; color: var(--ct-muted); }
.mock-pill { font-size: 0.68rem; border-radius: 999px; padding: 2px 10px; background: var(--ct-lila); color: var(--ct-violet); font-weight: 600; white-space: nowrap; }
.mock-pill-yellow { background: var(--ct-yellow); color: var(--ct-aubergine); }
.mock-pill-green { background: rgba(41,186,31,0.13); color: #1d7a17; }
.mock-note { font-size: 0.74rem; color: var(--ct-muted); margin-top: 12px; }
.mock-source { display: inline-flex; gap: 6px; font-size: 0.66rem; color: var(--ct-violet); background: var(--ct-gray); border-radius: 999px; padding: 2px 9px; }

/* ---------- Clara ---------- */
.clara-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #FDE594 0%, #E1D8EC 100%);
  font-family: var(--ct-font-display);
  font-size: 1.05rem;
  color: var(--ct-violet);
}
/* Staat er nog geen tekening van Clara, dan blijft de merkcirkel met de C staan. */
.clara-avatar::before { content: "C"; }
.clara-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clara-avatar-lg { width: 72px; height: 72px; flex-basis: 72px; font-size: 1.7rem; }

.clara-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--ct-white);
  border: 1px solid rgba(48, 22, 58, 0.08);
  border-radius: var(--ct-radius);
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(48, 22, 58, 0.14);
}
.clara-name {
  font-family: var(--ct-font-body);
  font-size: 0.74rem; font-weight: 600;
  color: var(--ct-violet);
  display: block; margin-bottom: 3px;
}
.clara-says { font-size: 0.86rem; line-height: 1.45; color: var(--ct-aubergine); margin: 0; }

/* de balk die tijdens het gesprek bovenaan het scherm loopt */
.connect-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ct-aubergine);
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  box-shadow: 0 8px 24px rgba(48, 22, 58, 0.26);
}
.connect-chevron { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.connect-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.22); }
.connect-title {
  flex: 1;
  background: var(--ct-yellow);
  color: var(--ct-aubergine);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connect-icon { color: rgba(255,255,255,0.75); display: inline-flex; }
.connect-icon svg { width: 16px; height: 16px; }
.connect-time { color: var(--ct-white); font-size: 0.8rem; font-variant-numeric: tabular-nums; }
.connect-rec {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ct-yellow);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 2px;
}
.connect-rec span {
  display: block; width: 2px; border-radius: 1px; background: var(--ct-violet);
}
.connect-rec span:nth-child(1) { height: 7px; animation: ct-rec 1.1s ease-in-out -0.2s infinite; }
.connect-rec span:nth-child(2) { height: 13px; animation: ct-rec 0.9s ease-in-out -0.6s infinite; }
.connect-rec span:nth-child(3) { height: 9px; animation: ct-rec 1.3s ease-in-out -0.4s infinite; }
.connect-rec span:nth-child(4) { height: 14px; animation: ct-rec 1s ease-in-out -0.8s infinite; }
/* Vier balkjes die niet in de pas lopen: zo leest het als een lopende opname
   in plaats van als een knipperlicht. */
@keyframes ct-rec {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .connect-rec span { animation: none; }
}

/* connect overlay mockup */
.mock-overlay {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 12px; width: min(430px, 84%);
  background: var(--ct-aubergine); color: var(--ct-white);
  border-radius: var(--ct-radius); padding: 12px 14px;
  box-shadow: 0 8px 24px rgba(48,22,58,0.28);
}
.mock-overlay-h { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; color: var(--ct-yellow); margin-bottom: 8px; }
.mock-overlay-item { display: flex; gap: 8px; font-size: 0.78rem; color: var(--ct-lila); margin-bottom: 5px; align-items: flex-start; }
.mock-overlay-item .check { color: var(--ct-yellow); }
/* hero variant: floats over the bottom-left corner instead of covering the frame */
.mock-overlay.mock-overlay-float {
  top: auto;
  bottom: -48px;
  left: -30px;
  transform: none;
  width: min(340px, 76%);
}
.mock-wrap { position: relative; }

/* De balk, Clara en haar invoerveld vormen één paneel: de aubergine kop loopt
   door in het witte lijf eronder, zodat het als één oppervlak leest. */
.connect-panel {
  background: var(--ct-white);
  border: 1px solid rgba(48, 22, 58, 0.1);
  border-radius: var(--ct-radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(48, 22, 58, 0.2);
}
.connect-panel .connect-bar {
  border-radius: 0;
  box-shadow: none;
  padding: 10px 12px 10px 14px;
}
.connect-panel-body { padding: 12px 14px 14px; }
.connect-panel .clara-card {
  border: none; box-shadow: none; padding: 0; margin-bottom: 11px;
}
.clara-checklist {
  background: var(--ct-honey);
  border: 1px solid rgba(48, 22, 58, 0.08);
  border-radius: var(--ct-radius);
  padding: 9px 11px 8px;
  margin-bottom: 10px;
  display: grid;
  gap: 7px;
}
.ck-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ck-head-title {
  font-family: var(--ct-font-body);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--ct-aubergine);
}
.ck-count { font-size: 0.7rem; color: var(--ct-muted); font-variant-numeric: tabular-nums; }
.ck-progress {
  height: 4px; border-radius: 999px; overflow: hidden;
  background: rgba(48, 22, 58, 0.12);
  margin-top: -3px;
}
.ck-progress span { display: block; height: 100%; border-radius: 999px; background: var(--ct-violet); }

.ck-item { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 9px; align-items: start; }
.ck-mark {
  width: 16px; height: 16px; margin-top: 1px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(104, 37, 119, 0.45);
  background: var(--ct-white);
  font-size: 0.6rem; line-height: 1; color: transparent;
}
.ck-item.is-done .ck-mark { background: var(--ct-violet); border-color: var(--ct-violet); color: var(--ct-white); }
.ck-title { display: block; font-size: 0.8rem; font-weight: 600; line-height: 1.3; color: var(--ct-violet); }
.ck-item.is-open .ck-title { font-weight: 400; }
/* De groene bevestiging staat in het product naast het punt zodra het behandeld is. */
.ck-badge {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 4px;
  border: 1px solid rgba(41, 186, 31, 0.5);
  border-radius: 999px;
  background: var(--ct-white);
  padding: 1px 8px;
  font-size: 0.62rem; font-weight: 600; color: #1d7a17;
}
.ck-note { display: block; font-size: 0.74rem; color: var(--ct-muted); line-height: 1.4; margin-top: 4px; }
/* Waar een klaargezet punt vandaan komt. Klein, want het is een voetnoot bij
   het punt zelf — maar het moet er staan, anders is het zomaar een lijstje. */
.ck-from { display: block; font-size: 0.68rem; color: var(--ct-muted); margin-top: 2px; }
.ck-meta { display: inline-flex; align-items: center; gap: 6px; margin-top: 5px; }
.ck-src {
  display: inline-flex; align-items: center;
  background: var(--ct-white); border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.62rem; color: var(--ct-violet);
}
.ck-src img { height: 11px; width: auto; max-width: 64px; object-fit: contain; }
.ck-more {
  display: block; text-align: center;
  border-top: 1px solid rgba(48, 22, 58, 0.08);
  padding-top: 8px; margin-top: -1px;
  font-size: 0.72rem; color: var(--ct-violet);
}

.clara-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--ct-hairline);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  font-size: 0.82rem;
  color: rgba(48, 22, 58, 0.45);
}
.clara-typed { color: var(--ct-aubergine); }
.clara-send {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--ct-violet);
  color: var(--ct-white);
  display: inline-flex; align-items: center; justify-content: center;
}
.clara-send svg { width: 14px; height: 14px; }

/* in de hero zweeft het paneel gecentreerd over de onderrand van het scherm */
/* Connect ligt als een losse laag op het scherm van de klant: naar rechts
   geschoven en met een diepere schaduw, zodat je ziet dat het erbovenop komt en
   de cijfers eronder zichtbaar blijven. */
.hero-panel {
  position: absolute;
  top: 50%; right: 0; bottom: auto; left: auto;
  transform: translateY(-50%);
  width: min(376px, 96%);
  box-shadow: 0 20px 48px rgba(48, 22, 58, 0.3);
  z-index: 2;
}
@media (max-width: 560px) {
  .hero-panel { position: static; transform: none; width: 100%; margin-top: 16px; }
  .hero-mock { padding-bottom: 0 !important; }
}

/* ---------- integration board ---------- */
.integration-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.integration-card {
  border: 1px solid var(--ct-hairline); border-radius: var(--ct-radius);
  background: var(--ct-white); padding: 20px;
}
.integration-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.integration-card p { font-size: 0.88rem; color: var(--ct-muted); margin: 0; }
.integration-card .tag { margin-bottom: 14px; }
.flow-line { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--ct-muted); margin-top: 12px; }
.flow-line strong { color: var(--ct-aubergine); font-weight: 600; }

/* ---------- stat / outcome ---------- */
.stat { border-left: 2px solid var(--ct-yellow); padding-left: 18px; }
.stat-value { font-family: var(--ct-font-display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 500; line-height: 1; margin-bottom: 8px; display: block; }
.stat-value.is-text { font-size: clamp(1.5rem, 2vw, 1.8rem); line-height: 1.15; }
.stat-label { font-size: 0.92rem; color: var(--ct-muted); }
.section-dark .stat-label { color: var(--ct-lila); }

/* ---------- steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: start; }
.step-num {
  width: 34px; height: 34px; border-radius: var(--ct-radius);
  background: var(--ct-violet); color: var(--ct-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ct-font-display); font-size: 0.95rem;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--ct-muted); font-size: 0.95rem; margin: 0; }

/* ---------- quote ---------- */
.quote {
  background: var(--ct-honey);
  border-radius: var(--ct-radius);
  padding: 32px;
  border: 1px solid rgba(48,22,58,0.06);
}
.quote blockquote { margin: 0 0 16px; font-family: var(--ct-font-display); font-size: 1.28rem; line-height: 1.4; font-weight: 500; }
.quote-meta { display: flex; align-items: center; gap: 12px; font-size: 0.86rem; color: var(--ct-muted); }
.quote-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ct-violet); color: var(--ct-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ct-font-display); font-size: 0.95rem;
}

/* ---------- comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--ct-hairline); border-radius: var(--ct-radius); }
table.ct-table { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 0.92rem; }
table.ct-table th {
  background: var(--ct-violet); color: var(--ct-white);
  text-align: left; font-family: var(--ct-font-body); font-weight: 600;
  padding: 12px 16px;
}
table.ct-table td { padding: 12px 16px; border-bottom: 1px solid var(--ct-hairline); vertical-align: top; }
table.ct-table tbody tr:nth-child(even) { background: var(--ct-gray); }
table.ct-table tbody tr:last-child td { border-bottom: none; }

/* ---------- faq ---------- */
.faq-item { border-bottom: 1px solid var(--ct-hairline); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 0;
  font-family: var(--ct-font-display); font-size: 1.08rem; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--ct-violet); font-size: 1.3rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: var(--ct-muted); padding-bottom: 20px; margin: 0; max-width: 62em; }

/* ---------- cta band ---------- */
.cta-band { background: var(--ct-aubergine); color: var(--ct-white); border-radius: var(--ct-radius); padding: 56px 48px; position: relative; overflow: hidden; }
.cta-band h2 { color: var(--ct-white); }
.cta-band p { color: var(--ct-lila); max-width: 46em; }
.cta-band-orb {
  position: absolute; right: -140px; bottom: -220px; width: 520px; height: 520px; pointer-events: none;
  background: radial-gradient(circle, rgba(253,229,148,0.22) 0%, transparent 62%);
}
.cta-band-inner { position: relative; }

/* ---------- registratie ---------- */
/* De demo blijft bestaan, maar staat als tekstlijn onder de knop die rechtstreeks
   naar de registratie gaat. */
.section-note { font-size: 0.88rem; color: var(--ct-muted); max-width: 62em; }
/* De regel die vertelt wat er gebeurt als je op de knop drukt. Staat er vlak
   onder, want daar aarzelt iemand. */
.cta-micro { margin-top: 14px; font-size: 0.9rem; color: var(--ct-muted); max-width: 40em; }

/* Drie redenen naast elkaar, zonder kaderlijn: het gaat om de uitkomst, niet om
   een blokje meer op de pagina. */
.reason { border-top: 2px solid var(--ct-violet); padding-top: 16px; }
.reason-num {
  display: block; font-family: var(--ct-font-body); font-size: 0.72rem; font-weight: 700;
  color: var(--ct-violet); letter-spacing: 0.06em; margin-bottom: 8px;
}
.reason h3 { font-size: 1.05rem; line-height: 1.3; margin-bottom: 10px; }
.reason p { color: var(--ct-muted); font-size: 0.94rem; }
.btn-row-note { margin-top: 14px; font-size: 0.88rem; color: var(--ct-muted); }
.btn-row-note a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.cta-band .btn-row-note { color: var(--ct-lila); }
.cta-band .btn-row-note a { color: var(--ct-yellow); }

.start-card .btn-block { margin-top: 20px; }
.start-list { list-style: none; margin: 18px 0 0; padding: 0; font-size: 0.9rem; color: var(--ct-muted); }
.start-list li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.start-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; color: var(--ct-violet); font-weight: 600;
}
.start-split { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--ct-hairline); }
.start-split h4 { margin-bottom: 8px; }
.start-split p { font-size: 0.9rem; color: var(--ct-muted); margin-bottom: 8px; }

/* ---------- form ---------- */
.form-card { background: var(--ct-white); border: 1px solid var(--ct-hairline); border-radius: var(--ct-radius); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--ct-white);
  border: 1px solid var(--ct-hairline);
  border-radius: var(--ct-radius);
  padding: 11px 14px;
  font-family: var(--ct-font-body); font-size: 0.95rem; color: var(--ct-aubergine);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(48,22,58,0.45); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ct-violet); }
.field-hint { font-size: 0.78rem; color: var(--ct-muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

/* ---------- pricing ---------- */
.price-card { border: 1px solid var(--ct-hairline); border-radius: var(--ct-radius); padding: 28px; background: var(--ct-white); display: flex; flex-direction: column; height: 100%; }
.price-card.is-featured { border-color: var(--ct-violet); background: var(--ct-honey); }
.price-value { font-family: var(--ct-font-display); font-size: 2.1rem; font-weight: 500; line-height: 1; margin: 14px 0 4px; }
.price-unit { font-size: 0.82rem; color: var(--ct-muted); margin-bottom: 20px; }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; }
.price-list li { position: relative; padding-left: 24px; font-size: 0.92rem; color: var(--ct-muted); margin-bottom: 9px; }
.price-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--ct-violet); font-weight: 700; }
.price-card .btn { margin-top: auto; }
.price-per { font-family: var(--ct-font-body); font-size: 0.9rem; font-weight: 400; color: var(--ct-muted); margin-left: 4px; }

/* jaarlijks of maandelijks */
.billing-toggle { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.billing-option {
  font-family: var(--ct-font-body); font-size: 0.9rem; font-weight: 600;
  background: var(--ct-gray); color: rgba(48,22,58,0.6);
  border: 1px solid transparent; border-radius: var(--ct-radius);
  padding: 8px 16px; cursor: pointer;
}
.billing-option.is-active { background: var(--ct-white); border-color: var(--ct-violet); color: var(--ct-aubergine); }
.viewer-price { text-align: right; }
@media (max-width: 720px) { .viewer-price { text-align: left; } }

.billing-badge {
  display: inline-block;
  background: var(--ct-yellow); color: var(--ct-aubergine);
  border-radius: 999px; padding: 2px 10px;
  font-size: 0.74rem; font-weight: 600; margin-left: 8px;
}
.billing-note { font-size: 0.82rem; color: var(--ct-violet); margin-left: 4px; }

/* vergelijkingstabel met blokken */
.ct-table-compare td:not(:first-child) { text-align: center; white-space: nowrap; }
.ct-table-compare th:not(:first-child) { text-align: center; }
.ct-table-compare .row-group td {
  background: var(--ct-lila); color: var(--ct-aubergine);
  font-family: var(--ct-font-display); font-weight: 500; font-size: 0.95rem;
  text-align: left;
}
.ct-table-compare tbody tr.row-group:nth-child(even) td { background: var(--ct-lila); }
.ct-table-compare .is-off { color: rgba(48,22,58,0.35); }
.ct-table-compare .cell-note { font-size: 0.78rem; color: var(--ct-muted); }

/* ---------- sticky mobile cta ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--ct-white); border-top: 1px solid var(--ct-hairline);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none; gap: 10px; align-items: center;
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--ct-aubergine); color: var(--ct-lila); padding: 36px 0 18px; }
.footer-grid { display: grid; grid-template-columns: auto repeat(4, minmax(0, 1fr)); gap: 24px 32px; align-items: start; }
.site-footer img.footer-logo { height: 26px; width: auto; }
.site-footer h4 { color: var(--ct-white); font-family: var(--ct-font-body); font-size: 0.76rem; font-weight: 600; margin: 0 0 8px; letter-spacing: 0.04em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 4px; }
.site-footer a { color: rgba(225,216,236,0.85); font-size: 0.84rem; line-height: 1.5; }
.site-footer a:hover { color: var(--ct-yellow); text-decoration: none; }
.footer-bottom {
  margin-top: 28px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(225,216,236,0.6);
}
.footer-bottom a { font-size: 0.78rem; color: rgba(225,216,236,0.6); }

/* ---------- reveal on scroll ---------- */
/* Standaard zichtbaar. Alleen wanneer javascript draait, verbergen we even om
   te laten inkomen — anders blijft inhoud onzichtbaar als het script faalt. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .phase-panel.is-active { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .header-nav {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--ct-white); border-bottom: 1px solid var(--ct-hairline);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 16px;
  }
  .header-nav.is-open { display: flex; }
  .header-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--ct-hairline); }
  .header-nav a:last-child { border-bottom: none; }
  .header-cta .btn-text { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { margin-left: 12px; }
  .header-cta .btn { white-space: nowrap; font-size: 0.85rem; padding: 8px 16px; }
  .header-cta-alt { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .cta-band { padding: 36px 24px; }
  .mock-body { grid-template-columns: minmax(0, 1fr); }
  .mock-side { display: flex; gap: 6px; overflow-x: auto; padding: 10px; }
  .mock-side img { display: none; }
  .mock-navitem { white-space: nowrap; margin-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
}

/* ---------- Claritalk Desktop: één vraag over systemen en gesprekken ---------- */
.ask { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 20px; align-items: start; }
.ask-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--ct-white); border-radius: 999px;
  padding: 14px 14px 14px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.ask-q { flex: 1; font-size: 0.98rem; color: var(--ct-aubergine); }
.ask-send {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
  background: var(--ct-violet); color: var(--ct-white);
  display: inline-flex; align-items: center; justify-content: center;
}
.ask-send svg { width: 16px; height: 16px; }
.ask-answer {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ct-radius);
  padding: 20px 22px;
}
.ask-answer p { color: var(--ct-white); font-size: 0.96rem; line-height: 1.6; margin: 0; }
.ask-srcs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ask-src {
  display: inline-flex; align-items: center;
  background: var(--ct-white); border-radius: 999px;
  padding: 4px 11px; font-size: 0.7rem; color: var(--ct-violet);
}
.ask-src img { height: 12px; width: auto; max-width: 72px; object-fit: contain; }

.ask-side {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ct-radius);
  padding: 22px;
}
.ask-side h3 { color: var(--ct-white); margin-bottom: 14px; font-size: 1rem; }
.ask-examples { list-style: none; margin: 0; padding: 0; }
.ask-examples li {
  font-size: 0.88rem; color: var(--ct-lila); line-height: 1.45;
  padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ask-examples li:last-child { border-bottom: none; }
.ask-note { margin-top: 14px; font-size: 0.8rem; color: rgba(225, 216, 236, 0.75); }

.ask-status {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 28px; font-size: 0.9rem; color: var(--ct-lila); max-width: 70em;
}
.tag-soon { background: var(--ct-yellow); color: var(--ct-aubergine); flex: 0 0 auto; }

@media (max-width: 900px) {
  .ask { grid-template-columns: minmax(0, 1fr); }
  .ask-status { flex-direction: column; gap: 8px; }
}
