/* ===================================================
   KOZIJNBOND — GLOBAL STYLESHEET
   Kleuren: #1A4373 (navy) | #8CC63F (groen) | #B2D235 (lime) | #FFFFFF
   =================================================== */

/* ---------- Variabelen ---------- */
:root {
  --navy:       #1A4373;
  --navy-dark:  #122d52;
  --navy-light: rgba(26, 67, 115, 0.06);
  --green:      #8CC63F;
  --green-dark: #7ab535;
  --lime:       #B2D235;
  --white:      #ffffff;
  --off-white:  #F7F9FC;
  --text:       #1E293B;
  --text-light: #64748B;
  --border:     #E2E8F0;
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(26, 67, 115, 0.08);
  --shadow:     0 8px 32px rgba(26, 67, 115, 0.12);
  --shadow-lg:  0 20px 64px rgba(26, 67, 115, 0.18);
  --transition: all 0.22s ease;
  --max-width:  1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Prevent text overflow on mobile - only text/block elements, not interactive ones */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, a, label {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typografie ---------- */
h1 {
  font-size: clamp(2rem, 4.5vw, 3.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
p { font-size: 1.0625rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.38);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ---------- Secties ---------- */
.section     { padding: 96px 0; }
.section-sm  { padding: 60px 0; }
.section-alt { background: var(--off-white); }

/* =====================================================
   NAVIGATIE
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 8px;
  position: relative;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  margin-right: auto;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo .accent {
  color: var(--green);
}

/* Desktop nav-links — altijd zichtbaar */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: var(--navy-light);
  color: var(--navy);
}

.nav-links > li > a.active {
  font-weight: 600;
}

/* Hamburger knop */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  margin-left: 12px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--off-white);
  border-color: var(--navy);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}

/* X-animatie bij open */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== SLIDE-DOWN DRAWER ===== */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 60, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 198;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: calc(72px + var(--wp-admin--admin-bar--height, 0px));
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(26, 67, 115, 0.2);
  transform: translateY(-16px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease,
              visibility 0.32s ease;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.nav-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-drawer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 28px 28px;
}

.nav-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.nav-drawer-links li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-drawer.is-open .nav-drawer-links li {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer.is-open .nav-drawer-links li:nth-child(1) { transition-delay: 0.06s; }
.nav-drawer.is-open .nav-drawer-links li:nth-child(2) { transition-delay: 0.10s; }
.nav-drawer.is-open .nav-drawer-links li:nth-child(3) { transition-delay: 0.14s; }
.nav-drawer.is-open .nav-drawer-links li:nth-child(4) { transition-delay: 0.18s; }
.nav-drawer.is-open .nav-drawer-links li:nth-child(5) { transition-delay: 0.22s; }

.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  background: var(--navy-light);
  color: var(--navy);
}

.nav-drawer-links a.active {
  font-weight: 600;
  color: var(--navy);
}

.nav-drawer-icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-drawer-icon svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.nav-drawer-links a:hover .nav-drawer-icon,
.nav-drawer-links a.active .nav-drawer-icon {
  background: rgba(26, 67, 115, 0.12);
}

.nav-drawer-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-drawer-links a:hover .nav-drawer-arrow,
.nav-drawer-links a.active .nav-drawer-arrow {
  transform: translateX(3px);
  color: var(--navy);
}

.nav-drawer-cta {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease 0.28s, transform 0.25s ease 0.28s;
}

.nav-drawer.is-open .nav-drawer-cta {
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Op kleine schermen: nav-links verbergen, alleen hamburger */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* =====================================================
   HERO (Homepage)
   ===================================================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(140, 198, 63, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(178, 210, 53, 0.05) 0%, transparent 50%);
}

/* Decoratieve grid achtergrond */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 88px;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140, 198, 63, 0.15);
  border: 1px solid rgba(178, 210, 53, 0.3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}
.hero-badge svg { width: 13px; height: 13px; flex-shrink: 0; }

.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-content h1 em { color: var(--lime); font-style: normal; }

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.trust-item .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}
.trust-item .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Hero visual (rechts) */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.35);
}
.hero-img-placeholder svg {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  opacity: 0.4;
}
.hero-img-placeholder p { font-size: 0.875rem; }

