/* ============================================================
   Jobit.nl - Refreshed website styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* ============================================================
   Channel logo tile — applied alongside any *-mk monogram class
   to swap the coloured square for a real jobboard logo.
   ============================================================ */
.brand-logo-tile {
  background: #fff !important;
  border-radius: var(--r-sm) !important;
  padding: 2px;
  overflow: hidden;
}
.brand-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--r-sm);
  display: block;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Density modes - controlled by Tweaks */
:root[data-density="cozy"] {
  --sec-pad-y: clamp(72px, 10vw, 140px);
  --sec-pad-x: clamp(20px, 5vw, 80px);
}
:root[data-density="airy"] {
  --sec-pad-y: clamp(96px, 12vw, 180px);
  --sec-pad-x: clamp(24px, 6vw, 96px);
}
:root[data-density="compact"] {
  --sec-pad-y: clamp(56px, 7vw, 96px);
  --sec-pad-x: clamp(16px, 4vw, 64px);
}

/* Default density */
:root {
  --sec-pad-y: clamp(72px, 10vw, 140px);
  --sec-pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1240px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--sec-pad-x);
  padding-right: var(--sec-pad-x);
  width: 100%;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(31,47,84,0.02), 0 8px 24px rgba(31,47,84,0.06);
}
.nav.is-mobile-open {
  background: var(--bg);
  border-bottom-color: var(--border);
  box-shadow: none;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--sec-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.nav-brand img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1 1 auto;
  justify-content: center;
}
.nav-links-menus { gap: 0; }
.nav-links a.link {
  color: var(--fg-strong);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav-links a.link:hover { background: var(--jobit-blue-50); color: var(--jobit-blue-700); text-decoration: none; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-cta .link-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jobit-blue-700);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  background: var(--jobit-blue-50);
  border: 1px solid var(--jobit-blue-100, rgba(54, 82, 142, 0.14));
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.nav-cta .link-quiet:hover {
  background: var(--bg);
  color: var(--jobit-blue-700);
  border-color: var(--jobit-blue-300, rgba(54, 82, 142, 0.32));
  text-decoration: none;
}
.nav-cta .btn { margin-left: 2px; }
.nav-cta .btn-primary {
  font-size: 13px;
  padding: 10px 14px;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--fg-strong);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 11px;
  border-radius: var(--r-pill);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-dropdown-btn:hover, .nav-dropdown.is-open .nav-dropdown-btn { background: var(--jobit-blue-50); color: var(--jobit-blue-700); }
.nav-dropdown-btn svg { transition: transform var(--dur-base) var(--ease-out); }
.nav-dropdown.is-open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.nav-mega-list {
  width: 320px;
  grid-template-columns: 1fr;
}
.nav-mega-list.is-two-col {
  width: 600px;
  grid-template-columns: 1fr 1fr;
}
.nav-dropdown:nth-child(1) .nav-mega,
.nav-dropdown:nth-child(2) .nav-mega {
  left: 0;
  transform: translateX(0) translateY(-6px);
}
.nav-dropdown:nth-child(5) .nav-mega,
.nav-dropdown:nth-child(6) .nav-mega {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-6px);
}
.nav-dropdown.is-open .nav-mega {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown:nth-child(1).is-open .nav-mega,
.nav-dropdown:nth-child(2).is-open .nav-mega,
.nav-dropdown:nth-child(5).is-open .nav-mega,
.nav-dropdown:nth-child(6).is-open .nav-mega {
  transform: translateX(0) translateY(0);
}
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: background var(--dur-fast) var(--ease-out);
}
.mega-item:hover { background: var(--jobit-blue-50); text-decoration: none; }
.mega-item-text { padding: 10px 12px; gap: 10px; align-items: flex-start; }
.mega-item-sub { padding-left: 30px; }
.mega-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.mega-mark-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--jobit-blue-300, #9bb2dc);
  margin-top: 8px;
  margin-left: 6px;
  margin-right: 2px;
}
.mega-item-text:hover .mega-mark-dot { background: var(--jobit-blue-600, #36528E); }
/* Sub-items get an open (hollow) dot instead of the parent's filled dot */
.mega-item-sub .mega-mark-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: transparent;
  border: 1.6px solid var(--jobit-blue-300, #9bb2dc);
  transform: none;
  margin-top: 8px;
  margin-left: 6px;
  margin-right: 2px;
}
.mega-item-sub.mega-item-text:hover .mega-mark-dot {
  background: transparent;
  border-color: var(--jobit-blue-600, #36528E);
}
.mega-mark-logo {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}
.mega-mark-logo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  display: block;
}
.mega-body { min-width: 0; }
.mega-title { font-weight: 700; color: var(--fg-strong); font-size: 14px; }
.mega-desc { font-size: 12px; color: var(--fg-muted); margin-top: 2px; line-height: 1.4; }

/* ---------- Hamburger toggle (hidden on desktop) ---------- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 2px;
  border: none;
  background: transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-toggle:hover { background: var(--jobit-blue-50); }
.nav-toggle-bars {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--fg-strong);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.is-mobile-open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-mobile-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.is-mobile-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer (hidden on desktop) ---------- */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}
.nav-mobile.is-open { visibility: visible; pointer-events: auto; }
.nav-mobile-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 48, 0.42);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.nav-mobile.is-open .nav-mobile-scrim { opacity: 1; }
.nav-mobile-panel {
  position: absolute;
  top: var(--nav-h, 64px);
  right: 0;
  height: calc(100% - var(--nav-h, 64px));
  width: min(420px, 90vw);
  background: var(--bg);
  box-shadow: -16px 0 48px rgba(15, 26, 48, 0.18);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 16px 18px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile.is-open .nav-mobile-panel { transform: translateX(0); }
.nav-mobile-menus { display: flex; flex-direction: column; flex-shrink: 0; }
.nav-m-group { border-bottom: 1px solid var(--border); }
.nav-m-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-strong);
  text-align: left;
}
.nav-m-head svg { color: var(--fg-muted); transition: transform var(--dur-base) var(--ease-out); flex-shrink: 0; }
.nav-m-group.is-open .nav-m-head { color: var(--jobit-blue); }
.nav-m-group.is-open .nav-m-head svg { transform: rotate(180deg); color: var(--jobit-blue); }
.nav-m-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.nav-m-group.is-open .nav-m-items { grid-template-rows: 1fr; }
.nav-m-items-inner { overflow: hidden; min-height: 0; }
.nav-m-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 6px 11px 16px;
  text-decoration: none;
  border-left: 2px solid var(--border);
  margin-left: 6px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-m-item:first-child { margin-top: 2px; }
