@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/font-1.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/font-2.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/font-3.woff2) format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(fonts/font-4.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(fonts/font-5.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/font-6.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/font-7.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/font-8.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/font-9.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/font-10.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(fonts/font-11.woff2) format('woff2');
}


/* ─────────────────────────────────────────────
   KCS – Verticaal Transport
   Modern, premium stylesheet
   ───────────────────────────────────────────── */

:root {
  --yellow: #F5B800;
  --yellow-dark: #d9a200;
  --black: #0d0d0d;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --gray: #555;
  --gray-light: #888;
  --border: #e8e8e8;
  --bg-light: #f8f8f6;
  --white: #ffffff;
  --font-main: 'Inter', system-ui, sans-serif;
  --font-heading: 'Barlow Condensed', 'Inter', sans-serif;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --green-success: #16a34a;
  --green-success-bg: rgba(34,197,94,0.1);
  --green-success-border: rgba(34,197,94,0.3);
  --whatsapp: #25D366;
  --whatsapp-hover: #20bc5a;
  --red-error: #ef4444;
}

/* ─── RESET & BASE ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--yellow); }

/* ─── FOCUS STIJLEN ──────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 0;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,184,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-mt { margin-top: 24px; }
.btn-block { width: 100%; justify-content: center; }
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav-phone:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.btn-nav {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION LABEL / HEADER ──────────────────── */
.section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─── REVEAL ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.navbar.scrolled .nav-logo {
  height: 40px;
  opacity: 1;
  pointer-events: auto;
}
.nav-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  margin-left: 4px;
  align-self: flex-end;
  padding-bottom: 2px;
}
.navbar.scrolled .nav-tagline { opacity: 1; }
.hero-logo-tagline {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 6px;
}
.footer-logo-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: -14px 0 20px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin: -12px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 80px;
}
/* Hero logo – absoluut linksboven in hero */
.hero-logo-wrap {
  position: absolute;
  top: 20px;
  left: max(24px, calc(50vw - 576px));
  z-index: 3;
  mix-blend-mode: screen;
}
.hero-logo-wrap a {
  display: inline-block;
}
.hero-logo-clip {
  display: block;
}
.hero-logo {
  height: 130px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);

}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,184,0,0.15);
  border: 1px solid rgba(245,184,0,0.4);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ─── STATS ───────────────────────────────────── */
.stats {
  background: var(--dark);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--yellow);
}
.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 500;
}

/* ─── DIENSTEN ────────────────────────────────── */
.diensten { background: var(--bg-light); }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }

.card--accent {
  background: var(--dark-2);
  border-color: var(--dark-2);
  color: var(--white);
}
.card--accent::before { height: 4px; transform: scaleX(1); }
.card--accent h3 { color: var(--white); font-size: 1.6rem; }
.card--accent p { color: rgba(255,255,255,0.92); line-height: 1.75; }
.card--accent ul li { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.1); font-size: 0.92rem; }
.card--accent ul li::before { background: var(--yellow); }
.card--accent .card-icon { color: var(--yellow); }

.card-icon {
  width: 56px;
  height: 56px;
  color: var(--yellow);
  margin-bottom: 24px;
}
.card-icon svg { width: 100%; height: 100%; }

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.card p {
  color: #444;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.card ul li {
  color: #444;
  font-size: 0.92rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.card ul li:last-child { border-bottom: none; }

/* ─── PHOTO STRIP ─────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
}
.photo-item {
  overflow: hidden;
  position: relative;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.photo-item:hover img { transform: scale(1.08); }

/* ─── WERKWIJZE ───────────────────────────────── */
.werkwijze { background: var(--white); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
}
.step {
  flex: 1;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.step:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.step-arrow {
  font-size: 2rem;
  color: var(--yellow);
  font-weight: 900;
  padding-top: 60px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ─── OVER ONS ────────────────────────────────── */
.over-ons { background: var(--bg-light); }

.over-ons-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-stack {
  position: relative;
  padding-bottom: 80px;
  padding-right: 80px;
}
.img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.img-badge {
  position: absolute;
  top: 32px;
  right: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.over-ons-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.over-ons-text .lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--dark-2);
}
.over-ons-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 40px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.value-item p { color: var(--gray); font-size: 0.875rem; margin: 0; }

/* ─── VACATURES ───────────────────────────────── */
.vacatures { background: var(--white); }
.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 768px) { .ws-grid { grid-template-columns: 1fr; gap: 40px; } }
.ws-intro .lead { font-size: 1.1rem; line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.ws-intro p { color: var(--gray); line-height: 1.8; }
.ws-steps { display: flex; flex-direction: column; gap: 28px; }
.ws-step { display: flex; gap: 20px; align-items: flex-start; }
.ws-step-nr {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  min-width: 44px;
}
.ws-step strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.ws-step p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ─── AANMELDEN VAKMAN ─────────────────────────────────────── */
.ws-aanmelden {
  margin-top: 72px;
  border-top: 2px solid var(--border);
  padding-top: 64px;
}
.ws-aanmelden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .ws-aanmelden-inner { grid-template-columns: 1fr; gap: 36px; } }
.ws-aanmelden-text h3 { font-size: 2rem; margin: 8px 0 16px; }
.ws-aanmelden-text p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.ws-perks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ws-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--dark); }
.ws-perks li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
.ws-form { display: flex; flex-direction: column; gap: 14px; }
.ws-label { display: contents; }
.ws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) {
  .photo-strip { display: none; } .ws-form-row { grid-template-columns: 1fr; } }