/* Floating kaartje */
.hero-card {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(140, 198, 63, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; color: var(--green); }
.hero-card-text .val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.hero-card-text .sub { font-size: 0.75rem; color: var(--text-light); }

/* =====================================================
   USP BAR
   ===================================================== */
.usp-bar { background: var(--white); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-item {
  padding: 32px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--off-white); }

.usp-icon {
  width: 46px;
  height: 46px;
  background: var(--navy-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-icon svg { width: 22px; height: 22px; color: var(--navy); }
.usp-text h4 { font-size: 0.9375rem; margin-bottom: 5px; }
.usp-text p { font-size: 0.8125rem; color: var(--text-light); line-height: 1.5; }

/* =====================================================
   DIENSTEN
   ===================================================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--off-white), #e8edf5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-img::before {
  display: none;
}
.service-img-label {
  position: relative;
  z-index: 1;
  text-align: center;
}
.service-img-label svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  color: #b0bec5;
}

.service-body { padding: 36px; }
.service-body h3 { margin-bottom: 12px; }
.service-body > p { color: var(--text-light); margin-bottom: 24px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text);
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; color: white; }

/* =====================================================
   WERKWIJZE (PROCESS)
   ===================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--lime) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 auto 24px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy);
}
.process-step h4 { margin-bottom: 10px; font-size: 1rem; }
.process-step p { font-size: 0.875rem; color: var(--text-light); }

/* Process CTA */
.process-cta { text-align: center; margin-top: 56px; }

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.review-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9375rem; color: var(--navy); }
.reviewer-loc  { font-size: 0.8125rem; color: var(--text-light); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 100%, rgba(140, 198, 63, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: #0D2540; color: rgba(255,255,255,0.65); }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 270px;
  color: rgba(255,255,255,0.55);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; }
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* =====================================================
   INNER PAGE HERO
   ===================================================== */
.page-hero {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

/* =====================================================
   CONTENT BLOCKS (inner pages)
   ===================================================== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--off-white), #dde5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.content-img::before {
  display: none;
}
.content-img-label {
  position: relative;
  z-index: 1;
  text-align: center;
}
.content-img-label svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  color: #b0bec5;
}

.content-text h2 { margin-bottom: 18px; }
.content-text p { color: var(--text-light); margin-bottom: 20px; }
.content-text .feature-list { margin-bottom: 32px; }

/* Materialen grid (kozijn page) */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.material-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.material-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.material-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.material-icon svg { width: 26px; height: 26px; color: var(--navy); }
.material-card h4 { margin-bottom: 8px; }
.material-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* Glas soorten */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.glass-card:hover { box-shadow: var(--shadow); }
.glass-badge {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.glass-card h4 { margin-bottom: 8px; }
.glass-card p { font-size: 0.875rem; color: var(--text-light); }

/* Werkwijze page – uitgebreide stappen */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 56px; }
.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-item:last-child { border-bottom: none; }
.step-circle {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 10px; }
.step-content p { color: var(--text-light); }

/* Over ons page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-photo {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--off-white), #dde5f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.team-info { padding: 24px; }
.team-info h4 { font-size: 1.125rem; margin-bottom: 4px; }
.team-info .role { font-size: 0.875rem; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 0.875rem; color: var(--text-light); }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.stat-item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Werkgebied */
.werkgebied-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.regio-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  transition: var(--transition);
}
.regio-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =====================================================
   OFFERTE / CONTACT FORM
   ===================================================== */
.offerte-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 67, 115, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; }

/* Sidebar voordelen */
.offerte-side { position: sticky; top: 96px; }
.offerte-side h3 { margin-bottom: 20px; }
.offerte-usp { display: flex; flex-direction: column; gap: 16px; }
.offerte-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}
.offerte-usp-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offerte-usp-icon svg { width: 18px; height: 18px; color: white; }
.offerte-usp-text h5 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.offerte-usp-text p { font-size: 0.8125rem; color: var(--text-light); }


/* =====================================================
   SUBSIDIEBEGELEIDING — pagina-specifieke stijlen
   ===================================================== */
.subsidy-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subsidy-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.subsidy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.subsidy-faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  /* ---- Navigatie ---- */
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
}