.nav-m-item:last-child { margin-bottom: 14px; }
.nav-m-item:hover, .nav-m-item:active {
  border-left-color: var(--jobit-blue);
  background: var(--jobit-blue-50);
  text-decoration: none;
}
.nav-m-item.is-sub { margin-left: 22px; }
.nav-m-item-title { font-size: 15px; font-weight: 600; color: var(--fg-strong); letter-spacing: -0.005em; }
.nav-m-item-desc { font-size: 12.5px; line-height: 1.4; color: var(--fg-muted); }
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
  margin-top: 22px;
  padding-top: 4px;
}
.nav-mobile-cta .btn { width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.005em;
}
.btn svg { flex-shrink: 0; }
.btn:hover, .btn:focus { text-decoration: none; }
.btn-lg { font-size: 16px; padding: 15px 26px; }

.btn-primary { background: var(--jobit-blue); color: white; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--jobit-blue-600); color: white; transform: translateY(-1px); box-shadow: 0 14px 32px rgba(67,100,173,0.36); }
.btn-primary:active { transform: translateY(0); background: var(--jobit-blue-700); }

.btn-white { background: white; color: var(--jobit-blue-700); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--jobit-blue-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }

.btn-secondary {
  background: var(--jobit-blue-50);
  color: var(--jobit-blue-700);
  border-color: rgba(54, 82, 142, 0.14);
}
.btn-secondary:hover {
  background: var(--bg);
  color: var(--jobit-blue-700);
  border-color: rgba(54, 82, 142, 0.32);
}

.btn-ghost { background: transparent; color: var(--fg-strong); }
.btn-ghost:hover { background: var(--bg-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--sec-pad-y) + 40px);
  padding-bottom: var(--sec-pad-y);
  background: linear-gradient(180deg, #FCFDFF 0%, #F3F6FC 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-strong);
  box-shadow: var(--shadow-xs);
  margin-bottom: 28px;
}
a.hero-eyebrow-link {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
a.hero-eyebrow-link:hover {
  border-color: var(--jobit-blue-300, color-mix(in srgb, var(--jobit-blue-700) 35%, white));
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(46,157,111,0.18);
}
.hero-eyebrow-tag {
  background: var(--jobit-blue-50);
  color: var(--jobit-blue-700);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--jobit-blue);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 10px;
  background: var(--jobit-blue-100);
  z-index: -1;
  border-radius: 3px;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--jobit-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Hero visual - beeldmerk centerpiece with orbiting product marks */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-stage {
  position: relative;
  z-index: 2;
  width: 62%;
  aspect-ratio: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
}
.hero-beeldmerk {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Orbit rings (faint guides) */
.hero-orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed var(--jobit-blue-200);
  opacity: 0.55;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.hero-orbit-ring-1 { width: 74%; height: 74%; animation: spin 60s linear infinite; }
.hero-orbit-ring-2 { width: 100%; height: 100%; animation: spin 90s linear infinite reverse; opacity: 0.35; }
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbiting product marks */
.hero-orbiters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.hero-orbiter {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  cursor: default;
  transition: transform var(--dur-base) var(--ease-spring);
  will-change: transform;
  overflow: hidden;
}
.hero-orbiter img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  display: block;
}
.hero-orbiter::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  pointer-events: none;
}
.hero-orbiter:hover { transform: scale(1.1); }

