/* =============================================
   PINADO – MAIN STYLESHEET
   ============================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Colors */
  --green:        #81994B;
  --green-hover:  #6E8440;
  --green-deep:   #546230;   /* dark sections: direct-starten bg */
  --blue:         #009FE3;
  --blue-hover:   #0087C8;
  --icon-bg:      rgba(0, 159, 227, 0.25);

  /* Dark sections */
  --dark-bg:      #1E2D13;   /* contact CTA */
  --navy:         #0d1722;   /* footer */

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F5F5F3;
  --light-bg:     #F0F0ED;
  --border:       #E3E3DF;
  --text-dark:    #1E1E1E;
  --text-mid:     #4A4A4A;
  --text-muted:   #7A7A7A;

  /* Effects */
  --shadow-sm:    0 2px 8px  rgba(0,0,0,0.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 16px 50px rgba(0,0,0,0.12);

  /* Radius – everywhere 10px */
  --radius:       10px;

  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* App promo banner height, set by JS while the banner is visible */
  --promo-banner-h: 0px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--promo-banner-h);
  transition: padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, button, textarea, select { font-family: inherit; }

/* === CONTAINER === */
.container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 28px;

}

/* === SECTION BASE === */
.section { padding: 80px 0; }

/* === UTILITY COLOR CLASSES === */
.text-green { color: var(--green); }
.text-blue  { color: var(--blue); }

/* === TWO-COLUMN LAYOUT === */
.two-col-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  /* align-items: center; */
  padding: 75px 30px;
}

@media (max-width: 768px) {
  .two-col-container-mob-reverse { 
    display: flex;
    flex-direction: column-reverse;
  }
}

/* === CARDS GRID === */
.cards-grid    { display: grid; gap: 22px; }
.three-cols    { grid-template-columns: repeat(3, 1fr); }

.cards-grid:first-child {
  background-color: var(--green);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background   var(--transition),
    color        var(--transition),
    border-color var(--transition),
    box-shadow   var(--transition),
    transform    var(--transition);
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 13px; }

/* Primary = blue */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary-full-width {
  width: 100% !important;
  justify-content: center;
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(0,159,227,0.35);
}

/* Ghost / secondary */
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--off-white);
  border-color: #c8c8c4;
  box-shadow: var(--shadow-sm);
}

/* Nav login = green */
.btn-login {
  background: var(--green);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--green);
  transition:
    background   var(--transition),
    border-color var(--transition),
    box-shadow   var(--transition),
    transform    var(--transition);
  white-space: nowrap;
}
.btn-login:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 4px 14px rgba(129,153,75,0.35);
  transform: translateY(-1px);
}

/* Blue (explicit, e.g. contact form) */
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(0,159,227,0.35);
}

/* White outline – on dark/green sections */
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* White solid – small button on dark bg */
.btn-white-solid {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.btn-white-solid:hover {
  background: var(--off-white);
  box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}

.btn-full { width: 100%; justify-content: center; }

/* =============================================
   APP PROMO BANNER
   ============================================= */
.promo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: linear-gradient(100deg, var(--green) 0%, var(--blue) 100%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.promo-banner.promo-banner-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.promo-banner-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 28px;
}
.promo-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-banner-text i { font-size: 16px; flex-shrink: 0; }
.promo-banner-badge {
  background: var(--white);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}
.promo-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.promo-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.promo-store-btn:hover {
  background: rgba(255,255,255,0.32);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.promo-store-btn i { font-size: 15px; }
.promo-banner-close {
  flex-shrink: 0;
  margin-left: 4px;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--white);
  opacity: 0.85;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), opacity var(--transition);
}
.promo-banner-close:hover {
  background: rgba(255,255,255,0.22);
  opacity: 1;
}

