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

:root {
  --navy: #0d1526;
  --navy-mid: #152035;
  --navy-light: #1e3050;
  --cyan: #4bc4e0;
  --cyan-dark: #2fa8c5;
  --white: #ffffff;
  --grey-light: #f4f6f8;
  --grey-mid: #e0e5eb;
  --grey-text: #6b7a8d;
  --text-dark: #1a2035;
  --text-body: #374151;
  --shadow: 0 4px 24px rgba(13,21,38,0.12);
  --shadow-lg: 0 8px 40px rgba(13,21,38,0.18);
  --radius: 6px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--grey-text); max-width: 600px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(75,196,224,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.nav-logo img {
  height: 96px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone:hover { color: var(--cyan); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

.hero--page {
  height: auto;
  min-height: 62vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,16,32,0.90) 40%, rgba(10,16,32,0.40) 100%),
    url("../Header achtergrond.png") 65% center / cover no-repeat;
}

.hero-grid { display: none; }

.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 3rem 0;
  width: 100%;
}

.hero-badge { display: none; }

.hero-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--cyan); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Feature bar – onderaan de hero */
.hero-features {
  position: relative;
  z-index: 1;
  background: rgba(8,13,26,0.88);
  border-top: 1px solid rgba(75,196,224,0.12);
  backdrop-filter: blur(6px);
}

.hero-features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.hero-feature:last-child { border-right: none; }

.hero-feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(75,196,224,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.hero-feature strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.hero-feature span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.2;
  display: block;
}

/* verberg oude stats */
.hero-stats, .hero-stat, .hero-divider { display: none; }

/* ===== DIENSTEN CARDS ===== */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.dienst-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.dienst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.dienst-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.dienst-card:hover::before { transform: scaleX(1); }

.dienst-icon {
  width: 52px;
  height: 52px;
  background: rgba(75,196,224,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--cyan);
}

.dienst-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.dienst-card p {
  color: var(--grey-text);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.dienst-list {
  margin-bottom: 1.5rem;
}

.dienst-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dienst-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.dienst-link {
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.dienst-link:hover { gap: 0.6rem; }

/* ===== KERNWAARDEN ===== */
.kernwaarden { background: var(--grey-light); }

.kernwaarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.kw-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 1.25rem;
}

.kw-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.kw-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.kw-item p {
  font-size: 0.875rem;
  color: var(--grey-text);
  margin: 0;
  line-height: 1.5;
}

.kw-ticker-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  background: var(--white);
}

.kw-ticker-wrap::before,
.kw-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.kw-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.kw-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.kw-ticker {
  display: flex;
  width: max-content;
  animation: kw-scroll 28s linear infinite;
}
.kw-ticker:hover { animation-play-state: paused; }
.kw-ticker.paused { animation-play-state: paused; }

@keyframes kw-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.kw-tick-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.25rem 2rem;
  white-space: nowrap;
  border-right: 1px solid var(--grey-mid);
}

.kw-tick-icon {
  width: 34px;
  height: 34px;
  background: rgba(75,196,224,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-dark);
  flex-shrink: 0;
}

.kw-tick-item strong {
  font-family: 'Barlow Condensed', 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.kw-tick-item span {
  font-size: 0.88rem;
  color: var(--grey-text);
}

/* ===== OVER ONS TEASER ===== */
.over-ons-teaser {
  background: var(--navy);
  color: var(--white);
}

.over-ons-teaser .two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: stretch;
}

.over-ons-teaser h2 { color: var(--white); margin-bottom: 1.25rem; }

.over-ons-teaser p { color: rgba(255,255,255,0.72); }

.cert-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
}

