/*
 Theme Name: Woonklussen Theme
 Theme URI: https://www.woonklussen.nl
 Description: Custom theme voor Woonklussen - woningonderhoud, klussen en renovatie
 Author: Woonklussen
 Author URI: https://www.woonklussen.nl
 Version: 1.128.0
 License: GNU General Public License v2 or later
 Text Domain: woonklussen
*/

/* ======================
   SPINNER (form-submit feedback)
====================== */
.wk-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 6px;
  animation: wk-spin 0.8s linear infinite;
}
@keyframes wk-spin { to { transform: rotate(360deg); } }

/* ======================
   DESIGN TOKENS
====================== */
:root {
  --primary: #01A4A4;
  --primary-light: #1bbebe;
  --primary-dark: #018585;
  --primary-gradient: linear-gradient(135deg, #01A4A4 0%, #1bbebe 100%);
  --accent: #52088c;
  --accent-dark: #3d0669;
  --accent-warm: #e8247c;
  --accent-warm-dark: #c41d68;
  --danger: #cf2e2e;
  --warning: #ef6c00;
  --bg: #f7f5f2;
  --bg-alt: #f0ece6;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f0f4f8;
  --text: #2c3e50;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(1,164,164,0.08);
  --shadow-lg: 0 12px 40px rgba(1,164,164,0.12);
  --shadow-xl: 0 20px 60px rgba(1,164,164,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--primary-dark); font-weight: 700; }

/* ======================
   LAYOUT
====================== */
.wk-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.wk-section {
  padding: 80px 0;
}

.wk-section-alt {
  background: var(--bg-alt);
}

.wk-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.wk-section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.wk-section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.wk-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.wk-center { text-align: center; }

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

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

/* ======================
   HEADER
====================== */
body.admin-bar .wk-header {
  top: 32px;
}

.wk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--primary);
  transition: all var(--transition);
}

.wk-header.scrolled {
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.wk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.wk-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.wk-logo-img {
  height: 90px;
  width: auto;
}

/* Huisje-beeldmerk, gelijk aan vveregie.com: dak in teal, tweede daklijn
   en raam in cyclaam. */
.wk-logo-mark {
  height: 49px;
  width: auto;
  flex-shrink: 0;
}

.wk-mark-roof,
.wk-mark-line {
  fill: none;
  stroke-width: 3;
}

.wk-mark-roof { stroke: var(--primary); }
.wk-mark-line { stroke: var(--accent-warm); }
.wk-mark-window { fill: var(--accent-warm); }

/* Woordmerk in Office477-stijl: "Woon" in teal, "Klussen" in cyclaam. */
.wk-logo-text .lw2 { color: var(--accent-warm); }

.wk-logo-text {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.wk-logo-sub {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
  margin-left: 4px;
  white-space: nowrap;
}

/* NAV */
.wk-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  /* lucht tussen het logo en het eerste menu-item */
  margin-left: 34px;
}

.wk-nav-list > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.wk-nav-list > li > a:hover,
.wk-nav-list > li > a.active {
  color: var(--primary);
  background: rgba(1,164,164,0.06);
}

/* DROPDOWN */
.wk-has-dropdown {
  position: relative;
}

.wk-has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 2px;
  transition: transform var(--transition);
}

/* Werkgebied: twaalf provincies in twee kolommen, anders wordt de lijst te lang. */
.wk-dropdown-kolommen {
  min-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6px;
}
.wk-dropdown-kolommen > li:first-child,
.wk-dropdown-kolommen > .wk-dropdown-sep { grid-column: 1 / -1; }

/* Provinciefilter op de partnerpagina */
.wk-provincie-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.wk-provincie-pil {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.wk-provincie-pil:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.wk-provincie-pil.aan {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.wk-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.wk-has-dropdown:hover .wk-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wk-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}

.wk-header-login {
  position: relative;
}
.wk-header-login .wk-dropdown {
  right: 0;
  left: auto;
  min-width: 180px;
}
.wk-header-login > .wk-btn-header::after {
  display: none;
}

.wk-dropdown li a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

/* OPDRACHT MELDEN — abonnement-notice */
.wk-abo-notice {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff4f8;
  border: 1px solid #fbd4e4;
  border-left: 4px solid var(--accent-warm);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(232,36,124,0.06);
}
.wk-abo-notice-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.wk-abo-notice-body { flex: 1; min-width: 0; }
.wk-abo-notice-body strong {
  display: block;
  color: var(--accent-warm-dark);
  font-size: 15px;
  margin-bottom: 4px;
}
.wk-abo-notice-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.wk-abo-notice-cta {
  flex-shrink: 0;
  padding: 10px 20px !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.wk-abo-notice--active {
  background: #edfbf7;
  border-color: #c8ecdd;
  border-left-color: #27ae60;
  box-shadow: 0 2px 8px rgba(39,174,96,0.06);
}
.wk-abo-notice--active .wk-abo-notice-body strong { color: #1d7a45; }
@media (max-width: 720px) {
  .wk-abo-notice { flex-direction: column; align-items: flex-start; gap: 14px; }
  .wk-abo-notice-cta { width: 100%; text-align: center; justify-content: center; }
}

/* OPDRACHT MELDEN — gate (geen abonnement) */
.wk-abo-gate {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 0 0 32px;
}
.wk-abo-gate-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.wk-abo-gate h2 {
  font-size: 26px;
  color: var(--primary-dark);
  margin: 0 0 12px;
}
.wk-abo-gate p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 24px;
}
.wk-abo-gate-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .wk-abo-gate { padding: 36px 20px; }
  .wk-abo-gate-ctas .wk-btn { width: 100%; }
}

/* NAV — Partners uitgelicht (geen knop, wel accent) */
.wk-nav-list > li.wk-nav-highlight > a {
  color: var(--accent-warm) !important;
  font-weight: 700 !important;
}
.wk-nav-list > li.wk-nav-highlight > a:hover,
.wk-nav-list > li.wk-nav-highlight > a:focus {
  color: var(--accent-warm-dark) !important;
}

/* PARTNER LOGIN (tussenscherm op /partnerportaal/) */
.wk-partner-login-only {
  padding: 40px 36px;
}
.wk-partner-login-only h2 {
  text-align: center;
  font-size: 24px;
}
.wk-partner-login-only .wk-partner-card-sub {
  text-align: center;
  margin-bottom: 24px;
}
.wk-partner-login-only .wk-partner-links {
  text-align: center;
  margin: 12px 0 20px;
}
.wk-partner-login-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.wk-partner-login-footer span { font-weight: 600; }

/* PARTNER AANMELDEN */
.wk-partner-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 960px) {
  .wk-partner-grid { grid-template-columns: 1fr; }
}
.wk-partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.wk-partner-card h2 {
  font-size: 22px;
  color: var(--primary-dark);
  margin: 0 0 6px;
}
.wk-partner-card-sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 20px;
}
.wk-partner-card form p { margin-bottom: 14px; }
.wk-partner-card label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.wk-partner-card input[type=text],
.wk-partner-card input[type=password],
.wk-partner-card input[type=email],
.wk-partner-card input[type=tel],
.wk-partner-card input[type=url],
.wk-partner-card input[type=number],
.wk-partner-card select,
.wk-partner-card textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
  background: #fff;
  box-sizing: border-box;
  transition: border-color var(--transition);
}
.wk-partner-card input:focus,
.wk-partner-card select:focus,
.wk-partner-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.12);
}
.wk-partner-card .login-submit .button-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
.wk-partner-links { margin: 14px 0 0; font-size: 14px; }
.wk-partner-links a { color: var(--primary); text-decoration: none; }
.wk-partner-links a:hover { text-decoration: underline; }