@media (max-width: 768px) {
  .promo-banner-inner {
    flex-wrap: wrap;
    padding: 10px 20px !important;
    gap: 10px 14px;
  }
  .promo-banner-text {
    order: 1;
    font-size: 13px;
    gap: 8px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .promo-banner-close {
    order: 2;
  }
  .promo-banner-actions {
    order: 3;
    flex: 1 0 100%;
    justify-content: center;
  }
  .promo-store-btn {
    flex: 1;
    justify-content: center;
    padding: 9px 14px;
  }
}

@media (max-width: 360px) {
  .promo-banner-text   { font-size: 12px; }
  .promo-banner-badge  { padding: 3px 7px; font-size: 10px; }
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: var(--promo-banner-h); left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition:
    top        0.3s  cubic-bezier(0.4, 0, 0.2, 1),
    padding    0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 70px;
  width: auto;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .nav-logo img {
  height: 52px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 12px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-link:hover {
  color: var(--green);
}
.nav-link.active {
  color: var(--green);
  font-weight: 600;
  border-bottom: 2px solid var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   NAV DROPDOWN
   ============================================= */
.nav-item { position: relative; }

.nav-link-has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
  padding-top: 10px;
  padding-left: 20px;
}
.dropdown-chevron {
  font-size: 9px;
  color: var(--text-muted);
  pointer-events: none;
  transition: transform var(--transition), color var(--transition);
}
.nav-item:hover .dropdown-chevron,
.nav-item.dropdown-open .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--green);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity    var(--transition),
    transform  var(--transition),
    visibility var(--transition);
  z-index: 500;
}
.nav-item:hover .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition:
    background   var(--transition),
    color        var(--transition),
    padding-left var(--transition);
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  background: var(--off-white);
  color: var(--green);
  padding-left: 22px;
}
.nav-dropdown li a i {
  color: var(--blue);
  font-size: 13px;
  width: 15px;
  flex-shrink: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 110px;
  padding-bottom: 70px;
  background: var(--white);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
  padding: 75px 25px;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green);
  /* background: rgba(129,153,75,0.1); */
  padding: 5px 12px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16.5px;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 490px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  /* The PNG already has its own shadow/chrome */
}

/* =============================================
   TICKER BAR (static)
   ============================================= */
.ticker-bar {
  background: var(--green);
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0 28px;
}
.ticker-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 5px;
}
.ticker-items span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.ticker-items .dot {
  color: rgba(255,255,255,0.4);
  font-size: 9px;
}
.ticker-label {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 14px; 
  margin-top: 3px;
}

/* =============================================
   SECTION TAGS & HEADERS
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-tag-light {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--text-dark);
}
.section-header-bottom-padding {
  margin-bottom: 2rem !important;
}

/* =============================================
   OVER PINADO / CLIENT SYSTEM
   ============================================= */
.client-systeem { background: var(--white); }

.section-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.section-image-about {
  width: 100%;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.section-image:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.content-col h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 6px;
}
.content-col p {
  color: var(--text-mid);
  margin-bottom: 26px;
  line-height: 1.7;
  font-size: 15.5px;
}

.feature-list { margin-bottom: 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 11px;
  font-size: 15px;
  color: var(--text-mid);
}
.feature-list li i {
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}

/* =============================================
   DOELGROEPEN (green bg)
   ============================================= */
.doelgroepen {
  position: relative;
  background: var(--green);
  overflow: hidden;
}
.doelgroepen-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.doelgroepen .container {
  position: relative;
  z-index: 1;
}
.doelgroepen-header {
  margin-bottom: 40px;
}
.doelgroepen-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--white);
}
/* Tile base */
.tile {
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    transform    var(--transition),
    box-shadow   var(--transition);
}
.tile:hover {
  transform: translateY(-7px) scale(1.015);
}