.ws-form input,
.ws-form select,
.ws-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-light);
  color: var(--dark);
  box-sizing: border-box;
  transition: border-color .2s;
}
.ws-form input:focus,
.ws-form select:focus,
.ws-form textarea:focus { outline: none; border-color: var(--yellow); }
.ws-form textarea { resize: vertical; }

.vacature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.vacature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.vacature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vacature-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.vacature-card--featured h3 { color: var(--white); }
.vacature-card--featured p { color: rgba(255,255,255,0.7); }
.vacature-card--featured .vacature-meta span { color: rgba(255,255,255,0.5); }
.vacature-featured-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 14px 14px;
}

.vacature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.vacature-header h3 { font-size: 1.25rem; margin-bottom: 4px; }
.vacature-loc { font-size: 0.85rem; color: var(--gray); }
.vacature-tag {
  background: rgba(245,184,0,0.12);
  color: var(--yellow-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(245,184,0,0.3);
}
.vacature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.vacature-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.vacature-meta span { font-size: 0.8rem; color: var(--gray-light); }

.vacature-cta { text-align: center; }
.vacature-cta p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ─── CTA BANNER ──────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}
.cta-banner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}
.cta-banner-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── CONTACT ─────────────────────────────────── */
.contact { background: var(--bg-light); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.contact-info > p {
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--black); }
.contact-item strong { display: block; font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; }
.contact-item a, .contact-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}
.contact-item a:hover { color: var(--yellow-dark); }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.field-error {
  border-color: var(--red-error) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green-success-bg);
  border: 1px solid var(--green-success-border);
  color: var(--green-success);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 600;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ─── FOOTER ──────────────────────────────────── */
.footer { background: var(--dark); color: var(--white); padding: 80px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  margin-bottom: 20px;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.25);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.footer-nav h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-nav ul a:hover { color: var(--yellow); }

.footer-contact h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-contact p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-contact a { color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-contact a:hover { color: var(--yellow); }
.footer-btn { margin-top: 20px; }

.footer-aivix-link { color: var(--yellow); font-weight: 600; text-decoration: none; }
.footer-aivix-link:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── FLOATING BUTTONS ────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.floating-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.floating-btn--phone {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(245,184,0,0.4);
}
.floating-btn--phone:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(245,184,0,0.55);
}

.floating-btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.floating-btn--whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
  background: var(--whatsapp-hover);
}

/* ─── HERO SPLIT ──────────────────────────────── */
.hero-split { margin-top: 8px; }

.hero-split-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.hero-split-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-split {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  min-width: 260px;
}
.btn-split svg { width: 18px; height: 18px; flex-shrink: 0; margin-left: auto; }
.split-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.btn-split span strong { display: block; font-size: 1rem; font-weight: 700; }
.btn-split span small { display: block; font-size: 0.8rem; font-weight: 400; opacity: 0.8; margin-top: 2px; }

.btn-split--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-split--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,184,0,0.35);
}

