:root{
  --bg: #ffffff;
  --bg2: #f6f8f7;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #1b6f3a;      /* groen accent */
  --brand2: #0ea56b;     /* fris groen */
  --card: #ffffff;
  --shadow: 0 10px 24px rgba(15, 23, 42, .08);
  --radius: 16px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg2) 100%);
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand__logo{
  height: 54px;
  width: auto;
  margin-top: 2px;
}

}

.nav{ display:flex; align-items:center; gap: 10px; }
.nav__toggle{
  display:none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}
.nav__menu{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav__menu a{
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav__menu a:hover{ background: rgba(2, 132, 199, .06); color: var(--text); }

.langToggle{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
}
.langToggle__pill{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.langToggle__label{ font-size: 13px; color: var(--muted); font-weight: 600; }

.hero{
  padding: 46px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 18px;
  align-items:start;
}
.kicker{
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  margin: 0 0 10px;
}
h1{
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: 0 10px 18px rgba(14,165,107,.16);
}
.btn:hover{ filter: brightness(.98); }

.btn--ghost{
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover{ background: #f8fafc; }

.highlights{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hl{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.hl__t{ color: var(--muted); font-size: 12px; font-weight: 800; margin-bottom: 4px; }
.hl__b{ font-weight: 700; }

.heroCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.heroCard__title{
  font-weight: 900;
  margin: 0 0 10px;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.heroCard__note{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.section{ padding: 34px 0; }
.section--alt{ background: rgba(255,255,255,.55); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sectionHead h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.sectionHead p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 75ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 6px; }
.card p{ margin: 0; color: var(--muted); line-height: 1.6; }

.steps{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.step{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display:flex;
  gap: 12px;
  box-shadow: var(--shadow);
}
.step__n{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.step h3{ margin: 0 0 4px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); line-height: 1.5; }

.imageStrip{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.imgPh{
  border: 1px dashed #cbd5e1;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  text-align:center;
  color: var(--muted);
}
.imgPh__label{ font-weight: 900; color: var(--text); margin-bottom: 6px; }
.imgPh__hint{ font-weight: 600; }

.pills{ display:flex; flex-wrap: wrap; gap: 10px; }
.pill{
  display:inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 700;
  color: var(--muted);
}

.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.aboutCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.aboutCard h3{ margin: 0 0 8px; }
.aboutCard p{ margin: 0; color: var(--muted); line-height: 1.65; }

.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contactCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.contactCard__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 10px; }
.name{ font-weight: 900; font-size: 18px; }
.role{ color: var(--muted); font-weight: 700; }

.contactActions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

label{ display:block; font-weight: 800; color: var(--text); margin: 10px 0 6px; }
input, textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
textarea{ resize: vertical; }

.fineprint{
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.footer{
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 18px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .aboutGrid{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
  h1{ font-size: 34px; }

  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    display:none;
    position:absolute;
    right: 20px;
    top: 64px;
    background:#fff;
    border:1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
  }
  .nav__menu.is-open{ display:flex; }
}
.imgReal{
  width:100%;
  height:220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* Hero image right */
.heroImageWrap{
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroImage{
  width:100%;
  max-height:420px;
  object-fit:cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* Bio profile layout */
.aboutCard--profile{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.profilePhoto{
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* Case section */
.caseGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:center;
}

.caseImage img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.caseText h3{
  margin-top:0;
}

.caseTag{
  margin-top:12px;
  font-weight:700;
  color: var(--brand);
}

/* Mobile */
@media (max-width:900px){
  .caseGrid{
    grid-template-columns: 1fr;
  }
}
/* Stacked case images */
.caseImageStack{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}



}/* Professional case image stack (with captions + no cropping for diagrams) */
.caseImageStack{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.caseFigure{
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.caseImg{
  width: 100%;
  height: 210px;           /* nice consistent look for photos */
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

/* Diagrams/CFD: always show the full image (no crop) */
.caseImg--diagram{
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: #fff;
  cursor: zoom-in;
}

.caseCaption{
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  border-top: 1px solid var(--line);
}
/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.lightbox.is-open{ display: block; }

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .62);
}

.lightbox__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100% - 28px));
  max-height: calc(100% - 28px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .25);
}

.lightbox__close{
  position: absolute;
  right: 10px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__img{
  width: 100%;
  height: auto;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  display: block;
  background: #fff;
}

.lightbox__caption{
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

/* Selected Engagements */
.engGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.engCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.engKicker{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: var(--brand);
  background: rgba(14,165,107,.10);
  border: 1px solid rgba(14,165,107,.18);
  margin-bottom: 10px;
}

.engCard h3{
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.engCard p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.engActions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

@media (max-width: 900px){
  .engGrid{ grid-template-columns: 1fr; }
}
/* HERO IMAGE RIGHT */
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap:28px;
  align-items:center;
}

.heroImage img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:18px;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
}

/* Tablet */
@media (max-width:1100px){
  .hero__grid{
    grid-template-columns:1fr;
  }
  .heroImage img{
    height:320px;
  }
}
/* FORCE larger logo in topbar */
.brand { display:flex; align-items:center; }
.brand__logo{
  height: 64px !important;   /* probeer 64; wil je nog groter: 72 */
  width: auto !important;
  display:block;
}

.topbar{
  padding: 14px 0 !important; /* geeft ruimte voor groter logo */
}
/* HERO grid: text | card | image (desktop) */
.hero__grid{
  display:grid !important;
  grid-template-columns: 1.25fr 0.85fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.heroImage{
  display:block !important;
}

.heroImage img{
  width:100% !important;
  height: 420px !important;
  object-fit: cover !important;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Tablet/mobile: stack */
@media (max-width: 1100px){
  .hero__grid{
    grid-template-columns: 1fr !important;
  }
  .heroImage img{
    height: 320px !important;
  }
}
/* HERO: text | card | image */
.hero__grid{
  display:grid !important;
  grid-template-columns: 1.25fr 0.85fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.heroImage img{
  width:100% !important;
  height: 420px !important;
  object-fit: cover !important;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Mobile */
@media (max-width: 1100px){
  .hero__grid{ grid-template-columns: 1fr !important; }
  .heroImage img{ height: 320px !important; }
}
.brand__logo{
  height: 72px !important;   /* groter */
  width: auto !important;
}
.topbar{ padding: 14px 0 !important; }
.brand img{
  height: 64px !important;
  width: auto !important;
}

.topbar{
  padding: 14px 0 !important;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 32px;
  align-items: start;
}

.heroImage{
  grid-column: 3;
}

.heroImage img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
@media (max-width:1100px){
  .hero__grid{
    grid-template-columns:1fr;
  }
}
/* ===== FORCE LOGO SIZE ===== */
.brand img{
    height: 120px !important;   /* ± 2x groter */
    width: auto !important;
}

.topbar{
    padding: 18px 0 !important;
}
/* ===== HERO LAYOUT FIX ===== */

.hero__grid{
    display: grid !important;
    grid-template-columns: 1.3fr 0.9fr 1fr !important;
    gap: 36px !important;
    align-items: start !important;
}

/* Zet foto expliciet rechts */
.heroImage{
    grid-column: 3 !important;
}

/* Zorg dat foto zichtbaar groot is */
.heroImage img{
    width: 100% !important;
    height: 440px !important;
    object-fit: cover !important;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Mobile fallback */
@media (max-width: 1100px){
    .hero__grid{
        grid-template-columns: 1fr !important;
    }
}
/* ===== FORCE LOGO 2x BIGGER ===== */
.brand__logo,
.brand img{
  height: 120px !important;  /* 2x groter */
  width: auto !important;
  max-height: none !important;
}

.topbar{
  padding: 18px 0 !important; /* ruimte voor groter logo */
}

.topbar__inner{
  align-items: center !important;
}
.heroImage img{
  width:100% !important;
  max-height:460px !important;
  object-fit:contain !important;
  object-position:top center !important;
}

}
/* ===============================
   HERO PROFESSIONAL UPGRADE
   =============================== */

/* Layout balans verbeteren */
.hero__grid{
  grid-template-columns: 1.35fr 0.85fr 1fr !important;
  gap: 44px !important;
  align-items: center !important;
}

/* Headline typografie */
.hero h1{
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

@media (max-width:1100px){
  .hero h1{
    font-size: 36px;
  }
}

/* Hero image container */
.heroImage{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* Gradient overlay */
.heroImage::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.0) 40%,
    rgba(0,0,0,0.18) 100%
  );
  pointer-events:none;
}

/* Image zoom effect */
.heroImage img{
  width:100% !important;
  height:420px !important;
  object-fit: contain !important;
  object-position: top center !important;
  background:#fff;
  transition: transform 7s ease;
}

/* Subtle animated zoom */
.heroImage:hover img{
  transform: scale(1.04);
}

/* Card visual balance */
.heroCard{
  transform: translateY(8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

/* Extra spacing rond hero */
.hero{
  padding-top: 36px;
  padding-bottom: 46px;
}
/* ===== Scroll reveal ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{ transition: none; transform: none; opacity: 1; }
}/* ===== Scroll reveal ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{ transition: none; transform: none; opacity: 1; }
}

/* ===== Credibility strip ===== */
.credStrip{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.credStrip__label{
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.credStrip__items{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.credItem{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 12px;
  color: var(--text);
}
.credStrip__note{
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
/* ===== Subtle hero background texture ===== */
.hero{
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset: -120px -120px -120px -120px;
  background:
    radial-gradient(closest-side at 12% 22%, rgba(14,165,107,.10), rgba(255,255,255,0) 55%),
    radial-gradient(closest-side at 78% 18%, rgba(27,111,58,.08), rgba(255,255,255,0) 60%),
    radial-gradient(closest-side at 55% 70%, rgba(2,132,199,.06), rgba(255,255,255,0) 58%),
    repeating-linear-gradient(
      135deg,
      rgba(15,23,42,.02) 0px,
      rgba(15,23,42,.02) 1px,
      rgba(255,255,255,0) 9px,
      rgba(255,255,255,0) 14px
    );
  pointer-events:none;
  z-index: 0;
}

.hero > .container{
  position: relative;
  z-index: 1;
}
/* ===== NAVERDI LOGO — EXTRA GROOT ===== */

.brand img{
    height: 140px !important;   /* <- pas hier grootte aan */
    width: auto !important;
    max-height: none !important;
}

/* Header hoogte aanpassen zodat logo ruimte krijgt */
.topbar{
    padding: 20px 0 !important;
}

/* Verticale uitlijning */
.topbar__inner{
    align-items: center !important;
}
.brand img{
    height: 170px !important;
}
/* ===== LOGO: EXTRA GROOT + PREMIUM HIGHLIGHT ===== */
.brand img{
  height: 150px !important;          /* pas aan: 140–180 */
  width: auto !important;
  max-height: none !important;
  display: block;

  /* Premium highlight */
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.16))
          drop-shadow(0 2px 6px rgba(14,165,107,.18));
}

/* Header ruimte + nette uitlijning */
.topbar{
  padding: 22px 0 !important;
}

.topbar__inner{
  align-items: center !important;
}

/* Optioneel: iets meer balans met menu */
.nav{
  margin-top: 8px;
}
/* ===== Back to top (fixed button) ===== */
.backTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
  z-index: 9999;
  opacity: 0.92;
}

.backTop:hover{
  transform: translateY(-2px);
}

/* Hide on very small screens if you prefer */
@media (max-width: 420px){
  .backTop{ right: 12px; bottom: 12px; }
}