@media (max-width: 900px) {
  /* ---- Hero ---- */
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-card { display: none; }
  /* ---- USP ---- */
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(3),
  .usp-item:nth-child(4) { border-top: 1px solid var(--border); }

  /* ---- Werkwijze / process ---- */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }

  /* ---- Content blokken ---- */
  .content-block { grid-template-columns: 1fr; gap: 48px; }
  .content-block.reverse { direction: rtl; }
  .content-block.reverse > * { direction: ltr; }

  /* ---- Services ---- */
  .services-grid { grid-template-columns: 1fr; }

  /* ---- Reviews ---- */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* ---- Offerte ---- */
  .offerte-layout { grid-template-columns: 1fr; }
  .offerte-side { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .offerte-usp { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .offerte-side-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }

  /* ---- Stats / materialen ---- */
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .glass-grid { grid-template-columns: 1fr 1fr; }

  /* ---- Werkgebied ---- */
  .werkgebied-grid { grid-template-columns: repeat(3, 1fr); }

  /* ---- Team ---- */
  .team-grid { grid-template-columns: 1fr 1fr; }
  /* ---- Subsidiebegeleiding ---- */
  .subsidy-stats-grid { grid-template-columns: 1fr 1fr; }
  .subsidy-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }

  /* ---- Typografie ---- */
  .section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  /* ---- Container ---- */
  .container { padding: 0 16px; }

  /* ---- Navigatie ---- */
  .nav-links { display: none; }

  /* ---- Hero ---- */
  .hero-inner { padding: 48px 0 40px; grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-card { display: none; }
  .hero-trust { gap: 16px; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ---- USP balk ---- */
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-top: 1px solid var(--border); }
  .usp-item:first-child { border-top: none; }

  /* ---- Diensten ---- */
  .services-grid { grid-template-columns: 1fr; }
  .service-body { padding: 24px; }

  /* ---- Werkwijze proces ---- */
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid::before { display: none; }

  /* ---- Stappen (inner pages) ---- */
  .step-item { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  .step-circle { width: 44px; height: 44px; font-size: 1rem; }

  /* ---- Reviews ---- */
  .reviews-grid { grid-template-columns: 1fr; }

  /* ---- CTA banner ---- */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ---- Content blokken (inner pages) ---- */
  .content-block { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse { direction: ltr; }

  /* ---- Materialen / glas grids ---- */
  .materials-grid { grid-template-columns: 1fr; }
  .glass-grid { grid-template-columns: 1fr; }

  /* ---- Team ---- */
  .team-grid { grid-template-columns: 1fr; }

  /* ---- Stats strip ---- */
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.75rem; }

  /* ---- Werkgebied ---- */
  .werkgebied-grid { grid-template-columns: repeat(2, 1fr); }

  /* ---- Offerte layout ---- */
  .offerte-layout { grid-template-columns: 1fr; gap: 32px; }
  .offerte-side { position: static; }
  .offerte-usp { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
  .form-grid { grid-template-columns: 1fr; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-desc { max-width: 100%; }

  /* ---- Page hero (inner pages) ---- */
  .page-hero { padding: 48px 0 56px; }
  .page-hero-content { max-width: 100%; }
  .page-hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); word-break: break-word; hyphens: auto; }
  .page-hero p { max-width: 100%; font-size: 1rem; }
  .breadcrumb { flex-wrap: wrap; gap: 6px; }

  /* ---- Buttons vol-breed op mobiel ---- */
  .btn-lg { padding: 14px 24px; font-size: 0.9375rem; }
  /* ---- Subsidiebegeleiding ---- */
  .subsidy-stats-grid { grid-template-columns: 1fr; }
  .subsidy-cards-grid { grid-template-columns: 1fr; }
  .subsidy-card { padding: 24px 16px; }
  .subsidy-faq-card { padding: 20px 16px; }
}
