@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0A2870;
  --navy-deep: #061a4d;
  --blue: #1F6BFF;
  --blue-soft: #4A8AFF;
  --ink: #0d1633;
  --muted: #5b6680;
  --line: #e6eaf2;
  --bg: #fafbfd;
  --bg-warm: #f4f6fb;
  --card: #ffffff;
  --tint: #eef3ff;
  --shadow-sm: 0 1px 2px rgba(10,40,112,0.04), 0 1px 3px rgba(10,40,112,0.06);
  --shadow-md: 0 4px 14px rgba(10,40,112,0.06), 0 10px 40px rgba(10,40,112,0.05);
  --shadow-lg: 0 12px 32px rgba(10,40,112,0.10), 0 30px 80px rgba(10,40,112,0.10);
  --radius: 18px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font-family: inherit; cursor: pointer; border: none; background: none; touch-action: manipulation; }

img { max-width: 100%; display: block; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ------------- HEADER ------------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(10,40,112,0.06);
}
.site-header .row {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.header-logo-img { height: 40px; width: auto; display: block; }
@media (max-width: 767px) { .header-logo-img { height: 32px; } }
.mobile-nav-top .header-logo-img { height: 26px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-icon { width: 38px; height: 38px; }
.brand-name { font-size: 22px; letter-spacing: -0.01em; }
.brand-name .prof { color: var(--navy); }
.brand-name .smart { color: var(--blue); }

.nav { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav a, .nav button.navlink {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, color .15s;
}
.nav a:hover, .nav button.navlink:hover { background: var(--tint); color: var(--navy); }
.nav .chev { width: 12px; height: 12px; transition: transform .2s; }
.nav .open .chev { transform: rotate(180deg); }

.cta {
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .15s;
}
.cta:hover { background: var(--blue); }
.cta.alt { background: var(--blue); }
.cta.alt:hover { background: var(--navy); }
.cta.ghost { background: transparent; color: var(--navy); border: 1.5px solid rgba(10,40,112,0.18); }
.cta.ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cta.lg { padding: 16px 30px; font-size: 16px; }

/* ------------- MEGA MENU ------------- */
.megamenu-wrap { position: static; }
.megamenu {
  position: absolute;
  left: 50%;
  top: calc(100% - 6px);
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 48px));
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border: 1px solid rgba(10,40,112,0.06);
}
.megamenu .col { padding: 8px 12px; border-right: 2px solid var(--line); }
.megamenu .col:last-child { border-right: none; }
.megamenu .col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin: 0 0 12px 0;
  font-weight: 600;
}
.megamenu .col a {
  display: block;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin: 0 -10px;
  transition: background .12s;
}
.megamenu .col a:hover { background: var(--tint); color: var(--navy); }

