
/* @font-face DaxlinePro - base64 removed to save space */
/* @font-face DaxlinePro - base64 removed to save space */
/* @font-face DaxlinePro - base64 removed to save space */
/* @font-face DaxlinePro - base64 removed to save space */
/* @font-face DaxlinePro - base64 removed to save space */

:root {
  --primary: #07567F;
  --primary-dark: #043B56;
  --primary-darker: #0A1628;
  --accent: #07567F;
  --accent-light: #3A9CC5;
  --light: #F0F4F7;
  --white: #ffffff;
  --text: #1a2a3a;
  --text-light: #5a7a8a;
  --grid-line: rgba(7,86,127,0.08);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; overflow-x:hidden; }

body {
  font-family: 'DaxlinePro', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7,86,127,0.3);
  transition: all 0.3s;
}
nav .nav-inner {
  max-width: 1200px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0.6rem 2rem;
}
nav .logo { display:flex; align-items:center; gap:0.3rem; min-width:0; flex:1 1 0; overflow:hidden; }
.logo-home { display:flex; align-items:center; gap:0.4rem; text-decoration:none; flex-shrink:0; }
nav .logo-mark {
  height:24px; width:auto; flex-shrink:0;
  filter: brightness(0) invert(1);
}
nav .logo-text {
  font-family:'DaxlinePro', sans-serif;
  font-weight:700; font-size:1.04rem; color:var(--white); letter-spacing:0.4px; white-space:nowrap;
}
nav .logo-text span { color:var(--accent-light); }
.logo-division-rotator {
  position:relative; display:inline-block;
  font-family:'DaxlinePro', sans-serif; font-weight:700; font-size:1.04rem;
  color:var(--white); letter-spacing:0.4px;
  min-width:0;
}
.logo-division {
  position:absolute; top:0; left:0; white-space:nowrap;
  opacity:0; transition: opacity 0.6s ease;
  pointer-events:none;
}
.logo-division.active { position:relative; opacity:1; white-space:nowrap; pointer-events:auto; }
.logo-division a { color:inherit; text-decoration:none; position:relative; }
.logo-division a::after {
  content:''; position:absolute; bottom:-3px; left:0; width:0; height:2px;
  background:var(--accent); transition: width 0.3s;
}
.logo-division a:hover::after { width:100%; }
nav .nav-links { display:flex; gap:1.6rem; list-style:none; }
nav .nav-links a {
  color: rgba(255,255,255,0.7); text-decoration:none; font-size:0.72rem;
  font-weight:500; letter-spacing:0.4px; text-transform:uppercase;
  transition: color 0.3s; position:relative;
}
nav .nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--accent); transition: width 0.3s;
}
nav .nav-links a:hover { color:var(--white); }
nav .nav-links a:hover::after { width:100%; }
nav .nav-links a.nav-login { background:var(--primary); color:#fff !important; padding:0.32rem 0.8rem; border-radius:4px; font-size:0.64rem; letter-spacing:0.4px; opacity:1; }
nav .nav-links a.nav-login:hover { background:var(--accent); }
nav .nav-links a.nav-login::after { display:none; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:8px; z-index:10; flex-shrink:0; }
.hamburger span { width:24px; height:2px; background:var(--white); transition:0.3s; display:block; }

/* HERO */
.hero {
  min-height:100vh; display:flex; align-items:center;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
  position:relative; overflow:hidden;
  padding: 6rem 2rem 4rem;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 60px, var(--grid-line) 60px, var(--grid-line) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, var(--grid-line) 60px, var(--grid-line) 61px);
  opacity:0.5;
}
.hero-watermark {
  position:absolute; right:-15%; top:50%; transform:translateY(-50%);
  height: clamp(400px, 100vw, 1100px); width:auto; opacity:0.27; z-index:0; pointer-events:none;
  filter:brightness(2.5);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 65%, transparent 100%),
                      linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 65%, transparent 100%),
              linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-composite: intersect;
}
.hero-content { max-width:1200px; margin:0 auto; position:relative; z-index:1; }
.hero-tag {
  display:inline-block; padding:0.4rem 1.2rem; border:1px solid var(--accent-light);
  color:var(--accent-light); font-size:0.8rem; font-weight:600; letter-spacing:2px;
  text-transform:uppercase; margin-bottom:1.5rem;
  animation: fadeInUp 0.8s ease;
}
.hero h1 {
  
  font-size:clamp(2.5rem, 6vw, 5rem); color:var(--white); line-height:1.05;
  max-width:700px; margin-bottom:1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 span { color:var(--accent-light); }
.hero p {
  color:rgba(255,255,255,0.7); font-size:1.15rem; max-width:520px;
  line-height:1.7; margin-bottom:2.5rem; font-weight:300;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-btns {
  display:flex; gap:1rem; flex-wrap:wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.btn-primary, .btn-secondary {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.9rem 2rem; background:var(--accent); color:var(--white);
  text-decoration:none; font-weight:600; font-size:0.95rem;
  border:1px solid var(--accent); cursor:pointer; transition:all 0.3s;
  letter-spacing:0.5px;
}
.btn-primary:hover, .btn-secondary:hover {
  background:transparent; border-color:var(--white); color:var(--white); transform:translateY(-2px);
}

.hero-stats {
  display:flex; gap:3rem; margin-top:4rem; padding-top:2rem;
  border-top:1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:2.5rem; color:var(--accent-light);
}
.hero-stat p { color:rgba(255,255,255,0.5); font-size:0.85rem; text-transform:uppercase; letter-spacing:1px; }

/* SECTIONS */
section { padding:6rem 2rem; }
.section-inner { max-width:1200px; margin:0 auto; }
.section-tag {
  display:inline-block; color:var(--accent-light); font-size:0.8rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; margin-bottom:0.5rem;
}
.section-title {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:clamp(2rem, 4vw, 3rem); line-height:1.1; margin-bottom:1rem;
}
.section-sub { color:var(--text-light); font-size:1.05rem; max-width:600px; line-height:1.7; margin-bottom:3rem; }

/* DIENSTEN */
.diensten { background:var(--light); }

/* GEAR BACKGROUND PATTERN */
.contact { position:relative; overflow:hidden; }
.contact .gear-bg-element {
  position:absolute;
  opacity:0.08;
  z-index:0;
  pointer-events:none;
}
.contact .gear-bg-1 { width:180px; top:-40px; right:-30px; animation: gearRotate 35s linear infinite; }
.contact .gear-bg-2 { width:120px; bottom:-20px; left:5%; animation: gearRotate 28s linear infinite reverse; }
.contact .gear-bg-3 { width:220px; top:40%; right:15%; animation: gearRotate 45s linear infinite; }
.contact .section-inner { position:relative; z-index:1; }
@keyframes gearRotate { to { transform:rotate(360deg); } }

.diensten-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:2rem; }
.dienst-card {
  background:var(--white); padding:2.5rem; border:1px solid rgba(7,86,127,0.08);
  transition: all 0.4s; position:relative; overflow:hidden;
  cursor:pointer; text-decoration:none; color:inherit; display:block;
}
.dienst-card::before {
  content:''; position:absolute; top:0; left:0; width:4px; height:0;
  background:var(--accent); transition: height 0.4s;
}
.dienst-card:hover { transform:translateY(-4px); box-shadow:0 20px 40px rgba(7,86,127,0.1); }
.dienst-card:hover::before { height:100%; }
.dienst-icon {
  width:56px; height:56px; background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem;
  color:var(--white); font-size:1.4rem;
}
.dienst-card h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.4rem; margin-bottom:0.8rem;
}
.dienst-card p { color:var(--text-light); line-height:1.7; font-size:0.95rem; position:relative; z-index:1; }
.dienst-card h3 { position:relative; z-index:1; }
.dienst-icon { position:relative; z-index:1; }
.dienst-card .k-watermark {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:400px; height:auto; opacity:0.12;
  pointer-events:none; mix-blend-mode:multiply;
}

/* OVER ONS */
#over-ons .section-tag { color:var(--accent-light); }
#over-ons .section-title { color:var(--white); }
.over-ons-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.over-ons-visual {
  position:relative; background: linear-gradient(135deg, var(--primary-darker), var(--primary));
  padding:3rem; min-height:400px; display:flex; flex-direction:column; justify-content:flex-end;
}
.over-ons-visual::before {
  content:''; position:absolute; inset:0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
}
.over-ons-visual .watermark-bg {
  position:absolute; right:-5%; top:50%; transform:translateY(-50%);
  height:115%; width:auto; opacity:0.34; z-index:1; pointer-events:none;
  filter:brightness(2.5);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%),
                      linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%),
              linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-composite: intersect;
}
.over-ons-visual .quote {
  position:relative; z-index:1; color:var(--white); font-size:1.3rem;
  font-weight:300; line-height:1.6; font-style:italic;
  border-left:3px solid var(--accent); padding-left:1.5rem;
}
.over-ons-visual .author {
  position:relative; z-index:1; color:var(--accent-light); font-weight:600;
  margin-top:2rem; font-size:0.9rem;
}
.over-ons-text h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.3rem; margin-bottom:0.8rem; margin-top:1.5rem; color:var(--white);
}
.over-ons-text p { color:rgba(255,255,255,0.7); line-height:1.8; }
.values { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:2rem; }
.value-item {
  display:flex; align-items:flex-start; gap:0.8rem;
}
.value-dot {
  width:8px; height:8px; min-width:8px; background:var(--accent); margin-top:0.5rem;
}
.value-item h4 { font-weight:600; font-size:0.95rem; color:rgba(255,255,255,0.9); }
.value-item p { color:rgba(255,255,255,0.6); font-size:0.85rem; }