.wk-partner-form fieldset {
  border: 0;
  border-top: 1px solid var(--border);
  padding: 20px 0 4px;
  margin: 0 0 10px;
}
.wk-partner-form fieldset:first-of-type { border-top: 0; padding-top: 0; }
.wk-partner-form legend {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 0;
  margin-bottom: 12px;
}
.wk-partner-hint { font-weight: 400; font-size: 13px; color: var(--text-muted); }
/* Label boven het veld, veld op volle breedte: anders schuiven de invoervakken
   achter de labeltekst aan en lopen de kolommen niet gelijk. */
.wk-partner-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.wk-partner-form input[type=text],
.wk-partner-form input[type=email],
.wk-partner-form input[type=tel],
.wk-partner-form input[type=password],
.wk-partner-form input[type=number],
.wk-partner-form input[type=url],
.wk-partner-form input[type=date],
.wk-partner-form select,
.wk-partner-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.wk-partner-form input:focus,
.wk-partner-form select:focus,
.wk-partner-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.1);
  background: #fff;
}

.wk-partner-form textarea { min-height: 120px; resize: vertical; }

/* Keuzevakjes houden hun eigen indeling (vinkje naast de tekst). */
.wk-partner-form .wk-partner-check input { width: auto; margin-top: 3px; }
.wk-partner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .wk-partner-row { grid-template-columns: 1fr; } }

.wk-partner-checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 14px;
}
.wk-partner-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500 !important;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 0;
}
.wk-partner-check input[type=checkbox] {
  margin-top: 3px;
  accent-color: var(--primary);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.wk-partner-check span { line-height: 1.35; }
.wk-partner-terms { background: var(--bg-alt); padding: 16px 18px !important; border-radius: var(--radius-sm); border-top: 0; }
.wk-partner-terms .wk-partner-check { font-size: 14px; }

.wk-partner-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.wk-partner-status { font-size: 14px; color: var(--text-secondary); }
.wk-partner-status--error { color: #c62828; font-weight: 600; }

.wk-partner-success {
  text-align: center;
  padding: 40px 20px;
}
.wk-partner-success h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin: 12px 0 10px;
}
.wk-partner-success p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* HEADER BUTTON */
.wk-btn-header {
  padding: 10px 14px !important;
  font-size: 14px !important;
  margin-left: 0;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

/* Krappere balk: menu en knoppen compacter maken voordat er iets wegvalt.
   Zelfde omslagpunt en maten als vveregie.com. */
@media (max-width: 1560px) {
  .wk-nav-list { margin-left: 10px; }
  .wk-nav-list > li > a { padding: 8px 11px; font-size: 14.5px; }
  .wk-btn-header {
    padding: 9px 13px !important;
    font-size: 13.5px !important;
  }
}

/* Krappe laptopschermen: de payoff op één regel maakt het logo breed, dus
   hier gaan menu en knoppen nog een stap compacter voordat er iets wegvalt. */
@media (max-width: 1320px) {
  .wk-nav-list { margin-left: 6px; }
  .wk-nav-list > li > a { padding: 8px 7px; font-size: 14px; }
  .wk-btn-header {
    padding: 9px 11px !important;
    font-size: 13px !important;
  }
  .wk-header-actions { gap: 7px; }
}
/* Effen kleuren in de balk, net als op vveregie.com: het verloop van
   .wk-btn-primary maakt het turquoise daar lichter dan de huisstijlkleur. */
.wk-btn-header.wk-btn-primary { background: var(--primary); }
.wk-btn-header.wk-btn-primary:hover { background: var(--primary-dark); }
.wk-btn-header.wk-btn-accent { background: var(--accent-warm); }
.wk-btn-header.wk-btn-accent:hover { background: var(--accent-warm-dark); }
.wk-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* Header loopt gelijk met de content-container (1200px), net als vveregie.com. */

/* HAMBURGER */
.wk-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.wk-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.wk-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.wk-hamburger.active span:nth-child(2) { opacity: 0; }
.wk-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================
   BUTTONS
====================== */
.wk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  white-space: nowrap;
}

.wk-btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}
.wk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,164,164,0.3);
  color: #fff;
}

.wk-btn-accent {
  background: var(--accent-warm);
  color: #fff;
}
.wk-btn-accent:hover {
  background: var(--accent-warm-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,36,124,0.3);
  color: #fff;
}

.wk-btn-purple {
  background: var(--accent);
  color: #fff;
}
.wk-btn-purple:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82,8,140,0.3);
  color: #fff;
}

.wk-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.wk-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.wk-btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.wk-btn-outline-dark:hover {
  border-color: var(--primary);
  background: rgba(1,164,164,0.04);
  color: var(--primary);
}

.wk-btn-white {
  background: #fff;
  color: var(--primary);
}
.wk-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: var(--primary);
}

.wk-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.wk-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.wk-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.wk-link:hover { gap: 8px; }

/* ======================
   HERO
====================== */
.wk-hero {
  position: relative;
  min-height: 575px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  background-color: var(--bg);
  /* 2px overlap met de sectie eronder: voorkomt een haarlijn op de naad */
  margin-bottom: -2px;
}

/* Accentlijn langs de schuine rand. Bewust een BROER van het witte vlak (::after op de
   hero zelf): een kind wordt mee-geclipt door de vorm van de ouder, waardoor de
   accentkleur bij 125%/150% schermschaling op de laatste pixelrij doorschemerde. */
.wk-hero::after {
  content: '';
  position: absolute;
  inset: 0 0 3px 0;
  z-index: 0;
  background: linear-gradient(170deg, var(--primary) 0%, var(--accent-warm) 100%);
  -webkit-clip-path: polygon(0 0, 72.4% 0, 52.4% 100%, 0 100%);
  clip-path: polygon(0 0, 66.4% 0, 44.4% 100%, 0 100%);
}

.wk-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-repeat: no-repeat;
  /* auto <n>% = zoom (100% = hele foto in beeld); background-position schuift het beeld */
  background-size: cover;
  background-position: center 45%;
}

/* Lichte beige waas over de foto (15-9, verzoek Jannie). De foto houdt zijn eigen
   kleuren — geen saturate/opacity meer, want dat verbleekte de waaier; in plaats
   daarvan ligt er een dun laagje paginakleur overheen. Zo zakt het beeld terug
   achter de tekst zonder dat de kleuren veranderen. Dekking bijstellen = de
   laatste waarde in de rgba() hieronder. */
.wk-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 245, 242, 0.42);
  pointer-events: none;
}

/* Wit schuin vlak achter de tekst: strak wit tot de onderrand, 2px buiten de banner
   door (overflow knipt af) zodat de laatste pixelrij nooit met de foto mengt. */