/* Position the 6 marks around the cluster. Use top/left percentages. */
.ho-1 { top:  6%; left: 46%; animation: float 6s ease-in-out infinite; }
.ho-2 { top: 22%; left:  4%; animation: float 7s ease-in-out infinite -1s; }
.ho-3 { top: 20%; right: 2%; animation: float 7.5s ease-in-out infinite -2s; }
.ho-4 { bottom: 22%; left: -2%; animation: float 6.5s ease-in-out infinite -3s; }
.ho-5 { bottom: 18%; right: -2%; animation: float 8s ease-in-out infinite -4s; }
.ho-6 { bottom: 2%; left: 46%; animation: float 6s ease-in-out infinite -2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---- Hero hub variation: 8 products converge on the Jobit hub ---- */
.hero-visual-hub { overflow: visible; }
.hub-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.hub-lines path {
  stroke: var(--jobit-blue);
  stroke-width: 1.4;
  fill: none;
  opacity: 0.32;
  stroke-dasharray: 4 4;
}
.hub-packet {
  fill: var(--jobit-blue);
  filter: drop-shadow(0 0 6px rgba(67, 100, 173, 0.7));
  opacity: 0;
}
.hub-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 124px; height: 124px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(67, 100, 173, 0.22), 0 0 0 1px var(--jobit-blue-100);
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  z-index: 3;
}
.hub-core img { width: 64%; height: 64%; object-fit: contain; }
/* nudge the beeldmerk right so the ring side optically centres in the core */
.hub-core .hero-beeldmerk-svg { transform: translateX(5px); }
@media (prefers-reduced-motion: no-preference) {
  .hub-core {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    animation: hubCorePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
  }
  .hub-core img {
    opacity: 0;
    animation: hubCoreImg 0.5s ease 0.5s forwards;
  }
}
@keyframes hubCorePop {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes hubCoreImg {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.hub-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1.5px dashed var(--jobit-blue-200);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.hub-ring-1 { width: 66%; height: 66%; opacity: 0.6; }
.hub-ring-2 { width: 92%; height: 92%; opacity: 0.4; }
@media (prefers-reduced-motion: no-preference) {
  .hub-ring-1 { animation: hubSpin 60s linear infinite; }
  .hub-ring-2 { animation: hubSpin 90s linear infinite reverse; }
  .hub-chip { animation: hubChipFloat 5s ease-in-out infinite; }
}
@keyframes hubSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hub-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-strong);
  white-space: nowrap;
  z-index: 2;
  will-change: transform;
}
@keyframes hubChipFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-6px); }
}
.hub-chip-mk {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.hub-chip-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(46, 157, 111, 0.18);
  margin-left: 2px;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) { .hub-packet { display: none; } }

.capsule { position: absolute; background: var(--jobit-blue); border-radius: 999px; transform-origin: center; will-change: transform; }
.ring { position: absolute; border: 10px solid var(--jobit-blue); border-radius: 50%; will-change: transform; }

/* Hero variant B - Split */
.hero-split {
  padding-top: calc(var(--sec-pad-y) + 40px);
  padding-bottom: 40px;
  background: linear-gradient(180deg, #FCFDFF 0%, #F3F6FC 100%);
  position: relative;
  overflow: hidden;
}
.hero-split .hero-grid { background-size: 48px 48px; }
.hero-split-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-split-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-split-card {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.hero-split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); text-decoration: none; }
.hsc-b {
  background: var(--jobit-blue);
  color: white;
}
.hsc-a {
  background: white;
  border: 1px solid var(--border);
  color: var(--fg-strong);
  box-shadow: var(--shadow-sm);
}
.hsc-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 20px;
}
.hsc-title {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 12px;
}
.hsc-sub {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 0 24px;
}
.hsc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}
.hsc-cta svg { transition: transform var(--dur-base) var(--ease-out); }
.hero-split-card:hover .hsc-cta svg { transform: translateX(4px); }

/* Hero variant C - Search first */
.hero-search {
  padding-top: calc(var(--sec-pad-y) + 40px);
  padding-bottom: var(--sec-pad-y);
  background: linear-gradient(180deg, #FCFDFF 0%, #F3F6FC 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-search-head {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}
.hero-search-title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 20px 0 20px;
  text-wrap: balance;
}
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px;
  max-width: 700px;
  margin: 40px auto 0;
  box-shadow: var(--shadow-lg);
  gap: 10px;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 4px;
  font-size: 16px;
  font-family: inherit;
  color: var(--fg-strong);
  background: transparent;
  min-width: 0;
}
.search-box input::placeholder { color: var(--fg-subtle); }
.search-box .divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.search-box .loc {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 4px;
  color: var(--fg-muted);
  font-size: 15px;
}
.search-chips {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-top: 20px;
}
.search-chip {
  background: white;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.search-chip:hover { background: var(--jobit-blue-50); color: var(--jobit-blue-700); border-color: var(--jobit-blue-200); }

/* ============================================================
   LOGO TICKER (social proof)
   ============================================================ */
.logo-row {
  padding: 48px 0 10px;
  background: var(--bg);
}
.logo-row-lbl {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 24px;
}
.logo-viewport {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sec-pad-x);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 96px, black calc(100% - 96px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 96px, black calc(100% - 96px), transparent 100%);
}
.logo-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  padding-right: 64px;
  animation: logoScroll 32s linear infinite;
  opacity: 0.7;
}
.logo-row:hover .logo-track { animation-play-state: paused; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-top: var(--sec-pad-y);
  padding-bottom: var(--sec-pad-y);
  position: relative;
}
.section.muted { background: var(--bg-subtle); }
.section.brand { background: var(--jobit-blue); color: white; }

/* ============================================================
   SECTION DIVIDER ARROW
   A downward-pointing tab that sits at the top of a section,
   coloured the same as the section ABOVE - so it reads as the
   previous section handing off into the next.
   Usage: add data-divider-from="<color>" to a <section>.
     data-divider-from="white"   → arrow in #fff
     data-divider-from="subtle"  → arrow in --bg-subtle
     data-divider-from="blue"    → arrow in --jobit-blue
     data-divider-from="bg"      → arrow in --bg
   Uses ::after so it doesn't clash with decorative ::before's.
   ============================================================ */