/* PROJECTEN */
.projecten { background:var(--primary-darker); color:var(--white); }
.projecten .section-tag { color:var(--accent-light); }
.projecten .section-title { color:var(--white); }
.projecten .section-sub { color:rgba(255,255,255,0.6); }
.project-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:2rem; }
.project-card {
  border:1px solid rgba(255,255,255,0.1); padding:0; position:relative;
  transition: all 0.4s; overflow:hidden;
}
.project-card .card-img {
  width:100%; height:140px; overflow:hidden;
}
.project-card .card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.6s; filter:brightness(0.7);
}
.project-card:hover .card-img img { transform:scale(1.05); filter:brightness(0.85); }
.project-card .card-body { padding:1.8rem; }
.project-card .img-credit {
  position:absolute; bottom:4px; right:8px;
  font-size:0.6rem; color:rgba(255,255,255,0.4); letter-spacing:0.5px;
}
.project-card .card-img { position:relative; }
.project-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--accent); transform:scaleX(0); transition:transform 0.4s;
  transform-origin:left;
}
.project-card:hover { border-color:rgba(255,255,255,0.2); background:rgba(255,255,255,0.03); }
.project-card:hover::after { transform:scaleX(1); }
.project-sector {
  display:inline-block; padding:0.3rem 0.8rem; font-size:0.75rem;
  font-weight:600; letter-spacing:1px; text-transform:uppercase;
  border:1px solid var(--accent-light); color:var(--accent-light); margin-bottom:1rem;
}
.project-card h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.3rem; margin-bottom:0.8rem;
}
.project-card p { color:rgba(255,255,255,0.6); line-height:1.7; font-size:0.9rem; margin-bottom:1.5rem; }
a.project-link { text-decoration: none; color: inherit; display: flex; height:100%; }
.project-card { display:flex; flex-direction:column; width:100%; }
.project-card .card-body { flex:1; display:flex; flex-direction:column; }
.project-card .card-body p { flex:1; }
.project-tags { display:flex; gap:0.5rem; flex-wrap:wrap; justify-content:center; margin-top:2rem; }
.project-tag {
  padding:0.3rem 0.8rem; background:rgba(7,86,127,0.3); font-size:0.7rem;
  color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:1.5px; font-weight:600;
}