.wk-hero-overlay {
  position: absolute;
  inset: 0 0 -2px 0;
  z-index: 1;
  background: #ffffff;
  -webkit-clip-path: polygon(0 0, 72% 0, 52% 100%, 0 100%);
  clip-path: polygon(0 0, 66% 0, 44% 100%, 0 100%);
}

/* Browser zonder clip-path: terugval op de oude lichtwaas over de foto */
@supports not ((clip-path: polygon(0 0, 10% 0, 5% 100%, 0 100%)) or (-webkit-clip-path: polygon(0 0, 10% 0, 5% 100%, 0 100%))) {
  .wk-hero::after { display: none; }
  .wk-hero-overlay { background: linear-gradient(135deg, rgba(255,255,255,0.65) 0%, rgba(247,245,242,0.5) 50%, rgba(255,255,255,0.35) 100%); }
}

.wk-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Tekst links houden, binnen het schuine vlak */
.wk-hero-content > * { max-width: 600px; }

/* Smallere desktop: vlak ruimer zodat de tekst er ruim in past */
@media (max-width: 1150px) and (min-width: 769px) {
  .wk-hero::after {
    -webkit-clip-path: polygon(0 0, 90.4% 0, 64.4% 100%, 0 100%);
    clip-path: polygon(0 0, 90.4% 0, 64.4% 100%, 0 100%);
  }
  .wk-hero-overlay {
    -webkit-clip-path: polygon(0 0, 90% 0, 64% 100%, 0 100%);
    clip-path: polygon(0 0, 90% 0, 64% 100%, 0 100%);
  }
}

.wk-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Tweede regel: kleiner, sierlijk en in cyclaam. */
.wk-hero-title-sier {
  display: block;
  margin-top: 6px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.72em;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--accent-warm);
}

.wk-hero-subtitle {
  font-size: 19px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 32px;
}

.wk-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wk-hero-ctas .wk-btn {
  flex: 0 0 auto;
  text-align: center;
  justify-content: center;
}

/* ======================
   SERVICE CARDS
====================== */
.wk-service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.wk-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wk-service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.wk-service-icon svg {
  width: 28px;
  height: 28px;
}

.wk-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wk-service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* ======================
   AUDIENCE CARDS
====================== */
.wk-audience-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px 100px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wk-audience-card:hover {
  box-shadow: var(--shadow-lg);
}

.wk-audience-card .wk-btn {
  align-self: flex-start;
  margin-top: auto;
}

a.wk-card-logo {
  position: absolute;
  bottom: 24px;
  right: 24px;
  line-height: 0;
  transition: opacity var(--transition);
}

a.wk-card-logo:hover {
  opacity: 0.8;
}

/* Kaartlogo als tekst + beeldmerk (zelfde opzet als in de balk). */
a.wk-card-logo-text {
  display: flex;
  align-items: center;
  line-height: 1.15;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

a.wk-card-logo-text .wk-logo-mark { height: 26px; }
a.wk-card-logo-text .lwk { color: var(--accent-warm); }

a.wk-card-logo img {
  height: 60px;
  width: auto;
}

.wk-audience-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.wk-badge-primary {
  background: rgba(1,164,164,0.1);
  color: var(--primary);
}

.wk-badge-accent {
  background: rgba(82,8,140,0.1);
  color: var(--accent);
}

.wk-badge-warm {
  background: rgba(232,36,124,0.1);
  color: var(--accent-warm);
}

.wk-audience-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.wk-check-list {
  margin-bottom: 24px;
}

.wk-check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-secondary);
}

.wk-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(1,164,164,0.1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2301A4A4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ======================
   PORTAL CARDS
====================== */
.wk-portal-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  position: relative;
  transition: all var(--transition);
}

.wk-portal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.wk-portal-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}

.wk-portal-icon svg {
  width: 28px;
  height: 28px;
}

.wk-portal-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.wk-portal-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.wk-portal-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 20px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.wk-portal-card:hover .wk-portal-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ======================
   ARTICLE CARDS
====================== */
.wk-article-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.wk-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wk-article-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.wk-article-body {
  padding: 24px;
}

.wk-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.wk-tag-onderhoud { background: rgba(1,164,164,0.08); color: var(--primary); }
.wk-tag-interieur { background: rgba(82,8,140,0.08); color: var(--accent); }
.wk-tag-renovatie { background: rgba(232,36,124,0.08); color: var(--accent-warm); }

.wk-article-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.wk-article-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.wk-article-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* ======================
   ABOUT ROW
====================== */
.wk-about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wk-about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.wk-about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wk-about-text h2 {
  margin-bottom: 16px;
}

.wk-about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.wk-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
}

.wk-stat {
  display: flex;
  flex-direction: column;
}

.wk-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.wk-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ======================
   CTA SECTION
====================== */
.wk-cta {
  background: var(--primary-gradient);
  padding: 72px 0;
  text-align: center;
}

.wk-cta h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.wk-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
}

.wk-cta .wk-hero-ctas {
  justify-content: center;
}

/* ======================
   FOOTER
====================== */
.wk-footer {
  background: var(--primary-dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.wk-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* Footer: het hele logo in wit, beeldmerk en woordmerk. */
.wk-logo-footer .wk-logo-text,
.wk-logo-footer .wk-logo-text .lw2,
.wk-logo-footer .wk-logo-sub {
  color: #fff;
}

.wk-logo-footer .wk-mark-roof,
.wk-logo-footer .wk-mark-line { stroke: #fff; }
.wk-logo-footer .wk-mark-window { fill: #fff; }

.wk-footer-desc {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

.wk-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wk-footer ul li {
  margin-bottom: 10px;
}

.wk-footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}

.wk-footer ul li a:hover {
  color: #fff;
}

.wk-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.wk-footer-contact svg {
  flex-shrink: 0;
  opacity: 0.5;
}
.wk-footer-contact a { color: inherit; text-decoration: none; }
.wk-footer-contact a:hover { color: #fff; text-decoration: underline; }
.wk-footer-contact li.wk-footer-kvk {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 6px;
  padding-left: 26px;
}

.wk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.wk-footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ======================
   SCROLL TO TOP
====================== */
.wk-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent-warm);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
  z-index: 99;
}

.wk-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wk-scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.wk-scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ======================
   PORTAL PAGE SHARED
====================== */
.wk-page-hero {
  background: var(--primary-gradient);
  padding: 120px 0 60px;
  text-align: center;
}

.wk-page-hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 8px;
}

.wk-page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
}

.wk-page-content {
  padding: 48px 0 80px;
}

/* LOGIN CARD (shared across portals) */
.wk-login-wrap {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.wk-login-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.wk-login-header {
  background: var(--primary-gradient);
  padding: 32px;
  text-align: center;
}

.wk-login-header h2 {
  color: #fff;
  font-size: 22px;
  margin-top: 12px;
}

.wk-login-header p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 4px;
}

.wk-login-header .wk-logo-img {
  height: 36px;
  margin: 0 auto;
  filter: brightness(10);
}

.wk-login-body {
  padding: 32px;
}

.wk-form-group {
  margin-bottom: 18px;
}

.wk-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.wk-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
}

.wk-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.1);
  background: #fff;
}

.wk-form-input::placeholder {
  color: var(--text-muted);
}

select.wk-form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2394a3b8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

textarea.wk-form-input {
  resize: vertical;
  min-height: 120px;
}