.cert-icon {
  width: 34px;
  height: 34px;
  background: rgba(75,196,224,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.over-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.over-foto {
  width: 100%;
  max-height: 374px;
  object-fit: cover;
  object-position: right center;
  border-radius: 12px;
  display: block;
  box-shadow: 0 0 60px rgba(75,196,224,0.18), 0 0 120px rgba(75,196,224,0.08);
}

.over-visual-box {
  background: var(--navy-light);
  border: 1px solid rgba(75,196,224,0.2);
  border-radius: 12px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: rgba(75,196,224,0.08);
  border: 1px solid rgba(75,196,224,0.18);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: 'Barlow Condensed', 'Oswald', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-box span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ===== WERKGEBIED ===== */
.werkgebied .section-title {
  margin-bottom: 0;
}

.werkgebied-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1.5rem;
}

.werkgebied-text p { color: var(--grey-text); }

.gebied-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.gebied-tag {
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gebied-tag--meer {
  color: var(--grey-text);
  font-style: italic;
  border-style: dashed;
}

.gebied-tag.primary {
  background: rgba(75,196,224,0.1);
  border-color: rgba(75,196,224,0.35);
  color: var(--cyan-dark);
}

.map-placeholder {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(75,196,224,0.15);
}

.map-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; }
.map-placeholder strong { color: var(--white); display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }

.map-embed-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(75,196,224,0.2);
  box-shadow: 0 0 40px rgba(75,196,224,0.08);
  align-self: stretch;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
}

.nl-kaart { width: 160px; height: auto; display: block; margin: 0 auto; }

.nl-land {
  fill: var(--navy-light);
  stroke: rgba(75,196,224,0.25);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.zh-highlight {
  fill: rgba(75,196,224,0.22);
  stroke: rgba(75,196,224,0.7);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.city-dot {
  fill: var(--cyan);
}

.city-dot-minor {
  fill: rgba(75,196,224,0.5);
}

.city-label {
  fill: var(--white);
  font-size: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.city-label--minor {
  fill: rgba(255,255,255,0.45);
  font-weight: 400;
}

.map-legend { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy-mid);
  border-top: 1px solid rgba(75,196,224,0.12);
  border-bottom: 1px solid rgba(75,196,224,0.12);
  padding: 4rem 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.55); margin: 0; font-size: 1.05rem; }

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: rgba(13,21,38,0.08); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 52px; }

.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.footer-contact-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  margin: 0;
  color: rgba(255,255,255,0.35);
}

.footer-certs {
  display: flex;
  gap: 0.75rem;
}

.cert-badge {
  background: rgba(75,196,224,0.1);
  border: 1px solid rgba(75,196,224,0.2);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: calc(96px + 2.5rem) 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,196,224,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,196,224,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,0.65); }

.page-header h1 { color: var(--white); }
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin-top: 0.75rem; }

/* ===== DIENSTEN PAGE ===== */
.dienst-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--grey-mid);
}
.dienst-detail:last-child { border-bottom: none; }
.dienst-detail:nth-child(even) { background: var(--grey-light); }

.dienst-detail .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dienst-detail:nth-child(even) .two-col { direction: rtl; }
.dienst-detail:nth-child(even) .two-col > * { direction: ltr; }

.dienst-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(75,196,224,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}

.dienst-detail h2 { margin-bottom: 1rem; }
.dienst-detail p { color: var(--grey-text); margin-bottom: 1.25rem; }

.voordelen-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.voordeel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.voordeel-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.dienst-visual {
  background: var(--navy);
  border-radius: 12px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(75,196,224,0.15);
  position: relative;
  overflow: hidden;
}

.dienst-visual-inner {
  text-align: center;
  color: rgba(255,255,255,0.35);
  padding: 2rem;
}

.dienst-visual-inner svg { color: var(--cyan); opacity: 0.5; margin: 0 auto 1rem; }
.dienst-visual-inner p { font-size: 0.85rem; margin: 0; }

.dienst-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 12px;
}
.dienst-visual--placeholder .dienst-visual-inner { display: flex; flex-direction: column; align-items: center; }
.dienst-visual:not(.dienst-visual--placeholder) .dienst-visual-inner { display: none; }

/* ===== OVER ONS PAGE ===== */

.over-intro .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.over-intro h2 { margin-bottom: 1.25rem; }
.over-intro p { color: var(--grey-text); }

.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.cert-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(75,196,224,0.15);
  text-align: center;
}

.cert-card svg { color: var(--cyan); margin: 0 auto 0.75rem; }
.cert-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.35rem; }
.cert-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0; }