[data-divider-from] { position: relative; overflow: visible; margin-top: -1px; }
.stats { overflow: visible !important; }
[data-divider-from]::after {
  content: "";
  position: absolute;
  /* Element is 4px taller than the visible chevron and pulled up by 4px, so the
     curve sits in exactly its original position while a 4px solid cap rises
     above the flat top to mask the section seam (a thin hairline that appeared
     at some viewport widths from subpixel rounding). Curve geometry unchanged. */
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 45px;
  background: #ffffff;
  /* Fluid downward chevron: rounder top shoulders (longer horizontal hold at
     the corners) easing into a moderately rounded tip - both sides meet the
     bottom centre with a horizontal tangent, so the curve is smooth with no
     kink. 120 x 41 px curve + 4px solid cap on top. */
  clip-path: path("M0,0 L120,0 L120,4 C92,4 78,44 60,44 C42,44 28,4 0,4 Z");
  z-index: 5;
  pointer-events: none;
}
[data-divider-from="white"]::after    { background: #ffffff; }
[data-divider-from="subtle"]::after   { background: var(--bg-subtle); }
[data-divider-from="blue"]::after     { background: var(--jobit-blue); }
[data-divider-from="bg"]::after       { background: var(--bg); }
[data-divider-from="tint"]::after     { background: #F3F6FC; }
/* Divider keeps its fixed 120 x 41 px size on every viewport so the
   clip-path coordinates stay accurate. */

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jobit-blue);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--jobit-blue-50);
  border-radius: var(--r-pill);
}
.section.brand .eyebrow { background: rgba(255,255,255,0.14); color: white; }
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 20px;
  text-wrap: balance;
}
.section.brand .section-title { color: white; }
.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}
.section.brand .section-sub { color: rgba(255,255,255,0.85); }

/* ============================================================
   PRODUCT SHOWCASE (tabbed)
   ============================================================ */
.showcase {
  background: var(--bg-subtle);
  padding-top: var(--sec-pad-y);
  padding-bottom: var(--sec-pad-y);
  position: relative;
}

.showcase-tabs {
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 40px auto 48px;
  padding: 5px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  max-width: fit-content;
  box-shadow: var(--shadow-xs);
  overflow-x: auto;
  scrollbar-width: none;
}
.showcase-tabs::-webkit-scrollbar { display: none; }
.showcase-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.showcase-tab:hover { color: var(--fg-strong); }
.showcase-tab.is-active {
  background: var(--jobit-blue);
  color: white;
  box-shadow: var(--shadow-brand);
}
.showcase-tab-mark {
  width: 20px; height: 20px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: white;
  letter-spacing: 0;
}
.showcase-tab-mark-logo { background: white; overflow: hidden; }
.showcase-tab-mark-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.showcase-tab.is-active .showcase-tab-mark {
  background: rgba(255,255,255,0.24);
}
.showcase-tab.is-active .showcase-tab-mark-logo { background: white; }

.showcase-stage {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 520px;
  position: relative;
}

.showcase-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.showcase-info-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--jobit-blue);
  margin-bottom: 16px;
}
.showcase-info-mark {
  width: 20px; height: 20px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.showcase-info-mark-logo { background: white; overflow: hidden; }
.showcase-info-mark-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.showcase-info h3 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 16px;
}
.showcase-info p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 28px;
}
.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 10px;
}
.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-strong);
  font-weight: 500;
}
.showcase-features svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 2px;
}
.showcase-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* Live preview - a mocked mini-app */
.showcase-preview {
  position: relative;
  background: var(--bg-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}
.preview-frame {
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  position: relative;
  transform: translateY(8px);
  opacity: 0;
  animation: previewIn 500ms var(--ease-out) forwards;
}
@keyframes previewIn {
  to { transform: translateY(0); opacity: 1; }
}
.preview-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--neutral-25);
}
.preview-tl { display: flex; gap: 6px; }
.preview-tl span { width: 10px; height: 10px; border-radius: 50%; background: var(--neutral-200); }
.preview-url {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  display: flex; align-items: center; gap: 6px;
}
.preview-body { padding: 20px; }

/* MOOX preview */
.moox-search-bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--jobit-blue-50);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--fg-muted);
}
.moox-job-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  background: white;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.moox-job-card:hover { border-color: var(--jobit-blue-300); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.moox-job-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--jobit-blue-50);
  color: var(--jobit-blue-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.moox-job-title { font-size: 14px; font-weight: 700; color: var(--fg-strong); }
.moox-job-meta { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.moox-job-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.moox-job-tag {
  font-size: 10px;
  padding: 2px 8px;
  background: var(--bg-muted);
  border-radius: var(--r-pill);
  color: var(--fg-muted);
  font-weight: 600;
}
.moox-job-apply {
  margin-left: auto;
  align-self: center;
  background: var(--jobit-blue);
  color: white;
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* Multiposter preview */
.mp-matrix {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 6px;
  font-size: 11px;
}
.mp-matrix-header {
  font-weight: 700;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--border);
}
.mp-matrix-cell {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  color: var(--fg-strong);
  font-weight: 600;
  font-size: 12px;
}
.mp-matrix-cell.ok {
  color: var(--success);
}
.mp-matrix-cell.pending {
  color: var(--warning);
}
.mp-site-dot {
  width: 24px; height: 24px; border-radius: 6px;
  font-weight: 800; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.mp-progress {
  height: 8px;
  background: var(--bg-muted);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-top: 14px;
}
.mp-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--jobit-blue), var(--jobit-blue-400));
  width: 78%;
  border-radius: var(--r-pill);
  animation: mpGrow 2s var(--ease-out) forwards;
  transform-origin: left;
}
@keyframes mpGrow { from { transform: scaleX(0); } }