.tile-white {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.tile-white:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

/* Icon box at top of doelgroepen tile */
.tile-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(0, 159, 227, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.tile-icon i {
  font-size: 18px;
  color: var(--blue);
}

.tile h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.tile p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.tile ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tile ul li {
  font-size: 13.5px;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.tile ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* =============================================
   FUNCTIONALITEITEN
   ============================================= */

.functionaliteiten-container {
  padding: 75px 0;
}

.functionaliteiten { background: var(--white); }
.functionaliteiten .section-header {
  text-align: left;
  margin-bottom: 44px;
}
.functionaliteiten .section-header h2 { font-size: 36px; }

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

/* Bento: first tile spans 2 rows (tall), 6th tile spans 2 cols (wide) */
/* .features-grid > .feature-tile:first-child { grid-row: span 2; } */
.feature-tile-wide { grid-column: span 2; }

/* Feature tile – fancy hover */
.feature-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform    var(--transition),
    box-shadow   var(--transition),
    border-color var(--transition);
}
.feature-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 0 0 var(--radius) var(--radius);
}
.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.11);
  border-color: transparent;
}
.feature-tile:hover::after {
  transform: scaleX(1);
}

/* Icon+title flex row */
.feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.feature-header .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.feature-header h3 { margin-bottom: 0; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--transition);
}
.feature-tile:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
}
.feature-icon i {
  font-size: 18px;
  color: var(--blue);
}

.feature-tile h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text-dark);
}
.feature-tile p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* App screenshot mockup inside first tile */
.feature-mockup {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-mockup img { width: 100%; display: block; }


/* CTA tile (green) */
.feature-cta-tile {
  background: var(--green);
  border-color: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.feature-cta-tile::after { display: none; }
.feature-cta-tile:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 14px 40px rgba(129,153,75,0.3);
}
.feature-cta-tile p {
  color: rgba(255,255,255,0.95);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}
.feature-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition), opacity var(--transition);
}
.feature-cta-link:hover { gap: 13px; opacity: 0.85; }

/* =============================================
   DIRECT STARTEN (dark green bg)
   ============================================= */
.direct-starten {
  position: relative;
  background: var(--green);
  padding: 110px 0;
  overflow: hidden;
}
.direct-starten-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.direct-starten .container {
  position: relative;
  z-index: 1;
}

.starten-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.starten-header .btn {
  margin-top: 1rem;
}
.starten-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-top: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step {
  transition: transform var(--transition);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding-top: 28px;
}
.step:hover { transform: translateY(-4px); }

.step-number {
  display: block;
  font-size: 40px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  margin-bottom: 14px;
  transition: color var(--transition);
}
.step:hover .step-number { color: rgba(255,255,255,0.8); }

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
}
.step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* =============================================
   SAMENWERKING
   ============================================= */
.samenwerking {
  background: var(--white);
  padding: 0;
}

.diagram-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.diagram-img {
  width: 100%;
  max-width: 380px;
  transition: transform var(--transition);
}
.diagram-img:hover {
  transform: scale(1.03);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    transform    var(--transition),
    box-shadow   var(--transition),
    border-color var(--transition);
}
.testimonial-card:first-child {
  background: var(--green);
  border-color: var(--green);
}
.testimonial-card:first-child .quote {
  color:var(--white) !important;
}
/* .testimonial-card:first-child .stars, .quote, .reviewer div {
  color: var(--white) !important;
} */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -14px; right: 18px;
  font-size: 110px;
  line-height: 1;
  color: var(--green);
  opacity: 0.07;
  font-family: Georgia, serif;
  pointer-events: none;
  transition: opacity var(--transition);
}
.testimonial-card:first-child::before {
  color: rgb(255, 255, 255);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.10);
  border-color: rgba(129,153,75,0.25);
}
.testimonial-card:hover::before { opacity: 0.13; }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars i { color: var(--blue); font-size: 13px; }
.testimonial-card:first-child .stars i { color: var(--white); font-size: 13px; }

.quote {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card:first-child .reviewer-avatar {
  background: rgb(255, 255, 255);
  color: var(--green)
}
.reviewer strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 700;
}
.reviewer span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}
.reviewer-name strong, .reviewer-name span {
  color: white !important;
}


/* =============================================
   CONTACT CTA (dark bg)
   ============================================= */