.werkwijze { background: var(--white); }

.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--grey-mid);
}
.step:last-child::after { display: none; }

.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', 'Oswald', Arial, sans-serif;
}

.step h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--grey-text); margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(96px + 2rem);
}

.contact-info h3 { margin-bottom: 1.25rem; }
.contact-info p { color: var(--grey-text); margin-bottom: 1.75rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-text);
  margin-bottom: 0.2rem;
}

.contact-item a, .contact-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--cyan-dark); }

.werkgebied-info {
  background: var(--grey-light);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--grey-mid);
}

.werkgebied-info h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.werkgebied-info p { font-size: 0.88rem; color: var(--grey-text); margin: 0; }

.contact-certs {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--grey-light);
  border-radius: 8px;
  border: 1px solid var(--grey-mid);
}

.contact-certs-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.contact-certs-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--grey-text); margin-bottom: 2rem; font-size: 0.95rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(75,196,224,0.15);
}

textarea { resize: vertical; min-height: 120px; }

.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-dark);
  margin: 1.75rem 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-mid);
}

.form-section-label:first-of-type { margin-top: 0; }

.form-section-sublabel {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--grey-text);
}

.form-label-optional {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--grey-text);
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.75rem 0 0.25rem;
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  user-select: none;
}

.form-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.form-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-file-input {
  padding: 0.6rem 0.75rem;
  border: 1.5px dashed var(--grey-mid);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--grey-text);
  background: var(--grey-light);
  cursor: pointer;
  transition: border-color var(--transition);
}

.form-file-input:hover { border-color: var(--cyan); }

.form-note-inline {
  font-size: 0.78rem;
  color: var(--grey-text);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.form-submit {
  margin-top: 1.5rem;
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--grey-text);
  text-align: center;
  margin-top: 0.75rem;
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: rgba(75,196,224,0.08);
  border: 1px solid rgba(75,196,224,0.3);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: var(--cyan-dark);
  font-weight: 600;
  margin-top: 1rem;
}

.form-error {
  display: none;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: #b91c1c;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.form-error a { color: #b91c1c; text-decoration: underline; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta .btn {
  box-shadow: 0 4px 20px rgba(75,196,224,0.4);
}

/* Swipe dots – alleen zichtbaar op mobiel via media query */
.swipe-dots { display: none; }

/* Diensten CTA balk */
.diensten-cta-bar {
  border-top: 1px solid var(--grey-mid);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.diensten-cta-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .werkwijze-steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}