/* VBR preview - Regional map */
.vbr-map {
  background: linear-gradient(135deg, #EEF2FA, #D9E1F2);
  border-radius: var(--r-lg);
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
}
.vbr-map-nl {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 220%;
  opacity: 0.28;
  pointer-events: none;
  object-fit: contain;
}
.vbr-pin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--jobit-blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  border: 3px solid white;
  transform: translate(-50%, -50%);
  animation: pinDrop 600ms var(--ease-spring) backwards;
}
.vbr-pin.active {
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(46,157,111,0.5), var(--shadow-md);
  animation: pinDrop 600ms var(--ease-spring) backwards, pulse 2s 1.5s ease-out infinite;
}
@keyframes pinDrop {
  from { transform: translate(-50%, -120%); opacity: 0; }
}
.vbr-legend {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.vbr-chip {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bg-muted);
  border-radius: var(--r-pill);
  color: var(--fg-muted);
  font-weight: 600;
}

/* Vacature Alert preview - Email */
.va-email {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 12px;
}
.va-email-head {
  padding: 10px 14px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.va-email-from { font-weight: 700; color: var(--fg-strong); }
.va-email-when { color: var(--fg-subtle); font-size: 10px; }
.va-email-body { padding: 14px; }
.va-email-hit {
  display: flex; gap: 10px;
  padding: 10px;
  border-radius: var(--r-sm);
  background: var(--bg-subtle);
  margin-top: 8px;
  align-items: center;
}
.va-email-hit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* Stage Alert preview */
.sa-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; gap: 12px;
  margin-bottom: 8px;
}
.sa-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--warning), var(--warning) 60%, #E8A53B);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

/* Jobit / overview preview */
.jobit-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.jobit-kpi {
  padding: 14px;
  background: var(--bg-subtle);
  border-radius: var(--r-md);
}
.jobit-kpi-lbl { font-size: 10px; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.jobit-kpi-val { font-size: 22px; font-weight: 800; color: var(--fg-strong); letter-spacing: -0.02em; margin-top: 4px; line-height: 1; }
.jobit-kpi-trend { font-size: 11px; color: var(--success); font-weight: 700; margin-top: 2px; }
.jobit-chart {
  height: 90px;
  background: var(--bg-subtle);
  border-radius: var(--r-md);
  padding: 10px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  margin-bottom: 12px;
}
.jobit-bar {
  flex: 1;
  background: var(--jobit-blue);
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
  animation: barIn 600ms var(--ease-out) backwards;
}
@keyframes barIn { from { transform: scaleY(0); opacity: 0; } }

/* ============================================================
   SHOWCASE - grid variant
   ============================================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tile {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--jobit-blue-200); }
.tile-banner {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--jobit-blue-700), var(--jobit-blue));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tile-banner-watermark {
  position: absolute;
  right: -10%; bottom: -20%;
  width: 70%;
  opacity: 0.25;
  transition: transform var(--dur-slow) var(--ease-out);
}
.tile:hover .tile-banner-watermark { transform: translate(-10px, -10px) scale(1.05); }
.tile-banner-mark {
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  z-index: 2;
  position: relative;
}
.tile-banner-mark-logo {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.tile-banner-mark-logo img { width: 74%; height: 74%; object-fit: contain; display: block; }
.tile-body {
  padding: 24px;
}
.tile-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.tile-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.tile-cta {
  font-weight: 700;
  font-size: 14px;
  color: var(--jobit-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.tile-cta svg { transition: transform var(--dur-base) var(--ease-out); }
.tile:hover .tile-cta svg { transform: translateX(4px); }

/* Editorial showcase variant */
.showcase-editorial {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.editorial-row.reverse { direction: rtl; }
.editorial-row.reverse > * { direction: ltr; }
.editorial-media {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-subtle);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.editorial-body .eyebrow { margin-bottom: 14px; }
.editorial-body h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--fg-strong);
  margin: 0 0 16px;
}
.editorial-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 24px;
}