.wk-form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.wk-form-link {
  font-size: 14px;
  color: var(--primary);
  text-align: center;
  display: block;
  margin-top: 16px;
}

/* CONTACT FORM 7 STYLING */
.wpcf7 {
  max-width: 100%;
}
.wpcf7 p {
  margin-bottom: 16px;
}
.wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  box-sizing: border-box;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.1);
  background: #fff;
}
.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
}
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 14px;
  margin: 16px 0 0 !important;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #e74c3c;
}

/* DASHBOARD CARDS */
.wk-dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.wk-dash-card {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.wk-dash-card-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.wk-dash-card-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.wk-dash-card-value.green { color: #27ae60; }
.wk-dash-card-value.red { color: var(--danger); }
.wk-dash-card-value.orange { color: var(--warning); }

/* TABLE */
.wk-table-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.wk-table {
  width: 100%;
  border-collapse: collapse;
}

.wk-table th {
  padding: 18px 20px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.wk-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  border-top: 1px solid var(--border-light);
  vertical-align: middle;
}

.wk-table tr:first-child td { border-top: none; }
.wk-table tr:hover td { background: rgba(247,245,242,0.5); }

.wk-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.wk-status-open { background: rgba(207,46,46,0.08); color: var(--danger); }
.wk-status-paid { background: rgba(39,174,96,0.08); color: #27ae60; }
.wk-status-pending { background: rgba(239,108,0,0.08); color: var(--warning); }
.wk-status-new { background: rgba(1,164,164,0.08); color: var(--primary); }
.wk-status-active { background: rgba(39,174,96,0.08); color: #27ae60; }

/* MOBILE CARDS (hidden on desktop) */
.wk-mobile-cards { display: none; }

.wk-mobile-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--border-light);
}

/* TABS */
.wk-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  width: fit-content;
}

.wk-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.wk-tab.active {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* MULTI-STEP FORM */
.wk-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.wk-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.wk-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}

.wk-step.active .wk-step-num {
  background: var(--primary-gradient);
  color: #fff;
}

.wk-step.completed .wk-step-num {
  background: #27ae60;
  color: #fff;
}

.wk-step-line {
  width: 40px;
  height: 2px;
  background: var(--border);
}

.wk-step.completed + .wk-step-line,
.wk-step.active ~ .wk-step-line {
  background: #27ae60;
}

.wk-step-content {
  display: none;
}

.wk-step-content.active {
  display: block;
}

/* TYPE SELECT CARDS */
.wk-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wk-type-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.wk-type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.wk-type-card.selected {
  border-color: var(--primary);
  background: rgba(1,164,164,0.04);
}

.wk-type-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.wk-type-card h4 {
  font-size: 15px;
  font-weight: 700;
}

/* UPLOAD ZONE */
.wk-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.wk-upload-zone:hover {
  border-color: var(--primary);
  background: rgba(1,164,164,0.02);
}

.wk-upload-zone svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--text-muted);
}

/* PROGRESS BAR */
.wk-progress {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 24px 0;
}

.wk-progress-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.wk-progress-step.done { background: #27ae60; }
.wk-progress-step.current { background: var(--primary); }

/* KENNISBANK */
.wk-search-bar {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.wk-search-bar input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-size: 16px;
  font-family: var(--font);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.wk-search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.wk-search-bar svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.wk-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.wk-cat-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.wk-cat-btn:hover, .wk-cat-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* CONTACT PAGE */
.wk-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.wk-contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.wk-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.wk-contact-icon svg { width: 22px; height: 22px; }

/* ======================
   PRICING CARDS
====================== */
.wk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Eén pakket: kaart gecentreerd en op leesbare breedte in plaats van een
   derde kolom van het raster. */
.wk-pricing-grid.wk-pricing-solo {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.wk-pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.wk-pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.wk-pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.wk-pricing-card.featured::before {
  content: 'Populairste keuze';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-warm);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Bij één abonnement valt er niets te kiezen: geen "populairste keuze"-label
   en geen vergroting, wel de accentrand. */
.wk-pricing-solo .wk-pricing-card.featured::before { content: none; }
.wk-pricing-solo .wk-pricing-card.featured { transform: none; }

.wk-pricing-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.wk-pricing-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.wk-pricing-price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
}

.wk-pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.wk-pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.wk-pricing-card .wk-check-list {
  text-align: left;
  margin-bottom: 28px;
}

.wk-pricing-card .wk-btn {
  width: 100%;
}

/* ======================
   FAQ ACCORDION
====================== */
.wk-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.wk-faq-item {
  border-bottom: 1px solid var(--border);
}

.wk-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: color var(--transition);
}

.wk-faq-question:hover {
  color: var(--primary);
}

.wk-faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.wk-faq-item.open .wk-faq-question::after {
  content: '\2212';
}

.wk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.wk-faq-item.open .wk-faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.wk-faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================
   PROCESS STEPS
====================== */
.wk-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.wk-process-step {
  position: relative;
}

.wk-process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.wk-process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wk-process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* DIENSTEN DETAIL */
.wk-dienst-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wk-dienst-intro img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.wk-dienst-intro h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.wk-dienst-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* DEMO BANNER */
.wk-demo-banner {
  background: linear-gradient(135deg, rgba(1,164,164,0.08) 0%, rgba(82,8,140,0.05) 100%);
  border: 1px solid rgba(1,164,164,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.wk-demo-banner strong {
  color: var(--primary);
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 1024px) {
  .wk-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .wk-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-type-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-process-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .wk-dienst-intro { grid-template-columns: 1fr; }
}

/* Het bureaubladmenu past niet meer onder ~1150px: logo met payoff, zes
   menu-items en twee knoppen. Daar schakelt de balk naar het uitklapmenu. */
@media (max-width: 1150px) {
  .wk-hamburger { display: flex; }
  .wk-btn-header { display: none; }

  .wk-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .wk-nav.open { right: 0; }

  .wk-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .wk-nav-list > li > a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .wk-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
  }

  .wk-has-dropdown > a::after { display: none; }

  /* Mobiel: GEEN schuine lijn. Wit vlak over de volle breedte met een rechte onderrand,
     een strakke accentstreep als scheiding en daaronder een strook van de foto. */
  .wk-hero {
    min-height: 620px;
    max-height: 1040px;
    padding: 112px 0 290px;
  }
  .wk-hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .wk-hero-ctas .wk-btn {
    flex: 0 0 auto;
    width: 100%;
  }
  .wk-hero-bg {
    background-size: cover;
    background-position: center 55%;
  }
  .wk-hero::after {
    inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-warm) 100%);
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 72.6%, 0 72.6%);
    clip-path: polygon(0 66%, 100% 66%, 100% 66.6%, 0 66.6%);
  }
  .wk-hero-overlay {
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 72%, 0 72%);
    clip-path: polygon(0 0, 100% 0, 100% 66%, 0 66%);
  }
  .wk-hero-content { padding: 0 20px; }
  .wk-hero-content > * { max-width: none; }
  .wk-hero-title { font-size: 32px; }
  .wk-hero-title-sier { margin-top: 4px; }
  .wk-hero-subtitle { font-size: 16px; }

  .wk-grid-2, .wk-grid-3 { grid-template-columns: 1fr; }
  .wk-about-row { grid-template-columns: 1fr; gap: 32px; }
  .wk-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .wk-dash-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wk-type-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-contact-grid { grid-template-columns: 1fr; }
  .wk-dienst-intro { grid-template-columns: 1fr; gap: 24px; }
  .wk-process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .wk-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .wk-pricing-card.featured { transform: none; }

  .wk-table-wrap { display: none; }
  .wk-mobile-cards { display: block; }

  .wk-cta h2 { font-size: 24px; }

  .wk-tabs { width: 100%; overflow-x: auto; }

  .wk-step span:not(.wk-step-num) { display: none; }
}