.contact-cta {
  position: relative;
  background: var(--green);
  overflow: hidden;
}
.contact-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.contact-cta .container {
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  /* margin-top: 10px; */
}
.contact-info > p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details a,
.contact-details .contact-detail-static {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  padding: 16px;
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-details-container{
  display: flex;
  flex-direction: column;
  line-height: 1.7;
}

#contact-deatails-head{
  color: var(--text-muted);
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 25px;
  background: #ebf6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  color: var(--blue);
  font-size: 15px;
}

/* Contact form card */
.contact-form-col {
  background: white;
  border-radius: var(--radius);
  padding: 34px 30px;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { margin-bottom: 14px; }
.contact-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
}
.contact-form label .required {
  color: var(--blue);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  color: black;
  font-size: 14.5px;
  font-family: inherit;
  background: white;
  transition:
    border-color var(--transition),
    box-shadow   var(--transition);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,159,227,0.12);
}
.contact-form .btn-blue {
  margin-top: 6px;
  padding: 14px 24px;
  font-size: 15px;
}
/* Honeypot: onzichtbaar voor gebruikers, wél in de DOM voor bots */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Status-/foutmelding na verzenden */
.form-status {
  margin: 12px 0 0;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.4;
}
.form-status-ok {
  background: rgba(129,153,75,0.12);
  color: #4d5c2c;
}
.form-status-error {
  background: rgba(220,53,69,0.10);
  color: #a12833;
}
.form-radio-group {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
}
.form-radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding-top: 65px;
  padding-bottom: 0;
  background-image: url('../images/temp/footer.png');
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: overlay;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  height: 75px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 280px;
}
.footer-cert {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cert-img {
  max-height: 130px;
  width: auto;
}
.footer-links-col {
  justify-self: end;
}
.footer-links-col h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.footer-links-col ul li { margin-bottom: 8px; }
.footer-links-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.footer-contact li i {
  color: var(--white);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact li a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-contact li a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255); }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay   { transition-delay: 0.14s; }
.reveal-delay-2 { transition-delay: 0.28s; }

/* =============================================
   PAGE HERO  (sub-pages)
   ============================================= */
.page-hero {
  background: linear-gradient(160deg, var(--blue) 0%, #0079b8 100%);
  padding-top: 130px;
  padding-bottom: 72px;
  text-align: center;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  padding: 0;
}
.breadcrumb a {
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); font-size: 11px; }
.breadcrumb-current { color: var(--white); font-weight: 600; }

/* =============================================
   AUDIENCE PAGE INTRO
   ============================================= */
.page-intro { background: var(--white); }

.intro-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}
.intro-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.22;
  margin-top: 10px;
}
.intro-body {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.intro-body p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.intro-body p:last-child {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* =============================================
   SERVICE CARDS SECTION  (3×2 grid)
   ============================================= */
.service-cards-section { background: var(--off-white); }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform    var(--transition),
    box-shadow   var(--transition),
    border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(129,153,75,0.2);
}
.service-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0,159,227,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.service-card:hover .service-card-icon {
  transform: scale(1.08) rotate(-4deg);
}
.service-card-icon i {
  font-size: 22px;
  color: var(--blue);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 24px;
}
.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color var(--transition),
    color        var(--transition),
    box-shadow   var(--transition),
    transform    var(--transition);
  white-space: nowrap;
  margin-top: auto;
}
.btn-pill-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(129,153,75,0.15);
}

/* =============================================
   SUBPAGE LAYOUT  (doelgroepen pages)
   ============================================= */

.subpage-hero {
  background: var(--off-white);
  background-image: url('../images/subpage-hero-bg.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 190px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0,159,227,0.08) 0%, transparent 68%);
  pointer-events: none;
}
.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(129,153,75,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.subpage-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,159,227,0.08);
  border: 1px solid rgba(0,159,227,0.2);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 26px;
  letter-spacing: 0.2px;
}
.subpage-hero-badge i {
  color: var(--blue);
  font-size: 11px;
}
.subpage-hero h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.14;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.subpage-hero .subpage-hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.subpage-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.subpage-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.subpage-hero-trust-item i {
  color: var(--green);
  font-size: 14px;
}