/* ------------- HERO ------------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.55) 100%);
  z-index: 1;
}
.hero .wrap {
  max-width: 1440px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; background: #16b364; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22,179,100,0.18);
}
h1.hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 900;
  color: var(--navy);
  margin: 22px 0 22px;
  text-wrap: balance;
}
h1.hero-title .accent { color: var(--blue); font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
  display: flex;
  gap: 72px;
  margin-top: 48px;
  padding-top: 28px;
  justify-content: center;
}
.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  padding: 24px 28px 20px;
  min-width: 130px;
  box-shadow: 0 2px 12px rgba(10,40,112,0.06);
}
.stat-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--tint) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  text-align: center;
}
.stat-lbl {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  max-width: 80px;
  line-height: 1.35;
}

/* hero visual */
.hero-visual { position: relative; height: 540px; }
.hero-video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 540px;
  flex-shrink: 0;
  align-self: stretch;
}
.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 112, 0.45);
  border-radius: 24px;
}
.hv-card { position: absolute; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 22px; border: 1px solid rgba(10,40,112,0.04); }
.hv-main { inset: 40px 0 40px 40px; background: linear-gradient(155deg, var(--navy) 0%, #1646a8 70%, var(--blue) 110%); color: #fff; border: none; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; overflow: hidden; }
.hv-main::before { content: ''; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle at center, rgba(255,255,255,0.16), transparent 70%); }
.hv-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; margin-bottom: 14px; }
.hv-h { font-size: 28px; font-weight: 600; line-height: 1.18; margin-bottom: 18px; }
.hv-list { display: grid; gap: 10px; font-size: 14px; }
.hv-list li { display: flex; gap: 10px; align-items: center; opacity: 0.92; }
.hv-list li svg { flex-shrink: 0; }
.hv-pill { top: 12px; right: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.hv-pill .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--tint); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.hv-pill .l { font-size: 12px; color: var(--muted); }
.hv-pill .v { font-size: 15px; font-weight: 600; color: var(--navy); }
.hv-bottom { bottom: 8px; right: 30px; width: 240px; }
.hv-bottom .row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hv-bottom .icc { width: 36px; height: 36px; border-radius: 50%; background: rgba(22,179,100,0.12); color: #16b364; display: flex; align-items: center; justify-content: center; }
.hv-bottom .label { font-size: 13px; font-weight: 600; color: var(--navy); }
.hv-bottom .progress { height: 6px; background: var(--line); border-radius: 99px; overflow: hidden; }
.hv-bottom .progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), #5a96ff); border-radius: 99px; }
.hv-pillars-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hv-pillar-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hv-pillar-mini-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-pillar-mini-num {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.hv-pillar-mini-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

/* ------------- TRUST BAR ------------- */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-badges {
  display: flex; gap: 32px; flex-wrap: wrap;
  flex: 1;
}
.tb {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  opacity: 0.7;
  display: flex; align-items: center; gap: 8px;
}
.tb .b { background: var(--navy); color: #fff; padding: 3px 8px; border-radius: 6px; font-size: 11px; letter-spacing: 0.05em; }

/* ------------- SECTIONS ------------- */
section { padding: 100px 0; position: relative; }
section.alt { background: var(--bg-warm); }
section.dark { background: var(--navy-deep); color: #fff; }
section.dark h2 { color: #fff; }
section.dark .section-eyebrow { color: var(--blue-soft); }
section.dark .section-sub { color: rgba(255,255,255,0.7); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.1;
  text-wrap: balance;
}
h2 .accent { color: var(--blue); font-style: italic; font-weight: 600; }
.section-sub {
  font-size: 17.5px;
  color: var(--muted);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ------------- DIENSTEN GRID ------------- */
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.dienst {
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0d2f8a 50%, var(--blue) 100%);
  border: none;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 8px 24px rgba(10,40,112,0.25), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dienst-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.dienst-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dienst-content {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dienst::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.dienst:nth-child(2) { background: linear-gradient(155deg, var(--navy-deep) 0%, #0d2f8a 50%, var(--blue) 100%); }
.dienst:nth-child(3) { background: linear-gradient(150deg, var(--navy-deep) 0%, #0d2f8a 45%, var(--blue) 100%); }
.dienst:nth-child(4) { background: linear-gradient(160deg, var(--navy-deep) 0%, #0d2f8a 40%, #1F6BFF 100%); }
.dienst:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,40,112,0.4);
}
.dienst .num {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.dienst h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.dienst p { color: rgba(255,255,255,0.65); margin: 0 0 22px; font-size: 15px; line-height: 1.55; }
.dienst ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 8px; }
.dienst ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.88);
}
.dienst ul li svg { flex-shrink: 0; color: #5a96ff; }
.dienst .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #7aadff;
}

/* ------------- DEEP SECTIONS ------------- */
.deep {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.deep .left h2 { font-size: clamp(28px, 3.4vw, 38px); }
.deep .left p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.deep .left .meta {
  display: grid; gap: 10px; margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.deep .left .meta .mi { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.deep .left .meta .mi svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.subcards { display: grid; gap: 14px; }
.subcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.subcard:hover { border-color: rgba(31,107,255,0.25); box-shadow: var(--shadow-sm); }
.subcard .head {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
}
.subcard .head .ix {
  width: 44px; height: 44px;
  background: var(--tint); color: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.subcard.open .head .ix { background: var(--navy); color: #fff; }
.subcard .head .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
  letter-spacing: -0.01em;
}
.subcard .head .desc {
  font-size: 14px; color: var(--muted); margin-top: 2px;
  font-weight: 400;
}
.subcard .head .pl { color: var(--muted); transition: transform .2s; }
.subcard.open .head .pl { transform: rotate(45deg); color: var(--blue); }
.subcard .body {
  display: none;
  padding: 0 26px 28px 88px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: -1px;
}
.subcard.open .body { display: block; }
.subcard .body p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; }
.subcard .body h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--navy); margin: 22px 0 12px; font-weight: 600;
}
.subcard .body ul { padding: 0; list-style: none; margin: 0 0 14px; display: grid; gap: 8px; }
.subcard .body ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.5;
}
.subcard .body ul li svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }

.steps {
  display: grid; gap: 0;
  margin-top: 12px;
  border-left: 2px dashed rgba(31,107,255,0.3);
  padding-left: 24px;
  margin-left: 6px;
}
.step { padding-bottom: 18px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute; left: -31px; top: 4px;
  width: 12px; height: 12px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.step .stitle { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.step .stitle .n { color: var(--blue); margin-right: 6px; font-weight: 700; }
.step p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ------------- TALEN BANNER ------------- */
.langs {
  background: linear-gradient(140deg, var(--navy) 0%, #133a92 60%, var(--blue) 130%);
  color: #fff;
  border-radius: 28px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.langs::before, .langs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
}
.langs::before { width: 500px; height: 500px; right: -150px; top: -200px; }
.langs::after { width: 400px; height: 400px; left: -120px; bottom: -180px; }
.langs-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.langs h2 { color: #fff; font-size: 38px; }
.langs p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.langs-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.langs-tag {
  padding: 10px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.langs-vis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.lv-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(12px);
}
.lv-card .lv-flag {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 8px; margin-bottom: 10px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.lv-card .lv-name { font-size: 14px; font-weight: 600; }
.lv-card .lv-sub { font-size: 11.5px; opacity: 0.7; margin-top: 2px; }

/* ------------- LANGS WERKWIJZE ------------- */
.langs-werkwijze {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.langs-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 0;
}
.langs-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.langs-step-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  line-height: 1;
}
.langs-step-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.langs-step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ------------- WHY US ------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}
.why-card .ic {
  width: 52px; height: 52px;
  background: var(--navy); color: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.why-card h4 { font-size: 19px; font-weight: 600; color: var(--navy); margin: 0 0 10px; }
.why-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ------------- TESTIMONIALS ------------- */
.quote-section {
  position: relative;
  overflow: hidden;
  background: #1a3eb4;
  padding: 180px 0;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('foto2.png') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.quote-section .wrap { position: relative; z-index: 1; }
.quote-section .section-eyebrow {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.quote-section h2 { color: #fff; }
.quote-section h2 .accent { color: #7eb3ff; }
.quote-section > .wrap > div > p { color: rgba(255,255,255,0.72) !important; }
.quote {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.quote-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: relative;
}
.quote-card .qm {
  font-family: 'Poppins', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.18;
  position: absolute;
  top: 12px; left: 28px;
  font-weight: 700;
}
.quote-card blockquote {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  text-wrap: balance;
}
.quote-card .who {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.quote-card .who .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
}
.quote-card .who .n { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.quote-card .who .r { font-size: 13px; color: var(--muted); }

/* ------------- FAQ ------------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  cursor: pointer;
}
.faq-item .qrow { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-item .q { font-size: 16px; font-weight: 600; color: var(--navy); }
.faq-item .a {
  display: none;
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.open .a { display: block; }
.faq-item.open .pl { transform: rotate(45deg); color: var(--blue); }
.faq-item .pl { color: var(--muted); transition: transform .2s; flex-shrink: 0; }

/* ------------- CTA SECTION ------------- */
.cta-section {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 32px;
  padding: 72px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(31,107,255,0.4), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(31,107,255,0.2), transparent 60%);
}
.cta-section .wrap-inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.55; margin: 16px 0 32px; }
.cta-section .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-section .cta { background: #fff; color: var(--navy); }
.cta-section .cta:hover { background: var(--blue); color: #fff; }
.cta-section .cta.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-section .cta.ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.cta-meta {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(12px);
}
.cta-meta .row { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.cta-meta .row:last-child { margin-bottom: 0; }
.cta-meta .ic {
  width: 42px; height: 42px;
  background: rgba(31,107,255,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-soft);
  flex-shrink: 0;
}
.cta-meta .l { font-size: 12px; color: rgba(255,255,255,0.65); }
.cta-meta .v { font-size: 15px; font-weight: 500; }

/* ------------- FOOTER ------------- */
footer.site {
  background: #0a1738;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
}
footer.site .top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer.site h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.site ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color .15s;
}
footer.site ul a:hover { color: var(--blue-soft); }
footer.site .brand-name { color: #fff; }
footer.site .brand-name .smart { color: var(--blue-soft); }
footer.site .blurb { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 320px; color: rgba(255,255,255,0.55); }
footer.site .footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer.site .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.45);
}

/* ------------- ACTIVE NAV ------------- */
.nav a.active, .nav button.navlink.active {
  color: var(--blue);
  background: var(--tint);
}

/* ------------- STAGES GRID ------------- */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.stage-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(31,107,255,0.15);
  border-top: 3px solid var(--blue);
  position: relative;
  box-shadow: 0 2px 10px rgba(10,40,112,0.06);
}
.stage-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800; font-size: 15px;
  margin-bottom: 16px;
  background: var(--blue) !important;
  color: #fff !important;
}
.stage-num-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--tint);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.stage-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.stage-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; font-style: italic; }

/* ------------- ZO WERKT PROFSMART ------------- */
.zo-werkt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(10,40,112,0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.zo-werkt-step {
  background: var(--navy);
  padding: 28px 32px;
}
.zo-werkt-num {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.zo-werkt-step h4 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.zo-werkt-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}
.zo-werkt-quote {
  background: rgba(31,107,255,0.06);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 26px;
  margin: 0;
}
.zo-werkt-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.6;
}
.zo-werkt-quote cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  font-style: normal;
}

/* ------------- PAGE HERO ------------- */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(31,107,255,0.08), transparent 60%),
    radial-gradient(600px 300px at 0% 110%, rgba(10,40,112,0.05), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; max-width: 920px; }
.page-hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 16px 0 18px;
  font-weight: 900;
  text-wrap: balance;
}
.page-hero h1 .accent { color: var(--blue); font-style: italic; font-weight: 600; }
.page-hero p {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 720px;
  margin: 0;
}

/* ------------- DIENSTEN TOC ------------- */
.diensten-toc {
  padding: 40px 0 30px;
  background: var(--bg);
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.toc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.toc-card:hover {
  border-color: rgba(31,107,255,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.toc-icon {
  width: 44px; height: 44px;
  background: var(--navy); color: #fff;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.16em;
  margin-bottom: 2px;
}
.toc-title { font-size: 15.5px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.toc-count { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ------------- OVER PAGE ------------- */
.over-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.over-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 22px;
}
.over-side { display: grid; gap: 14px; position: sticky; top: 100px; }
.over-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.over-stat:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.over-stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 80px;
  font-family: 'Exo 2', sans-serif;
}
.over-stat-lbl {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
}

/* ------------- VACATURES ------------- */
.vacs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.vac-list { display: grid; gap: 16px; }
.vac-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.vac-card:hover { border-color: rgba(31,107,255,0.25); }
.vac-card.open { box-shadow: var(--shadow-md); border-color: rgba(31,107,255,0.3); }
.vac-head {
  display: flex;
  gap: 22px;
  padding: 28px 32px;
  cursor: pointer;
  align-items: flex-start;
}
.vac-ic {
  width: 52px; height: 52px;
  background: var(--tint); color: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vac-card.open .vac-ic { background: var(--navy); color: #fff; }
.vac-info { flex: 1; }
.vac-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.vac-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.vac-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vac-meta .badge {
  background: var(--tint);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.vac-meta .badge.alt {
  background: var(--navy);
  color: #fff;
}
.vac-pitch { font-size: 15px; color: var(--ink); line-height: 1.55; max-width: 640px; }
.vac-toggle {
  color: var(--muted);
  margin-top: 6px;
  transition: transform .2s, color .2s;
}
.vac-card.open .vac-toggle { transform: rotate(45deg); color: var(--blue); }
.vac-body {
  display: none;
  padding: 0 32px 32px;
  border-top: 1px solid var(--line);
  margin-top: -1px;
  padding-top: 28px;
}
.vac-card.open .vac-body { display: block; }
.vac-section { margin-bottom: 24px; }
.vac-section h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 12px;
}
.vac-section p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 14px;
}
.vac-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.vac-section ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.vac-section ul li svg { color: var(--blue); flex-shrink: 0; margin-top: 4px; }
.vac-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 24px 28px;
  background: var(--bg-warm);
  border-radius: 14px;
  margin-bottom: 24px;
}
.vac-twocol .vac-section { margin-bottom: 0; }
.vac-apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 28px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 14px;
}
.vac-apply-t { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.vac-apply p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; margin: 0; max-width: 460px; }
.vac-apply .cta { background: #fff; color: var(--navy); flex-shrink: 0; }
.vac-apply .cta:hover { background: var(--blue); color: #fff; }

/* ------------- FORMS ------------- */
.ps-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 16px; /* 16px prevents iOS Safari zoom-on-focus */
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,107,255,0.10); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235b6680' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: border-color 0.15s, background 0.15s;
}
.form-file-label:hover { border-color: var(--blue); background: var(--tint); color: var(--blue); }
.form-file-label input[type="file"] { display: none; }
.form-file-name { font-size: 13px; color: var(--blue); font-weight: 500; margin-left: auto; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--blue); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-error { background: #fff1f1; border: 1px solid #fca5a5; color: #b91c1c; border-radius: 10px; padding: 12px 16px; font-size: 14px; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; gap: 16px; }
.form-success svg { color: var(--blue); }
.form-success h3 { font-size: 22px; color: var(--navy); margin: 0; }
.form-success p { color: var(--muted); font-size: 15px; margin: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-info-card { background: var(--tint); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; gap: 22px; }
.contact-info-card h4 { font-size: 18px; color: var(--navy); margin: 0 0 4px; }
.contact-info-card .ci-row { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-card .ci-icon { width: 36px; height: 36px; background: var(--navy); color: #fff; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .ci-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-info-card .ci-value { font-size: 14.5px; font-weight: 500; color: var(--ink); }
/* =====================================================
   MOBILE MENU
   ===================================================== */
.mob-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  color: var(--navy);
  transition: background .15s;
  flex-shrink: 0;
}
.mob-toggle:hover { background: var(--tint); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 200;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: -webkit-fill-available;
  padding: 0 24px 40px;
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid var(--line);
  margin: 0 -24px;
  padding: 0 24px;
  flex-shrink: 0;
}
.mob-close {
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.mob-close:hover { background: var(--tint); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  flex: 1;
  gap: 4px;
}
.mobile-nav-links > a,
.mob-diensten-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s, color .15s;
  width: 100%;
  text-align: left;
}
.mobile-nav-links > a:hover,
.mob-diensten-btn:hover { background: var(--tint); color: var(--navy); }
.mobile-nav-links > a.active { color: var(--blue); background: var(--tint); }
.mob-diensten-btn .chev { transition: transform .2s; }
.mob-diensten-btn.open .chev { transform: rotate(180deg); }

.mob-diensten-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0 4px 16px;
  padding: 8px 0 8px 16px;
  border-left: 2px solid var(--line);
}
.mob-diensten-sub a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  display: block;
  transition: background .12s, color .12s;
}
.mob-diensten-sub a:first-child { color: var(--blue); font-weight: 600; }
.mob-diensten-sub a:hover { background: var(--tint); color: var(--navy); }

.mobile-nav-footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* =====================================================
   TABLET  ≤ 1024px
   ===================================================== */
@media (max-width: 1024px) {
  /* Header */
  .nav { display: none; }
  .header-cta { display: none; }
  .mob-toggle { display: flex; }

  /* Wrap padding */
  .wrap { padding: 0 24px; }

  /* Mega menu (still shown if opened via desktop resize edge-case) */
  .megamenu { width: calc(100vw - 48px); grid-template-columns: 1fr 1fr; }

  /* Hero */
  .hero { padding: 60px 0 80px; }
  .hero-bg-overlay { background: linear-gradient(105deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.90) 100%); }
  .hero-visual { height: 420px; }
  .hero-video { height: 420px; }
  .hero-stats { gap: 24px; }

  /* Sections */
  section { padding: 72px 0; }
  .cta-section { padding: 48px 36px; border-radius: 22px; }
  .cta-section .wrap-inner { grid-template-columns: 1fr; gap: 40px; }
  .langs { padding: 40px; border-radius: 22px; }
  .langs-inner { grid-template-columns: 1fr; gap: 40px; }
  .langs h2 { font-size: 30px; }
  .langs-vis { grid-template-columns: repeat(5, 1fr); }
  .langs-steps { grid-template-columns: repeat(3, 1fr); }

  /* Grids */
  .dienst-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stages-grid { grid-template-columns: repeat(3, 1fr); }
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
  .deep { grid-template-columns: 1fr; gap: 48px; }
  .quote { grid-template-columns: 1fr; gap: 36px; }
  .over-grid { grid-template-columns: 1fr; gap: 40px; }
  .over-side { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Deep section left */
  .deep .left { max-width: 640px; }

  /* Diensten foto banner */
  .diensten-foto-banner { height: 280px; }
  .diensten-foto-overlay h2 { font-size: clamp(24px, 4vw, 38px); }

  /* Quote section */
  .quote-section { padding: 80px 0; }

  /* Clients carousel */
  .clients-section { padding: 48px 0; }

  /* Footer */
  footer.site .top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  footer.site .top > div:first-child { grid-column: 1 / -1; }
  footer.site .footer-mid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 24px; }

  /* Vacatures */
  .vac-twocol { grid-template-columns: 1fr; gap: 0; }
  .vac-apply { flex-direction: column; align-items: flex-start; }
  .vac-head { padding: 24px; }
  .vac-body { padding: 0 24px 24px; padding-top: 24px; }

  /* FAQ page */
  .faq-list { max-width: 100%; }
}

/* =====================================================
   MOBILE  ≤ 767px
   ===================================================== */
@media (max-width: 767px) {
  /* Base */
  .wrap { padding: 0 16px; }
  section { padding: 56px 0; }
  h2 { font-size: clamp(26px, 7vw, 36px); }
  .section-sub { font-size: 16px; }
  .section-head { margin-bottom: 40px; }

  /* Header */
  .site-header .row { height: 66px; gap: 0; justify-content: space-between; }

  /* Hero */
  .hero { padding: 44px 0 60px; }
  .hero-visual { display: none; }
  .hero-video { display: none; }
  h1.hero-title { font-size: clamp(28px, 8vw, 42px); }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding-top: 24px; margin-top: 36px; justify-content: center; }
  .hero-stats .stat { flex: 0 0 auto; }
  .stat-circle { width: 68px; height: 68px; }
  .stat-num { font-size: 18px; }

  /* Grids */
  .dienst-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .stages-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .toc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .toc-card { padding: 14px; gap: 12px; }
  .toc-icon { width: 36px; height: 36px; }
  .toc-title { font-size: 13px; }
  .toc-count { display: none; }

  /* Diensten detail */
  .dienst { padding: 26px; }

  /* Deep sections */
  .subcard .body { padding: 0 18px 22px 18px; padding-top: 18px; }
  .subcard .head { padding: 18px; }
  .subcard .head .title { font-size: 15px; }
  .deep .left h2 { margin-top: 12px; }

  /* Stages */
  .stage-card { padding: 18px; }
  .stage-card h4 { font-size: 15px; }

  /* Quote */
  .quote-section { padding: 56px 0; }
  .quote-card { padding: 28px; }
  .quote-card blockquote { font-size: 18px; }
  .quote-section h2 { font-size: clamp(24px, 7vw, 34px); }

  /* Diensten foto banner */
  .diensten-foto-banner { height: 200px; }
  .diensten-foto-overlay h2 { font-size: clamp(20px, 6vw, 28px); margin-top: 8px; }

  /* CTA section */
  .cta-section { padding: 36px 24px; border-radius: 18px; }
  .cta-section h2 { font-size: clamp(24px, 7vw, 34px); }

  /* Langs */
  .langs { padding: 28px 24px; border-radius: 18px; }
  .langs-vis { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .langs-steps { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 24px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer.site { padding: 56px 0 24px; }
  footer.site .top { grid-template-columns: 1fr; gap: 32px; }
  footer.site .top > div:first-child { grid-column: auto; }
  footer.site .footer-mid { grid-template-columns: 1fr; gap: 24px; padding: 28px 16px; }
  footer.site .bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer.site .bottom > div:last-child { flex-direction: column; gap: 8px; align-items: center; }

  /* Over page */
  .over-grid { grid-template-columns: 1fr; }
  .over-side { grid-template-columns: 1fr 1fr; }
  .over-stat { padding: 16px 18px; }
  .over-stat-num { font-size: 26px; min-width: 64px; }

  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 44px); }
  .page-hero p { font-size: 16px; }

  /* FAQ page */
  .faq-q { font-size: 15px; padding: 16px 0; }
  .faq-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; }

  /* Referenties page */
  .ref-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ref-card { padding: 24px 16px; }

  /* Clients carousel */
  .clients-track { gap: 32px; }
  .client-logo { min-width: 100px; height: 52px; }
  .client-logo img { max-height: 44px; max-width: 120px; }

  /* Vacatures */
  .vacs-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .vac-head { flex-wrap: wrap; padding: 20px; gap: 14px; }
  .vac-ic { width: 44px; height: 44px; }
  .vac-title { font-size: 18px; }
  .vac-body { padding: 0 20px 20px; padding-top: 20px; }
  .vac-twocol { padding: 16px; }
}

/* =====================================================
   SMALL MOBILE  ≤ 420px
   ===================================================== */
@media (max-width: 420px) {
  .stages-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 12px; }
  .hero-stats .stat { flex: 1 1 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .cta { width: 100%; justify-content: center; }
  .langs-vis { grid-template-columns: repeat(2, 1fr); }
  .over-side { grid-template-columns: 1fr; }
  .cta-section .ctas { flex-direction: column; }
  .cta-section .ctas .cta { width: 100%; justify-content: center; }
  .toc-grid { grid-template-columns: 1fr; }
  .diensten-foto-banner { height: 180px; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .faq-q { font-size: 14px; }
  footer.site .bottom > div:last-child { font-size: 13px; }
}

/* ========== DIENSTEN FOTO BANNER ========== */
.diensten-foto-banner {
  position: relative;
  height: 340px;
  background: url('foto1.jpg') center/cover no-repeat;
  overflow: hidden;
}
.diensten-foto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,40,112,0.82) 0%, rgba(31,107,255,0.60) 100%);
  display: flex;
  align-items: center;
}
.diensten-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.diensten-foto-overlay h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 640px;
}
@media (max-width: 767px) {
  .diensten-foto-banner { height: 240px; }
}

/* ========== CLIENTS CAROUSEL ========== */
.clients-section {
  padding: 56px 0;
  background: var(--bg-warm);
  overflow: hidden;
}
.clients-intro {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 36px;
}
.clients-track-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes clients-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  min-width: 130px;
  padding: 8px 16px;
  flex-shrink: 0;
  opacity: 0.75;
  filter: grayscale(1);
  transition: opacity 0.2s, filter 0.2s;
}
.client-logo:hover { opacity: 1; filter: grayscale(0); }
.client-logo img { max-height: 64px; max-width: 170px; width: auto; object-fit: contain; }

/* ========== REFERENTIES PAGE ========== */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ref-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ref-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ref-card img { max-height: 80px; max-width: 180px; width: auto; object-fit: contain; }
@media (max-width: 1024px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-track { gap: 32px; }
  .client-logo { min-width: 100px; height: 52px; }
  .client-logo img { max-height: 44px; max-width: 120px; }
}
@media (max-width: 420px) { .ref-grid { grid-template-columns: 1fr 1fr; } }

/* ========== FAQ PAGE ========== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.faq-q:hover { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.22s ease;
}
.faq-open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}
.faq-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 32px;
  background: var(--tint);
  border-radius: var(--radius);
}
.faq-cta p { margin: 0; font-weight: 500; color: var(--ink); }
@media (max-width: 767px) {
  .faq-q { font-size: 15px; padding: 16px 0; }
  .faq-cta { flex-direction: column; align-items: flex-start; gap: 14px; padding: 24px; }
}

/* ========== WHATSAPP FAB ========== */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.14);
}
@media (max-width: 767px) {
  .wa-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-fab svg { width: 24px; height: 24px; }
}

/* ========== NIEUWS ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.news-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.news-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-cat-badge {
  background: var(--tint);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-card-date {
  font-size: 13px;
  color: var(--muted);
}
.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}
.news-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}

/* News detail */
.news-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 20px;
}
.news-back:hover { text-decoration: underline; }
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.news-article {
  max-width: 760px;
  padding-top: 8px;
  padding-bottom: 80px;
}
.news-body-h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
}
.news-body-p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0 0 20px;
}
.news-body-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-body-ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.news-body-ul li svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; gap: 18px; }
  .news-card { padding: 22px; }
}