/* CONTACT */
.contact { background:var(--light); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; }
.contact-info h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.3rem; margin-bottom:0.5rem; margin-top:2rem;
}
.contact-info h3:first-child { margin-top:0; }
.contact-info p { color:var(--text-light); line-height:1.7; }
.contact-info a { color:var(--primary); text-decoration:none; font-weight:500; }
.contact-info a:hover { text-decoration:underline; }

.contact-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; }
.form-group label {
  font-size:0.8rem; font-weight:600; letter-spacing:1px; text-transform:uppercase;
  color:var(--text-light); margin-bottom:0.4rem;
}
.form-group input, .form-group textarea, .form-group select {
  padding:0.8rem 1rem; border:1px solid rgba(7,86,127,0.15); background:var(--white);
  font-family:'DaxlinePro', sans-serif; font-size:0.95rem; color:var(--text);
  outline:none; transition:border 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color:var(--primary);
}
.form-group textarea { min-height:120px; resize:vertical; }

/* FOOTER */
footer {
  background:var(--primary-darker); color:rgba(255,255,255,0.5);
  padding:3rem 2rem 1.5rem; font-size:0.85rem; text-align:center;
}
footer .footer-inner {
  max-width:1200px; margin:0 auto; display:flex; flex-direction:column;
  align-items:center; text-align:center; gap:0.8rem;
}
footer .footer-brand {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.1rem; color:var(--white);
}
footer .footer-brand span { color:var(--accent-light); }
footer .logo-division-rotator { font-size:1.1rem; }
footer a { color:rgba(255,255,255,0.5); text-decoration:none; }
footer a:hover { color:var(--white); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav .nav-links { display:none; }
  nav .nav-links.open { display:flex; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:rgba(10,22,40,0.98); padding:1rem 2rem 1.5rem; gap:0.5rem; border-bottom:1px solid rgba(7,86,127,0.3); }
  nav .nav-links.open a { padding:0.6rem 0; font-size:1rem; }
  nav .nav-links.open a.nav-login { background:none; padding:0.6rem 0; font-size:1rem; color:rgba(255,255,255,0.7) !important; border-radius:0; }
  nav .nav-links.open a.nav-login:hover { background:none; color:#fff !important; }
  .dienst-card::before { transition: height 0.8s ease; }
  .dienst-card:hover::before { height:0; }
  .dienst-card.in-view::before { height:100%; }
  .project-card::after { transition: transform 0.8s ease; }
  .project-card:hover::after { transform:scaleX(0); }
  .project-card.in-view::after { transform:scaleX(1); }
  .project-card-link::before { transition: height 0.8s ease; }
  .project-card-link:hover::before { height:0; }
  .project-card-link.in-view::before { height:100%; }
  .project-card-link.in-view { border-color:var(--accent-light); }
  .project-card-link.in-view .card-image img { transform:scale(1.05); filter:brightness(0.85); }
  .project-card-link.in-view .card-arrow { opacity:1; }
  .kandidaat-card::before { transition: height 0.8s ease; }
  .kandidaat-card:hover::before { height:0; }
  .kandidaat-card.in-view::before { height:100%; }
  .kandidaat-card.in-view { border-color:var(--accent-light); }
  .hamburger { display:flex; }
  .hero-stats { gap:2rem; flex-wrap:wrap; }
  .over-ons-grid, .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .diensten-grid { grid-template-columns:1fr; }
  .project-grid { grid-template-columns:1fr; }
  .hero-watermark { height:clamp(250px, 70vw, 400px); right:-25%; opacity:0.15; }
  .over-ons-visual .watermark-bg { height:80%; right:-15%; opacity:0.2; }
}

@media (max-width: 600px) {
  section { padding:4rem 1.2rem; }
  nav .nav-inner { padding:0.6rem 1rem; }
  nav .logo { gap:0.3rem; }
  .logo-home { gap:0.4rem; }
  nav .logo-mark { height:29px; }
  nav .logo-text { font-size:1.25rem; letter-spacing:0.3px; }
  .logo-division-rotator { font-size:1.25rem; letter-spacing:0.3px; }
  .hero { padding: 5rem 1.2rem 3rem; }
  .hero-stats { flex-direction: column; gap:1.5rem; }
  .hero-watermark { height:clamp(200px, 60vw, 300px); right:-30%; opacity:0.12; }
  .over-ons-visual .watermark-bg { height:60%; right:-20%; opacity:0.15; }
  .btn-secondary { width:100%; justify-content:center; text-align:center; }
}

@media (max-width: 400px) {
  nav .logo-mark { height:22px; }
  nav .logo-text { font-size:1rem; }
  .logo-division-rotator { font-size:1rem; }
}

/* PAGE LOADER */
.page-loader {
  position:fixed; inset:0; z-index:9999;
  background: #0a1628;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:1.5rem;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity:0; visibility:hidden; }
.page-loader .gears { display:flex; align-items:center; }
.page-loader .gear-big {
  width:55px; height:55px;
  animation: loaderSpin 2.5s linear infinite;
}
.page-loader .gear-small {
  width:38px; height:38px;
  margin-left:-5px;
  animation: loaderSpin 1.7s linear infinite reverse;
}
.page-loader .loader-text {
  color: rgba(255,255,255,0.3);
  font-size:0.75rem;
  letter-spacing:3px;
  text-transform:uppercase;
}
@keyframes loaderSpin { to { transform:rotate(360deg); } }

/* GEAR DIVIDER */
.gear-divider {
  display:flex; align-items:center; justify-content:center;
  gap:1rem; padding:0.5rem 2rem;
  background: var(--primary-dark);
}
.gear-divider::before, .gear-divider::after {
  content:''; flex:1; max-width:200px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.gear-divider img { width:28px; height:28px; opacity:0.5; filter:brightness(0) invert(1); }

/* EXPERIENCE & CERT BADGES */
.badges-row {
  display:flex; gap:2.5rem; justify-content:center; margin-top:3rem;
  flex-wrap:wrap;
}
.badge-item {
  position:relative;
  width:130px; height:130px;
  display:flex; align-items:center; justify-content:center;
}
.badge-item .badge-gear {
  position:absolute;
  width:130px; height:130px;
  opacity:0.18;
  animation: badgeSpin 30s linear infinite;
}
.badge-item:nth-child(2) .badge-gear { animation-direction:reverse; animation-duration:35s; }
.badge-item:nth-child(3) .badge-gear { animation-duration:40s; }
.badge-item .badge-inner {
  position:relative; z-index:1;
  text-align:center;
}
.badge-item .badge-num {
  font-size:2.2rem; font-weight:800; color:var(--white); line-height:1;
}
.badge-item .badge-label {
  font-size:0.65rem; text-transform:uppercase; letter-spacing:2px;
  color:rgba(255,255,255,0.7); margin-top:2px;
}
.badge-item .badge-icon {
  font-size:1.8rem; line-height:1; color:var(--white);
}
.badge-item .badge-cert {
  font-size:1.1rem; font-weight:800; color:var(--white); line-height:1;
  margin-top:2px;
}
@keyframes badgeSpin { to { transform:rotate(360deg); } }

/* CLIENT LOGO BANNER */
.client-logos {
  background:linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 50%, #e2eff5 100%);
  padding:2.5rem 0; overflow:hidden; position:relative;
  border-top:3px solid var(--primary);
  border-bottom:3px solid var(--primary);
  touch-action:pan-y;
  -webkit-user-select:none; user-select:none;
}
.client-logos-tag {
  text-align:center; font-size:0.8rem; font-weight:600; text-transform:uppercase;
  letter-spacing:2px; color:var(--accent-light); margin-bottom:1.5rem;
  font-family:'DaxlinePro', sans-serif;
}
.client-logos-track {
  display:flex; align-items:center; gap:8rem;
  animation:scrollLogos 45s linear infinite;
  width:max-content;
}
.client-logos-track:hover { animation-play-state:paused; }
.client-logos-track a {
  display:flex; align-items:center; flex-shrink:0;
  opacity:0.775; transition:opacity 0.3s;
}
.client-logos-track a:hover { opacity:1; }
.client-logos-track img {
  height:45px; width:auto; object-fit:contain;
}
@keyframes scrollLogos {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
@media(max-width:600px) {
  .client-logos { padding:2rem 0; }
  .client-logos-track { gap:6rem; }
  .client-logos-track img { height:35px; }
}

/* FOOTER GEAR */
footer .footer-brand { display:flex; align-items:center; gap:0.7rem; }
footer .footer-gear {
  width:24px; height:24px;
  opacity:0.7;
  animation: footerSpin 20s linear infinite;
  filter: brightness(0) invert(1);
}
@keyframes footerSpin { to { transform:rotate(360deg); } }


/* === Subpagina-specifieke stijlen === */
:root { --primary:#07567F; --primary-dark:#043B56; --primary-darker:#0A1628; --accent:#07567F; --accent-light:#3A9CC5; --white:#ffffff; }
* { margin:0; padding:0; box-sizing:border-box; }

body { color:#1a2a3a; background:var(--primary-darker); overflow-x:hidden; }
nav { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(10,22,40,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(7,86,127,0.3); }

.back-link { color:rgba(255,255,255,0.7); text-decoration:none; font-size:0.9rem; font-family:'DaxlinePro', sans-serif; transition:color 0.3s; }

.back-link:hover { color:var(--accent); }

.project-hero { padding:8rem 2rem 5rem; background:linear-gradient(135deg,var(--primary-darker),var(--primary-dark)); text-align:center; }

.project-hero .sector { display:inline-block; background:var(--accent); color:var(--white); font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:2px; padding:0.4rem 1.2rem; border-radius:2px; margin-bottom:1.5rem; }

.project-hero h1 { font-family:'DaxlinePro', sans-serif; font-weight:800; font-size:clamp(2rem,5vw,3.5rem); color:var(--white); margin-bottom:1rem; }

.project-hero p { color:rgba(255,255,255,0.7); font-size:1.1rem; max-width:700px; margin:0 auto; line-height:1.8; }

.project-content { max-width:1000px; margin:0 auto; padding:4rem 2rem; }

.project-content h2 { font-family:'DaxlinePro', sans-serif; font-weight:700; font-size:1.8rem; color:var(--white); margin-bottom:1.5rem; }

.project-content p { color:rgba(255,255,255,0.7); line-height:1.8; margin-bottom:1.5rem; }

.project-content ul { color:rgba(255,255,255,0.7); margin-bottom:1.5rem; padding-left:1.5rem; }
.project-content ul li { color:rgba(255,255,255,0.7); line-height:1.8; margin-bottom:0.3rem; }
.project-content a { color:var(--accent-light); }
.project-content a:hover { color:var(--white); }
.project-content strong { color:rgba(255,255,255,0.9); }

.highlight-list { list-style:none; margin-bottom:2rem; }

.highlight-list li { color:rgba(255,255,255,0.85); padding:0.7rem 0 0.7rem 1.8rem; position:relative; line-height:1.7; font-size:1rem; }

.highlight-list li::before { content:''; position:absolute; left:0; top:1.05rem; width:8px; height:8px; background:var(--accent); border-radius:1px; }

.gallery { margin:3rem 0; }

.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:1rem; }

.gallery-item { border-radius:4px; overflow:hidden; cursor:pointer; aspect-ratio:4/3; position:relative; border:1px solid rgba(255,255,255,0.1); transition:transform 0.3s, border-color 0.3s; }

.gallery-item:hover { transform:scale(1.02); border-color:rgba(255,255,255,0.3); }

.gallery-item img { width:100%; height:100%; object-fit:cover; }

.lightbox { display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.95); z-index:2000; align-items:center; justify-content:center; padding:2rem; }

.lightbox.active { display:flex; }

.lightbox img { max-width:90%; max-height:90vh; object-fit:contain; border-radius:4px; }

.lightbox-close { position:absolute; top:1.5rem; right:2rem; color:white; font-size:2rem; cursor:pointer; background:none; border:none; opacity:0.7; transition:opacity 0.3s; }

.lightbox-close:hover { opacity:1; }

.lightbox-nav { position:absolute; top:50%; transform:translateY(-50%); color:white; font-size:2.5rem; cursor:pointer; background:none; border:none; opacity:0.5; padding:1rem; transition:opacity 0.3s; }

.lightbox-nav:hover { opacity:1; }

.lightbox-prev { left:1rem; }

.lightbox-next { right:1rem; }

@keyframes navGearSpin { to { transform:rotate(360deg); } }

/* @font-face DaxlinePro - base64 removed */

:root { --primary:#07567F; --primary-dark:#043B56; --primary-darker:#0A1628; --accent:#07567F; --accent-light:#3A9CC5; --white:#ffffff; }

.highlight-list li { color:rgba(255,255,255,0.7); padding:0.5rem 0 0.5rem 1.5rem; position:relative; line-height:1.6; }

.gallery { display:grid; grid-template-columns:1fr; gap:1rem; margin-top:2rem; }

.gallery img { width:100%; border-radius:4px; cursor:pointer; transition:transform 0.3s, box-shadow 0.3s; }

.gallery img:hover { transform:scale(1.02); box-shadow:0 8px 30px rgba(0,0,0,0.4); }

.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.95); z-index:9999; align-items:center; justify-content:center; cursor:pointer; }

.lightbox img { max-width:92vw; max-height:92vh; border-radius:4px; }

body { color:#1a2a3a; background:var(--primary-darker); overflow-x:hidden; }

nav { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(10,22,40,0.95); backdrop-filter:blur(12px); border-bottom:1px solid rgba(7,86,127,0.3); }

.back-link:hover { color:var(--accent-light); }

.page-hero {
  padding:8rem 2rem 4rem;
  background:linear-gradient(135deg,var(--primary-darker),var(--primary-dark));
  text-align:center;
}

.page-hero .icon { font-size:3rem; margin-bottom:1rem; }

.page-hero h1 {
  font-family:'DaxlinePro', sans-serif; font-weight:800;
  font-size:clamp(2rem,5vw,3rem); color:var(--white); margin-bottom:1rem;
}

.page-hero p {
  color:rgba(255,255,255,0.7); font-size:1.15rem;
  max-width:700px; margin:0 auto; line-height:1.8;
}

.page-hero .count {
  display:inline-block; margin-top:1.5rem;
  background:rgba(7,86,127,0.3); color:var(--accent-light);
  padding:0.4rem 1.2rem; font-size:0.8rem; font-weight:600;
  text-transform:uppercase; letter-spacing:2px;
}

.designs-section { max-width:1200px; margin:0 auto; padding:3rem 2rem 4rem; }

.category-title {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.1rem; color:var(--accent-light); text-transform:uppercase;
  letter-spacing:2px; margin-bottom:1.5rem; padding-bottom:0.5rem;
  border-bottom:1px solid rgba(7,86,127,0.3);
}

.design-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
  gap:2rem; margin-bottom:3.5rem;
}

.project-card-link {
  display:flex; flex-direction:column;
  background:rgba(7,86,127,0.08); border:1px solid rgba(7,86,127,0.2);
  text-decoration:none; color:inherit;
  transition:all 0.4s; position:relative; overflow:hidden;
}

.project-card-link:hover {
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(7,86,127,0.15);
  border-color:var(--accent-light);
}

.project-card-link::before {
  content:''; position:absolute; top:0; left:0; width:4px; height:0;
  background:var(--accent-light); transition:height 0.4s;
}

.project-card-link:hover::before { height:100%; }

.card-image { width:100%; height:200px; overflow:hidden; }

.card-image img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.6s;
}

.project-card-link:hover .card-image img { transform:scale(1.05); }

.card-content { padding:1.8rem; flex:1; }

.card-content h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.25rem; color:var(--white); margin-bottom:0.8rem;
}

.card-content p {
  color:rgba(255,255,255,0.6); font-size:0.9rem; line-height:1.7;
}

.card-tags { display:flex; flex-wrap:wrap; gap:0.4rem; margin-top:1rem; }

.card-tag {
  background:rgba(7,86,127,0.25); color:rgba(255,255,255,0.7);
  padding:0.2rem 0.6rem; font-size:0.7rem; text-transform:uppercase; letter-spacing:1px;
}

.card-arrow {
  padding:0 1.8rem 1.5rem;
  color:var(--accent-light); font-size:1.2rem;
  opacity:0; transition:opacity 0.3s;
}

.project-card-link:hover .card-arrow { opacity:1; }

.design-card-static {
  display:flex; flex-direction:column;
  background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.08);
  position:relative; overflow:hidden;
}

.design-card-static .card-content h3 { color:rgba(255,255,255,0.5); }

/* Design card styles (designs.html) */
a.design-link { text-decoration:none; color:inherit; display:block; }

.design-card {
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:4px;
  padding:1.8rem;
  position:relative;
  overflow:hidden;
  transition:all 0.3s;
}
.design-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:var(--accent); transform:scaleX(0); transition:transform 0.4s;
}
.design-card:hover { border-color:rgba(255,255,255,0.2); background:rgba(255,255,255,0.03); }
.design-card:hover::after { transform:scaleX(1); }