/* Photo/no photo toggle */
.photo-tile {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.no-photo .photo-tile {
  background: var(--jobit-blue);
  position: relative;
}
.no-photo .photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, var(--jobit-blue-400), transparent 60%);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process {
  position: relative;
  padding-top: var(--sec-pad-y);
  padding-bottom: var(--sec-pad-y);
  background: var(--bg);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--jobit-blue-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--jobit-blue);
  letter-spacing: -0.02em;
  transition: all var(--dur-base) var(--ease-out);
}
.process-step:hover .process-step-num {
  background: var(--jobit-blue);
  color: white;
  border-color: var(--jobit-blue);
  transform: scale(1.05);
}
.process-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-strong);
  margin: 0 0 10px;
}
.process-step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  padding: 112px 0;
  background: var(--jobit-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -80%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
}
.stats-head {
  text-align: center;
  margin-bottom: 56px;
}
.stats-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 40px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: white;
}
.stat-plus { opacity: 0.6; margin-left: 2px; }
.stat-lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  font-weight: 500;
}

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.news-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card.feature { grid-row: span 2; }
.news-media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--jobit-blue-100), var(--jobit-blue-300));
  position: relative;
  overflow: hidden;
}
.news-card.feature .news-media { aspect-ratio: 16/10; }
.news-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.news-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--jobit-blue-50);
  color: var(--jobit-blue-700);
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-strong);
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.news-card.feature .news-title { font-size: 24px; }
.news-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* Decorative news illustrations (SVG backgrounds) */
.news-media-a { background: linear-gradient(135deg, #4364AD, #2A4071); }
.news-media-b { background: linear-gradient(135deg, #6884C0, #4364AD); }
.news-media-c { background: linear-gradient(135deg, #8DA4D6, #4364AD); }
.news-media-d { background: linear-gradient(135deg, #1F2F54, #4364AD); }
.news-decor {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 40px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-strong);
  cursor: pointer;
  font-family: inherit;
  gap: 20px;
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--jobit-blue); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease-out);
}
.faq-item.is-open .faq-toggle {
  background: var(--jobit-blue);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 680px;
}

/* ============================================================
   MP-PL-CARD DARK — shared across all product pages
   ============================================================ */
.mp-pl-card.dark {
  background: linear-gradient(135deg, var(--jobit-blue-700), var(--jobit-blue));
  color: white;
  border-color: transparent;
}
.mp-pl-card.dark .mp-pl-eyebrow { color: rgba(255,255,255,0.6); }
.mp-pl-card.dark .mp-pl-title   { color: white; }
.mp-pl-card.dark .mp-pl-body    { color: rgba(255,255,255,0.82); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 80px var(--sec-pad-x);
  background: var(--jobit-blue);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  max-width: calc(var(--max-w) - 2 * var(--sec-pad-x));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 10px;
  color: white;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cta-band-watermark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0F1A30;
  color: rgba(255,255,255,0.72);
  padding: 80px 0 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sec-pad-x);
}
.footer-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.footer-brand-logo { display: inline-block; }
.footer-brand img { height: 26px; margin-bottom: 20px; }
.footer-brand p { font-size: 12px; line-height: 1.6; margin: 0 0 16px; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-brand .addr { font-style: normal; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-brand .addr a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-brand .addr a:hover { color: white; text-decoration: underline; }
.footer-col h6 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: white; text-decoration: none; }

.footer-constellation {
  display: flex;
  gap: 14px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.const-dot {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 11px;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.const-dot:hover { transform: translateY(-3px) scale(1.04); }
.const-dot.jobit { background: var(--jobit-blue); }
.const-dot.moox { background: #2E9D6F; }
.const-dot.mp { background: #36528E; }
.const-dot.vbr { background: #4364AD; }
.const-dot.va { background: #E8A53B; }
.const-dot.sa { background: #D9544B; }
.const-dot img { width: 60%; height: 60%; object-fit: contain; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-legal a { cursor: pointer; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].is-revealed { transition-delay: 80ms; }
[data-reveal-delay="2"].is-revealed { transition-delay: 160ms; }
[data-reveal-delay="3"].is-revealed { transition-delay: 240ms; }
[data-reveal-delay="4"].is-revealed { transition-delay: 320ms; }

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67,100,173,0.10), transparent 70%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-slow) var(--ease-out);
  opacity: 0;
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1000;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 16px;
  width: 260px;
  font-size: 13px;
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks h6 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin: 0 0 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks h6 .close {
  background: none; border: none; cursor: pointer; color: var(--fg-muted);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tweaks h6 .close:hover { background: var(--bg-muted); color: var(--fg-strong); }
.tweak-group { margin-bottom: 14px; }
.tweak-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-strong);
  margin-bottom: 6px;
  display: block;
}
.tweak-seg {
  display: flex;
  background: var(--bg-muted);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 2px;
}
.tweak-seg button {
  flex: 1;
  border: none;
  background: none;
  padding: 6px 8px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--dur-fast) var(--ease-out);
}
.tweak-seg button.is-active { background: white; color: var(--jobit-blue); box-shadow: var(--shadow-xs); }

/* ============================================================
   INTEGRATIES - Hub & Spoke
   ============================================================ */
.integraties { background: linear-gradient(180deg, #FCFDFF 0%, #F3F6FC 100%); overflow: hidden; }
.integraties-hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
.integraties-stage {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.int-grid-bg {
  position: absolute; inset: -40px;
  background-image:
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at center, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 65%);
  pointer-events: none;
}
.int-ring {
  position: absolute; left: 50%; top: 50%;
  border: 1.5px dashed rgba(67,100,173,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.int-ring-1 { width: 280px; height: 280px; animation: intSpin 50s linear infinite; }
.int-ring-2 { width: 420px; height: 420px; animation: intSpin 80s linear infinite reverse; }
@keyframes intSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.int-hub {
  position: relative;
  width: 128px; height: 128px;
  border-radius: 30px;
  background: linear-gradient(135deg, white 0%, #f4f8ff 100%);
  box-shadow: 0 24px 60px rgba(67,100,173,0.22), 0 0 0 1px rgba(67,100,173,0.1);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.int-hub img { width: 66px; height: 66px; }
.int-hub::before {
  content: ""; position: absolute; inset: -16px;
  border-radius: 38px;
  background: radial-gradient(circle, rgba(67,100,173,0.18), transparent 60%);
  animation: intHubPulse 2.8s ease-out infinite;
  z-index: -1;
}
@keyframes intHubPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.int-spoke {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  transform-origin: 0 0;
  pointer-events: none;
  z-index: 1;
}
.int-line {
  position: absolute;
  top: -1px; /* center on 0 */
  height: 1.5px;
  background: linear-gradient(90deg, rgba(67,100,173,0.5), rgba(67,100,173,0.08));
  pointer-events: none;
}
.int-packet {
  position: absolute;
  top: -3.5px;
  left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.int-packet.out { background: var(--jobit-blue); box-shadow: 0 0 12px rgba(67,100,173,0.7); }
.int-packet.in { background: #2E9D6F; box-shadow: 0 0 12px rgba(46,157,111,0.7); }
@keyframes intFlowOut {
  0% { transform: translateX(var(--start)) scale(0.6); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; transform: translateX(var(--end)) scale(1); }
  100% { transform: translateX(var(--end)) scale(0.4); opacity: 0; }
}
@keyframes intFlowIn {
  0% { transform: translateX(var(--end)) scale(0.4); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; transform: translateX(var(--start)) scale(1); }
  100% { transform: translateX(var(--start)) scale(0.6); opacity: 0; }
}

.int-orbit-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(31,47,84,0.08), 0 2px 6px rgba(31,47,84,0.04);
  border-radius: 12px;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700;
  color: var(--fg-strong);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.int-orbit-mk {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.integraties-copy .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--jobit-blue-50);
  color: var(--jobit-blue);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.integraties-copy .section-title { font-size: 40px; margin-top: 18px; text-wrap: balance; }
.integraties-copy .section-title em { font-style: normal; color: var(--jobit-blue); }
.int-feats {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.int-feats li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.5;
}
.int-feats li svg { flex-shrink: 0; margin-top: 3px; color: var(--jobit-blue); }
.int-feats li b { font-weight: 700; color: var(--fg-strong); margin-right: 2px; }
.int-feats li span { color: var(--fg-muted); }
.int-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   KLANTCASES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card.feature { grid-row: span 2; padding: 36px; background: linear-gradient(180deg, var(--jobit-blue-50) 0%, white 60%); }
.case-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.case-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.case-client {
  font-size: 15px;
  font-weight: 800;
  color: var(--fg-strong);
  letter-spacing: -0.01em;
}
.case-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.case-headline {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg-strong);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.case-card.feature .case-headline { font-size: 26px; line-height: 1.2; }
.case-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 22px;
  flex: 1;
}
.case-card.feature .case-excerpt { font-size: 15px; }
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.case-metric-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--jobit-blue);
  letter-spacing: -0.02em;
}
.case-card.feature .case-metric-num { font-size: 36px; }
.case-metric-lbl {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cases-foot {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.cases-foot .link {
  color: var(--jobit-blue-700);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

/* ============================================================
   AI SECTION - Hero-style live demo
   ============================================================ */
.ai-section {
  background: var(--bg-subtle);
  overflow: hidden;
}
.ai-hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  min-height: 560px;
}
.ai-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.ai-eyebrow-spark {
  color: var(--jobit-blue);
  font-size: 14px;
  display: inline-flex;
  animation: aiSpark 2.4s ease-in-out infinite;
}
@keyframes aiSpark {
  0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 0.7; }
}
.ai-copy .eyebrow {
  background: var(--jobit-blue-50);
  color: var(--jobit-blue);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ai-copy .section-title { font-size: 44px; margin-top: 18px; text-wrap: balance; }
.ai-copy .section-title em { font-style: normal; color: var(--jobit-blue); }
.ai-feats {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-feats li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.5;
}
.ai-feats li svg { flex-shrink: 0; margin-top: 3px; color: var(--jobit-blue); }
.ai-feats li b { font-weight: 700; color: var(--fg-strong); margin-right: 2px; }
.ai-feats li span { color: var(--fg-muted); }
.ai-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Demo card */
.ai-demo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, white 0%, #f4f8ff 100%);
  border: 1px solid var(--jobit-blue)22;
  box-shadow: 0 40px 80px -20px rgba(67,100,173,0.2), 0 8px 24px -8px rgba(31,47,84,0.08);
}
.ai-demo::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 240px;
  background: radial-gradient(ellipse at top, rgba(67,100,173,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ai-demo-top {
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  position: relative;
}
.ai-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jobit-blue) 0%, var(--jobit-blue-700) 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(67,100,173,0.32);
  flex-shrink: 0;
}
.ai-demo-tab {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ai-demo-tab .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--jobit-blue);
  margin-right: 6px;
  animation: aiSpark 1.6s ease-in-out infinite;
}
.ai-demo-body {
  padding: 24px;
  position: relative;
}
.ai-prompt {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  position: relative;
}
.ai-prompt-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.ai-prompt-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-strong);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.ai-prompt-ph {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-top: 4px;
}
.ai-prompt-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ai-prompt-chip {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-strong);
}
.ai-prompt-arrow {
  position: absolute;
  left: 50%; bottom: -12px;
  width: 22px; height: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(-50%);
  color: var(--jobit-blue);
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(31,47,84,0.06);
}
.ai-thinking {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  color: var(--jobit-blue-700); font-weight: 700; font-size: 12px;
  font-family: var(--font-mono);
}
.ai-thinking-dots {
  display: inline-flex;
  align-items: center;
}
.ai-thinking-dots span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--jobit-blue);
  margin-right: 4px;
  animation: aiDot 1.4s ease-in-out infinite;
}
.ai-thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-thinking-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes aiDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.ai-output {
  background: white;
  border: 1px solid var(--jobit-blue)33;
  border-radius: 14px;
  padding: 18px;
  position: relative;
}
.ai-output-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--fg-strong);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ai-output-line {
  font-size: 12px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 6px;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}
.ai-demo.is-revealed .ai-output-line {
  animation: aiType 1.25s steps(40, end) forwards;
}
.ai-demo.is-revealed .ai-output-line:nth-of-type(2) { animation-delay: 1.25s; }
.ai-demo.is-revealed .ai-output-line:nth-of-type(3) { animation-delay: 2.5s; }
.ai-demo.is-revealed .ai-output-line:nth-of-type(4) { animation-delay: 3.75s; }
.ai-demo.is-revealed .ai-output-line:nth-of-type(5) { animation-delay: 5s; }
@keyframes aiType {
  0% { width: 0; }
  100% { width: 100%; }
}
/* Status flips to "tekst gegenereerd" when the last line finishes typing */
.ai-thinking.is-done { color: var(--success, #1f8a5b); }
.ai-thinking-check {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--success, #1f8a5b);
  animation: aiCheckPop 0.3s ease-out;
}
@keyframes aiCheckPop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-thinking-check { animation: none; }
}
.ai-output-badges { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.ai-badge {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.ai-badge-tone { background: rgba(67,100,173,0.12); color: var(--jobit-blue-700); }
.ai-badge-avg { background: var(--success-bg); color: var(--success); }
.ai-badge-meta { background: var(--bg-subtle); color: var(--fg-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Nav: hamburger for mobile + tablet portrait (<=1024px) ---- */
@media (max-width: 1024px) {
  .nav-links-menus { display: none; }
  .nav-cta .link-quiet.link-desk { display: none; }
  .nav-toggle { display: inline-flex; }
  /* The bottom-right glow spreads across the whole band on narrow screens,
     lightening it so the solid-blue divider chevron looks darker. Drop it. */
  .stats::before { display: none; }
}
/* Tablet/desktop landscape keeps the full horizontal nav */
@media (min-width: 1000px) and (max-width: 1024px) and (orientation: landscape) {
  .nav-links-menus { display: flex; }
  .nav-cta .link-quiet.link-desk { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---- Footer: stack brand above the columns so 5 link columns get the
   full content width and every label stays on one line down to 960px ---- */
@media (max-width: 1180px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .hero-inner, .cta-band-inner, .showcase-stage { grid-template-columns: 1fr; }
  .hero-visual { max-width: 400px; margin-top: 40px; justify-self: center; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.feature { grid-row: span 1; grid-column: span 2; }
  .integraties-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .case-card.feature { grid-row: span 1; grid-column: span 2; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-hero { grid-template-columns: 1fr; gap: 32px; }
  .integraties-hero { grid-template-columns: 1fr; gap: 32px; }
  /* once the graphic stacks below the copy, shrink it so the orbit cards don't overflow.
     !important overrides the [data-reveal].is-revealed transform that would otherwise win. */
  .integraties-stage { height: 480px; transform: scale(0.94) !important; transform-origin: center; }
  .hero-split-cards { grid-template-columns: 1fr; }
  .showcase-info { border-right: none; border-bottom: 1px solid var(--border); }
  .editorial-row { grid-template-columns: 1fr; gap: 32px; }
  .editorial-row.reverse { direction: ltr; }
  .cta-band-actions { justify-content: flex-start; }
}

/* ---- Product showcase tabs: wrap instead of clipping in a scroller ---- */
@media (max-width: 900px) {
  .showcase-tabs {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    overflow-x: visible;
    border-radius: var(--r-xl);
    gap: 4px;
  }
  .showcase-tab { padding: 10px 15px; }
}

/* ---- Tablet portrait / large phone ---- */
@media (max-width: 720px) {
  .nav-inner { padding-top: 11px; padding-bottom: 11px; }
  .nav-brand img { height: 34px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-band-actions { justify-content: flex-start; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .stat-num { font-size: clamp(36px, 11vw, 56px); }
}

@media (max-width: 600px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.feature { grid-column: span 1; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card.feature { grid-column: span 1; }
  .hero-floating-card { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  /* shrink the integrations orbit graphic so it fits on phones */
  .integraties-stage { height: 300px; margin: 28px 0; transform: scale(0.6) !important; transform-origin: center; }
}

/* ---- Small phones ---- */
@media (max-width: 420px) {
  .nav-cta-demo { display: none; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .search-box { flex-wrap: wrap; border-radius: var(--r-xl); }
  .search-box .divider { display: none; }
  .search-box .btn { width: 100%; }
  /* shrink the orbit graphic further on small phones so it fits */
  .integraties-stage { height: 258px; margin: 32px 0; transform: scale(0.5) !important; transform-origin: center; }
}

/* Knowledge-center / FAQ accordion: category heading with a leading accent bar */
.jo-knowledge-center-accordion-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.jo-knowledge-center-accordion-category-accent {
  flex: none;
  width: 4px;
  height: 1.1em;
  border-radius: 2px;
  background: var(--jobit-blue, #4364AD);
}

/* Search inputs sit inside their own pill (.kb-search / .kc-search), which shows the
   focus state via :focus-within. Kill the input's own focus ring/outline so it does not
   draw a second inner border. Higher specificity than a base input:focus-visible rule. */
.kb-search-input:focus,
.kb-search-input:focus-visible,
.kc-search-input:focus,
.kc-search-input:focus-visible {
  outline: none;
  box-shadow: none;
}