@media (max-width: 768px) {
  .wk-section { padding: 56px 0; }
  .wk-section-title { font-size: 28px; }

  

  /* Mobiel: GEEN schuine lijn. Wit vlak over de volle breedte met een rechte onderrand,
     een strakke accentstreep als scheiding en daaronder een strook van de foto. */
  .wk-hero {
    min-height: 620px;
    max-height: 1040px;
    padding: 112px 0 290px;
  }
  .wk-hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .wk-hero-ctas .wk-btn {
    flex: 0 0 auto;
    width: 100%;
  }
  .wk-hero-bg {
    background-size: cover;
    background-position: center 55%;
  }
  .wk-hero::after {
    inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-warm) 100%);
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 72.6%, 0 72.6%);
    clip-path: polygon(0 66%, 100% 66%, 100% 66.6%, 0 66.6%);
  }
  .wk-hero-overlay {
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 72%, 0 72%);
    clip-path: polygon(0 0, 100% 0, 100% 66%, 0 66%);
  }
  .wk-hero-content { padding: 0 20px; }
  .wk-hero-content > * { max-width: none; }
  .wk-hero-title { font-size: 32px; }
  .wk-hero-title-sier { margin-top: 4px; }
  .wk-hero-subtitle { font-size: 16px; }

  .wk-grid-2, .wk-grid-3 { grid-template-columns: 1fr; }
  .wk-about-row { grid-template-columns: 1fr; gap: 32px; }
  .wk-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .wk-dash-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wk-type-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-contact-grid { grid-template-columns: 1fr; }
  .wk-dienst-intro { grid-template-columns: 1fr; gap: 24px; }
  .wk-process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .wk-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .wk-pricing-card.featured { transform: none; }

  .wk-table-wrap { display: none; }
  .wk-mobile-cards { display: block; }

  .wk-cta h2 { font-size: 24px; }

  .wk-tabs { width: 100%; overflow-x: auto; }

  .wk-step span:not(.wk-step-num) { display: none; }
}

@media (max-width: 480px) {
  .wk-hero-content { padding: 0 24px; }
  .wk-hero-title { font-size: 26px; }
  .wk-hero-ctas { flex-direction: column; }
  .wk-hero-ctas .wk-btn { width: 100%; }
  .wk-dash-grid { grid-template-columns: 1fr 1fr; }
  .wk-dash-card-value { font-size: 22px; }
  .wk-type-grid { grid-template-columns: 1fr 1fr; }
  .wk-stats { flex-direction: column; gap: 16px; }
  .wk-process-grid { grid-template-columns: 1fr; }
}

/* ======================
   KENNISBANK - GRADIENT BANNERS
====================== */
.wk-article-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.wk-article-link:hover { color: inherit; }

.wk-kb-banner {
  aspect-ratio: 16 / 10;
  width: 100%;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  position: relative;
}
/* Fallback voor oudere browsers zonder aspect-ratio support */
@supports not (aspect-ratio: 1 / 1) {
  .wk-kb-banner { height: 220px; }
}

