/* ============================================================
   Roeping — informatieve website
   Stijl overgenomen van de Roeping-app (Outfit, warm canvas,
   oranje accent, open-O merkteken).
   ============================================================ */
:root {
  --ink:          #2b3a42;
  --body:         #5b666c;
  --canvas:       #ece8df;
  --paper:        #ffffff;
  --paper-alt:    #f4efe5;
  --muted:        #8a8f8c;
  --line:         #e3dccd;

  --accent:       #ec7a47;
  --accent-soft:  #f7e7d9;
  --accent-strong:#d9612f;
  --accent-ink:   #ffffff;

  --teal:         #5f8497;
  --teal-soft:    #e7eef0;
  --gold:         #a98e63;

  --shadow-card:       0 6px 26px rgba(43, 58, 66, .07);
  --shadow-card-hover: 0 14px 34px rgba(43, 58, 66, .13);

  --radius:    16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1160px;
  --font: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
svg { display: block; }
a { color: inherit; text-decoration: none; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

h1, h2, h3, h4 { color: var(--ink); margin: 0; line-height: 1.14; letter-spacing: -.01em; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.12rem; font-weight: 600; }
p { margin: 0; }

/* ---------- merkteken: woordmerk 'roeping' met open O ---------- */
.brand-logo {
  display: inline-flex; align-items: baseline; white-space: nowrap;
  font-weight: 600; letter-spacing: -.01em; line-height: 1;
}
.brand-logo__o { height: .62em; width: .62em; margin: 0 .01em; transform: translateY(.05em); overflow: visible; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--accent); color: var(--accent-ink);
  font-family: inherit; font-weight: 600; font-size: .95rem;
  padding: .72em 1.3em; border-radius: var(--radius-sm); border: 0; cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 6px 18px -8px rgba(217, 97, 47, .55);
}
.btn:hover { background: var(--accent-strong); transform: translateY(-2px); }
.btn-lg { padding: .85em 1.5em; font-size: 1rem; }
.btn-sm { padding: .5em 1em; font-size: .86rem; }
.btn-ghost { background: var(--paper); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn-ghost:hover { background: var(--paper-alt); border-color: var(--ink); color: var(--ink); }
.btn-on-dark { background: var(--accent); }
.btn-light { background: var(--paper); color: var(--ink); box-shadow: 0 10px 26px -12px rgba(0,0,0,.4); }
.btn-light:hover { background: var(--paper-alt); }

/* ---------- header (donker, zoals de app) ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); border-bottom: 1px solid var(--ink); }
.header-inner { display: flex; align-items: center; gap: 28px; min-height: 68px; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; color: #fff; font-size: 1.6rem; }
.nav { display: flex; gap: 22px; margin-left: 18px; }
.nav a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.72); padding-bottom: 2px; transition: color .18s; }
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; border-bottom: 2px solid var(--accent); }
.header-cta { margin-left: auto; }
.header-cta .btn { padding: .55em 1.1em; font-size: .88rem; box-shadow: none; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(46px, 6vw, 84px) 0 clamp(52px, 7vw, 92px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(54% 46% at 80% 6%, rgba(236,122,71,.13), transparent 60%),
    radial-gradient(46% 40% at 6% 92%, rgba(95,132,151,.12), transparent 60%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-strong); background: var(--accent-soft);
  padding: .42em .9em; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--accent); }
/* open-O uit het logo, op cap-hoogte in de titel */
.title-o { display: inline-block; width: .92em; height: .92em; vertical-align: baseline; transform: translateY(.1em); margin: 0 .01em; overflow: visible; }
.lead { font-size: 1.1rem; color: var(--body); max-width: 36ch; margin-top: 22px; }
.lead strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-values { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 0; list-style: none; padding: 0; }
.hero-values li {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em;
}
.hero-values .tick { color: var(--accent); display: inline-flex; }

/* ---------- chat mock (zoals de app-chat) ---------- */
.chat {
  position: relative; z-index: 1;
  background: var(--paper); border: 1px solid rgba(43,58,66,.1); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column;
}
.chat-head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid rgba(43,58,66,.1); }
.chat-head .spark { color: var(--accent); display: inline-flex; }
.chat-head b { font-size: .9rem; font-weight: 600; color: var(--ink); }
.chat-brand { font-size: 1.2rem; color: var(--ink); }
.chat-head small { display: block; font-size: .76rem; color: var(--muted); font-weight: 400; }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; min-height: 300px; max-height: 400px; overflow-y: auto; }
.chat-body::-webkit-scrollbar { width: 8px; }
.chat-body::-webkit-scrollbar-thumb { background: #ddd6c7; border-radius: 4px; }
.msg { max-width: 88%; padding: 9px 14px; border-radius: 16px; font-size: .9rem; line-height: 1.5; }
.msg.user { align-self: flex-end; background: var(--ink); color: var(--paper); }
.msg.bot { align-self: flex-start; background: var(--paper-alt); color: var(--ink); }
.job {
  border: 1px solid rgba(43,58,66,.1); border-radius: var(--radius-sm); padding: 12px 14px; background: var(--paper);
  box-shadow: 0 2px 8px rgba(43,58,66,.05); animation: pop .35s ease both;
}
.job-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.job-title { font-weight: 600; color: var(--ink); font-size: .92rem; }
.job-meta { font-size: .8rem; color: var(--muted); margin-top: 4px; display: flex; flex-wrap: wrap; gap: 4px 10px; }
.match { flex-shrink: 0; font-size: .74rem; font-weight: 600; padding: .18em .6em; border-radius: 999px; white-space: nowrap; }
.match--high { background: var(--accent); color: var(--accent-ink); }
.match--mid  { background: var(--accent-soft); color: var(--accent-strong); }
.match--low  { background: var(--paper-alt); color: var(--body); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(43,58,66,.1); }
.chat-input input {
  flex: 1; font: inherit; font-size: .9rem; color: var(--ink);
  border: 1px solid rgba(43,58,66,.15); border-radius: var(--radius-sm); padding: .6em 1em; background: var(--paper);
}
.chat-input input:focus { outline: none; border-color: rgba(43,58,66,.35); }
.chat-input button { display: grid; place-items: center; width: 42px; height: 40px; border: 0; border-radius: var(--radius-sm); background: var(--accent); color: #fff; cursor: pointer; transition: background .15s; }
.chat-input button:hover { background: var(--accent-strong); }
.demo-note { font-size: .76rem; color: var(--muted); text-align: center; margin: 16px 0 0; }
.typing { display: inline-flex; align-items: center; gap: 4px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #6b6b6b; display: inline-block; animation: dot 1.2s infinite ease-in-out; }
.typing i:nth-child(2){ animation-delay:.15s; } .typing i:nth-child(3){ animation-delay:.3s; }

/* ---------- dynamische hero-chat ---------- */
.hero-demo .gc-anim { background: transparent; box-shadow: none; max-width: 480px; margin-inline: auto; }
.gc-visual .chat { width: 100%; max-width: 440px; }
#heroChatBody { max-height: none; min-height: 380px; }
.hc-anim { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
.hc-anim.hc-in { opacity: 1; transform: none; }
.hc-caret { display: inline-block; width: 2px; height: 1.05em; background: #fff; margin-left: 2px; vertical-align: -2px; animation: hcBlink 1s steps(1) infinite; }
@keyframes hcBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.job.hc-anim .match { transform: scale(.6); opacity: 0; transition: transform .42s cubic-bezier(.34,1.56,.64,1) .1s, opacity .3s ease .1s; }
.job.hc-anim.hc-in .match { transform: scale(1); opacity: 1; }

/* ---------- sections ---------- */
.section { padding: clamp(54px, 7vw, 92px) 0; }
.section-alt { background: var(--paper-alt); }
.kicker { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-strong); margin-bottom: 14px; }
.section-lead { font-size: 1.06rem; color: var(--body); max-width: 62ch; margin: 16px auto 0; }
#wat .section-lead { margin-inline: 0; }

/* ---------- stappen (hoe werkt het) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 8px; }
.step-num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.step h3 { color: var(--ink); }
.step p { font-size: .92rem; color: var(--body); }
.step .ex { font-size: .86rem; color: var(--teal); background: var(--teal-soft); border-radius: var(--radius-sm); padding: 8px 11px; margin-top: 4px; }
.step .ex b { color: var(--ink); font-weight: 600; }

/* ---------- functie-kaarten ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.card {
  background: var(--paper); border: 1px solid rgba(43,58,66,.1); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-card-hover); }
.card-ico { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-strong); margin-bottom: 14px; }
.card h3 { margin-bottom: 7px; }
.card p { font-size: .9rem; color: var(--body); }

/* ---------- onder de motorkap ---------- */
.engine { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.engine-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-card); }
.engine-item .card-ico { background: var(--teal-soft); color: var(--teal); }
.engine-item h3 { margin-bottom: 8px; }
.engine-item p { font-size: .92rem; color: var(--body); }
.stack { margin-top: 34px; text-align: center; }
.stack p { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.stack-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.stack-tags li { list-style: none; font-size: .86rem; font-weight: 500; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .45em .95em; }

/* ---------- varianten ---------- */
.variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.variant { position: relative; background: var(--paper); border: 1px solid rgba(43,58,66,.1); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s; overflow: hidden; }
.variant:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.variant.is-default { border-color: var(--accent); }
.v-num { font-size: 1.9rem; font-weight: 700; color: var(--accent-soft); position: absolute; top: 14px; right: 18px; }
.is-default .v-num { color: var(--accent); opacity: .35; }
.variant h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.variant p { font-size: .9rem; color: var(--body); }
.badge { font-size: .66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-strong); background: var(--accent-soft); padding: .2em .6em; border-radius: 999px; }

/* ---------- cta band ---------- */
.cta-band { background: var(--ink); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band .section-lead { color: rgba(255,255,255,.82); }
.cta-band .btn-light { margin-top: 28px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 46px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.site-footer .brand { color: #fff; font-size: 1.4rem; }
.site-footer p { font-size: .9rem; }
.site-footer .muted { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ---------- sub-pagina kop-band ---------- */
.page-band { background: var(--paper-alt); border-bottom: 1px solid var(--line); padding: clamp(40px, 5vw, 64px) 0; }
.page-band .container { max-width: 820px; }
.page-band .kicker { margin-bottom: 12px; }
.page-band h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; }
.page-band .page-lead { font-size: 1.1rem; color: var(--body); max-width: 60ch; margin-top: 16px; }
.page-band .crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.page-band .crumbs a { color: var(--accent-strong); }
.page-band .crumbs a:hover { text-decoration: underline; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- animaties ---------- */
@keyframes pop { from { opacity: 0; transform: translateY(7px) scale(.99); } to { opacity: 1; transform: none; } }
@keyframes dot { 0%,60%,100% { opacity: .2; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

/* ============================================================
   Tweetaligheid, taalschakelaar, Why/How/What, B2B & demo's
   ============================================================ */

/* ---------- taal-zichtbaarheid (NL standaard) ---------- */
[data-lang="en"] { display: none; }
html[lang="en"] [data-lang="en"] { display: inline; }
html[lang="en"] [data-lang="nl"] { display: none; }
/* blok-varianten als een hele alinea/!lijst per taal verschilt */
[data-lang-block] { display: none; }
html[lang="nl"] [data-lang-block="nl"],
html[lang="en"] [data-lang-block="en"] { display: block; }

/* ---------- header-rechts + taalschakelaar ---------- */
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  font: inherit; font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  background: transparent; color: rgba(255,255,255,.7); border: 0; cursor: pointer;
  padding: .35em .7em; transition: background .15s, color .15s;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active { background: var(--accent); color: #fff; }
/* TIJDELIJK verborgen — taalschakelaar later weer aanzetten door deze regel te verwijderen. De tweetalige content blijft staan. */
.lang-switch { display: none; }
.header-cta-btn { box-shadow: none; padding: .55em 1.05em; font-size: .86rem; }
.site-header .nav { margin-left: 14px; }

/* ---------- Why / How / What (kerngedachte) ---------- */
/* Why / How / What — feature-rijen met visual + tekst */
.gc-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(24px, 4vw, 52px); align-items: center; margin-top: 40px; }
.gc-row.rev { grid-template-columns: 1.08fr 0.92fr; }
.gc-visual { display: flex; justify-content: center; }
.gc-anim, .gc-pic { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1 / 1; border-radius: var(--radius); background: var(--canvas); overflow: hidden; box-shadow: var(--shadow-card); }
.gc-anim svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.gc-pic { display: flex; align-items: center; justify-content: center; padding: clamp(24px, 8%, 46px); }
/* semantic-search animatie (HOW) */
.semantic-anim { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1 / 1; margin: 0 auto; overflow: hidden; border-radius: 18px; border: 1px solid #dbd3c4; background: radial-gradient(125% 95% at 100% 0%, rgba(245,222,204,.75), rgba(234,228,217,0) 55%), #eae4d9; box-shadow: var(--shadow-card); }
.sa-canvas { position: absolute; left: 0; top: 0; width: 1080px; height: 1080px; transform-origin: 0 0; font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif; }
.gc-copy h3 { font-size: 1.45rem; margin: 10px 0 12px; }
.gc-copy p { font-size: 1.02rem; color: var(--body); }

/* mini-mocks in de How/What panelen */
.gc-pic .mock { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.mock-bubble { align-self: flex-start; background: var(--ink); color: #fff; border-radius: 16px; border-bottom-left-radius: 5px; padding: 10px 15px; font-size: .92rem; max-width: 92%; line-height: 1.4; }
.mock-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mock-chip { background: var(--teal-soft); color: var(--teal); border-radius: 999px; padding: .4em .8em; font-size: .82rem; }
.mock-chip b { color: var(--ink); font-weight: 600; }
.mock-job { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; box-shadow: 0 3px 12px rgba(43,58,66,.06); }
.mock-title { font-weight: 600; color: var(--ink); font-size: .92rem; }
.mock-match { font-size: .78rem; font-weight: 700; padding: .2em .6em; border-radius: 999px; white-space: nowrap; }
.mock-match.high { background: var(--accent); color: #fff; }
.mock-match.mid { background: var(--accent-soft); color: var(--accent-strong); }
.mock-match.low { background: var(--paper-alt); color: var(--body); }
.gc-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-card); }
.gc-card.is-why { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(236,122,71,.25), var(--shadow-card); }
.gc-label { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-strong); background: var(--accent-soft); padding: .38em .85em; border-radius: 999px; margin-bottom: 18px; }
.is-how .gc-label { color: var(--teal); background: var(--teal-soft); }
.is-what .gc-label { color: var(--gold); background: #f0e8d6; }
.gc-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.gc-card p { font-size: .96rem; color: var(--body); }
.gc-card p + p { margin-top: 10px; }

/* ---------- twee doelgroepen ---------- */
.audience { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; margin-top: 44px; }
.audience-2 { grid-template-columns: 1fr 1fr; }
.audience-mark { display: flex; align-items: center; justify-content: center; color: var(--accent); }
.audience-mark svg { width: 64px; height: 64px; overflow: visible; }
.aud-card { border-radius: var(--radius); padding: 30px 28px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.aud-card.b2c { background: var(--paper); }
.aud-card.b2b { background: var(--teal-soft); border-color: #cfe0e4; }
.aud-tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3em .8em; border-radius: 999px; margin-bottom: 14px; }
.b2c .aud-tag { color: var(--accent-strong); background: var(--accent-soft); }
.b2b .aud-tag { color: var(--teal); background: #fff; }
.aud-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.aud-card p { color: var(--body); font-size: .98rem; margin-bottom: 18px; }
.aud-card .btn-ghost { background: var(--paper); }

/* ---------- B2B / contact band ---------- */
.b2b-band { background: var(--ink); color: #fff; }
.b2b-band h2 { color: #fff; }
.b2b-band .section-lead { color: rgba(255,255,255,.82); }
.b2b-band .center .btn { margin-top: 34px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; margin-top: 36px; }
.contact-points { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.contact-points li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: .98rem; }
.contact-points .tick { color: var(--accent); flex-shrink: 0; }
.contact-card { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-lg, 0 20px 50px -20px rgba(0,0,0,.5)); }
.contact-card h3 { margin-bottom: 6px; }
.contact-card p { color: var(--body); font-size: .94rem; margin-bottom: 18px; }
.contact-field { margin-bottom: 14px; }
.contact-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.contact-field input, .contact-field textarea {
  width: 100%; font: inherit; font-size: .92rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .65em .9em; background: var(--paper-alt);
}
.contact-field input:focus, .contact-field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.contact-card .btn { width: 100%; justify-content: center; }
.contact-direct { margin-top: 16px; font-size: .9rem; color: var(--body); text-align: center; }
.contact-direct a { color: var(--accent-strong); font-weight: 600; }

/* ---------- demo-pagina ---------- */
.demo-block { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-card); margin-top: 28px; }
.demo-block + .demo-block { margin-top: 28px; }
.demo-head { margin-bottom: 22px; }
.demo-head .num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); font-weight: 700; margin-bottom: 12px; }
.demo-head h2 { font-size: 1.5rem; }
.demo-head p { color: var(--body); margin-top: 8px; max-width: 64ch; }
.demo-banner { display: flex; align-items: center; gap: 10px; background: var(--accent-soft); color: var(--accent-strong); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .9rem; font-weight: 500; }

/* chips (klikbare voorbeeldzinnen) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.chip { font: inherit; font-size: .86rem; color: var(--ink); background: var(--paper-alt); border: 1px solid var(--line); border-radius: 999px; padding: .45em .9em; cursor: pointer; transition: border-color .15s, color .15s, background .15s; }
.chip:hover { border-color: var(--accent); color: var(--accent-strong); }

/* herkende labels (Werk/Plek/Uren/Salaris) */
.extracted { margin-top: 14px; border-top: 1px dashed var(--line); padding-top: 14px; }
.extracted:empty { display: none; }
p[data-hint] { color: var(--muted); font-size: .9rem; }
.extracted-title { font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; background: var(--teal-soft); color: var(--teal); border-radius: 999px; padding: .35em .8em; animation: pop .35s ease both; }
.tag b { color: var(--ink); font-weight: 600; }
.tag .k { color: var(--teal); font-weight: 600; }

/* vergelijking exact vs betekenis */
.compare-pick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.compare-pick button { font: inherit; font-weight: 600; font-size: .9rem; color: var(--ink); background: var(--paper-alt); border: 1px solid var(--line); border-radius: 999px; padding: .5em 1.05em; cursor: pointer; transition: .15s; }
.compare-pick button:hover { border-color: var(--accent); }
.compare-pick button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-col { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.compare-col .col-head { padding: 12px 16px; font-size: .86rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.compare-col.old .col-head { background: var(--paper-alt); color: var(--muted); }
.compare-col.new .col-head { background: var(--accent-soft); color: var(--accent-strong); }
.compare-col .col-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; min-height: 120px; }
.cmp-item { font-size: .9rem; color: var(--ink); display: flex; flex-direction: column; gap: 2px; }
.cmp-item .also { font-size: .78rem; color: var(--teal); }
.cmp-item.extra { animation: pop .4s ease both; }
.cmp-empty { color: var(--muted); font-size: .88rem; font-style: italic; }

/* match-opbouw (percentage breakdown) */
.bd-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: start; }
.bd-score { text-align: center; background: var(--paper-alt); border-radius: var(--radius); padding: 26px; }
.bd-score .pct { font-size: 3.4rem; font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.bd-score .pct-label { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.bd-score .job-title { display: block; margin-top: 14px; font-weight: 600; color: var(--ink); }
.bd-score .job-sub { font-size: .84rem; color: var(--muted); }
.bd-rows { display: flex; flex-direction: column; gap: 14px; }
.bd-row { }
.bd-row .bd-top { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 5px; }
.bd-row .bd-name { font-weight: 600; color: var(--ink); }
.bd-row .bd-state { color: var(--muted); font-size: .84rem; }
.bd-track { height: 9px; background: var(--paper-alt); border-radius: 999px; overflow: hidden; }
.bd-fill { height: 100%; border-radius: 999px; background: var(--accent); transition: width .5s cubic-bezier(.2,.7,.2,1); }
.bd-fill.full { background: var(--accent); }
.bd-fill.part { background: var(--gold); }
.bd-fill.none { background: #d8d2c6; }
.bd-toggles { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.bd-toggles button { font: inherit; font-size: .84rem; font-weight: 500; color: var(--ink); background: var(--paper-alt); border: 1px solid var(--line); border-radius: 999px; padding: .4em .85em; cursor: pointer; transition: .15s; }
.bd-toggles button.on { background: var(--teal-soft); border-color: var(--teal); color: var(--teal); }

/* teaser-tegels op de homepagina */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.teaser { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s, border-color .2s; }
.teaser:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-card-hover); }
.teaser h3 { margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.teaser .arrow { color: var(--accent); transition: transform .2s; }
.teaser:hover .arrow { transform: translateX(4px); }
.teaser p { font-size: .92rem; color: var(--body); }

/* hero B2B-regel (CTA naar contact) */
.hero-b2b { margin-top: 18px; font-size: .92rem; color: var(--body); }
.hero-b2b a { color: var(--accent-strong); font-weight: 600; }
.hero-b2b a:hover { text-decoration: underline; }

/* knoppenrij in de doelgroepkaart */
.aud-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* "Gebruikt door"-strip (social proof) */
.usedby { padding: 30px 0; background: var(--canvas); border-bottom: 1px solid var(--line); }
.usedby .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.usedby-label { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.usedby-list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 40px; margin: 0; padding: 0; }
.usedby-list li { display: inline-flex; align-items: center; gap: 9px; font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); opacity: .82; }
.usedby-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; flex: 0 0 auto; }
.usedby-icon svg { width: 100%; height: 100%; display: block; }
.usedby-mask { background-color: currentColor; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .gc-row, .gc-row.rev, .audience, .contact-grid, .bd-layout, .compare, .teasers { grid-template-columns: 1fr; }
  .header-right { gap: 8px; }
}
@media (max-width: 560px) {
  .teasers { grid-template-columns: 1fr; }
}

/* ---------- oorspronkelijke responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead { max-width: none; }
  .steps, .cards { grid-template-columns: repeat(2, 1fr); }
  .engine, .variants { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; margin-left: 8px; background: none; border: 0; cursor: pointer; padding: 6px; }
  .nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }
  .nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 16px; background: var(--ink); padding: 18px 28px; margin: 0; border-bottom: 1px solid rgba(255,255,255,.1); z-index: 60; }
  .variants { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps, .cards { grid-template-columns: 1fr; }
  .hero-values { gap: 10px; }
  /* compacte header zodat brand + taal + 'Ga naar Roeping' + menu passen */
  .brand { font-size: 1.3rem; }
  .header-inner { gap: 10px; }
  .header-cta-btn { padding: .42em .7em; font-size: .76rem; }
  .lang-switch button { padding: .3em .55em; font-size: .76rem; }
  .usedby-list li { font-size: 1rem; }
}

/* ---------- mobiele fijnafstemming ---------- */
@media (max-width: 960px) {
  /* hero: ringanimatie boven de titel */
  .hero-demo { order: -1; }
  /* how: demo tussen de tekst en de 'Lees meer' knop */
  .is-how { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .is-how .gc-copy { display: contents; }
  .is-how .gc-label { order: 1; align-self: flex-start; }
  .is-how .gc-copy h3 { order: 2; }
  .is-how .gc-copy p { order: 3; }
  .is-how .gc-visual { order: 4; margin-top: 26px; }
  .is-how .gc-copy .btn { order: 5; align-self: flex-start; }
}
@media (max-width: 560px) {
  /* logo meer ruimte aan de linkerkant */
  .brand { padding-left: 12px; }
  /* 'gebruikt door' gecentreerd */
  .usedby .container { flex-direction: column; gap: 14px; }
  .usedby-list { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bd-fill { transition: none; }
}

/* accent-navlink (Voor recruiters / For recruiters) */
.nav a.nav-accent { color: var(--accent); font-weight: 600; }
.nav a.nav-accent:hover { color: #fff; }
.nav a.nav-accent.active { color: #fff; border-bottom-color: var(--accent); }