.btn-split--outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-split--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.hero-phone {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.hero-phone svg { opacity: 0.6; }
.hero-phone a {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.hero-phone a:hover { color: #fff; }

/* ─── SPOEDINZET BANNER ──────────────────────── */
.spoed-banner {
  background: var(--yellow);
  padding: 0;
}
.spoed-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
.spoed-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.spoed-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  background: var(--black);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 8px;
  line-height: 1;
  flex-shrink: 0;
}
.spoed-left strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.spoed-left p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  margin: 0;
}
.spoed-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.spoed-cta:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ─── STATS QUOTE ─────────────────────────────── */
.stat-item--quote {
  border-right: none;
  text-align: left;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item--quote blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 10px;
  quotes: "\201C" "\201D";
}
.stat-item--quote blockquote::before { content: open-quote; color: var(--yellow); font-size: 1.4em; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.stat-item--quote cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* ─── ONDERSCHEID GRID ────────────────────────── */
.onderscheid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.onderscheid-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.onderscheid-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.onderscheid-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.onderscheid-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.onderscheid-item p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.onderscheid-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--yellow-dark);
  transition: color 0.2s;
}
.onderscheid-link:hover { color: var(--black); }

/* ─── VACATURES NIEUW ─────────────────────────── */
.vacature-salary {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1;
}
.vacature-salary span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  font-family: var(--font-main);
}
.vacature-card--featured .vacature-salary { color: var(--yellow); }

.vacature-details {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vacature-details li {
  font-size: 0.875rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vacature-details--light li { color: rgba(255,255,255,0.65); }

.vacature-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-sm--light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-sm--light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .over-ons-inner { grid-template-columns: 1fr; gap: 48px; }
  .img-stack { padding-bottom: 60px; padding-right: 60px; }
  .img-main { height: 380px; }
  .img-secondary { width: 180px; height: 180px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { font-size: 1.5rem; color: var(--white); }
  .hamburger { display: flex; z-index: 1000; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-item--quote { grid-column: 1 / -1; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: none; padding-left: 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }
  .card h3 { font-size: 1.35rem; }
  .card--accent h3 { font-size: 1.35rem; }
  .card p, .card ul li { font-size: 0.95rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 480px; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .vacature-cards { grid-template-columns: 1fr; }
  .onderscheid-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split-btns { flex-direction: column; }
  .spoed-inner { flex-direction: column; align-items: flex-start; }
  .spoed-cta { width: 100%; justify-content: center; }
  .btn-nav-phone { display: none; }
  .btn-split { min-width: 0; width: 100%; }
  .stat-item--quote { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { display: none; }
  .footer-badges { display: none; }
  .footer { padding: 40px 0 0; }
  .footer-logo { height: 36px; margin-bottom: 12px; }
  .footer-nav h3, .footer-contact h3 { margin-bottom: 12px; }
  .footer-nav ul { gap: 8px; }
  .footer-contact p { margin-bottom: 6px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom { padding: 16px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .onderscheid-grid { grid-template-columns: 1fr; }
  .photo-item { height: 200px; }
  .img-stack { padding-bottom: 0; padding-right: 0; }
  .img-secondary { display: none; }
  .img-badge { top: auto; right: 16px; bottom: 16px; }
  .floating-buttons { bottom: 20px; right: 20px; }
  .floating-btn { width: 52px; height: 52px; }
  .floating-btn svg { width: 22px; height: 22px; }
}
    .partners-strip {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.3s ease, filter 0.3s ease;
      filter: none;
    }
    .partner-logo:hover { opacity: 1; transform: scale(1.05); }
    .partner-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
    @media (max-width: 600px) {
      .partners-strip { gap: 36px; }
      .partner-logo img, .partner-logo svg { height: 36px !important; }
    }

    /* ─── PARTNERS ────────────────────────────────── */
    .partners-section { background: var(--bg-light); padding: 64px 0; }
    .partners-strip {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.3s ease, filter 0.3s ease;
      filter: none;
    }
    .partner-logo:hover { opacity: 1; transform: scale(1.05); }
    .partner-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
    .partner-logo svg { height: 48px !important; width: auto !important; display: block; }
    @media (max-width: 600px) {
      .partners-strip { gap: 36px; }
      .partner-logo img, .partner-logo svg { height: 36px !important; }
    }

    /* ─── PARTNERS ────────────────────────────────── */
    .partners-section { background: var(--bg-light); padding: 64px 0; }
    .partners-strip {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: opacity 0.3s ease, filter 0.3s ease;
      filter: none;
    }
    .partner-logo:hover { opacity: 1; transform: scale(1.05); }
    .partner-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
    .partner-logo svg { height: 48px !important; width: auto !important; display: block; }
    @media (max-width: 600px) {
      .partners-strip { gap: 36px; }
      .partner-logo img, .partner-logo svg { height: 36px !important; }
    }