/* Smalle gekleurde strip bovenaan de kaart als er GEEN afbeelding is */
.wk-kb-strip {
  height: 6px;
  width: 100%;
}
.wk-kb-strip.cat-onderhoud { background: linear-gradient(90deg, #01A4A4, #017d87); }
.wk-kb-strip.cat-klussen   { background: linear-gradient(90deg, #52088c, #2b0552); }
.wk-kb-strip.cat-renovatie { background: linear-gradient(90deg, #e8247c, #9c1657); }
.wk-kb-strip.cat-interieur { background: linear-gradient(90deg, #52088c, #e8247c); }
.wk-kb-strip.cat-energie   { background: linear-gradient(90deg, #1bbebe, #01A4A4); }
.wk-kb-strip.cat-tips      { background: linear-gradient(90deg, #01A4A4, #e8247c); }
.wk-kb-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.22), transparent 55%);
  pointer-events: none;
}

/* Per-categorie gradient — alleen tonen als er GEEN afbeelding is.
   Bij has-img levert de inline style background-image:url(...) — die wint dan
   van een externe regel met dezelfde specificity. Door :not(.has-img) te
   gebruiken voorkomen we dat we de inline url accidenteel overschrijven en
   houden we de basis-regel's background-size/position intact. */
.wk-kb-banner:not(.has-img).cat-onderhoud { background-image: linear-gradient(135deg, #01A4A4 0%, #017d87 100%); }
.wk-kb-banner:not(.has-img).cat-klussen   { background-image: linear-gradient(135deg, #52088c 0%, #2b0552 100%); }
.wk-kb-banner:not(.has-img).cat-renovatie { background-image: linear-gradient(135deg, #e8247c 0%, #9c1657 100%); }
.wk-kb-banner:not(.has-img).cat-interieur { background-image: linear-gradient(135deg, #52088c 0%, #e8247c 100%); }
.wk-kb-banner:not(.has-img).cat-energie   { background-image: linear-gradient(135deg, #1bbebe 0%, #01A4A4 100%); }
.wk-kb-banner:not(.has-img).cat-tips      { background-image: linear-gradient(135deg, #01A4A4 0%, #e8247c 100%); }

/* Category-tag kleurvarianten (toevoegingen) */
.wk-tag-klussen { background: rgba(82,8,140,0.08);  color: #52088c; }
.wk-tag-energie { background: rgba(42,182,143,0.10); color: #017d87; }
.wk-tag-tips    { background: rgba(245,166,35,0.12); color: #b36a00; }

/* ======================
   KENNISBANK - ARTIKEL (single)
====================== */
.wk-kb-article-hero {
  position: relative;
  /* 94px gaat op aan de vaste header; de rest is echte lucht boven het label. */
  padding: 130px 0 50px;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wk-kb-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
/* Per-categorie gradient — alleen tonen als er GEEN afbeelding is. Bij has-img
   levert page-kb-artikel.php een inline background-image met overlay-gradient + url. */
.wk-kb-article-hero:not(.has-img).cat-onderhoud { background-image: linear-gradient(135deg, #01A4A4 0%, #015e66 100%); }
.wk-kb-article-hero:not(.has-img).cat-klussen   { background-image: linear-gradient(135deg, #52088c 0%, #1c0338 100%); }
.wk-kb-article-hero:not(.has-img).cat-renovatie { background-image: linear-gradient(135deg, #e8247c 0%, #6d0d3b 100%); }
.wk-kb-article-hero:not(.has-img).cat-interieur { background-image: linear-gradient(135deg, #52088c 0%, #9c1657 100%); }
.wk-kb-article-hero:not(.has-img).cat-energie   { background-image: linear-gradient(135deg, #01A4A4 0%, #015e66 100%); }
.wk-kb-article-hero:not(.has-img).cat-tips      { background-image: linear-gradient(135deg, #01A4A4 0%, #9c1657 100%); }

.wk-kb-article-hero .wk-container { position: relative; z-index: 2; }
.wk-kb-article-hero h1 {
  color: #fff;
  font-size: 36px;
  line-height: 1.25;
  margin: 14px 0 10px;
  max-width: 780px;
}
.wk-kb-article-hero .wk-kb-lead {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 14px;
}
.wk-kb-article-hero .wk-tag {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.wk-kb-article-hero .wk-article-meta {
  color: rgba(255,255,255,0.85);
}

.wk-kb-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}
.wk-kb-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wk-kb-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.wk-kb-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
}
.wk-kb-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.wk-kb-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
}
.wk-kb-content p { margin-bottom: 14px; }
.wk-kb-content ul, .wk-kb-content ol {
  margin: 10px 0 18px 22px;
}
.wk-kb-content li { margin-bottom: 6px; }
.wk-kb-content strong { color: var(--text-primary); }

.wk-kb-cta {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(1,164,164,0.08), rgba(82,8,140,0.06));
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.wk-kb-cta h3 { margin-top: 0; }

.wk-kb-related {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.wk-kb-related h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.wk-kb-related ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.wk-kb-related li { margin-bottom: 12px; }
.wk-kb-related li a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition);
}
.wk-kb-related li a:hover { background: rgba(1,164,164,0.06); }
.wk-kb-related li strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.35;
}
.wk-kb-related li span {
  font-size: 12px;
  color: var(--text-muted);
}
.wk-kb-back {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 900px) {
  .wk-kb-body { grid-template-columns: 1fr; }
  .wk-kb-related { position: static; }
  .wk-kb-article-hero h1 { font-size: 28px; }
}

/* ======================
   PARTNER PAGES (template-partner + page-partners)
====================== */

/* dropdown separator (header) */
.wk-dropdown .wk-dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
  padding: 0;
  pointer-events: none;
}

/* Hero variant */
.wk-partner-hero .wk-label {
  background: rgba(255,255,255,0.18);
  color: #fff;
  margin-bottom: 12px;
}

/* Bio + profielfoto */
.wk-partner-intro {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.wk-partner-photo img,
.wk-partner-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: var(--bg-alt);
}
.wk-partner-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  gap: 12px;
}
.wk-partner-photo-placeholder svg { width: 96px; height: 96px; }
.wk-partner-photo-placeholder span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wk-partner-bio .wk-label { margin-bottom: 8px; }
.wk-partner-bio h2 { margin-bottom: 16px; }
.wk-partner-bio-text p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.75; }
.wk-partner-placeholder-text {
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  padding: 14px 18px;
  border-radius: 0;
}

/* Specialisaties / werkgebied blocks */
.wk-partner-block .wk-label { margin-bottom: 8px; }
.wk-partner-block-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

/* Chips */
.wk-partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wk-chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  background: rgba(1,164,164,0.10);
  color: var(--primary-dark);
  border: 1px solid rgba(1,164,164,0.22);
  border-radius: 0;
  letter-spacing: 0.01em;
}
.wk-chip-warm {
  background: rgba(232,36,124,0.10);
  color: var(--accent-warm-dark);
  border-color: rgba(232,36,124,0.22);
}
.wk-chip-more {
  background: var(--bg-alt);
  color: var(--text-secondary);
  border-color: var(--border);
}

/* Gallery */
.wk-partner-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wk-partner-gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  background: var(--bg-alt);
}
.wk-partner-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.wk-partner-gallery-item:hover img { transform: scale(1.04); }
.wk-partner-gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  gap: 8px;
}
.wk-partner-gallery-placeholder svg { width: 56px; height: 56px; }
.wk-partner-gallery-placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CTA block */
.wk-partner-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}
.wk-partner-cta h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}
.wk-partner-cta p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.wk-partner-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Partners overzicht */
.wk-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.wk-partner-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.wk-partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.wk-partner-card-photo {
  aspect-ratio: 16 / 11;
  background: var(--bg-alt);
  overflow: hidden;
}
.wk-partner-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wk-partner-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.wk-partner-card-placeholder svg { width: 64px; height: 64px; }
.wk-partner-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wk-partner-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}
.wk-partner-card-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.wk-partner-chips-compact { gap: 6px; }
.wk-partner-chips-compact .wk-chip {
  font-size: 12px;
  padding: 5px 10px;
}
.wk-partner-card-link {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .wk-partner-intro { grid-template-columns: 1fr; gap: 32px; }
  .wk-partner-photo { max-width: 320px; margin: 0 auto; }
  .wk-partner-gallery { grid-template-columns: repeat(2, 1fr); }
  .wk-partner-cta { padding: 36px 22px; }
  .wk-partner-cta h2 { font-size: 24px; }
}
@media (max-width: 540px) {
  .wk-partner-gallery { grid-template-columns: 1fr; }
}


/* ======================
   PORTALEN (bewoners + partners)
====================== */
.wk-login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 34px 32px 28px;
}
.wk-login-card h2 { font-size: 24px; color: var(--primary-dark); margin-bottom: 8px; }
.wk-login-sub { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin-bottom: 26px; }
.wk-login-voet {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.wk-veld-wrap { position: relative; }
.wk-veld-wrap .wk-form-input { padding-right: 44px; }
.wk-oog {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 0;
  transition: color var(--transition);
}
.wk-oog:hover, .wk-oog.aan { color: var(--primary); }

.wkp-fout, .wkp-ok {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.wkp-fout {
  background: rgba(207,46,46,0.08);
  border: 1px solid rgba(207,46,46,0.25);
  color: var(--danger);
}
.wkp-ok {
  background: rgba(1,164,164,0.10);
  border: 1px solid rgba(1,164,164,0.30);
  color: var(--primary-dark);
}

.wk-portaal-kop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.wk-portaal-kaart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.wk-portaal-kaart h3 { font-size: 18px; color: var(--primary-dark); margin-bottom: 12px; }

.wk-portaal-lijst {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.wk-portaal-regel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}
.wk-portaal-regel:last-child { border-bottom: 0; }

@media (max-width: 768px) {
  .wk-login-card { padding: 26px 20px 22px; }
  .wk-portaal-regel { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ======================
   WERKGEBIED (regiopagina)
   Zelfde opbouw als de regiopagina's van vveregie.com.
====================== */
.wk-regio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}

.wk-regio-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
}

.wk-regio-punten {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wk-regio-punten > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.wk-regio-punten strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.wk-regio-punten span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.wk-regio-kop {
  font-size: 26px;
  color: var(--primary);
  margin: 56px 0 8px;
}

.wk-regio-kop + .wk-grid-3,
.wk-regio-uitleg + .wk-stappen { margin-top: 20px; }

.wk-regio-kop + .wk-grid-3 { margin-top: 24px; }

.wk-regio-uitleg {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 72ch;
  margin-top: 10px;
}

.wk-stappen {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: stap;
}

.wk-stappen li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.wk-stap-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.wk-stappen strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.wk-regio-gebied {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 56px;
}

.wk-regio-gebied h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.wk-plaatsen {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0;
}

.wk-plaatsen li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
}

.wk-regio-groei {
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 78ch;
}

.wk-regio-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: rgba(1,164,164,0.05);
  border-radius: var(--radius-lg);
}

.wk-regio-cta h3 { font-size: 22px; margin-bottom: 8px; }
.wk-regio-cta p { color: var(--text-secondary); margin-bottom: 20px; }

@media (max-width: 900px) {
  .wk-regio-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .wk-stappen { grid-template-columns: repeat(2, 1fr); }
  .wk-regio-kop { font-size: 23px; margin-top: 44px; }
}

@media (max-width: 600px) {
  .wk-stappen { grid-template-columns: 1fr; }
  .wk-regio-gebied { padding: 24px 18px; }
}

/* ======================
   MENUPANELEN (mega-dropdown) — v1.50.0
   Alle submenu's zijn panelen met icoon, titel en één regel uitleg. Het
   Diensten-paneel heeft daarnaast een blok met contact-CTA.
====================== */
.wk-mega {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr;
  min-width: 390px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}

.wk-has-dropdown:hover > .wk-mega,
.wk-has-dropdown:focus-within > .wk-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wk-mega-breed {
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 22px;
  /* Even breed als de content-container, zodat de randen van het paneel
     samenvallen met die van de pagina eronder. */
  min-width: 0;
  width: min(1200px, calc(100vw - 32px));
}

/* Vier onderwerpen in twee kolommen, elk met de onderdelen eronder. */
.wk-mega-groepen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wk-mega-groep {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas: "icoon kop" ".     sub";
  column-gap: 14px;
  row-gap: 10px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--transition);
}

/* De vier onderwerpen staan op een licht turquoise vlak. */
.wk-mega-groep {
  background: rgba(1,164,164,0.055);
  border: 1px solid rgba(1,164,164,0.12);
}

.wk-mega-groep:hover {
  background: rgba(1,164,164,0.11);
  border-color: rgba(1,164,164,0.28);
}
.wk-mega-groep .wk-mega-icoon { grid-area: icoon; width: 44px; height: 44px; border-radius: 12px; }
.wk-mega-groep .wk-mega-icoon svg { width: 22px; height: 22px; }
.wk-mega-groep:hover .wk-mega-icoon { background: var(--primary); color: #fff; }

.wk-mega-groepkop {
  grid-area: kop;
  align-self: center;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.wk-mega-groepkop strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.wk-mega-groep:hover .wk-mega-groepkop strong { color: var(--primary-dark); }

.wk-mega-sub {
  grid-area: sub;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 4px 0 0;
}

.wk-mega-sub li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.wk-mega-sub li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.45;
}

.wk-mega-lijst { padding: 6px; }

.wk-mega-kop {
  display: block;
  padding: 2px 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wk-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition);
}

.wk-mega-item:hover { background: rgba(1,164,164,0.06); }

.wk-mega-icoon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(1,164,164,0.10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.wk-mega-icoon svg { width: 20px; height: 20px; }
.wk-mega-item:hover .wk-mega-icoon { background: var(--primary); color: #fff; }

.wk-mega-tekst {
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.wk-mega-tekst strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.wk-mega-item:hover .wk-mega-tekst strong { color: var(--primary-dark); }

.wk-mega-cta {
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--accent) 100%);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wk-mega-cta strong { font-size: 16px; }

.wk-mega-cta p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

.wk-mega-cta .wk-btn {
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
}

.wk-mega-link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wk-mega-link:hover { color: #fff; }

/* Panelen die anders buiten beeld vallen, rechts uitlijnen. */
.wk-nav-list > li:nth-last-child(-n+3) .wk-mega { left: auto; right: 0; }

/* Zelfde omslagpunt als het hamburgermenu (768px). */
@media (max-width: 768px) {
  .wk-mega,
  .wk-mega-breed {
    position: static;
    display: block;
    min-width: 0;
    /* In het uitklapmenu de volle breedte volgen, niet de containerbreedte
       van de desktop-panelen. */
    width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 8px 8px;
  }

  .wk-nav-list > li:nth-last-child(-n+3) .wk-mega { right: auto; }
  .wk-mega-kop { display: none; }
  .wk-mega-lijst { padding: 0; }
  .wk-mega-item { padding: 10px 8px; }
  .wk-mega-icoon { width: 32px; height: 32px; border-radius: 9px; }
  .wk-mega-icoon svg { width: 17px; height: 17px; }
  .wk-mega-tekst strong { font-size: 14.5px; }
  .wk-mega-tekst { font-size: 12.5px; }
  .wk-mega-cta { display: none; }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .wk-mega-breed { min-width: 660px; grid-template-columns: minmax(0, 1fr) 230px; }
  .wk-mega-groepen { grid-template-columns: 1fr; }
  .wk-mega-sub { display: none; }
}

@media (max-width: 768px) {
  .wk-mega-groepen { grid-template-columns: 1fr; }
  .wk-mega-groep { grid-template-columns: 32px minmax(0, 1fr); padding: 10px 8px; }
  .wk-mega-groep .wk-mega-icoon { width: 32px; height: 32px; border-radius: 9px; }
  .wk-mega-groep .wk-mega-icoon svg { width: 17px; height: 17px; }
  .wk-mega-groepkop strong { font-size: 15px; }
  .wk-mega-sub li { font-size: 12.5px; }
}

/* Het brede Diensten-paneel wordt gecentreerd op de pagina in plaats van
   uitgelijnd op het menu-item. Het menu-item zelf is daarvoor 'static', zodat
   het paneel zich richt op de (vaste) header — en dus op de volle breedte. */
.wk-nav-list > li.wk-mega-midden { position: static; }

/* Let op: de regel die panelen rechts uitlijnt (nth-last-child) is zwaarder dan
   een enkele klasse; daarom hier ook via .wk-nav-list > li. */
.wk-nav-list > li.wk-mega-midden > .wk-mega-breed {
  left: 50%;
  right: auto;
  transform: translate(-50%, 8px);
}

.wk-nav-list > li.wk-mega-midden:hover > .wk-mega-breed,
.wk-nav-list > li.wk-mega-midden:focus-within > .wk-mega-breed {
  transform: translate(-50%, 0);
}

@media (max-width: 768px) {
  .wk-nav-list > li.wk-mega-midden > .wk-mega-breed,
  .wk-nav-list > li.wk-mega-midden:hover > .wk-mega-breed { left: auto; transform: none; }
}

/* Beeld in het CTA-blok van een menupaneel + variant voor een breed onderwerp
   (bijvoorbeeld het derde blok in het Portalen-paneel). */
.wk-mega-beeld {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.wk-mega-groep-breed {
  grid-column: 1 / -1;
  margin-top: 10px;
  grid-template-columns: 44px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "icoon kop sub";
  align-items: center;
}

.wk-mega-groep-breed .wk-mega-sub { margin-top: 0; }

@media (max-width: 1180px) {
  .wk-mega-groep-breed {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas: "icoon kop" ".     sub";
  }
}

@media (max-width: 768px) {
  .wk-mega-beeld { display: none; }
  .wk-mega-groep-breed {
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-areas: "icoon kop" ".     sub";
  }
}

/* Opdracht melden springt eruit in cyclaam: dat is de actie die een bezoeker
   zonder account meteen kan doen. */
.wk-mega-groep-accent {
  background: rgba(232,36,124,0.055);
  border-color: rgba(232,36,124,0.16);
}

.wk-mega-groep-accent:hover {
  background: rgba(232,36,124,0.11);
  border-color: rgba(232,36,124,0.30);
}

.wk-mega-groep-accent .wk-mega-icoon {
  background: rgba(232,36,124,0.12);
  color: var(--accent-warm);
}

.wk-mega-groep-accent:hover .wk-mega-icoon {
  background: var(--accent-warm);
  color: #fff;
}

.wk-mega-groep-accent:hover .wk-mega-groepkop strong { color: var(--accent-warm-dark); }
.wk-mega-groep-accent .wk-mega-sub li::before { background: var(--accent-warm); }

/* Twee actuele artikelen in het kennisbank-paneel; wisselt elke week
   (App\Support\ArtikelVanDeWeek, keuze volgt het ISO-weeknummer). */
.wk-week {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.wk-week-kop {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.wk-week a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.wk-week a:last-child { border-bottom: 0; }
.wk-week a:hover { text-decoration: underline; }

.wk-week .wk-week-meta {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 1px;
}

/* Uitgelicht artikel binnen een menupaneel-groep. De groep is een div met twee
   links: de kop bedekt via ::after het hele vlak (blok blijft klikbaar naar de
   kennisbank), het artikel ligt daar met z-index bovenop. */
.wk-mega-groep { position: relative; }

.wk-mega-groepkop a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
}

.wk-mega-groepkop a {
  color: inherit;
  text-decoration: none;
}

.wk-mega-uitgelicht {
  grid-area: uit;
  position: relative;
  z-index: 1;
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(1,164,164,0.18);
  display: block;
  text-decoration: none;
}

.wk-mega-uitgelicht-kop {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 4px;
}

.wk-mega-uitgelicht-titel {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.wk-mega-uitgelicht:hover .wk-mega-uitgelicht-titel {
  color: var(--primary-dark);
  text-decoration: underline;
}

.wk-mega-uitgelicht-meta {
  display: block;
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Vierde rij in het raster van de groep, onder de opsomming. */
.wk-mega-groep {
  grid-template-areas: "icoon kop" ".     sub" ".     uit";
}

/* Kennisbank-paneel: kaart met het uitgelichte artikel van de week, met een
   gekleurd vlak in de categoriekleur als beeld. */
.wk-mega-groep-artikel {
  grid-template-areas: "beeld beeld" "uit uit";
  grid-template-columns: 1fr;
  row-gap: 12px;
  align-items: start;
  padding: 0;
  overflow: hidden;
}

.wk-artikelbeeld {
  grid-area: beeld;
  position: relative;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.wk-artikelbeeld svg { width: 40px; height: 40px; opacity: 0.95; }

.wk-artikelbeeld .wk-artikelcat {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 3px 9px;
}

.wk-mega-groep-artikel .wk-mega-uitgelicht {
  margin: 0;
  padding: 0 16px 16px;
  border-top: 0;
}

.wk-mega-groep-artikel .wk-mega-uitgelicht-titel {
  font-size: 15px;
  line-height: 1.3;
}

.wk-artikeltekst {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* Plaatsenlijst op mobiel inklappen: 244 namen maken de pagina anders
   ruim 3500px langer. De namen blijven in de HTML staan (alleen afgeknipt),
   dus zoekmachines lezen ze gewoon mee. */
.wk-plaatsen-meer {
  display: none;
  margin: -6px 0 4px;
  background: none;
  border: 0;
  padding: 6px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .wk-plaatsen-wrap { position: relative; }

  .wk-plaatsen-wrap.is-ingeklapt .wk-plaatsen {
    max-height: 280px;
    overflow: hidden;
  }

  /* Zachte overgang naar de achtergrond van het werkgebiedblok. */
  .wk-plaatsen-wrap.is-ingeklapt::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(240,236,230,0) 0%, var(--bg-alt) 92%);
  }

  .wk-plaatsen-meer { display: inline-block; }
}

/* Twee artikelkaarten onder de onderwerpen in het Diensten-paneel. */
.wk-mega-groepen-artikel {
  margin-top: 12px;
}

/* Partner worden in paars: een aparte doelgroep (vakmensen), dus ook een
   eigen kleur naast het cyclaam van Opdracht melden. */
.wk-mega-groep-paars {
  background: rgba(82,8,140,0.055);
  border-color: rgba(82,8,140,0.16);
}

.wk-mega-groep-paars:hover {
  background: rgba(82,8,140,0.11);
  border-color: rgba(82,8,140,0.30);
}

.wk-mega-groep-paars .wk-mega-icoon {
  background: rgba(82,8,140,0.12);
  color: var(--accent);
}

.wk-mega-groep-paars:hover .wk-mega-icoon {
  background: var(--accent);
  color: #fff;
}

.wk-mega-groep-paars:hover .wk-mega-groepkop strong { color: var(--accent-dark); }
.wk-mega-groep-paars .wk-mega-sub li::before { background: var(--accent); }

/* TIP-label boven een menu-item: valt op zonder de balk hoger te maken. */
.wk-nav-list > li.wk-nav-tip { position: relative; }

.wk-nav-tip > a { padding-top: 14px !important; }

.wk-nav-tip-badge {
  position: absolute;
  top: -2px;
  /* Rechts uitgelijnd en net buiten het menu-item, zodat hij overhangt. */
  left: auto;
  right: -10px;
  background: #f6c344;
  color: #4a3106;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 1150px) {
  .wk-nav-tip-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-left: 8px;
  }
  .wk-nav-tip > a { padding-top: 8px !important; }
}

/* ======================
   BELAFSPRAAK PLANNEN (contactpagina)
====================== */
.wk-belplanner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.wk-belplanner-kop { margin-bottom: 22px; }
.wk-belplanner-kop h2 { font-size: 26px; margin: 6px 0 6px; }
.wk-belplanner-kop p { color: var(--text-secondary); max-width: 62ch; }
.wk-belplanner-leeg { color: var(--text-secondary); }

.wk-belplanner-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 28px;
  align-items: start;
}

.wk-beldagen {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.wk-beldag-kop {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.wk-beldag-kop strong { color: var(--primary-dark); font-size: 14.5px; }

.wk-beltijden {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* De radio zelf blijft bedienbaar met het toetsenbord maar is onzichtbaar; de
   pil eromheen is wat je ziet en aanklikt. */
.wk-beltijd input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wk-beltijd span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.wk-beltijd span:hover { border-color: var(--primary); }

.wk-beltijd input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.wk-beltijd input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(1,164,164,0.25);
}

.wk-belgegevens label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

.wk-belgegevens input,
.wk-belgegevens textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.wk-belgegevens input:focus,
.wk-belgegevens textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,164,164,0.1);
  background: #fff;
}

.wk-belgegevens textarea { resize: vertical; }

@media (max-width: 860px) {
  .wk-belplanner { padding: 24px 18px; }
  .wk-belplanner-form { grid-template-columns: 1fr; gap: 22px; }
  .wk-beldagen { max-height: none; padding-right: 0; }
}