.subpage-why {
  background: var(--white);
  padding: 75px 0;
}
.subpage-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}
.subpage-why-img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}
.subpage-why-content h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 10px 0 18px;
}
.subpage-why-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.subpage-why-content .btn { margin-top: 10px; }

.subpage-features {
  background: var(--white);
  padding: 80px 0;
}
.subpage-features > .container > h2 {
  text-align: center;
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  padding-bottom: 16px;
  position: relative;
}
.subpage-features > .container > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.subpage-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.subpage-feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 30px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.subpage-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.subpage-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,159,227,0.2);
}
.subpage-feature-card:hover::after {
  transform: scaleY(1);
}
.subpage-feature-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.subpage-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.subpage-feature-card:hover .subpage-feature-icon {
  transform: scale(1.12);
  background: rgba(0,159,227,0.2);
}
.subpage-feature-icon i {
  font-size: 20px;
  color: var(--blue);
}
.subpage-feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.subpage-feature-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.subpage-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color var(--transition);
}
.subpage-feature-card:hover .subpage-feature-link {
  opacity: 1;
  transform: translateY(0);
}
.subpage-feature-link i {
  font-size: 11px;
  transition: transform var(--transition);
}
.subpage-feature-link:hover { color: var(--blue-hover); }
.subpage-feature-link:hover i { transform: translateX(4px); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-content { background: var(--white); }

.about-images-wrapper {
  position: relative;
  padding-bottom: 64px;
  padding-right: 20px;
}
.about-img-main {
  width: 80%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-img-overlap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  border: 4px solid var(--white);
  overflow: hidden;
  z-index: 2;
}
.about-img-overlap img { width: 100%; display: block; }

/* Green solid button (About page) */
.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 6px 20px rgba(129,153,75,0.4);
}

/* 4-column icon strip (About page) */
.icon-strip { background: var(--off-white); padding: 80px 0; }