.design-card .design-icon { font-size:1.5rem; margin-bottom:1rem; }
.design-card h3 { font-family:'DaxlinePro', sans-serif; font-weight:700; font-size:1.1rem; color:var(--white); margin-bottom:0.5rem; }
.design-card p { color:rgba(255,255,255,0.5); font-size:0.85rem; line-height:1.6; margin-bottom:1rem; }
.design-card .design-tags { display:flex; gap:0.4rem; flex-wrap:wrap; }
.design-card .design-tag { background:rgba(7,86,127,0.2); color:rgba(255,255,255,0.6); padding:0.2rem 0.6rem; border-radius:2px; font-size:0.7rem; text-transform:uppercase; letter-spacing:0.5px; }

.design-card .status { display:inline-block; font-size:0.7rem; text-transform:uppercase; letter-spacing:1px; padding:0.2rem 0.6rem; border-radius:2px; margin-bottom:1rem; }
.status.completed { background:rgba(80,200,120,0.15); color:rgba(80,200,120,0.8); }
.status.has-page { background:rgba(58,156,197,0.15); color:rgba(58,156,197,0.8); }

footer a { color:var(--accent-light); text-decoration:none; }

.gallery-item.wide { grid-column:1 / -1; aspect-ratio:16/9; }
.gallery-item.wide img { object-fit:contain; background:#1a2a3a; }

@media(max-width:600px) {
  .page-hero { padding:7rem 1.5rem 3rem; }
  .design-grid { grid-template-columns:1fr; }
}

/* @font-face DaxlinePro - base64 removed for project knowledge */

:root { --primary:#07567F; --primary-dark:#043B56; --primary-darker:#0A1628; --accent:#07567F; --accent-light:#3A9CC5; --white:#ffffff; }

.project-image { margin:2.5rem 0; border-radius:4px; overflow:hidden; border:1px solid rgba(255,255,255,0.1); }

.project-image img { width:100%; height:auto; display:block; }

.specs-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr)); gap:1rem; margin:2rem 0 3rem; }