@media (max-width: 900px) {
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .kernwaarden-grid { grid-template-columns: 1fr 1fr; }
  .over-ons-teaser .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .werkgebied-content { grid-template-columns: 1fr; }
  .dienst-detail .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .dienst-detail:nth-child(even) .two-col { direction: ltr; }
  .over-intro .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .services-strip-inner { flex-direction: column; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(13,21,38,0.15); }
  .strip-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .hero-features-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 80px; }
  .nav-logo img { height: 72px; }
  .hero { padding-top: 80px; }
  .hero-features-inner { grid-template-columns: repeat(2, 1fr); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mobile-menu a:hover { color: var(--cyan); background: rgba(75,196,224,0.08); }

  .mobile-menu-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .mobile-menu-contact a {
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-stats { gap: 1.5rem; }
  .hero-divider { display: none; }
  /* Diensten carousel op mobiel */
  .diensten-carousel-wrap { margin: 2rem 0 0; overflow: hidden; }
  .diensten-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.85rem;
    padding: 0.25rem 1.25rem 0.75rem 1.25rem;
    margin-top: 0;
    box-sizing: content-box;
  }
  .diensten-grid::-webkit-scrollbar { display: none; }
  .dienst-card {
    flex-shrink: 0;
    width: 82%;
    scroll-snap-align: start;
  }

  /* Streepje weg */
  .diensten-cta-bar { border-top: none; padding-top: 1rem; }

  /* Knoppen naast elkaar, delen de breedte gelijkmatig */
  .diensten-cta-btns { flex-wrap: nowrap; width: 100%; gap: 0.5rem; }
  .diensten-cta-btns .btn { flex: 1; justify-content: center; min-width: 0; white-space: normal; text-align: center; font-size: 0.82rem; padding: 0.6rem 0.75rem; }

  /* Swipe dots */
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
  }
  .swipe-dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--grey-mid);
  }
  .swipe-dots span:first-child { background: var(--cyan); }
  .kernwaarden-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-3 { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .certs-grid { grid-template-columns: 1fr; }
  .over-visual-box { grid-template-columns: 1fr 1fr; }

  /* Verberg navbar knop – zit al in mobiel menu */
  .nav-cta { display: none; }

  /* Ticker snelheid op mobiel */
  .kw-ticker { animation-duration: 34s; }

  /* Hero: auto hoogte zodat feature bar nooit wordt geclipped */
  .hero { height: auto; min-height: 100svh; }

  /* Hero tekst compacter op mobiel */
  .hero-label { font-size: 0.72rem; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
  .hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-content { padding: 2rem 0 1.5rem; }

  /* Feature bar: 2x2 raster met compacte items */
  .hero-features-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-feature:nth-child(even) { border-right: none; }
  .hero-feature { padding: 0.75rem 0.85rem; gap: 0.65rem; }
  .hero-feature-icon { width: 26px; height: 26px; flex-shrink: 0; }
  .hero-feature-icon svg { width: 14px; height: 14px; }
  .hero-feature strong { font-size: 0.68rem; letter-spacing: 0.04em; }
  .hero-feature span { font-size: 0.65rem; }

  /* Achtergrond: meer rechts zichtbaar op mobiel */
  .hero-bg { background-position: 65% center; }

  /* Page header compacter op mobiel */
  .page-header { padding: calc(80px + 2rem) 0 2rem; }
  .page-header h1 { font-size: 2.2rem; }
  .page-header p { font-size: 0.95rem; margin-top: 0.5rem; }
  .page-header .section-label { font-size: 0.7rem; }

  /* Sectie-titels compacter */
  h2 { font-size: clamp(1.5rem, 5vw, 2.8rem); }
  .section-title { margin-bottom: 0.6rem; }

  /* Diensten placeholder minder hoog */
  .dienst-visual { min-height: 180px; }

  /* CTA banner knoppen volle breedte en gestapeld */
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }

  /* Floating CTA iets dichter bij rand */
  .floating-cta { bottom: 1rem; right: 1rem; }

  /* Knoppen kleiner en subtieler op mobiel */
  .btn { padding: 0.65rem 1.4rem; font-size: 0.875rem; }
  .btn-lg { padding: 0.7rem 1.6rem; font-size: 0.9rem; }

  /* Sectie-intro tekst iets kleiner */
  .section-intro { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }
  .werkwijze-steps { grid-template-columns: 1fr; }

  /* Feature bar naar 1 kolom op kleine schermen */
  .hero-features-inner { grid-template-columns: 1fr 1fr; }

  /* Container minder padding op echt kleine schermen */
  .container { padding: 0 1rem; }

  /* Secties compacter */
  .section { padding: 2.5rem 0; }
  .page-header { padding: calc(80px + 1.5rem) 0 1.5rem; }

  /* Diensten placeholder nog compacter */
  .dienst-visual { min-height: 140px; }

  /* Cert badges wrappen netter */
  .contact-certs-badges { gap: 0.4rem; }
  .cert-badge { font-size: 0.72rem; padding: 0.3rem 0.65rem; }

  /* Formulier submit knop altijd vol */
  .form-submit .btn { font-size: 0.95rem; }
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
}

.legal-meta {
  background: var(--grey-light);
  border-left: 3px solid var(--cyan);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--grey-text);
}

.legal-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--grey-mid);
  color: var(--text-dark);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li { margin-bottom: 0.35rem; }

.legal-content a {
  color: var(--cyan-dark);
  text-decoration: underline;
}

.legal-content a:hover { color: var(--cyan); }

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--cyan); }

/* ========================
   FAQ SECTIE
   ======================== */
.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--cyan);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-item div {
  padding: 1rem 1.4rem 1.2rem;
}

.faq-item div p {
  color: var(--grey-text);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