.icon-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.icon-strip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.icon-strip-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  border-radius: 2px 0 0 2px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.icon-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,159,227,0.25);
}
.icon-strip-card:hover::after {
  transform: scaleY(1);
}
.icon-strip-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(0,159,227,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform var(--transition), background var(--transition);
}
.icon-strip-card:hover .icon-strip-icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(0,159,227,0.18);
}
.icon-strip-icon i {
  font-size: 22px;
  color: var(--blue);
}
.icon-strip-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.icon-strip-card p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Tile link arrow (homepage doelgroepen) */
.tile-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition), opacity var(--transition);
}
.tile-more-link:hover { gap: 10px; opacity: 0.8; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content h1   { font-size: 36px; }
  .two-col-container { gap: 48px; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: span 2; }
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-strip-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* @media (min-width: 769px) and (max-width: 1024px) {
  .hero-content { order: 2; }
  .hero-image   { order: 1; }
} */

/* Nav: hamburger tot 992px (anders lopen de links uit het menu) */
@media (max-width: 991.98px) {
  .nav-container      { gap: 16px; }
  .nav-logo img       { height: 44px; }
  .navbar.scrolled .nav-logo img { height: 36px; }
  .nav-toggle { display: flex; margin-left: 0; order: 3; }
  .btn-login  { margin-left: auto; order: 2; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    flex: none;
    padding: 10px 0 18px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 11px 20px; width: 100%; border-bottom: none; font-size: 15px; }
  .nav-link.active { border-bottom: none; border-left: 3px solid var(--green); padding-left: 17px; }

  /* Mobile dropdown – inline expand */
  .nav-link-has-dropdown { width: 100%; }
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 2px 0 4px 20px;
    transition: max-height 0.35s ease;
    z-index: auto;
  }
  .nav-item.dropdown-open .nav-dropdown {
    max-height: 220px;
    padding: 4px 0;
  }
  .nav-dropdown li a {
    padding: 9px 16px;
    font-size: 14px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .page-hero h1       { font-size: 30px; }
  .intro-header h2    { font-size: 26px; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .about-images-wrapper { padding-bottom: 44px; padding-right: 8px; }
  .about-img-main     { width: 88%; }
  .about-img-overlap  { width: 48%; }
  /* .hero-content { order: 2; }
  .hero-image   { order: 1; } */

  .section { padding: 60px 0; }

  .hero { padding-top: 90px; padding-bottom: 50px; }
  .hero-container    { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .hero-content h1   { font-size: 30px; }
  .hero-image        { order: -1; }

  .two-col-container { grid-template-columns: 1fr; gap: 38px; padding: 40px 0; }
  .three-cols        { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr 1fr; }
  .features-grid > .feature-tile:first-child { grid-row: auto; }
  .feature-tile-wide { grid-column: auto; }
  .steps-grid        { grid-template-columns: 1fr 1fr; }
  .starten-header    { flex-direction: column; align-items: flex-start; }
  .direct-starten    { padding: 70px 0; }
  .functionaliteiten-container { padding: 40px 0; }

  .section-header h2   { font-size: 26px; }
  .doelgroepen-header h2 { font-size: 28px; }

  .footer-top          { grid-template-columns: 1fr; }
  .footer-brand        { grid-column: span 1; text-align: center; }
  .footer-brand p      { max-width: none; }
  .footer-logo         { margin: 0 auto 16px; }
  .footer-links-col    { justify-self: center; text-align: center; }
  .footer-contact li   { justify-content: center; }
  .footer-bottom       { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* Subpage responsive */
  .subpage-hero       { padding: 120px 0 60px; }
  .subpage-hero h1    { font-size: 28px; }
  .subpage-hero .subpage-hero-sub { font-size: 14.5px; }
  .subpage-hero-trust { gap: 16px; margin-top: 24px; padding-top: 20px; }
  .subpage-why        { padding: 50px 0; }
  .subpage-why-grid   { grid-template-columns: 1fr; gap: 36px; padding: 0; }
  .subpage-features   { padding: 60px 0; }
  .subpage-features-grid { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }

  /* Font hierarchy: h2 always below hero h1 */
  .content-col h2              { font-size: 24px; }
  .subpage-why-content h2      { font-size: 24px; }
  .subpage-features > .container > h2 { font-size: 24px; }
  .functionaliteiten .section-header h2 { font-size: 24px; }
  .doelgroepen-header h2       { font-size: 24px; }
  .starten-header h2           { font-size: 22px; }
  .contact-info h2             { font-size: 22px; }

  /* Center CTA buttons */
  .hero-buttons                { justify-content: center; }
  .subpage-why-content .btn    { display: flex; width: fit-content; margin: 10px auto 0; }

  /* Algemene mobiele container-padding */
  .container          { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-content h1   { font-size: 24px; }
  .hero-buttons      { flex-direction: column; }
  .hero-stats        { flex-direction: column; gap: 10px; }
  .stat-divider      { width: 40px; height: 1px; }
  .features-grid     { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .icon-strip-grid   { grid-template-columns: 1fr; }
  .about-img-overlap { display: none; }
  .about-img-main    { width: 100%; }

  .subpage-hero h1   { font-size: 22px; }
  .subpage-hero .subpage-hero-sub { font-size: 14px; }
  .subpage-hero-trust { flex-direction: column; gap: 10px; align-items: center; }
  .contact-form-col  { padding: 24px 18px; }
  .two-col-container { padding: 28px 0; }

  .container          { padding: 0 16px; }
  .nav-link           { padding: 11px 16px; }
  .nav-link.active    { padding-left: 13px; }
  .nav-dropdown       { margin: 2px 0 4px 16px; }
}

/* =============================================
   FLOATING DEMO BUTTON
   ============================================= */
.demo-float {
  position: fixed;
  bottom: 80px;
  right: 60px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .demo-float { display: none; }
}

/* Op erg lage schermen (bijv. Galaxy Z Flip / landschap) helemaal verbergen. */
@media (max-height: 479.98px) {
  .demo-float { display: none; }
}

.demo-float-arrow {
  display: none;
  width: 200px;
  height: 150px;
  margin-bottom: -18px;
  overflow: visible;
  pointer-events: none;
}

.demo-arrow-path {
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-arrow-head {
  fill: var(--text-dark);
  stroke: none;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.demo-float-btn {
  background: var(--blue);
  color: var(--white);
  border-radius: 20px 20px 0 20px;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 159, 227, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.demo-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 159, 227, 0.5);
  background: var(--blue-hover);
}

.demo-float-btn i {
  font-size: 12px;
}

@media (max-width: 600px), (max-height: 600px) {
  .demo-float { bottom: 20px; right: 16px; }
  .demo-float-btn { font-size: 14px; padding: 13px 22px; }
  .demo-float-arrow { width: 130px; height: 90px; }
}

/* =============================================
   UWV / KWALITEITSSTANDAARDEN SECTION
   ============================================= */
.uwv-kwaliteit { background: var(--off-white); }
.uwv-kwaliteit .features-grid {
  grid-template-columns: repeat(3, 1fr);
}
.uwv-kwaliteit .features-grid > .feature-tile:first-child { grid-row: auto; }

.kwaliteit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kwaliteit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.kwaliteit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.kwaliteit-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.kwaliteit-logo-wrap img { max-height: 70px; width: auto; }
.kwaliteit-logo-placeholder {
  width: 90px;
  height: 60px;
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kwaliteit-logo-placeholder span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}
.kwaliteit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.kwaliteit-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   DIRECT STARTEN INTRO TEXT
   ============================================= */
.starten-intro {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 640px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-main { background: var(--white); }
.contact-page-info h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.contact-page-info > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-page-info .contact-details { margin-bottom: 0; }

/* =============================================
   KLACHTENPROCEDURE PAGE
   ============================================= */
.klacht-section { background: var(--white); }
.klacht-content { max-width: 800px; margin: 0 auto; }
.klacht-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.klacht-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.klacht-content p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.klacht-content ol,
.klacht-content ul { margin: 0 0 14px 24px; }
/* De globale `ul { list-style: none }` reset overrulen; li erft hiervan. */
.klacht-content ol { list-style: decimal; }
.klacht-content ul { list-style: disc; }
.klacht-content li { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; list-style: inherit; }
.klacht-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  transition: border-color var(--transition), color var(--transition);
}
.klacht-doc-link i { color: var(--blue); font-size: 17px; }
.klacht-doc-link:hover { border-color: var(--blue); color: var(--blue); }
.klacht-form-section { background: var(--off-white); }
.klacht-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.klacht-form-wrap .contact-form-col {
  border: 1px solid var(--border);
}

/* =============================================
   AI PAGE
   ============================================= */
.ai-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.7;
}
.ai-page-intro {
  padding: 80px 0 0px;
  margin-bottom: -80px;
}

.section-header { margin-bottom: 0; }

.ai-feature-section { background: var(--white); }
.ai-feature-section.ai-feature-alt { background: var(--off-white); }
.ai-feature-section .section-tag { margin-bottom: 14px; }

.ai-feature-visual {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.ai-feature-alt .ai-feature-visual {
  background: var(--white);
}
.ai-feature-visual-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  color: var(--blue);
}
.ai-feature-alt .ai-feature-visual-icon {
  background: var(--off-white);
  box-shadow: none;
  border: 1px solid var(--border);
}

/* =============================================
   RESPONSIVE — NEW SECTIONS
   ============================================= */
@media (max-width: 1024px) {
  .kwaliteit-grid         { grid-template-columns: 1fr 1fr; }
  .uwv-kwaliteit .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ai-feature-visual { min-height: 220px; }
  .ai-feature-visual-icon { width: 90px; height: 90px; font-size: 34px; }
  .kwaliteit-grid         { grid-template-columns: 1fr; }
  .uwv-kwaliteit .features-grid { grid-template-columns: 1fr; }
}