.spec-card { background:rgba(7,86,127,0.15); border:1px solid rgba(7,86,127,0.25); border-radius:4px; padding:1.2rem 1.5rem; }

.spec-card .spec-label { font-size:0.75rem; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.5); margin-bottom:0.4rem; }

.spec-card .spec-value { font-size:1.1rem; font-weight:700; color:var(--white); }

@media(max-width:600px) {
  .project-hero { padding:7rem 1.5rem 3rem; }
  .specs-grid { grid-template-columns:1fr 1fr; }
  .spec-card { min-width:0; word-break:break-word; }
}

.division-hero {
  padding:8rem 2rem 4rem;
  background:linear-gradient(135deg,var(--primary-darker),var(--primary-dark));
  text-align:center;
}

.division-hero .icon {
  font-size:3rem; margin-bottom:1rem;
}

.division-hero h1 {
  font-family:'DaxlinePro', sans-serif; font-weight:800;
  font-size:clamp(2rem,5vw,3.5rem); color:var(--white); margin-bottom:1rem;
}

.division-hero p.subtitle {
  color:rgba(255,255,255,0.7); font-size:1.15rem; max-width:900px; margin:0 auto; line-height:1.8;
}

.division-hero .count {
  display:inline-block; margin-top:1.5rem;
  background:rgba(7,86,127,0.3); color:var(--accent-light);
  padding:0.4rem 1.2rem; font-size:0.8rem; font-weight:600;
  text-transform:uppercase; letter-spacing:2px;
}

.projects-section {
  max-width:1200px; margin:0 auto; padding:4rem 2rem;
}

.projects-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(340px, 1fr)); gap:2rem;
}

.card-image {
  width:100%; height:200px; overflow:hidden;
}

.project-card-link:hover .card-image img {
  transform:scale(1.05);
}

.card-content {
  padding:1.8rem; flex:1;
}

.card-client {
  font-size:0.75rem; text-transform:uppercase; letter-spacing:2px;
  color:var(--accent-light); font-weight:600; margin-bottom:0.5rem;
}

.card-tags {
  display:flex; flex-wrap:wrap; gap:0.4rem; margin-top:1rem;
}

.info-note { background:rgba(7,86,127,0.1); border-left:3px solid var(--accent); padding:1.2rem 1.5rem; border-radius:0 4px 4px 0; margin:2rem 0; }

.info-note p { color:rgba(255,255,255,0.5); font-size:0.9rem; margin:0; font-style:italic; }

/* KANDIDATEN */
.kandidaat-card {
  display:flex; flex-direction:column;
  background:rgba(7,86,127,0.08); border:1px solid rgba(7,86,127,0.2);
  text-decoration:none; color:inherit;
  transition:all 0.4s; position:relative; overflow:hidden;
}
.kandidaat-card::before {
  content:''; position:absolute; top:0; left:0; width:4px; height:0;
  background:var(--accent-light); transition:height 0.4s;
}
.kandidaat-card:hover::before { height:100%; }
.kandidaat-card:hover {
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(7,86,127,0.15);
  border-color:var(--accent-light);
}
.kandidaat-card .card-content { padding:2rem; flex:1; display:flex; flex-direction:column; }
.kandidaat-card .card-content h3 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.25rem; color:var(--white); margin-bottom:0.8rem;
}
.kandidaat-card .card-content p {
  color:rgba(255,255,255,0.6); font-size:0.9rem; line-height:1.7; flex:1;
}
.kandidaat-badge {
  display:inline-block; padding:0.3rem 0.8rem; font-size:0.7rem;
  font-weight:600; letter-spacing:1px; text-transform:uppercase;
  background:rgba(80,200,120,0.15); color:rgba(80,200,120,0.9);
  margin-bottom:1rem;
}
.kandidaat-badge.bezet {
  background:rgba(200,160,60,0.15); color:rgba(200,160,60,0.9);
}
.kandidaat-badge.gezocht {
  background:rgba(58,156,197,0.15); color:rgba(58,156,197,0.95);
}
.gezocht-divider {
  text-align:center; padding:3rem 2rem 1rem; max-width:1200px; margin:0 auto;
}
.gezocht-divider h2 {
  font-size:1.4rem; font-weight:700; color:#fff; margin-bottom:0.3rem;
}
.gezocht-divider p {
  font-size:0.9rem; color:rgba(255,255,255,0.5); max-width:600px; margin:0 auto;
}
.kandidaat-meta {
  font-size:0.8rem; color:var(--accent-light); font-weight:600;
  text-transform:uppercase; letter-spacing:1px; margin-bottom:0.5rem;
}
.kandidaat-cta {
  display:inline-flex; align-items:center; gap:0.5rem;
  margin-top:1.5rem; padding:0.6rem 1.2rem;
  background:var(--accent); color:var(--white);
  font-size:0.85rem; font-weight:600; letter-spacing:0.5px;
  text-decoration:none; border:1px solid var(--accent);
  transition:all 0.3s;
}
.kandidaat-cta:hover {
  background:transparent; border-color:var(--accent-light); color:var(--accent-light);
}
.kandidaten-cta-section {
  max-width:800px; margin:0 auto; padding:3rem 2rem 4rem;
  text-align:center;
}
.kandidaten-cta-section h2 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.5rem; color:var(--white); margin-bottom:1rem;
}
.kandidaten-cta-section p {
  color:rgba(255,255,255,0.6); font-size:1rem; line-height:1.7; margin-bottom:2rem;
}

/* Kandidaten Banner (homepage) */
.kandidaten-banner {
  position:relative; overflow:hidden;
  background:linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  scroll-margin-top:80px;
  padding:3rem 2rem; text-align:center;
}
.kandidaten-banner::before {
  content:''; position:absolute; top:0; left:0; right:0; bottom:0;
  background:radial-gradient(circle at 20% 50%, rgba(58,156,197,0.15) 0%, transparent 50%),
             radial-gradient(circle at 80% 50%, rgba(58,156,197,0.1) 0%, transparent 50%);
  pointer-events:none;
}
.kandidaten-banner-inner {
  position:relative; max-width:1100px; margin:0 auto; z-index:1;
}
.kandidaten-banner-tag {
  display:inline-block; font-size:0.8rem; font-weight:600; text-transform:uppercase;
  letter-spacing:2px; color:var(--accent-light); margin-bottom:0.75rem;
  font-family:'DaxlinePro', sans-serif;
}
.kandidaten-banner h2 {
  font-family:'DaxlinePro', sans-serif; font-weight:700;
  font-size:1.6rem; color:var(--white); margin-bottom:0.75rem;
}
.kandidaten-banner p {
  color:rgba(255,255,255,0.7); font-size:1rem; line-height:1.6; margin-bottom:1.5rem;
}
.kandidaten-banner .btn-primary {
  display:inline-flex; font-size:0.9rem;
}
@media(max-width:600px) {
  .kandidaten-banner { padding:2.5rem 1.5rem; }
  .kandidaten-banner h2 { font-size:1.3rem; }
}

@media(max-width:600px) {
  .division-hero { padding:7rem 1.5rem 3rem; }
  .projects-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
}